diff --git a/CHANGES.md b/CHANGES.md index f4791f4ea2555ca779c260991206d57f68db0b37..8c4693551799df7897e0e26ece6490f3e7b55b27 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,9 +4,10 @@ VECTO-CSE: Changes TODO: 2014-06-??: v2.0.1 -------------------- -JRC contributions (see VECTO-29): +Mostly JRC contributions (see VECTO-29 & VECTO-35): - * IO: JSON-ize preferences, vehicle, job & criteria-files, ... + * IO: JSON-ize preferences, vehicle, job & criteria-files EXCEPT from Track-file and Output-values. + * IO: CSVize all the rest files with a single header line and use '#' for comment lines. * IO: Separate config/ from Declaration/ folders. * UI: Provide default-values and help-messages in GUI/files with infos fetched from JSON-schemas. * UI: Make the Log-window visible at all times (more necessary now that unhandled exceptions are appropriately reported). @@ -22,13 +23,25 @@ JRC contributions (see VECTO-29): * Sporadic fixes to work with filenames having 2-part extensions (ie `some_file.csjob.json`). * Log: Improve logging-API so now a single log-routine is used everywhere(instead of 3 different ones). * async: Stop abusing worker-Thread with Globals, use DoWorkEventArgs instead. + * async: Start using Exceptions instead of CancelAsync() and error-flags. * General restructuring of the folders and names in the project. + More analytically: +#### 2014-06-23: v2.0.1-pre3 #### +TUG & JRC improvements: + + * Changed comment symbol in CSV files from 'c' --> '#' + * Unify hunits into header labels. + * Use Exceptions instead of CancelAsync() and error-flags in calc-routines and input.vb. + * Remove unused distVincenty() func. + + #### 2014-06-04: v2.0.1-pre2 #### JRC contributions: + * Convert Job & Criteria files to JSON and possible to store them separately. * Still supporting old format for reading. * Use Use WorkingDir trick for all job-file paths, so that Job-files can be ported to other computers. diff --git a/CSE/ApplicationEvents.vb b/CSE/ApplicationEvents.vb index 682717e5ef0352b98ee4446c7a14960a8c478eaf..7dfab40b2780a839e410270ddeaadc086525ba3c 100644 --- a/CSE/ApplicationEvents.vb +++ b/CSE/ApplicationEvents.vb @@ -101,7 +101,7 @@ Private Sub MyApplication_UnhandledException(ByVal sender As Object, ByVal ev As Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs) Handles Me.UnhandledException Dim ex As Exception = ev.Exception If AppFormStarted Then - logme(9, False, format("Unhandled exception: \i{0}", ex.Message), ex) + logme(9, False, format("Unhandled exception in {0}: \i{1}", ex.Source, ex.Message), ex) ev.ExitApplication = False Else MsgBox(format("{0} failed after init due to: \n\i{1}", AppName, ex), MsgBoxStyle.Critical, format("{0} failed to Start!", AppName)) diff --git a/CSE/Calculation/Minor_routines_calculate.vb b/CSE/Calculation/Minor_routines_calculate.vb index b40edd1c509facabcb6418a090bc7c4114d2e1b9..fae462183177727dccf7756a468945322112265e 100644 --- a/CSE/Calculation/Minor_routines_calculate.vb +++ b/CSE/Calculation/Minor_routines_calculate.vb @@ -353,9 +353,7 @@ vline = FileInAlt.ReadLine If dist < vline(0) Then - logme(9, False, "The distance is lower then the minimum in the altitude file") - BWorker.CancelAsync() - fAltInterp = 0 + Throw New Exception(format("The distance({0}) is lower then the minimum({1}) in the altitude file!", dist, vline(0))) End If Do While Not FileInAlt.EndOfFile @@ -380,80 +378,6 @@ End Using End Function - ' Length calculation out of coordinates MM.MM (Not used at the moment) - Public Function distVincenty(ByVal lat1 As Double, ByVal lon1 As Double, ByVal lat2 As Double, ByVal lon2 As Double, Optional ByVal Dist As Boolean = False) As Double - ' Declaration - Dim i As Integer - Dim L, C, U1, U2, sinU1, cosU1, sinU2, cosU2, lambda, lambdap, sinLambda, sinSigma, sinAlpha, cosLambda, cosSigma, cosSqAlpha, cos2SigmaM, sigma, deltaSigma As Double - Dim uSq, Ai, Bi, s, fwdAz, revAz As Double - - ' Constant declarations - Const a = 6378137.0 ' WGS-84 ellipsoid params (major axis of the ellipsoid) - Const b = 6356752.314245 ' WGS-84 ellipsoid params (minor axes of the ellipsoid) - Const f = 1 / 298.257223563 ' WGS-84 ellipsoid params (Falttening) - Const iMax = 100 ' Maximum of iterrations - Const toRad = Math.PI / 180 - - ' Initialisation - L = (lon2 - lon1) * toRad - U1 = Math.Atan((1 - f) * Math.Tan(lat1 * toRad)) - U2 = Math.Atan((1 - f) * Math.Tan(lat2 * toRad)) - sinU1 = Math.Sin(U1) - cosU1 = Math.Cos(U1) - sinU2 = Math.Sin(U2) - cosU2 = Math.Cos(U2) - i = iMax - lambda = L - lambdap = lambda + 1 - - ' Calculate lambda - Do Until (Math.Abs(lambda - lambdap) < 0.000000000001 Or i = 0) - sinLambda = Math.Sin(lambda) - cosLambda = Math.Cos(lambda) - sinSigma = Math.Sqrt((cosU2 * sinLambda) ^ 2 + (cosU1 * sinU2 - sinU1 * cosU2 * cosLambda) ^ 2) - - If (sinSigma = 0) Then Return 0 ' co-incident points - - cosSigma = sinU1 * sinU2 + cosU1 * cosU2 * cosLambda - sigma = Math.Atan2(sinSigma, cosSigma) - sinAlpha = cosU1 * cosU2 * sinLambda / sinSigma - cosSqAlpha = 1 - sinAlpha * sinAlpha - cos2SigmaM = cosSigma - 2 * sinU1 * sinU2 / cosSqAlpha - - If (IsNothing(cos2SigmaM)) Then cos2SigmaM = 0 ' equatorial line: cosSqAlpha=0 (§6) - - C = f / 16 * cosSqAlpha * (4 + f * (4 - 3 * cosSqAlpha)) - lambdap = lambda - - lambda = L + (1 - C) * f * sinAlpha * (sigma + C * sinSigma * (cos2SigmaM + C * cosSigma * (-1 + 2 * cos2SigmaM * cos2SigmaM))) - i -= 1 - Loop - - ' Erreor message wehen lambda can not be calculated - If i = 0 Then - logme(9, False, "Was not able to calculate the distance and bearing between koordinates.") - BWorker.CancelAsync() - Return 0 ' formula failed to converge - End If - - ' Calculate the distance - If Dist Then - uSq = cosSqAlpha * (a ^ 2 - b ^ 2) / (b ^ 2) - Ai = 1 + uSq / 16384 * (4096 + uSq * (-768 + uSq * (320 - 175 * uSq))) - Bi = uSq / 1024 * (256 + uSq * (-128 + uSq * (74 - 47 * uSq))) - deltaSigma = Bi * sinSigma * (cos2SigmaM + Bi / 4 * (cosSigma * (-1 + 2 * cos2SigmaM * cos2SigmaM) - Bi / 6 * cos2SigmaM * (-3 + 4 * sinSigma * sinSigma) * (-3 + 4 * cos2SigmaM * cos2SigmaM))) - s = b * Ai * (sigma - deltaSigma) - Return s - Else - ' Calculate the bearings - fwdAz = Math.Atan2(cosU2 * sinLambda, cosU1 * sinU2 - sinU1 * cosU2 * cosLambda) * 1 / toRad ' Forward azimut - revAz = Math.Atan2(cosU1 * sinLambda, -sinU1 * cosU2 + cosU1 * sinU2 * cosLambda) * 1 / toRad ' Bering in direction P1--> P2 - - ' Correct the Angle - If revAz < 0 Then revAz = 360 + revAz - Return revAz - End If - End Function ' Calculate the UTM coordinates Function UTM(ByVal Lat As Double, ByVal Lon As Double) As cUTMCoord diff --git a/CSE/Calculation/Signal_identification.vb b/CSE/Calculation/Signal_identification.vb index 16480128fae966419d26e27ccd99a88481ae329b..5882c5d2edd260cccd7d2becccc333c38f3cc95a 100644 --- a/CSE/Calculation/Signal_identification.vb +++ b/CSE/Calculation/Signal_identification.vb @@ -2,7 +2,7 @@ Module Signal_identification ' Divide the signal into there directions - Public Function fIdentifyMS(ByVal MSC As cMSC, ByRef vMSC As cVirtMSC, Optional ByVal virtMSC As Boolean = True, Optional ByVal SectionDev As Boolean = True) As Boolean + Public Sub fIdentifyMS(ByVal MSC As cMSC, ByRef vMSC As cVirtMSC, Optional ByVal virtMSC As Boolean = True, Optional ByVal SectionDev As Boolean = True) If virtMSC Then ' Calculation of the virtual MSC points fvirtMSC(MSC, vMSC) @@ -18,9 +18,7 @@ Module Signal_identification ' Leap in time control If JumpPoint <> -1 Then If CalcData(tCompCali.SecID)(JumpPoint) <> 0 Then - logme(9, False, "The detected leap in time is inside a measurement section. This is not allowed!") - BWorker.CancelAsync() - Return False + Throw New Exception(format("The detected leap in time({0}) is not allowed to be inside a measurement section!", CalcData(tCompCali.SecID)(JumpPoint))) End If End If @@ -30,9 +28,7 @@ Module Signal_identification ' Calculate the section overview fSecOverview(MSC) End If - - Return True - End Function + End Sub ' Calculation of the virtual trigger points Function fvirtMSC(ByVal MSCOrg As cMSC, ByRef MSCVirt As cVirtMSC) As Boolean @@ -724,10 +720,8 @@ Module Signal_identification ' Temprature, Pressure, Humidity For j = 0 To InputWeatherData(tCompWeat.t).Count - 1 If j = 0 Then - If CalcData(tCompCali.t)(i) < InputWeatherData(tCompWeat.t)(j) And j = 0 Then - logme(9, False, "The test time is outside the range of the data from the stationary weather station.") - BWorker.CancelAsync() - Return False + If CalcData(tCompCali.t)(i) < InputWeatherData(tCompWeat.t)(j) Then + Throw New Exception(format("The test time({0}) is outside the range of the data from the stationary weather station({1}).", CalcData(tCompCali.t)(i), InputWeatherData(tCompWeat.t)(j))) ElseIf CalcData(tCompCali.t)(i) >= InputWeatherData(tCompWeat.t)(j) And CalcData(tCompCali.t)(i) < InputWeatherData(tCompWeat.t)(j + 1) Then CalcData(tCompCali.t_amp_stat)(i) = InterpLinear(InputWeatherData(tCompWeat.t)(j), InputWeatherData(tCompWeat.t)(j + 1), InputWeatherData(tCompWeat.t_amb_stat)(j), InputWeatherData(tCompWeat.t_amb_stat)(j + 1), CalcData(tCompCali.t)(i)) CalcData(tCompCali.p_amp_stat)(i) = InterpLinear(InputWeatherData(tCompWeat.t)(j), InputWeatherData(tCompWeat.t)(j + 1), InputWeatherData(tCompWeat.p_amp_stat)(j), InputWeatherData(tCompWeat.p_amp_stat)(j + 1), CalcData(tCompCali.t)(i)) @@ -743,9 +737,7 @@ Module Signal_identification End If End If If j = InputWeatherData(tCompWeat.t).Count - 1 Then - logme(9, False, "The test time is outside the range of the data from the stationary weather station.") - BWorker.CancelAsync() - Return False + Throw New Exception(format("The test time is outside the range of the data from the stationary weather station.")) End If Next j Next i @@ -775,6 +767,7 @@ Module Signal_identification CalcData(tCompCali.slope_deg)(i) = 0 logme(9, False, "Standstill or loss of vehicle speed signal inside MS not permitted (Error at line " & i & ")") BWorker.CancelAsync() + ' XXXX: What is absolutely neccessary to run afterwards, and cannot return immediately here?? Else CalcData(tCompCali.slope_deg)(i) = (Math.Asin((CalcData(tCompCali.alt)(i + 1) - CalcData(tCompCali.alt)(i - 1)) / (CalcData(tCompCali.dist_root)(i + 1) - CalcData(tCompCali.dist_root)(i - 1)))) * 180 / Math.PI End If diff --git a/CSE/Calculation/main_calculation_call.vb b/CSE/Calculation/main_calculation_call.vb index 49d9268211deb0f038ebb3f24a2eb803bceb6cb3..8ec333e842f79c617a1afeef82093d07c31d649d 100644 --- a/CSE/Calculation/main_calculation_call.vb +++ b/CSE/Calculation/main_calculation_call.vb @@ -1,7 +1,7 @@ Public Module main_calculation_call ' Main calculation - Function calculation(ByVal isCalibrate As Boolean) As Boolean + Sub calculation(ByVal isCalibrate As Boolean) ' Declaration Dim i As Integer @@ -26,7 +26,7 @@ ReadDataFile(Job.calib_run_fpath, MSC) ' Exit function if error is detected - If BWorker.CancellationPending Then Return False + If BWorker.CancellationPending Then Return ' Output on the GUI logme(7, False, "Calculating the calibration run...") @@ -35,23 +35,23 @@ fIdentifyMS(MSC, vMSC) ' Exit function if error is detected - If BWorker.CancellationPending Then Return False + If BWorker.CancellationPending Then Return ' Output on the GUI logme(6, False, "Calculating the calibration run parameter") - ' Calculate the results from the calibration test - fCalcCalib(MSC, vehicle) + Try + ' Calculate the results from the calibration test + fCalcCalib(MSC, vehicle) - ' Exit function if error is detected - 'If BWorker.CancellationPending Then Return False - - ' Output on the GUI - logme(7, False, "Writing the output files...") + Finally + ' Output on the GUI + logme(7, False, "Writing the output files...") - ' Output - fOutDataCalc1Hz(Job.calib_run_fpath, isCalibrate) - fOutCalcRes(isCalibrate) + ' Output + fOutDataCalc1Hz(Job.calib_run_fpath, isCalibrate) + fOutCalcRes(isCalibrate) + End Try Else Dim MSC As New cMSC Dim vMSC As New cVirtMSC @@ -69,7 +69,7 @@ fIdentifyMS(MSC, vMSC, , False) ' Exit function if error is detected - If BWorker.CancellationPending Then Return False + If BWorker.CancellationPending Then Return ' Output which test are calculated For i = 0 To UBound(Job.coasting_fpaths) @@ -90,19 +90,19 @@ ReadDataFile(Job.coasting_fpaths(i), MSC) ' Exit function if error is detected - If BWorker.CancellationPending Then Return False + If BWorker.CancellationPending Then Return ' Identify the signal measurement sections fIdentifyMS(MSC, vMSC, False) ' Exit function if error is detected - If BWorker.CancellationPending Then Return False + If BWorker.CancellationPending Then Return ' Calculate the run fCalcRun(MSC, vehicle, i) ' Exit function if error is detected - If BWorker.CancellationPending Then Return False + If BWorker.CancellationPending Then Return ' Output on the GUI logme(6, False, "Writing the output files...") @@ -114,7 +114,7 @@ fSaveDic(i) ' Exit function if error is detected - If BWorker.CancellationPending Then Return False + If BWorker.CancellationPending Then Return ' Clear the dictionaries InputData = Nothing @@ -126,23 +126,18 @@ UnitsUndef = Nothing Next i - ' Check if the LS/HS test run is valid - fCheckLSHS() + Try + ' Check if the LS/HS test run is valid + fCheckLSHS() + + ' Calculate the regressions + fCalcReg(vehicle) + Finally - ' Exit function if error is detected - If BWorker.CancellationPending Then ' Write the summerised output file logme(7, False, "Writing the summarised output file...") fOutCalcRes(isCalibrate) - Return False - End If - - ' Calculate the regressions - fCalcReg(vehicle) - - ' Write the summerised output file - logme(7, False, "Writing the summarised output file...") - fOutCalcRes(isCalibrate) + End Try ' Check if all is valid For i = 0 To ErgValuesReg(tCompErgReg.SecID).Count - 1 @@ -168,12 +163,10 @@ InputWeatherData = Nothing UnitsWeat = Nothing End If - - Return True - End Function + End Sub ' Calculate the calibration test parameter - Function fCalcCalib(ByVal MSCX As cMSC, ByVal vehicleX As cVehicle) As Boolean + Sub fCalcCalib(ByVal MSCX As cMSC, ByVal vehicleX As cVehicle) ' Declaration Dim run As Integer Dim Change As Boolean @@ -220,15 +213,10 @@ ' Error If run > 10 Then - logme(9, False, "The calibration is not possible because iteration for valid datasets does not converge (n>10)") - Change = False - BWorker.CancelAsync() - Return False + Throw New Exception("The calibration is not possible because iteration for valid datasets does not converge (n>10)!") End If Loop - - Return True - End Function + End Sub ' Calculate the speed run parameter Function fCalcRun(ByVal MSCX As cMSC, ByVal vehicleX As cVehicle, ByVal coastingSeq As Integer) As Boolean @@ -254,7 +242,7 @@ End Function ' Function to calibrate fv_veh - Function ffv_veh(ByVal MSCX As cMSC) As Boolean + Sub ffv_veh(ByVal MSCX As cMSC) ' Declaration Dim i, j, CalcX(0), VSec(0), num As Integer Dim ave_vz(0), ave_vz2(0), ave_vn(0) As Double @@ -308,9 +296,7 @@ ' error message if the CAN velocity is 0 For i = 0 To UBound(CalcX) If ave_vn(i) = 0 And VSec(i) = 1 Then - logme(9, False, "The measured vehicle velocity (v_veh_CAN) is 0 in section: " & CalcX(i)) - BWorker.CancelAsync() - Return False + Throw New Exception("The measured vehicle velocity (v_veh_CAN) is 0 in section: " & CalcX(i)) End If Next i @@ -332,9 +318,7 @@ ' Calculate the average over all factors fv_veh = fv_veh / num fv_veh_opt2 = fv_veh_opt2 / num - - Return True - End Function + End Sub Function ffvpeBeta() As Boolean ' Declaration @@ -465,7 +449,7 @@ End Function ' Function to check if the calibration run is valid - Function fCheckCalib(ByVal Run As Integer, ByRef Change As Boolean) As Boolean + Sub fCheckCalib(ByVal Run As Integer, ByRef Change As Boolean) ' Declaration Dim i, j, k, anz As Integer Dim control As Boolean @@ -551,9 +535,7 @@ ' Ceck if enough sections are detected If SecCount.AnzSec.Count - 1 < 1 Then - logme(9, False, "Insufficent numbers of valid measurement sections available") - BWorker.CancelAsync() - Return False + Throw New Exception(format("Insufficent numbers of valid measurement sections({0}) available!", SecCount.AnzSec.Count)) End If ' Check if enough valid sections in both directionsection @@ -612,9 +594,7 @@ End If Next i If anz < 2 Then - logme(9, False, "Insufficent numbers of valid measurement sections available") - BWorker.CancelAsync() - Return False + Throw New Exception(format("Insufficent numbers of valid measurement sections({0}) available!", anz)) End If ' Look if something have changed @@ -627,12 +607,10 @@ Else Change = True End If - - Return True - End Function + End Sub ' Function to check if the calibration run is valid - Function fCheckLSHS() As Boolean + Sub fCheckLSHS() ' Declaration Dim i, j, k, anz, anzHS1, anzHS2 As Integer Dim control, FirstIn As Boolean @@ -700,9 +678,7 @@ ' Ceck if enough sections are detected If SecCount.AnzSec.Count - 1 < 1 Then - logme(9, False, "Insufficent numbers of valid measurement sections in the low speed test available") - BWorker.CancelAsync() - Return False + Throw New Exception(format("Insufficent numbers of valid measurement sections({0}) in the low speed test available!", SecCount.AnzSec.Count)) End If ' Check if enough valid sections in both directionsection @@ -741,6 +717,7 @@ End If Else logme(9, False, "Not enough valid data for low speed tests available in section " & Trim(Mid(SecCount.NameSec(i), 1, InStr(SecCount.NameSec(i), "(") - 2))) + ' FIXME: is this an error? End If End If Next j @@ -816,9 +793,7 @@ ' Ceck if enough sections are detected If SecCount.AnzSec.Count - 1 < 1 Then - logme(9, False, "Insufficent numbers of valid measurement sections in the high speed test available") - BWorker.CancelAsync() - Return False + Throw New Exception(format("Insufficent numbers of valid measurement sections({0}) in the high speed test available!", SecCount.AnzSec.Count)) End If ' Check if enough valid sections in both directionsection @@ -828,19 +803,17 @@ ' If enought sections in both directions are detected If SecCount.AnzSec(i) >= Crt.segruns_min_HS And SecCount.AnzSec(j) >= Crt.segruns_min_HS Then ' Count the valid tests per HeadID - Select Case Trim(Mid(SecCount.NameSec(i), InStr(SecCount.NameSec(i), ",") + 1, InStr(SecCount.NameSec(i), ")") - (InStr(SecCount.NameSec(i), ",") + 1))) + Dim headId = Trim(Mid(SecCount.NameSec(i), InStr(SecCount.NameSec(i), ",") + 1, InStr(SecCount.NameSec(i), ")") - (InStr(SecCount.NameSec(i), ",") + 1))) + Select Case headId Case 1 anzHS1 += SecCount.AnzSec(i) + SecCount.AnzSec(j) Case 2 anzHS2 += SecCount.AnzSec(i) + SecCount.AnzSec(j) Case Else - logme(9, False, "headID not known") - BWorker.CancelAsync() - Return False + Throw New Exception(format("Unknown headID({0})!", headId)) End Select Else - logme(9, False, "Not enough valid data for high speed tests available in section " & Trim(Mid(SecCount.NameSec(i), 1, InStr(SecCount.NameSec(i), "(") - 2))) - BWorker.CancelAsync() + Throw New Exception(format("Not enough valid data({0}) for high speed tests available in section({1})!", SecCount.AnzSec(i), Trim(Mid(SecCount.NameSec(i), 1, InStr(SecCount.NameSec(i), "(") - 2)))) End If End If Next j @@ -848,9 +821,7 @@ ' Ceck if enough sections are detected If anzHS1 < Crt.segruns_min_head_MS Or anzHS2 < Crt.segruns_min_head_MS Then - logme(9, False, "Number of valid high speed datasets too low") - BWorker.CancelAsync() - 'Return False + Throw New Exception(format("Number of valid high speed datasets({0}) too low!", anzHS1)) End If ' Set to equal Values @@ -886,12 +857,10 @@ Next i End If End If - - Return True - End Function + End Sub ' Evaluate the Valid sections - Function fCalcValidSec(ByVal MSCX As cMSC, ByVal coastingSeq As Integer) As Boolean + Sub fCalcValidSec(ByVal MSCX As cMSC, ByVal coastingSeq As Integer) ' Declaration Dim i As Integer @@ -958,11 +927,10 @@ Next i End Select - Return True - End Function + End Sub ' Save the Dictionaries - Function fSaveDic(ByVal coastingSeq As Integer) As Boolean + Sub fSaveDic(ByVal coastingSeq As Integer) ' Declaration Dim sKV As New KeyValuePair(Of tCompErg, List(Of Double)) Dim sKVUndef As New KeyValuePair(Of String, List(Of Double)) @@ -994,7 +962,5 @@ ErgValuesUndefComp(sKVUndef.Key).AddRange(ErgValuesUndef(sKVUndef.Key)) Next End If - - Return True - End Function + End Sub End Module diff --git a/CSE/Classes/cFile_v3.vb b/CSE/Classes/cFile_v3.vb index 5be19fd74e73ee174f94ef7022ed577819861b0a..cab3463cd50edf6026f4e7a9f39d7772fdd85c7a 100644 --- a/CSE/Classes/cFile_v3.vb +++ b/CSE/Classes/cFile_v3.vb @@ -205,7 +205,7 @@ lb10: Next ' Abfrage ob Datei blockiert If IsNothing(StrWrter) Then - BWorker.CancelAsync() + BWorker.CancelAsync() ' FIXME: Totaly unrelated here, file-io should not know anything about the worker-thread. FileBlock = True Exit Sub End If @@ -216,7 +216,9 @@ lb10: Public Sub WriteLine(ByVal x As String) ' Polling if the file is blocked If IsNothing(StrWrter) Then - If BWorker IsNot Nothing Then BWorker.CancelAsync() + If BWorker IsNot Nothing Then + BWorker.CancelAsync() ' FIXME: Totaly unrelated here, file-io should not know anything about the worker-thread. + End If FileBlock = True Exit Sub End If diff --git a/CSE/Classes/cVirtMSC.vb b/CSE/Classes/cVirtMSC.vb index 2e822eaa35685a8a86d7a46d886f5a57845c13f2..b46548382f15b1f16b44c490000e1c9be1397d8b 100644 --- a/CSE/Classes/cVirtMSC.vb +++ b/CSE/Classes/cVirtMSC.vb @@ -18,8 +18,8 @@ meID.Add(0) dID.Add(0) - KoordA.Add({0}) - KoordE.Add({0}) + KoordA.Add(New Integer() {0}) + KoordE.Add(New Integer() {0}) NewSec.Add(0) Head.Add(0) End Sub diff --git a/CSE/GUI/F_About.Designer.vb b/CSE/GUI/F_About.Designer.vb index f9c2dd250da57fe55918056d7f08d4ba84beb562..2cc70bb5154f4e4e7ada537abf36e780182dc453 100644 --- a/CSE/GUI/F_About.Designer.vb +++ b/CSE/GUI/F_About.Designer.vb @@ -43,6 +43,7 @@ Partial Class F_About Me.Label6 = New System.Windows.Forms.Label() Me.LinkLicensed = New System.Windows.Forms.LinkLabel() Me.Label13 = New System.Windows.Forms.Label() + Me.LVersion = New System.Windows.Forms.Label() CType(Me.PictureBoxJRC, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.PictureBoxTUG, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.PictureBoxFVT, System.ComponentModel.ISupportInitialize).BeginInit() @@ -252,12 +253,23 @@ Partial Class F_About Me.Label13.TabIndex = 20 Me.Label13.Text = "Copyright: 2014 European Union" ' - 'F_Info + 'LVersion + ' + Me.LVersion.AutoSize = True + Me.LVersion.Font = New System.Drawing.Font("Microsoft Sans Serif", 11.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.LVersion.Location = New System.Drawing.Point(207, 56) + Me.LVersion.Name = "LVersion" + Me.LVersion.Size = New System.Drawing.Size(65, 18) + Me.LVersion.TabIndex = 22 + Me.LVersion.Text = "Version" + ' + 'F_About ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.BackColor = System.Drawing.Color.White Me.ClientSize = New System.Drawing.Size(474, 567) + Me.Controls.Add(Me.LVersion) Me.Controls.Add(Me.LinkLicensed) Me.Controls.Add(Me.Label13) Me.Controls.Add(Me.LinkLabel1) @@ -282,7 +294,7 @@ Partial Class F_About Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.MaximumSize = New System.Drawing.Size(480, 591) Me.MinimumSize = New System.Drawing.Size(480, 591) - Me.Name = "F_Info" + Me.Name = "F_About" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "About CSE" CType(Me.PictureBoxJRC, System.ComponentModel.ISupportInitialize).EndInit() @@ -312,4 +324,5 @@ Partial Class F_About Friend WithEvents Label6 As System.Windows.Forms.Label Friend WithEvents LinkLicensed As System.Windows.Forms.LinkLabel Friend WithEvents Label13 As System.Windows.Forms.Label + Friend WithEvents LVersion As System.Windows.Forms.Label End Class diff --git a/CSE/GUI/F_About.vb b/CSE/GUI/F_About.vb index c1b57dc3c95332e7d0af7272d8b0f30e9c20f45f..53d14e2a4db0ec0738b1e8551e32017be47a5f96 100644 --- a/CSE/GUI/F_About.vb +++ b/CSE/GUI/F_About.vb @@ -4,6 +4,7 @@ Public Class F_About 'Initialisation Private Sub F10_AboutBox_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.Text = "VECTO CSE" + Me.LVersion.Text = format("v{0}", AppVers) End Sub 'e-mail links---------------------------------------------------------------- diff --git a/CSE/GUI/F_Main.Designer.vb b/CSE/GUI/F_Main.Designer.vb index ae1e28231237bb4196f1e48f5f686136073a0abd..5a7ae4ed89dc3b6aeff8f1794587db55b6c390e5 100644 --- a/CSE/GUI/F_Main.Designer.vb +++ b/CSE/GUI/F_Main.Designer.vb @@ -36,7 +36,6 @@ Partial Class F_Main Me.ToolStripSeparator3 = New System.Windows.Forms.ToolStripSeparator() Me.ToolStripMenuItemOption = New System.Windows.Forms.ToolStripMenuItem() Me.InfoToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() - Me.CreatActivationFileToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripMenuItemAbout = New System.Windows.Forms.ToolStripMenuItem() Me.ToolStripMenuItemManu = New System.Windows.Forms.ToolStripMenuItem() Me.BackgroundWorkerVECTO = New System.ComponentModel.BackgroundWorker() @@ -228,6 +227,9 @@ Partial Class F_Main Me.Label20 = New System.Windows.Forms.Label() Me.LRhoAirRef = New System.Windows.Forms.Label() Me.TB_roh_air_ref = New System.Windows.Forms.TextBox() + Me.ToolStripMenuItem1 = New System.Windows.Forms.ToolStripSeparator() + Me.CreateActivationFileToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.ToolStripMenuItem2 = New System.Windows.Forms.ToolStripSeparator() Me.MenuStrip1.SuspendLayout() Me.GroupBoxJob.SuspendLayout() Me.GB_hz_out.SuspendLayout() @@ -310,7 +312,7 @@ Partial Class F_Main ' 'ToolsToolStripMenuItem ' - Me.ToolsToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuItemClearLog, Me.ToolStripMenuItemLog, Me.ToolStripSeparator3, Me.ToolStripMenuItemOption}) + Me.ToolsToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuItemClearLog, Me.ToolStripMenuItemLog, Me.ToolStripMenuItem2, Me.CreateActivationFileToolStripMenuItem, Me.ToolStripSeparator3, Me.ToolStripMenuItemOption}) Me.ToolsToolStripMenuItem.Name = "ToolsToolStripMenuItem" Me.ToolsToolStripMenuItem.Size = New System.Drawing.Size(48, 20) Me.ToolsToolStripMenuItem.Text = "Tools" @@ -318,54 +320,47 @@ Partial Class F_Main 'MenuItemClearLog ' Me.MenuItemClearLog.Name = "MenuItemClearLog" - Me.MenuItemClearLog.Size = New System.Drawing.Size(144, 22) + Me.MenuItemClearLog.Size = New System.Drawing.Size(186, 22) Me.MenuItemClearLog.Text = "Clear Log" ' 'ToolStripMenuItemLog ' Me.ToolStripMenuItemLog.Image = Global.CSE.My.Resources.Resources.Log_File Me.ToolStripMenuItemLog.Name = "ToolStripMenuItemLog" - Me.ToolStripMenuItemLog.Size = New System.Drawing.Size(144, 22) + Me.ToolStripMenuItemLog.Size = New System.Drawing.Size(186, 22) Me.ToolStripMenuItemLog.Text = "Open LogFile" ' 'ToolStripSeparator3 ' Me.ToolStripSeparator3.Name = "ToolStripSeparator3" - Me.ToolStripSeparator3.Size = New System.Drawing.Size(141, 6) + Me.ToolStripSeparator3.Size = New System.Drawing.Size(183, 6) ' 'ToolStripMenuItemOption ' Me.ToolStripMenuItemOption.Image = Global.CSE.My.Resources.Resources.Optionen Me.ToolStripMenuItemOption.Name = "ToolStripMenuItemOption" - Me.ToolStripMenuItemOption.Size = New System.Drawing.Size(144, 22) + Me.ToolStripMenuItemOption.Size = New System.Drawing.Size(186, 22) Me.ToolStripMenuItemOption.Text = "Preferences" ' 'InfoToolStripMenuItem ' Me.InfoToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right - Me.InfoToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.CreatActivationFileToolStripMenuItem, Me.ToolStripMenuItemAbout, Me.ToolStripMenuItemManu}) + Me.InfoToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripMenuItemManu, Me.ToolStripMenuItem1, Me.ToolStripMenuItemAbout}) Me.InfoToolStripMenuItem.Name = "InfoToolStripMenuItem" Me.InfoToolStripMenuItem.Size = New System.Drawing.Size(44, 20) Me.InfoToolStripMenuItem.Text = "Help" ' - 'CreatActivationFileToolStripMenuItem - ' - Me.CreatActivationFileToolStripMenuItem.Image = Global.CSE.My.Resources.Resources.Licencefile - Me.CreatActivationFileToolStripMenuItem.Name = "CreatActivationFileToolStripMenuItem" - Me.CreatActivationFileToolStripMenuItem.Size = New System.Drawing.Size(186, 22) - Me.CreatActivationFileToolStripMenuItem.Text = "Create Activation File" - ' 'ToolStripMenuItemAbout ' Me.ToolStripMenuItemAbout.Image = Global.CSE.My.Resources.Resources.Info Me.ToolStripMenuItemAbout.Name = "ToolStripMenuItemAbout" - Me.ToolStripMenuItemAbout.Size = New System.Drawing.Size(186, 22) + Me.ToolStripMenuItemAbout.Size = New System.Drawing.Size(152, 22) Me.ToolStripMenuItemAbout.Text = "About CSE" ' 'ToolStripMenuItemManu ' Me.ToolStripMenuItemManu.Name = "ToolStripMenuItemManu" - Me.ToolStripMenuItemManu.Size = New System.Drawing.Size(186, 22) + Me.ToolStripMenuItemManu.Size = New System.Drawing.Size(152, 22) Me.ToolStripMenuItemManu.Text = "User Manual" ' 'BackgroundWorkerVECTO @@ -376,7 +371,7 @@ Partial Class F_Main 'GroupBoxJob ' Me.GroupBoxJob.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.GroupBoxJob.Controls.Add(Me.TextBoxWeather) Me.GroupBoxJob.Controls.Add(Me.ButtonWeather) Me.GroupBoxJob.Controls.Add(Me.ButtonSelectWeather) @@ -395,7 +390,7 @@ Partial Class F_Main 'TextBoxWeather ' Me.TextBoxWeather.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TextBoxWeather.Location = New System.Drawing.Point(144, 42) Me.TextBoxWeather.Margin = New System.Windows.Forms.Padding(2) Me.TextBoxWeather.Name = "TextBoxWeather" @@ -428,7 +423,7 @@ Partial Class F_Main 'TextBoxVeh1 ' Me.TextBoxVeh1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TextBoxVeh1.Location = New System.Drawing.Point(145, 15) Me.TextBoxVeh1.Margin = New System.Windows.Forms.Padding(2) Me.TextBoxVeh1.Name = "TextBoxVeh1" @@ -639,7 +634,7 @@ Partial Class F_Main 'GroupBoxInput ' Me.GroupBoxInput.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.GroupBoxInput.Controls.Add(Me.ButtonDataLS1) Me.GroupBoxInput.Controls.Add(Me.TextBoxDataLS2) Me.GroupBoxInput.Controls.Add(Me.ButtonSelectDataLS1) @@ -677,7 +672,7 @@ Partial Class F_Main 'TextBoxDataLS2 ' Me.TextBoxDataLS2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TextBoxDataLS2.Location = New System.Drawing.Point(145, 110) Me.TextBoxDataLS2.Margin = New System.Windows.Forms.Padding(2) Me.TextBoxDataLS2.Name = "TextBoxDataLS2" @@ -710,7 +705,7 @@ Partial Class F_Main 'TextBoxDataLS1 ' Me.TextBoxDataLS1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TextBoxDataLS1.Location = New System.Drawing.Point(145, 56) Me.TextBoxDataLS1.Margin = New System.Windows.Forms.Padding(2) Me.TextBoxDataLS1.Name = "TextBoxDataLS1" @@ -744,7 +739,7 @@ Partial Class F_Main 'TextBoxDataHS ' Me.TextBoxDataHS.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TextBoxDataHS.Location = New System.Drawing.Point(144, 83) Me.TextBoxDataHS.Margin = New System.Windows.Forms.Padding(2) Me.TextBoxDataHS.Name = "TextBoxDataHS" @@ -781,7 +776,7 @@ Partial Class F_Main 'TextBoxMSCT ' Me.TextBoxMSCT.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TextBoxMSCT.Location = New System.Drawing.Point(144, 19) Me.TextBoxMSCT.Margin = New System.Windows.Forms.Padding(2) Me.TextBoxMSCT.Name = "TextBoxMSCT" @@ -860,7 +855,7 @@ Partial Class F_Main 'GroupBox1 ' Me.GroupBox1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.GroupBox1.Controls.Add(Me.TextBoxDataC) Me.GroupBox1.Controls.Add(Me.ButtonDataC) Me.GroupBox1.Controls.Add(Me.ButtonSelectDataC) @@ -879,7 +874,7 @@ Partial Class F_Main 'TextBoxDataC ' Me.TextBoxDataC.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TextBoxDataC.Location = New System.Drawing.Point(144, 47) Me.TextBoxDataC.Margin = New System.Windows.Forms.Padding(2) Me.TextBoxDataC.Name = "TextBoxDataC" @@ -912,7 +907,7 @@ Partial Class F_Main 'TextBoxMSCC ' Me.TextBoxMSCC.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TextBoxMSCC.Location = New System.Drawing.Point(144, 20) Me.TextBoxMSCC.Margin = New System.Windows.Forms.Padding(2) Me.TextBoxMSCC.Name = "TextBoxMSCC" @@ -1048,8 +1043,8 @@ Partial Class F_Main ' Me.TabControlOutMsg.Alignment = System.Windows.Forms.TabAlignment.Bottom Me.TabControlOutMsg.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TabControlOutMsg.Controls.Add(Me.TabPageMSG) Me.TabControlOutMsg.Controls.Add(Me.TabPageWar) Me.TabControlOutMsg.Controls.Add(Me.TabPageErr) @@ -1077,8 +1072,8 @@ Partial Class F_Main 'ListBoxMSG ' Me.ListBoxMSG.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.ListBoxMSG.Font = New System.Drawing.Font("Consolas", 8.5!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.ListBoxMSG.FormattingEnabled = True Me.ListBoxMSG.HorizontalScrollbar = True @@ -1104,8 +1099,8 @@ Partial Class F_Main 'ListBoxWar ' Me.ListBoxWar.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.ListBoxWar.Font = New System.Drawing.Font("Consolas", 8.5!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.ListBoxWar.FormattingEnabled = True Me.ListBoxWar.HorizontalScrollbar = True @@ -1130,8 +1125,8 @@ Partial Class F_Main 'ListBoxErr ' Me.ListBoxErr.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ - Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Left) _ + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.ListBoxErr.Font = New System.Drawing.Font("Consolas", 8.5!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.ListBoxErr.FormattingEnabled = True Me.ListBoxErr.HorizontalScrollbar = True @@ -1145,7 +1140,7 @@ Partial Class F_Main 'TextBoxVeh ' Me.TextBoxVeh.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TextBoxVeh.Location = New System.Drawing.Point(98, 19) Me.TextBoxVeh.Margin = New System.Windows.Forms.Padding(2) Me.TextBoxVeh.Name = "TextBoxVeh" @@ -1155,7 +1150,7 @@ Partial Class F_Main 'TabControl1 ' Me.TabControl1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _ - Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) + Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.TabControl1.Controls.Add(Me.TPMain) Me.TabControl1.Controls.Add(Me.TPCriteria) Me.TabControl1.Location = New System.Drawing.Point(8, 72) @@ -2329,6 +2324,22 @@ Partial Class F_Main Me.TB_roh_air_ref.TabIndex = 1 Me.TB_roh_air_ref.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' + 'ToolStripMenuItem1 + ' + Me.ToolStripMenuItem1.Name = "ToolStripMenuItem1" + Me.ToolStripMenuItem1.Size = New System.Drawing.Size(149, 6) + ' + 'CreateActivationFileToolStripMenuItem + ' + Me.CreateActivationFileToolStripMenuItem.Name = "CreateActivationFileToolStripMenuItem" + Me.CreateActivationFileToolStripMenuItem.Size = New System.Drawing.Size(186, 22) + Me.CreateActivationFileToolStripMenuItem.Text = "Create Activation File" + ' + 'ToolStripMenuItem2 + ' + Me.ToolStripMenuItem2.Name = "ToolStripMenuItem2" + Me.ToolStripMenuItem2.Size = New System.Drawing.Size(183, 6) + ' 'F_Main ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) @@ -2518,7 +2529,6 @@ Partial Class F_Main Friend WithEvents Label84 As System.Windows.Forms.Label Friend WithEvents TB_t_amb_tarmac As System.Windows.Forms.TextBox Friend WithEvents LB_t_amb_min As System.Windows.Forms.Label - Friend WithEvents CreatActivationFileToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem Friend WithEvents PBInfoIconCrt As System.Windows.Forms.PictureBox Friend WithEvents TBInfoCrt As System.Windows.Forms.TextBox Friend WithEvents GroupBox9 As System.Windows.Forms.GroupBox @@ -2601,5 +2611,8 @@ Partial Class F_Main Friend WithEvents TBInfoMain As System.Windows.Forms.TextBox Friend WithEvents PbInfoIconMain As System.Windows.Forms.PictureBox Friend WithEvents MenuItemExit As System.Windows.Forms.ToolStripMenuItem + Friend WithEvents ToolStripMenuItem1 As System.Windows.Forms.ToolStripSeparator + Friend WithEvents ToolStripMenuItem2 As System.Windows.Forms.ToolStripSeparator + Friend WithEvents CreateActivationFileToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem End Class diff --git a/CSE/GUI/F_Main.vb b/CSE/GUI/F_Main.vb index 03ba566301802025c295bbb2fd2d192ff46ca1ab..cfa21703e2c50f828f6376ef961f06fa17ec8371 100644 --- a/CSE/GUI/F_Main.vb +++ b/CSE/GUI/F_Main.vb @@ -157,11 +157,11 @@ Public Class F_Main Handles BackgroundWorkerVECTO.RunWorkerCompleted ' If an Error is detected If e.Error IsNot Nothing Then - logme(8, False, format("Backround operation ended with exception: {0}", e.Error.Message), e.Error) + logme(8, False, format("Background operation ended with exception: {0}", e.Error.Message), e.Error) ElseIf e.Cancelled Then - logme(7, False, "Backround operation aborted by user.") + logme(7, False, "Background operation aborted by user.") Else - logme(7, False, "Backround operation ended OK.") + logme(7, False, "Background operation ended OK.") Dim asyncJob As cAsyncJob = e.Result If asyncJob.IsCalibration Then Me.ButtonEval.Enabled = True End If @@ -184,8 +184,8 @@ Public Class F_Main '#### Only HERE manage "Exec" button's state (Text, Image, etc). #### '#################################################################### Private _CalibrationState As Boolean = False - Private _CalibrationTxts = {"Calibrate", "Cancel"} - Private _CalibrationImgs = {My.Resources.Resources.Play_icon, My.Resources.Resources.Stop_icon} + Private ReadOnly _CalibrationTxts = {"Calibrate", "Cancel"} + Private ReadOnly _CalibrationImgs = {My.Resources.Resources.Play_icon, My.Resources.Resources.Stop_icon} Private Property CalibrationState As Boolean Get Return _CalibrationState @@ -195,7 +195,7 @@ Public Class F_Main Dim indx = -CInt(value) Me.ButtonCalC.Text = _CalibrationTxts(indx) Me.ButtonCalC.Image = _CalibrationImgs(indx) - Me.ButtonCalC.UseWaitCursor = value + Me.UseWaitCursor = value End If _CalibrationState = value End Set @@ -265,8 +265,8 @@ Public Class F_Main '#### Only HERE manage "Exec" button's state (Text, Image, etc). #### '#################################################################### Private _EvaluationState As Boolean = False - Private _EvaluationTxts = {"Evaluate", "Cancel"} - Private _EvaluationImgs = {My.Resources.Resources.Play_icon, My.Resources.Resources.Stop_icon} + Private ReadOnly _EvaluationTxts = {"Evaluate", "Cancel"} + Private ReadOnly _EvaluationImgs = {My.Resources.Resources.Play_icon, My.Resources.Resources.Stop_icon} Private Property EvaluationState As Boolean Get Return _EvaluationState @@ -276,7 +276,7 @@ Public Class F_Main Dim indx = -CInt(value) Me.ButtonEval.Text = _EvaluationTxts(indx) Me.ButtonEval.Image = _EvaluationImgs(indx) - Me.ButtonEval.UseWaitCursor = value + Me.UseWaitCursor = value End If _EvaluationState = value End Set @@ -867,7 +867,8 @@ Public Class F_Main #Region "Infos menu" ' Create activation file - Private Sub CreatActivationFileToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CreatActivationFileToolStripMenuItem.Click + + Private Sub CreatActivationFileToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CreateActivationFileToolStripMenuItem.Click Lic.CreateActFile(MyPath & "ActivationCode.dat") logme(7, True, "Activation code created under: " & MyPath & "ActivationCode.dat") End Sub diff --git a/CSE/IO/cCriteria.vb b/CSE/IO/cCriteria.vb index 2ad4608ee1cf3a7b4cd184c6d567eb9df130c446..31f58c018a0ed07863e2f73429be2c1b46b6dd3b 100644 --- a/CSE/IO/cCriteria.vb +++ b/CSE/IO/cCriteria.vb @@ -12,11 +12,8 @@ Public Class cCriteria End Function - Private ForeignBody As JToken - - '' Default values are Decleration - Public Shared Function BuildBody() As JObject + Private Shared Function BuildBody() As JObject Dim b, g As Object b = New JObject() @@ -252,17 +249,14 @@ Public Class cCriteria ''' <remarks>See cJsonFile() constructor</remarks> Sub New(Optional ByVal skipValidation As Boolean = False) MyBase.New(BuildBody, skipValidation) - PopulateFields() End Sub ''' <summary>Reads from file or creates defaults</summary> ''' <param name="inputFilePath">the fpath of the file to read data from</param> Sub New(ByVal inputFilePath As String, Optional ByVal skipValidation As Boolean = False) MyBase.New(inputFilePath, skipValidation) - PopulateFields() End Sub Sub New(ByVal foreignBody As JToken, Optional ByVal skipValidation As Boolean = False) MyBase.New(foreignBody, skipValidation) - PopulateFields() End Sub @@ -275,8 +269,8 @@ Public Class cCriteria Protected Overrides Sub ValidateBody(ByVal isStrictBody As Boolean, ByVal validateMsgs As IList(Of String)) '' Check version '' - Dim fromVersion = "1.0.0--" - Dim toVersion = "2.0.0--" ' The earliest pre-release. + Const fromVersion = "1.0.0--" + Const toVersion = "2.0.0--" ' The earliest pre-release. If Not IsSemanticVersionsSupported(Me.FileVersion, fromVersion, toVersion) Then validateMsgs.Add(format("Unsupported FileVersion({0}, was not in between [{1}, {2})", Me.FileVersion, fromVersion, toVersion)) Return @@ -337,62 +331,7 @@ Public Class cCriteria Public t_amb_tarmac As Single - ''' <summary>Override it to set custome fields</summary> - Overrides Sub Store(ByVal fpath As String, Optional ByVal prefs As cPreferences = Nothing) - Dim g, b As Object - b = Me.Body - - g = b("Processing") - g.roh_air_ref = Me.roh_air_ref - g.accel_correction = Me.accel_correction - g.gradient_correction = Me.gradient_correction - g.hz_out = Me.hz_out - g.rr_corr_factor = Me.rr_corr_factor - g.acc_corr_avg = Me.acc_corr_avg - g.dist_float = Me.dist_float - - g = b("Validation") - g.trigger_delta_x_max = Me.trigger_delta_x_max - g.trigger_delta_y_max = Me.trigger_delta_y_max - g.delta_head_max = Me.delta_head_max - g.segruns_min_CAL = Me.segruns_min_CAL - g.segruns_min_LS = Me.segruns_min_LS - g.segruns_min_HS = Me.segruns_min_HS - g.segruns_min_head_MS = Me.segruns_min_head_MS - g.delta_Hz_max = Me.delta_Hz_max - g.delta_parallel_max = Me.delta_parallel_max - - g.v_wind_avg_max_CAL = Me.v_wind_avg_max_CAL - g.v_wind_1s_max_CAL = Me.v_wind_1s_max_CAL - g.beta_avg_max_CAL = Me.beta_avg_max_CAL - - g.leng_crit = Me.leng_crit - - g.v_wind_avg_max_LS = Me.v_wind_avg_max_LS - g.v_wind_1s_max_LS = Me.v_wind_1s_max_LS - g.v_veh_avg_min_LS = Me.v_veh_avg_min_LS - g.v_veh_avg_max_LS = Me.v_veh_avg_max_LS - g.v_veh_float_delta_LS = Me.v_veh_float_delta_LS - g.tq_sum_float_delta_LS = Me.tq_sum_float_delta_LS - - g.v_wind_avg_max_HS = Me.v_wind_avg_max_HS - g.v_wind_1s_max_HS = Me.v_wind_1s_max_HS - g.beta_avg_max_HS = Me.beta_avg_max_HS - g.v_veh_avg_min_HS = Me.v_veh_avg_min_HS - g.v_veh_1s_delta_HS = Me.v_veh_1s_delta_HS - g.tq_sum_1s_delta_HS = Me.tq_sum_1s_delta_HS - - g.delta_t_tyre_max = Me.delta_t_tyre_max - g.delta_rr_corr_max = Me.delta_rr_corr_max - g.t_amb_var = Me.t_amb_var - g.t_amb_tarmac = Me.t_amb_tarmac - g.t_amb_max = Me.t_amb_max - g.t_amb_min = Me.t_amb_min - - MyBase.Store(fpath, prefs) - End Sub - - Private Sub PopulateFields() + Protected Overrides Sub OnContentUpdated() Dim g, p As Object p = Me.Body @@ -445,6 +384,59 @@ Public Class cCriteria Me.t_amb_min = g("t_amb_min") End Sub + ''' <summary>Override it to set custome fields</summary> + Protected Overrides Sub OnBeforeContentStored() + Dim g, b As Object + b = Me.Body + + g = b("Processing") + g.roh_air_ref = Me.roh_air_ref + g.accel_correction = Me.accel_correction + g.gradient_correction = Me.gradient_correction + g.hz_out = Me.hz_out + g.rr_corr_factor = Me.rr_corr_factor + g.acc_corr_avg = Me.acc_corr_avg + g.dist_float = Me.dist_float + + g = b("Validation") + g.trigger_delta_x_max = Me.trigger_delta_x_max + g.trigger_delta_y_max = Me.trigger_delta_y_max + g.delta_head_max = Me.delta_head_max + g.segruns_min_CAL = Me.segruns_min_CAL + g.segruns_min_LS = Me.segruns_min_LS + g.segruns_min_HS = Me.segruns_min_HS + g.segruns_min_head_MS = Me.segruns_min_head_MS + g.delta_Hz_max = Me.delta_Hz_max + g.delta_parallel_max = Me.delta_parallel_max + + g.v_wind_avg_max_CAL = Me.v_wind_avg_max_CAL + g.v_wind_1s_max_CAL = Me.v_wind_1s_max_CAL + g.beta_avg_max_CAL = Me.beta_avg_max_CAL + + g.leng_crit = Me.leng_crit + + g.v_wind_avg_max_LS = Me.v_wind_avg_max_LS + g.v_wind_1s_max_LS = Me.v_wind_1s_max_LS + g.v_veh_avg_min_LS = Me.v_veh_avg_min_LS + g.v_veh_avg_max_LS = Me.v_veh_avg_max_LS + g.v_veh_float_delta_LS = Me.v_veh_float_delta_LS + g.tq_sum_float_delta_LS = Me.tq_sum_float_delta_LS + + g.v_wind_avg_max_HS = Me.v_wind_avg_max_HS + g.v_wind_1s_max_HS = Me.v_wind_1s_max_HS + g.beta_avg_max_HS = Me.beta_avg_max_HS + g.v_veh_avg_min_HS = Me.v_veh_avg_min_HS + g.v_veh_1s_delta_HS = Me.v_veh_1s_delta_HS + g.tq_sum_1s_delta_HS = Me.tq_sum_1s_delta_HS + + g.delta_t_tyre_max = Me.delta_t_tyre_max + g.delta_rr_corr_max = Me.delta_rr_corr_max + g.t_amb_var = Me.t_amb_var + g.t_amb_tarmac = Me.t_amb_tarmac + g.t_amb_max = Me.t_amb_max + g.t_amb_min = Me.t_amb_min + End Sub + #End Region ' json props End Class diff --git a/CSE/IO/cJob.vb b/CSE/IO/cJob.vb index f4ae487764179f88b5cf4bd8bef49b944b9d813e..3a26b1b1ba382a314030bc9f7faa127cc2a05950 100644 --- a/CSE/IO/cJob.vb +++ b/CSE/IO/cJob.vb @@ -98,13 +98,11 @@ Public Class cJob ''' <remarks>See cJsonFile() constructor</remarks> Sub New(Optional ByVal skipValidation As Boolean = False) MyBase.New(BuildBody, skipValidation) - PopulateFields() End Sub ''' <summary>Reads from file or creates defaults</summary> ''' <param name="inputFilePath">the fpath of the file to read data from</param> Sub New(ByVal inputFilePath As String, Optional ByVal skipValidation As Boolean = False) MyBase.New(inputFilePath, skipValidation) - PopulateFields() End Sub @@ -142,7 +140,7 @@ Public Class cJob Public beta_f As Double Public beta_d As Double - Private Sub PopulateFields() + Protected Overrides Sub OnContentUpdated() Dim anem = PropOrDefault(".Anemometer") Me.v_air_f = anem("v_air_f") Me.v_air_d = anem("v_air_d") @@ -151,15 +149,13 @@ Public Class cJob End Sub ''' <summary>Override it to set custome fields</summary> - Overrides Sub Store(ByVal fpath As String, Optional ByVal prefs As cPreferences = Nothing) + Protected Overrides Sub OnBeforeContentStored() Dim b As Object = Me.Body b.v_air_f = Me.v_air_f b.v_air_d = Me.v_air_d b.beta_f = Me.beta_f b.beta_d = Me.beta_d - - MyBase.Store(fpath, prefs) End Sub @@ -296,10 +292,10 @@ Public Class cJob For i = 0 To UBound(factors) - 1 factors(i) = Line(i) Next i - Job.v_air_f = factors(0) - Job.v_air_d = factors(1) - Job.beta_f = factors(2) - Job.beta_d = factors(3) + Me.v_air_f = factors(0) + Me.v_air_d = factors(1) + Me.beta_f = factors(2) + Me.beta_d = factors(3) ' Calibration test files calib_track_fpath = FileInVECTO.ReadLine(0) @@ -426,6 +422,8 @@ Public Class cJob End Using + Me.OnBeforeContentStored() + F_Main.UI_PopulateFromJob() F_Main.UI_PopulateFromCriteria() End Sub diff --git a/CSE/IO/cJsonFile.vb b/CSE/IO/cJsonFile.vb index bb012c92fb6501efca6ef5539826a294f9fab4ae..54de58676cddfd61f50ba7caac322bba81e8cd35 100644 --- a/CSE/IO/cJsonFile.vb +++ b/CSE/IO/cJsonFile.vb @@ -1,6 +1,4 @@ -Option Strict Off - -Imports Newtonsoft.Json.Linq +Imports Newtonsoft.Json.Linq Imports Newtonsoft.Json.Schema Imports System.Globalization @@ -25,7 +23,7 @@ Imports System.Globalization Public MustInherit Class cJsonFile Implements ICloneable - Shared dateFrmt As String = "yyyy/MM/dd HH:mm:ss zzz" + Private Const DateFrmt As String = "yyyy/MM/dd HH:mm:ss zzz" ''' <summary>The json-content for a json-file structured in Header/Body</summary> ''' <remarks>Note that the content is invalid according to the schema, and has to be specified by sub-classers.</remarks> @@ -111,6 +109,11 @@ When False, it overrides Application's choice and is not replaced ever.", ''' <remarks>To signify validation-failure it can throw an exception or add err-messages into the supplied list</remarks> Protected MustOverride Sub ValidateBody(ByVal isStrict As Boolean, ByVal validateMsgs As IList(Of String)) + Protected Overridable Sub OnContentUpdated() + End Sub + Protected Overridable Sub OnBeforeContentStored() + End Sub + ''' <summary>The whole json-content receiving any changes, always ready to be written as is.</summary> Private Content As JObject @@ -127,9 +130,8 @@ When False, it overrides Application's choice and is not replaced ever.", ''' <param name="skipValidation">When false (the default), validates json-contents in both cases (reading or creating-defaults)</param> ''' <remarks>It optionally checks version and validates its body with ValidateVersionAndBody().</remarks> Protected Sub New(ByVal inputFilePath As String, Optional ByVal skipValidation As Boolean = False) - Dim strictHeader = True + Dim strictHeader = False '' Accept unknown headers. - strictHeader = False '' Try to read even bad headers. logme(4, False, format("Reading JSON-file({0})...", inputFilePath)) Me.Content = ReadJsonFile(inputFilePath) @@ -139,6 +141,8 @@ When False, it overrides Application's choice and is not replaced ever.", If Not skipValidation Then Me.Validate(strictHeader) End If + + OnContentUpdated() End Sub ''' <summary>Creates an instance with defaults</summary> @@ -146,7 +150,7 @@ When False, it overrides Application's choice and is not replaced ever.", ''' <param name="skipValidation">When false (the default), validates json-contents in both cases (reading or creating-defaults)</param> ''' <remarks>When defaulting, the resulted file-version is retrieved from 'CodeVersion' prop and the body from 'BodyStr' prop.</remarks> Protected Sub New(ByVal body As JToken, Optional ByVal skipValidation As Boolean = False) - Dim strictHeader = True + Dim strictHeader = False '' Accept unknown headers. Dim jstr = JsonStr_FileContents() Me.Content = JObject.Parse(jstr) @@ -159,10 +163,14 @@ When False, it overrides Application's choice and is not replaced ever.", If Not skipValidation Then Me.Validate(strictHeader) End If + + OnContentUpdated() End Sub ''' <summary>Validates and Writing to the config file</summary> Overridable Sub Store(ByVal fpath As String, Optional ByVal prefs As cPreferences = Nothing) + OnBeforeContentStored() + logme(4, False, format("Writting JSON-file({0})...", fpath)) Me.UpdateHeader(prefs) diff --git a/CSE/IO/cVehicle.vb b/CSE/IO/cVehicle.vb index 41dd8c69f7fb022329590caf688662b17c647c25..4692b02988ff0cd430c61dceca77c51dd5ce5d22 100644 --- a/CSE/IO/cVehicle.vb +++ b/CSE/IO/cVehicle.vb @@ -147,7 +147,6 @@ The generic parameters for classes are stored in the GenShape.shp", '' The configuration was not found! '' validateMsgs.Add(format("The vehicle (class: {0}, configuration {1}) was not found in the generic shape file. \n\iPlease add it in .", Me.classCode, Me.configuration)) - BWorker.CancelAsync() End Sub diff --git a/CSE/IO/input.vb b/CSE/IO/input.vb index 0c5d850a5ccf661e3b01001a77333e7ac68f982b..8aa912169293aad53a0562c7e1508566f545fa13 100644 --- a/CSE/IO/input.vb +++ b/CSE/IO/input.vb @@ -1,7 +1,7 @@ ' Read the input data Public Module input ' Read the measurement section config file - Function ReadInputMSC(ByRef MSCX As cMSC, ByVal MSCfile As String, Optional ByVal calibration As Boolean = True) As Boolean + Sub ReadInputMSC(ByRef MSCX As cMSC, ByVal MSCfile As String, Optional ByVal calibration As Boolean = True) ' Declarations Dim i As Integer Dim RefHead As Double @@ -13,11 +13,7 @@ Public Module input logme(5, False, "Read MS configuration file") ' Open the MSC spezification file - If Not FileInMSCSpez.OpenRead(MSCfile) Then - ' Error if the file is not available - logme(9, False, "Can´t find the MS configuration specification file: " & MSCfile) - Return False - End If + FileInMSCSpez.OpenReadWithEx(MSCfile) ' Determine the trigger status MSCX.tUse = FileInMSCSpez.ReadLine(0) @@ -40,9 +36,7 @@ Public Module input Loop Catch ex As Exception ' Falls kein gültiger Wert eingegeben wurde - logme(9, False, "Invalid value in the trigger data file: " & fName(MSCfile, True)) - BWorker.CancelAsync() - Return False + Throw New Exception(format("Invalid value in the trigger data file({0}) due to: {1})", fName(MSCfile, True), ex.Message, ex)) End Try End Using @@ -63,9 +57,7 @@ Public Module input MSCX.headID.Add(2) Continue For Else - logme(9, False, "Measurement section with invalid headings identified (test track not parallel) at line: " & i) - BWorker.CancelAsync() - Return False + Throw New Exception("Measurement section with invalid headings identified (test track not parallel) at line: " & i) End If End If Next i @@ -74,16 +66,12 @@ Public Module input For i = 1 To MSCX.meID.Count - 1 If Crt.gradient_correction Then If MSCX.AltPath(i) = Nothing Then - logme(9, False, "Altitude correction = on, missing altitude file at line: " & i) - BWorker.CancelAsync() - Return False + Throw New Exception("Altitude correction = on, missing altitude file at line: " & i) End If If fPath(MSCX.AltPath(i)) = Nothing Then MSCX.AltPath(i) = joinPaths(fPath(MSCfile), MSCX.AltPath(i)) If Not FileIO.FileSystem.FileExists(MSCX.AltPath(i)) Then - logme(9, False, "Altitude correction = on, altitude file doesen´t exist: " & MSCX.AltPath(i)) - BWorker.CancelAsync() - Return False + Throw New Exception("Altitude correction = on, altitude file doesen´t exist: " & MSCX.AltPath(i)) End If End If Next i @@ -92,12 +80,10 @@ Public Module input MSCX.headID.Add(1) Next i End If - - Return True - End Function + End Sub ' Read the wather data - Public Function ReadWeather(ByVal Datafile As String) As Boolean + Public Sub ReadWeather(ByVal Datafile As String) ' Declaration Using FileInWeather As New cFile_V3 Dim Line() As String @@ -113,19 +99,8 @@ Public Module input InputWeatherData = New Dictionary(Of tCompWeat, List(Of Double)) UnitsWeat = New Dictionary(Of tCompWeat, List(Of String)) - 'Abort if there's no file - If Datafile = "" OrElse Not IO.File.Exists(Datafile) Then - logme(9, False, "Weather data file not found (" & Datafile & ") !") - BWorker.CancelAsync() - Return False - End If - 'Open file - If Not FileInWeather.OpenRead(Datafile) Then - logme(9, False, "Failed to open file (" & Datafile & ") !") - BWorker.CancelAsync() - Return False - End If + FileInWeather.OpenReadWithEx(Datafile) ' Build check key WeathCheck.Add(tCompWeat.t, False) @@ -147,9 +122,7 @@ Public Module input Else ' Check if component is already defined If WeathCheck(Comp) Then - logme(9, False, "Component '" & Line(i) & "' already defined! Column " & i + 1) - BWorker.CancelAsync() - Return False + Throw New Exception(format("Column {0}: Component({1}) already defined!", i + 1, Line(i))) End If ' Set the defined component true and save the position @@ -163,9 +136,7 @@ Public Module input ' Check if all required data is given For Each sKVW In WeathCheck If Not WeathCheck(sKVW.Key) Then - logme(9, False, "Missing signal for " & fCompName(sKVW.Key)) - BWorker.CancelAsync() - Return False + Throw New Exception("Missing signal for " & fCompName(sKVW.Key)) End If Next @@ -184,18 +155,14 @@ Public Module input Next sKV Loop Catch ex As Exception - logme(9, False, "Error during file read! Line number: " & tdim + 1 & " (" & Datafile & ")") - BWorker.CancelAsync() - Return False + Throw New Exception(format("Exception while reading file({0}), line({1}) due to: {2}!: ", Datafile, tdim + 1, ex.Message), ex) End Try End Using - - Return True - End Function + End Sub ' Read the data file - Public Function ReadDataFile(ByVal Datafile As String, ByVal MSCX As cMSC) As Boolean + Public Sub ReadDataFile(ByVal Datafile As String, ByVal MSCX As cMSC) ' Declarations Using FileInMeasure As New cFile_V3 Dim Line(), txt As String @@ -226,9 +193,6 @@ Public Module input OptPar(i) = True Next i - ' Exit if an errer was detected - If BWorker.CancellationPending Then Return False - ' Generate the calculation dictionary variables 'For Each EnumStr In System.Enum.GetValues(GetType(tCompErg)) ' CalcData.Add(EnumStr, New List(Of Double)) @@ -237,19 +201,8 @@ Public Module input CalcData.Add(EnumStr, New List(Of Double)) Next - 'Abort if there's no file - If Datafile = "" OrElse Not IO.File.Exists(Datafile) Then - logme(9, False, "Measurement data file not found (" & Datafile & ") !") - BWorker.CancelAsync() - Return False - End If - 'Open file - If Not FileInMeasure.OpenRead(Datafile) Then - logme(9, False, "Failed to open file (" & Datafile & ") !") - BWorker.CancelAsync() - Return False - End If + FileInMeasure.OpenReadWithEx(Datafile) ' Build check key MeasCheck.Add(tComp.t, False) @@ -285,9 +238,7 @@ Public Module input ' Check if the component is already defined If InputUndefData.ContainsKey(txt) Then - logme(9, False, "Component '" & Line(i) & "' already defined! Column " & i + 1) - BWorker.CancelAsync() - Return False + Throw New Exception(format("Column {0}: Component({1}) already defined!", i + 1, Line(i))) End If ' Add the component to the dictionary @@ -297,9 +248,7 @@ Public Module input Else ' Check if component is already defined If MeasCheck(Comp) Then - logme(9, False, "Component '" & Line(i) & "' already defined! Column " & i + 1) - BWorker.CancelAsync() - Return False + Throw New Exception(format("Column {0}: Component({1}) already defined!", i + 1, Line(i))) End If ' Set the defined component true and save the position @@ -316,9 +265,7 @@ Public Module input Select Case sKVM.Key Case tComp.trigger If MSCX.tUse Then - logme(9, False, "No trigger signal detected, but trigger_used in MS config activated!") - BWorker.CancelAsync() - Return False + Throw New Exception("No trigger signal detected, but trigger_used in MS config activated!") End If OptPar(0) = False Case tComp.p_tire @@ -328,9 +275,7 @@ Public Module input Case tComp.user_valid valid_set = True Case Else - logme(9, False, "Missing signal for " & fCompName(sKVM.Key)) - BWorker.CancelAsync() - Return False + Throw New Exception("Missing signal for " & fCompName(sKVM.Key)) End Select End If Next @@ -351,9 +296,7 @@ Public Module input If tDim >= 2 Then If Math.Abs((InputData(sKV.Key)(tDim - 1) - InputData(sKV.Key)(tDim - 2)) / (1 / HzIn) - 1) * 100 > Crt.delta_Hz_max Then If ErrDat Then - logme(9, False, "The input data is not recorded at " & HzIn & "Hz at line: " & JumpPoint & " and " & tDim) - BWorker.CancelAsync() - Return False + Throw New Exception("The input data is not recorded at " & HzIn & "Hz at line: " & JumpPoint & " and " & tDim) Else ErrDat = True JumpPoint = tDim - 1 @@ -421,9 +364,7 @@ Public Module input Next Loop Catch ex As Exception - logme(9, False, "Error during file read! Line number: " & tDim + 1 & " (" & Datafile & ")") - BWorker.CancelAsync() - Return False + Throw New Exception(format("Exception while reading file({0}), line({1}) due to: {2}!: ", Datafile, tdim + 1, ex.Message), ex) End Try @@ -444,18 +385,14 @@ Public Module input CalcData(tCompCali.longi_UTM)(i) = UTMCoord.Easting Next i If Zone1CentralMeridian > 180 Then - logme(9, False, "The adjustment is not possible because the data lie to far away from each other to fit into one UTM stripe") - BWorker.CancelAsync() - Return False + Throw New Exception("The adjustment is not possible because the data lie to far away from each other to fit into one UTM stripe") End If Loop 'Developer export of input data converted from MM.MM to UTM 'fOuttest(Datafile) End Using - - Return True - End Function + End Sub ' Function to read the generic shape file diff --git a/CSE/declaration_public.vb b/CSE/declaration_public.vb index c028b6bdecd2f6d5e61e2ed31e3d6c4e9e4f2fb6..85d0ae4443494a07eedc7fb5e15c48628c344dfb 100644 --- a/CSE/declaration_public.vb +++ b/CSE/declaration_public.vb @@ -2,7 +2,7 @@ ' Description of the form Public Const AppName As String = "VECTO_CSE" ' Name of the programm - Public Const AppVers As String = "2.0.1-pre2" ' Version of the Programm + Public Const AppVers As String = "2.0.1-pre3" ' Version of the Programm Public AppDate As String ' Date of the compilation of the programm ' Control variables diff --git a/DemoData/Results/DataDemo_CAL_1Hz.csv b/DemoData/Results/DataDemo_CAL_1Hz.csv new file mode 100644 index 0000000000000000000000000000000000000000..8f0f8a301c9f39d25ee4a07d7509bd0ccb6909de --- /dev/null +++ b/DemoData/Results/DataDemo_CAL_1Hz.csv @@ -0,0 +1,1486 @@ +# Resultfile Programm VECTO_CSE 2.0.1-beta0 Comp 23/06/2014 +# Datafile: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_CAL.csdat +# +Time [s],Lat [mm.mm],Long [mm.mm],Heading [¡],v_veh_GPS [km/h],v_veh_CAN [km/h],vair_ar [m/s],beta_ar [¡],n_eng [rpm],tq_l [Nm],tq_r [Nm],t_amb_veh [¡C],t_tire [¡C],Satelites [#],Zone (UTM) [-],Lat (UTM) [m],Long (UTM) [m],Sec_ID [-],Dir_ID [-],Lat (root) [m],Long (root) [m],dist (root) [m],slope_deg [°],altitude [m],v_veh [km/h],dist [m],vair_ic [m/s],vair_uf [m/s],vair [m/s],beta_ic [°],beta_uf [°],beta [°],vwind_ha [m/s],vwind [m/s],vwind 1s [m/s] +41372,2873.73670488889,456.477632444445,47,0.0358555555555556,0.0369312222222222,3.27814444444444,-5.5,576.466666666667,-138.856666666667,65.8111111111111,20,40,10,32,5305635.86103784,395951.827257944,0,0,0,0,0,0,0,0.0358555555555555,0.0045037037037037,6.55628888888889,3.51601414532909,2.79152887944938,-5.5,-5.48535979107015,-5.48069480274798,3.50610004681072,2.78161473067675,2.79552199373208 +41373,2873.7367,456.477622673267,45,0.0325445544554455,0.0335208910891089,3.32055445544554,-5.5,576.727722772277,18.4554455445545,188.114851485148,20,40,10,32,5305635.8522014,395951.814922447,0,0,0,0,0,0,0,0.0325445544554455,0.0133008525852585,6.64110891089109,3.56150152427486,2.82742776327909,-5.5,-5.48535979107015,-5.48113369018096,3.55250290253861,2.81842910143481,2.79309628713092 +41374,2873.73670029703,456.477613861387,48.5643564356436,0.286514851485149,0.295110297029703,3.04735643564357,-5.5,547.643564356436,2527.77623762376,2459.13168316832,20,40,10,32,5305635.85294951,395951.803955162,0,0,0,0,0,0,0,0.286514851485148,0.0393140814081408,6.09471287128713,3.26847962777864,2.60946687499307,-5.5,-5.48535979107015,-5.44571292989993,3.18927328331898,2.53025567627585,2.51662112856943 +41375,2873.73677118812,456.477756534654,45,1.50049504950495,1.5455099009901,2.85016831683168,-5.5,568.975247524752,3397.84158415842,3080.84851485149,20,40,10,32,5305635.98105974,395951.984054692,0,0,0,0,0,0,0,1.50049504950495,0.278815704070407,5.70033663366337,3.05698308551725,2.51105713205339,-5.5,-5.48535979107015,-5.27430724807749,2.64241866343301,2.09640072464744,2.07036214514508 +41376,2873.73695910891,456.47814990099,45,3.07729702970297,3.16961594059406,2.24637623762376,-5.5,784.891089108911,5463.3,4783.61683168317,20,40,10,32,5305636.32031867,395952.480357821,0,0,0,0,0,0,0,3.07729702970297,0.889725055005499,4.49275247524752,2.40937846427168,2.08745162059384,-5.5,-5.48535979107015,-4.98112549425622,1.56119903427124,1.23859963300175,1.22324752775483 +41377,2873.73737524752,456.478965841584,45,6.21353465346534,6.39994069306931,1.28560396039604,-5.5,1079.9603960396,6326.07920792079,5415.50891089109,20,40,10,32,5305637.07282459,395953.510694748,0,0,0,0,0,0,0,6.21353465346534,2.17463547854785,2.57120792079208,1.37889034075484,1.44956117446115,-5.5,-5.48535979107015,-4.05620131546386,0.705453489406094,0.559681638213457,0.667320595043405 +41378,2873.73809663366,456.480288415842,45,9.25531683168316,9.53297633663366,0.591564356435644,-5.5,1073.57425742574,7648.61287128713,6158.95643564356,20,40,10,32,5305638.37937529,395955.182352546,0,0,0,0,0,0,0,9.25531683168315,4.31446551155115,1.18312871287129,0.63448962678419,1.0336102561323,-5.5,-5.48535979107015,-2.88065499182785,1.94037546857179,1.53942469249636,1.51743542006119 +41379,2873.73916891089,456.482129108911,45,12.5924653465347,12.9702393069307,0.80890099009901,-5.5,761.579207920792,6183.25940594059,5172.68514851485,20,40,10,32,5305640.3242609,395957.511161885,0,0,0,0,0,0,0,12.5924653465346,7.37303261826183,1.61780198019802,0.867596706477899,1.4097200752136,-5.5,-5.48535979107015,-2.8760065564528,2.63564409134797,2.091026020773,2.07035113377946 +41380,2873.74061069307,456.484352970297,45,15.2766633663366,15.7349632673267,1.21933663366337,-5.5,756.658415841584,6159.08910891089,5137.13168316831,20,40,9.59405940594059,32,5305642.9449921,395960.329631564,0,0,0,0,0,0,0,15.2766633663366,11.2471007150715,2.43867326732673,1.30781450437426,1.9125526590542,-5.5,-5.48535979107015,-3.14464753609991,2.94442798464912,2.33600414881686,2.3305614041724 +41381,2873.74242920792,456.486862475247,45,17.8651782178218,18.4011335643564,1.86817821782178,-5.5,895.618811881188,6683.25940594059,5550.2099009901,20,40,10,32,5305646.25714791,395963.516512232,0,0,0,0,0,0,0,17.8651782178218,15.8509552255225,3.73635643564356,2.00373752626702,2.61265567805935,-5.5,-5.48535979107015,-3.44729735968398,2.97452281106284,2.35988031074947,2.36737717798916 +41382,2873.74452683168,456.489805544555,45,20.7732871287129,21.3964857425743,2.54183168316832,-5.5,1050.38118811881,7214.25346534653,6053.83069306931,20,40,10,32,5305650.07657456,395967.252810923,0,0,0,0,0,0,0,20.7732871287128,21.2130955995599,5.08366336633663,2.72627283651622,3.35221215030481,-5.5,-5.48535979107015,-3.63223081851364,3.06797537555888,2.43402224239747,2.43781799566268 +41383,2873.74692524752,456.493229207921,45,23.6955148514852,24.4063802970297,3.31877227722772,-5.5,1029.11881188119,6293.33861386139,5054.50396039604,20,40,10,32,5305654.44238169,395971.597835601,0,0,0,0,0,0,0,23.6955148514851,27.4055828932893,6.63754455445545,3.5595900271064,4.18045823806396,-5.5,-5.48535979107015,-3.7686893218099,3.05929685732342,2.42713701555229,2.38629719667643 +41384,2873.74954049505,456.497165841584,45,26.2050198019802,26.9911703960396,4.44362376237624,-5.5,932.376237623762,5385.14950495049,5473.52871287129,20,40,10,32,5305659.19832027,395976.589112189,0,0,0,0,0,0,0,26.2050198019802,34.3412455720572,8.88724752475247,4.76606332326613,5.2809961678699,-5.5,-5.48535979107015,-3.97117388147781,2.57693676878974,2.04444972487547,2.09376874752701 +41385,2873.75236950495,456.50156990099,45,28.6707128712871,29.5308342574257,4.34869306930693,-5.5,1020.90594059406,4852.56138613861,5791.74554455446,20,40,9.95049504950495,32,5305664.33972911,395982.169799761,0,0,0,0,0,0,0,28.6707128712871,41.9706455720572,8.69738613861386,4.66424424075949,5.34151511669911,-5.5,-5.48535979107015,-3.85762268867375,3.35254716349035,2.65979134957546,2.60719925575209 +41386,2873.75539425743,456.506434059406,45,31.0603069306931,31.9921161386139,4.98048514851485,-5.49811881188119,1105.81188118812,4787.47623762376,5793.04257425743,20,40,9,32,5305669.83339557,395988.330166978,0,0,0,0,0,0,0,31.060306930693,50.2657301430143,9.9609702970297,5.34188060640732,6.01580728052728,-5.49811881188119,-5.48347860295133,-3.91392068165769,3.35096082059181,2.65853280169732,2.70432903849064 +41387,2873.75860425743,456.511784554455,45,33.4361881188119,34.4392737623762,5.73606930693069,-5.4949504950495,1211.06930693069,4366.40099009901,5412.31485148515,20,40,9,32,5305675.659292,395995.102545403,0,0,0,0,0,0,0,33.4361881188118,59.2331635863586,11.4721386138614,6.15229168926211,6.7946305226757,-5.4949504950495,-5.48031028611965,-3.97404050324266,3.22268095369904,2.55676013045744,2.5459942130498 +41388,2873.7619370297,456.517594950495,45,35.1222772277228,36.1759455445545,6.32776237623762,-5.26376237623763,1714.23267326733,3888.73960396039,4625.03069306931,20,40,9,32,5305681.70228838,396002.451915233,0,0,0,0,0,0,0,35.1222772277227,68.7689496149615,12.6555247524752,6.78691936861958,7.39482327996032,-5.26376237623763,-5.24912216730777,-3.85767670199372,3.06750458931214,2.43364873738009,2.46661126933405 +41389,2873.76537653465,456.523843168317,45,37.4892772277228,38.6139555445545,6.12880253025742,-4.67128712871287,1902.89603960396,5059.0603960396,6062.36435643564,20,40,9.33663366336634,32,5305687.93317169,396010.350233935,0,0,0,0,0,0,0,37.4892772277227,78.8351699669966,12.2576050605148,6.57352253859142,7.36197566438825,-4.67128712871287,-4.65664691978302,-3.33943612783254,3.9071881065449,3.0998236923035,3.05718957986652 +41390,2873.76897712871,456.53062950495,45,39.9259306930693,41.1237086138614,6.57963311331683,-2.69485148514852,1825.27227722772,4715.27326732673,5453.94950495049,20,40,10,32,5305694.4503797,396018.924254608,0,0,0,0,0,0,0,39.9259306930692,89.6031348459845,13.1592662266337,7.0570664257042,7.88594193654915,-2.69485148514852,-2.68021127621866,-1.9147416270145,4.09526618416192,3.24903813120485,3.27028962665605 +41391,2873.77274059406,456.537894455446,45,42.3887623762376,43.6604252475247,7.01719801983168,-3.1109900990099,1515.89603960396,5241.67722772277,5474.55841584159,20,40,10,32,5305701.25855204,396028.099906997,0,0,0,0,0,0,0,42.3887623762376,101.03006069857,14.0343960396634,7.52638204827023,8.39918961005042,-3.1109900990099,-3.09634989008005,-2.22892133158243,4.31697776317601,3.42493619056233,3.42553580550782 +41392,2873.7767339604,456.545593564356,45,44.8273267326733,46.1721465346535,7.51802805277228,-4.78891089108911,1588.5396039604,5316.32871287129,4938.67128712871,20,40,10,32,5305708.48285115,396037.824045602,0,0,0,0,0,0,0,44.8273267326732,113.15311729923,15.0360561055446,8.06355346035034,8.96352712477583,-4.78891089108911,-4.77427068215926,-3.44988370940367,4.48413500273978,3.55755278270231,3.54219940293863 +41393,2873.78097871287,456.553654554455,45,47.0813366336634,48.4937767326733,8.09227832781188,-4.39485148514852,1672.21782178218,5253.44554455446,4633.19702970297,20,40,10,32,5305716.16469944,396048.00734667,0,0,0,0,0,0,0,47.0813366336633,125.924023679868,16.1845566556238,8.67947265616861,9.58185802417377,-4.39485148514852,-4.38021127621866,-3.18362898001356,4.49556634214561,3.56662199968359,3.55919306136641 +41394,2873.7854529703,456.562073069307,45,49.2465940594059,50.7239918811881,8.71713806382178,-3.74980198019802,1749.25247524752,5037.24554455446,4552.31881188119,20,40,10,32,5305724.26366558,396058.643649091,0,0,0,0,0,0,0,49.2465940594059,139.306033553355,17.4342761276436,9.34967365185101,10.2380017990719,-3.74980198019802,-3.73516177126817,-2.7337763136487,4.4324616158693,3.51655696051131,3.51967908817553 +41395,2873.79013831683,456.570842475247,45,51.303603960396,52.8427120792079,9.28129537957426,-3.41881188118812,1819.70792079208,4827.47326732673,4457.91188118812,20,40,10,32,5305732.74578839,396069.724070731,0,0,0,0,0,0,0,51.303603960396,153.271923789879,18.5625907591485,9.95476752004167,10.8362518213217,-3.41881188118812,-3.40417167225826,-2.50339811619967,4.40294127467949,3.49313657466611,3.49284236800188 +41396,2873.79499871287,456.579980495049,45,53.2129702970297,54.8093594059406,10.0956490648218,-1.69554455445545,1887.30693069307,4423.34356435643,4252.71782178218,20,40,10,32,5305741.54391514,396081.269482647,0,0,0,0,0,0,0,53.2129702970296,167.796914053905,20.1912981296436,10.8282125817697,11.6389048109018,-1.69554455445545,-1.68090434552559,-1.24488121421889,4.07642554315038,3.2340906385853,3.25091421065783 +41397,2873.80002445544,456.589453663366,45,55.0443564356436,56.6956871287129,10.3564185918812,-1.0009900990099,1950.19801980198,4290.61188118812,4113.10495049505,20,40,10,32,5305750.64082593,396093.23786931,0,0,0,0,0,0,0,55.0443564356435,182.840880693069,20.7128371837624,11.1079041455034,11.9667814465435,-1.0009900990099,-0.986349890080043,-0.733813270898767,4.28431719608003,3.39902446148059,3.39307094591621 +41398,2873.80520891089,456.599226831683,45,56.6717722772277,58.3719254455445,10.8191149611881,-1.50257425742574,1664.60396039604,4197.04455445545,3987.6297029703,20,40,10,32,5305760.02502378,396105.585221122,0,0,0,0,0,0,0,56.6717722772277,198.362234625962,21.6382299223762,11.6041748276061,12.4530890062019,-1.50257425742574,-1.48793404849588,-1.1106115887996,4.26401513734433,3.38291753216075,3.33478809246257 +41399,2873.81055930693,456.60928039604,45,58.4487821782178,60.2022456435644,11.5811529150495,-1.19465346534653,1482.03465346535,4312.38613861386,4000.26831683168,20,40,10,32,5305769.71033893,396118.28735474,0,0,0,0,0,0,0,58.4487821782177,214.351876375137,23.162305830099,12.4215080081482,13.2030111937566,-1.19465346534653,-1.18001325641668,-0.888834210420616,3.97052526272645,3.15007313307288,3.14806465239701 +41400,2873.81607148515,456.619629603961,45,60.0928613861386,61.8956472277228,12.2398388337624,-1.27811881188119,1533.17326732673,4232.04455445545,3948.54356435643,20,40,10,32,5305779.68872898,396131.363121561,0,0,0,0,0,0,0,60.0928613861385,230.81588630363,24.4796776675247,13.1279896921535,13.8576658592922,-1.27811881188119,-1.26347860295133,-0.970432276715146,3.74963665002447,2.97482798583601,2.96200894165842 +41401,2873.82174128713,456.630266534654,45,61.7196534653465,63.5712430693069,13.0272304731683,2.2380198019802,1576.66336633663,4145.27128712871,3905.92574257426,20,40,10,32,5305789.95267119,396144.802512131,0,0,0,0,0,0,0,61.7196534653465,247.738494719472,26.0544609463366,13.9725162799788,14.6196931499612,2.2380198019802,2.25266001091005,1.71350692919338,3.43266112138677,2.72335090647408,2.78730010239692 +41402,2873.82755683168,456.641186039604,45,63.2767128712871,65.1750142574257,13.0714609462376,-0.236831683168317,1612.51485148515,4050.34752475247,3848.99603960396,20,40,10,32,5305800.48027543,396158.598713042,0,0,0,0,0,0,0,63.276712871287,265.104150082508,26.1429218924753,14.0199562179076,14.7489960275082,-0.236831683168317,-0.222191474238459,-0.176323714572481,3.71779380841642,2.94956501099188,2.91079324079685 +41403,2873.83350752475,456.652381485149,45,64.7949207920792,66.7387684158416,13.7132392740594,2.78089108910891,1653.67326732673,3970.08712871287,3768.07722772277,20,40,10,32,5305811.25206904,396172.743103885,0,0,0,0,0,0,0,64.7949207920791,282.895172854785,27.4264785481188,14.7083034573379,15.3805275823672,2.78089108910891,2.79553129803877,2.13169656432282,3.53309216399014,2.80302931376222,2.79731595758354 +41404,2873.83958623762,456.663847821782,45,66.2402178217822,68.2274243564356,14.7001089108911,2.48029702970297,1688.75247524752,3860.72079207921,3791.11386138614,20,40,10,32,5305822.25496289,396187.229153263,0,0,0,0,0,0,0,66.2402178217821,301.097414438944,29.4002178217822,15.7667826248976,16.3020289132658,2.48029702970297,2.49493723863282,1.92597290112444,3.00154737215209,2.38132063367587,2.34458785312636 +41405,2873.84577415842,456.675594455445,45,67.6936237623762,69.7244324752475,15.5755247524752,-0.20029702970297,1725.31188118812,3882.47821782178,3750.80198019802,20,40,10,32,5305833.45390269,396202.067947518,0,0,0,0,0,0,0,67.6936237623761,319.700636193619,31.1510495049505,16.7057206534739,17.1317796957951,-0.20029702970297,-0.185656820773113,-0.148979249926671,2.49570281552407,1.98000160359598,2.03374099312006 +41406,2873.85207673267,456.687614653465,45,69.1105841584158,71.1839016831683,15.2725401540594,0.925841584158416,1763.20792079208,3831.99207920792,3690.88118811881,20,40,10,32,5305844.85912897,396217.2512777,0,0,0,0,0,0,0,69.1105841584157,338.704617161716,30.5450803081188,16.3807507957081,16.9555404625063,0.925841584158416,0.940481793088273,0.725391309399085,3.11586659844715,2.47201743057737,2.4754212701278 +41407,2873.85848425742,456.699902871287,45,70.4809603960396,72.5953892079208,15.0295121013861,1.74732673267327,1797.42574257426,3762.31881188119,3648.43564356436,20,40,10,32,5305856.45279537,396232.77191019,0,0,0,0,0,0,0,70.4809603960395,358.093752255225,30.0590242027723,16.1200880685488,16.8251392548184,1.74732673267327,1.76196694160312,1.34651476205959,3.7667615369927,2.98841426039065,2.96500871809619 +41408,2873.86500376238,456.712445445545,45,71.8090297029703,73.9633005940594,15.7919158415842,4.26940594059406,1830.34158415842,3709.84158415842,3553.75445544554,20,40,10,32,5305868.24823199,396248.613055381,0,0,0,0,0,0,0,71.8090297029702,377.863259873487,31.5838316831683,16.9378135777255,17.5487617695558,4.26940594059406,4.28404614952391,3.29148741280405,3.42959604152487,2.72091918142895,2.78146098069319 +41409,2873.87163960396,456.725221881188,45,73.1143465346535,75.307776930693,15.6441331136634,4.51495049504951,1860.43564356436,3653.00297029703,3466.61683168317,20,40,10,32,5305880.25396998,396264.749324531,0,0,0,0,0,0,0,73.1143465346533,397.995090841584,31.2882662273267,16.7793073951546,17.4979912576495,4.51495049504951,4.52959070397936,3.46086701895959,3.88265962199169,3.08036366747721,3.00805241220906 +41410,2873.87838326733,456.73823029703,45,74.3460099009901,76.5763901980198,16.7107238724752,2.52643564356436,1891.06930693069,3565.75643564356,3418.93564356436,20,40,10,32,5305892.45428147,396281.178087201,0,0,0,0,0,0,0,74.34600990099,418.478310368537,33.4214477449505,17.9232924326703,18.4790808083487,2.52643564356436,2.54107585249421,1.96389072423389,3.10755888896241,2.46542639016996,2.54510487556412 +41411,2873.88524871287,456.751442772277,45,75.5576435643565,77.8243728712871,16.9788223323762,2.79594059405941,1925.12871287129,3561.88118811881,3281.71584158416,20,40,10,32,5305904.87565338,396297.865024513,0,0,0,0,0,0,0,75.5576435643563,439.296968729373,33.9576446647525,18.2108447334698,18.7763788847737,2.79594059405941,2.81058080298926,2.17807267113284,3.20222766265298,2.54053321881632,2.50404972532924 +41412,2873.89225,456.764833465346,45,76.6786336633664,78.9789926732673,17.423896039703,2.91306930693069,1951.35643564356,3518.07623762376,3225.63366336634,20,40,10,32,5305917.54470915,396314.77841085,0,0,0,0,0,0,0,76.6786336633663,460.445591281627,34.8477920794059,18.6882140127054,19.217317677302,2.91306930693069,2.92770951586055,2.26517613021785,3.12524166426702,2.47945527343338,2.41917996307929 +41413,2873.89937455446,456.778390495049,45,77.7409702970297,80.0731994059406,18.0090594059406,1.18267326732673,1793.44059405941,3313.8900990099,3047.18118811881,20,40,10,32,5305930.43842476,396331.903024162,0,0,0,0,0,0,0,77.7409702970296,481.898209240924,36.0181188118812,19.31583817872,19.7769036765132,1.18267326732673,1.19731347625659,0.927102862007559,2.81099187644914,2.23014069962326,2.32739057811268 +41414,2873.9066170297,456.79209990099,45,78.7290693069307,81.0909413861386,17.3462926292079,0.0812871287128713,1707.42079207921,2716.44158415842,2561.44851485149,20,40,10,32,5305943.5472108,396349.221293255,0,0,0,0,0,0,0,78.7290693069306,503.633082425742,34.6925852584158,18.6049795202508,19.2699858830506,0.0812871287128713,0.0959273376427287,0.0723632435060687,3.6307299216836,2.88049162842646,2.80217010034534 +41415,2873.91392851485,456.80590039604,45,78.7093366336633,81.0706167326733,17.3462623759406,-0.634455445544555,1818.60891089109,525.442574257425,503.521782178218,20,40,10,32,5305956.78184019,396366.655245154,0,0,0,0,0,0,0,78.7093366336632,525.535710396038,34.6925247518812,18.6049470717368,19.2682448182521,-0.634455445544555,-0.619815236614697,-0.470699593823816,3.64088560942496,2.88854878887379,2.87570633491488 +41416,2873.92120366337,456.819606831683,45,78.0325544554455,80.3735310891089,17.2138668863366,3.5029702970297,1686.05445544554,356.368316831683,353.743564356436,20,40,10,32,5305969.95131722,396383.970742931,0,0,0,0,0,0,0,78.0325544554454,547.302135506049,34.4277337726733,18.4629446608869,19.1165272005642,3.5029702970297,3.51761050595956,2.70282315261109,3.61102444420471,2.86485800539846,2.87274737231829 +41417,2873.92841267327,456.833198811881,45,77.3018712871288,79.6209274257426,16.771605610198,3.14574257425743,1673.0297029703,266.442574257426,313.742574257426,20,40,10,32,5305983.00089346,396401.14139052,0,0,0,0,0,0,0,77.3018712871286,568.876784735972,33.543211220396,17.9885918893152,18.6994419292771,3.14574257425743,3.16038278318728,2.42004505969182,3.79668791666418,3.01215678268567,3.03157889287641 +41418,2873.93555742574,456.846661584158,45,76.5916633663366,78.8894132673267,16.8606012104951,3.25128712871287,1655.0099009901,275.088118811881,338.939603960396,20,40,10,32,5305995.93438214,396418.148876107,0,0,0,0,0,0,0,76.5916633663366,590.251430858085,33.7212024209901,18.0840452150668,18.7312691410091,3.25128712871287,3.26592733764272,2.51124613029815,3.67109437151779,2.91251534331063,2.83274110726979 +41419,2873.94264019802,456.859998118812,45,75.8722871287129,78.1484557425743,18.0224653465346,5.17643564356436,1642.25247524752,428.455445544554,460.765346534654,20,40,10,32,5306008.75593362,396434.996977471,0.881188118811881,0.881188118811881,4675591.25513096,349335.751247818,8.18241494141283,0,0,75.8722871287128,611.426548899889,36.0449306930693,19.3302168851983,19.677984569662,5.17643564356436,5.19107585249421,4.04876816094632,2.60459317032709,2.06639132747856,2.12566532155794 +41420,2873.94966653465,456.873242475248,45,75.6807722772277,77.9511954455445,18.2861683168317,4.96366336633663,1644.00495049505,2216.21683168317,2179.22772277228,20,40,10,32,5306021.4750557,396451.728306776,1,1,5306020.52135415,396452.505243358,29.0257183262561,0,0,75.6807722772276,632.445347992298,36.5723366336634,19.6130547495581,19.8921035167764,4.96366336633663,4.97830357526649,3.89658922329846,2.35786741326063,1.87064791139501,1.92739599619329 +41421,2873.95671326733,456.886556138614,45,76.463099009901,78.756991980198,17.5624735973267,4.67811881188119,1665.31683168317,3315.21089108911,3235.7198019802,20,40,10,32,5306034.23045703,396468.546571493,1,1,5306033.84517769,396468.86044077,50.1211385885365,0,0,76.4630990099009,653.557684295929,35.1249471946535,18.8368470766499,19.3219913640253,4.67811881188119,4.69275902081104,3.63900965815681,3.00656402340956,2.38530066586268,2.30318913278347 +41422,2873.96383752475,456.900059009901,45,77.5531386138614,79.8797327722773,17.8749405940594,4.6270297029703,1689.33168316832,3495.37326732673,3350.96534653465,20,40,10,32,5306047.12528114,396485.603022248,1,1,5306047.34125304,396485.427079921,71.4892826984635,0,0,77.5531386138613,674.949320324531,35.7498811881188,19.1719873973647,19.6497537188511,4.6270297029703,4.64166991190015,3.59720546485631,2.98377874606662,2.36722363946483,2.39345361957679 +41423,2873.97105940594,456.913767623762,45,78.6811782178218,81.0416135643564,18.3285742574258,4.18821782178218,1711.09405940594,3483.11089108911,3277.28712871287,20,40,10,32,5306060.19639095,396502.918920092,1,1,5306061.03469643,396502.23599136,93.1699168137525,0,0,78.6811782178217,696.657184598458,36.6571485148515,19.6585377627388,20.1018233370511,4.18821782178218,4.20285803071203,3.26380839819608,2.78894470182041,2.21264925759414,2.23004257938463 +41424,2873.97839782178,456.927647920792,45,79.761099009901,82.153931980198,19.1472475247525,3.80029702970297,1736.41089108911,3453.85346534653,3285.12574257426,20,40,10,32,5306073.47957907,396520.452464403,1,1,5306074.91931736,396519.279576154,115.153239603911,0,0,79.7610990099009,718.667466391637,38.294495049505,20.5366158453571,20.8611182417548,3.80029702970297,3.81493723863282,2.9853287142948,2.39548681364711,1.90049380195066,1.92057887654133 +41425,2873.98584326733,456.941705148515,45,80.8530693069307,83.2786613861386,18.587004400495,4.41821782178218,1756.0099009901,3409.57920792079,3279.17722772277,20,40,10,32,5306086.9571238,396538.209872534,1,1,5306088.99109084,396536.552893577,137.432878375539,0,0,80.8530693069306,740.975494224421,37.1740088009901,19.9357201913993,20.4456968308248,4.41821782178218,4.43285803071203,3.43717077882966,3.11781090470106,2.47355997381476,2.37942745104814 +41426,2873.99338980198,456.955946138613,45,81.8814356435644,84.3378787128713,20.0114158415842,4.70742574257426,1781.42079207921,3392.45841584158,3246.19801980198,20,40,10,32,5306100.6178706,396556.199453582,1,1,5306103.24963592,396554.055475991,160.008229952894,0,0,81.8814356435642,763.577873872386,40.0228316831683,21.4634902029147,21.7150364866677,4.70742574257426,4.72206595150411,3.70672319489935,2.50037399253886,1.98370754884012,1.99314042675733 +41427,2874.00102792079,456.970371485148,45,82.9211287128713,85.4087625742574,20.5481782178218,4.17495049504951,1801.68316831683,3284.00891089109,3131.72871287129,20,40,10,32,5306114.44420188,396574.421628571,1,1,5306117.68813082,396571.778949568,182.868493525709,0,0,82.9211287128711,786.466841584157,41.0963564356436,22.0392012917687,22.2323746464816,4.17495049504951,4.18959070397936,3.29981234418492,2.25525010039438,1.78923499525451,1.79664815587962 +41428,2874.00876584158,456.984945148515,45,83.689801980198,86.2004960396039,20.8883861386139,4.72069306930693,1817.39108910891,2662.25643564356,2571.00891089109,20,40,10,32,5306128.45214653,396592.831775443,1,1,5306132.2911194,396589.704341652,205.989197597417,0,0,83.6898019801979,809.615221149613,41.7767722772277,22.404095481799,22.5653211798939,4.72069306930693,4.73533327823678,3.73175949954405,2.28004751141596,1.80890837674943,1.81614760754241 +41429,2874.01656376238,456.999620891089,45,84.1391287128713,86.6633025742575,20.9316831683168,4.83356435643564,1826.19801980198,2288.02277227723,2223.1702970297,20,40,10,32,5306142.5690113,396611.370975746,1,1,5306147.00075224,396607.760641205,229.278750016576,0,0,84.1391287128712,832.933849229922,41.8633663366337,22.4505342435639,22.627345939268,4.83356435643564,4.8482045653655,3.81765752094246,2.34617461406102,1.86137126153842,1.8843544184988 +41430,2874.02439980198,457.014358019802,45,84.4714752475248,87.0056195049505,21.1037623762376,5.31455445544554,1832.81188118812,2207.93168316832,2163.06732673267,20,40,10,32,5306156.75517398,396629.987813547,1.57425742574257,1,5306161.77607266,396625.897289182,108.512627726235,0,0,84.4714752475247,856.355080968095,42.2075247524753,22.6350999146074,22.7910899539871,5.31455445544554,5.3291946643754,4.19999898886692,2.45642718454475,1.94884171875811,1.99615059743371 +41431,2874.03226514852,457.029157920792,45,84.8206930693069,87.3653138613861,19.7947508250495,4.28485148514852,1840.5099009901,1913.20198019802,1932.83762376238,20,40,10,32,5306170.99428174,396648.683721821,2,1,5306176.61187735,396644.106888815,25.123884435056,0,0,84.8206930693068,879.868259295928,39.589501650099,21.2311034744333,21.6996443887601,4.28485148514852,4.29949169407837,3.34441161670115,3.08051863097898,2.44397361388754,2.36827982110959 +41432,2874.04012871287,457.043992970297,45,84.5537128712872,87.0903242574257,20.4203663366337,4.74485148514852,1825.9603960396,569.356435643564,553.311881188119,20,40,10,32,5306185.22936374,396667.423259876,2,1,5306191.46759923,396662.340771916,48.6433862454004,0,0,84.553712871287,903.415065539052,40.8407326732673,21.902115086504,22.2163002595095,4.74485148514852,4.75949169407837,3.7274849835718,2.64649145103901,2.09963192907644,2.08907897576698 +41433,2874.04791990099,457.058752574257,45,83.8151386138614,86.3295927722772,21.2365445544554,3.98574257425743,1815.02475247525,269.80099009901,304.231683168317,20,40,10,32,5306199.33212243,396686.066329673,2,1,5306206.22329012,396680.451877181,72.0045195111303,0,0,83.8151386138612,926.802581160614,42.4730891089109,22.7775170730864,22.8692097780641,3.98574257425743,4.00038278318728,3.1599913431737,2.17977306482331,1.72935420715114,1.73305745925869 +41434,2874.05562376238,457.073392772277,45,83.0314950495049,85.52243990099,20.8364257425743,3.47594059405941,1793.34653465347,273.826732673267,303.927722772277,20,40,10,32,5306213.27584369,396704.557680265,2,1,5306220.84123654,396698.393915178,95.1475764682341,0,0,83.0314950495048,949.973379757975,41.6728514851485,22.3483647199097,22.4856839220371,3.47594059405941,3.49058080298926,2.75451949085814,1.98718556094954,1.57656215028817,1.58441463356303 +41435,2874.06324554455,457.087901188119,45,82.2163465346535,84.682836930693,20.3281881188119,4.25277227722772,1777.14851485149,271.688118811881,302.162376237624,20,40,10,32,5306227.07052225,396722.882072443,2,1,5306235.31796363,396716.162620831,118.067055684963,0,0,82.2163465346534,972.920669334434,40.6563762376238,21.8032482051797,22.0055363323088,4.25277227722772,4.26741248615758,3.35490746891237,2.15744358851194,1.71163879703541,1.71183708868298 +41436,2874.07079089109,457.102272772277,45,81.428792079208,83.8716558415841,21.0262079207921,3.83366336633663,1760.97524752475,306.279207920792,335.060396039604,20,40,10,32,5306240.72672294,396741.03340626,2,1,5306249.65469926,396733.759501272,140.764901179606,0,0,81.4287920792079,995.647584735974,42.0524158415842,22.5519179294933,22.5541865420468,3.83366336633663,3.84830357526649,3.04831031417173,1.97341406199826,1.56563633418626,1.5794318938085 +41437,2874.0782619802,457.116518811881,45,80.7733168316832,83.1965163366337,21.0505445544554,3.97643564356436,1749.9801980198,882.058415841584,866.975247524752,20,40,10,32,5306254.2482274,396759.025815585,2,1,5306263.85987334,396751.194903316,163.254459090287,0,0,80.7733168316831,1018.1663339934,42.1010891089109,22.5780204852715,22.5383482630881,3.97643564356436,3.99107585249421,3.16951800482195,1.86524531777299,1.47981911039953,1.47866989496627 +41438,2874.0856949505,457.130675742574,45,80.4739801980198,82.8881996039604,20.7126138613861,3.83425742574257,1744.32178217822,1364.34257425743,1341.98910891089,20,40,10,32,5306267.70116348,396776.905884165,2,1,5306277.98267969,396768.529207378,185.613612843069,0,0,80.4739801980197,1040.55334876238,41.4252277227723,22.2155687638453,22.2336761725251,3.83425742574257,3.84889763467243,3.05248025975575,1.90526048796068,1.51156571926936,1.53337540412015 +41439,2874.09310821782,457.144813564356,45,80.4321782178218,82.8451435643564,20.6020198019802,4.62148514851485,1745.65346534653,1654.60891089109,1650.97227722772,20,40,10,32,5306281.11808308,396794.761414603,2,1,5306292.07910088,396785.831126349,207.930993749259,0,0,80.4321782178217,1062.89906306381,41.2040396039604,22.0969497451136,22.1348350823603,4.62148514851485,4.6361253574447,3.67197500612908,2.13710622896878,1.69550386131394,1.65355204899257 +41440,2874.10052851485,457.158953564357,45,80.5062079207921,82.9213941584158,20.8331584158416,4.59673267326733,1745.30693069307,1758.71881188119,1744.5495049505,20,40,10,32,5306294.54802991,396812.61980786,2,1,5306306.18212133,396803.141145226,230.258822553331,0,0,80.506207920792,1085.25333179318,41.6663168316832,22.3448603084342,22.3356671915788,4.59673267326733,4.61137288219718,3.65951707170976,2.07532866069085,1.64649174196396,1.64323867409857 +41441,2874.10796861386,457.173099108911,45,80.6220792079208,83.0407415841584,20.4030495049505,4.69950495049505,1747.89603960396,1767.47920792079,1785.25346534653,20,40,10,32,5306308.01458769,396830.485679879,0.831683168316832,0.415841584158416,2206586.9070155,165012.326046643,102.302790218787,0,0,80.6220792079207,1107.6368120187,40.806099009901,21.8835417056838,21.9766361243931,4.69950495049505,4.7141451594249,3.72228936583175,2.05155208012726,1.62762825094608,1.64835565689485 +41442,2874.11542722772,457.187254950495,45,80.7884158415842,83.2120683168317,20.5867821782178,4.86613861386139,1753.65841584158,1978.25247524753,1943.04257425743,20,40,10,32,5306321.51526645,396848.364907228,0,0,0,0,0,0,0,80.7884158415841,1130.05131364136,41.1735643564356,22.0806064443233,22.1413179308148,4.86613861386139,4.88077882279124,3.86089190048178,2.24460316768826,1.78078809857259,1.7694489101596 +41443,2874.12292138614,457.201427524753,45,81.0553663366337,83.4870273267327,20.8037722772277,4.98039603960396,1760.5099009901,2201.95841584158,2108.51683168317,20,40,10,32,5306335.08146794,396866.266069427,0,0,0,0,0,0,0,81.0553663366335,1152.52318655115,41.6075445544554,22.313341844012,22.3416544848711,4.98039603960396,4.99503624853381,3.9578907770041,2.11867505032174,1.68088122153075,1.6688415640533 +41444,2874.13045891089,457.215648118812,45,81.4506138613861,83.8941322772278,20.6952574257426,4.75336633663366,1770.54455445545,2534.87623762376,2431.6,20,40,10,32,5306348.72698451,396884.228395,0,0,0,0,0,0,0,81.450613861386,1175.09048949394,41.3905148514852,22.1969529053102,22.2727958413497,4.75336633663366,4.76800654556352,3.76977970928854,2.09099030889214,1.65891713506791,1.68056175614139 +41445,2874.13805465347,457.22994970297,45,82.1304653465347,84.5943793069307,20.3522376237624,5.0409900990099,1787.44554455446,3105.63861386138,2993.5,20,40,10,32,5306362.47859303,396902.293441065,0,0,0,0,0,0,0,82.1304653465345,1197.80163822882,40.7044752475248,21.8290427975252,22.0188837827303,5.0409900990099,5.05563030793975,3.97734228609425,2.3591704143795,1.87168166601067,1.87848220053117 +41446,2874.14571990099,457.244405742574,45,83.0422772277227,85.5335455445545,21.2493663366337,4.80405940594059,1804.82673267327,3072.17623762376,2973.36633663366,20,40,10,32,5306376.35556731,396920.553085286,0,0,0,0,0,0,0,83.0422772277227,1220.74294788228,42.4987326732673,22.7912692332706,22.8353860789494,4.80405940594059,4.81869961487045,3.81559024041057,2.23124395552567,1.77018937610445,1.77953019559349 +41447,2874.15346742574,457.259004653465,45,83.734207920792,86.2462341584159,20.5093861386139,4.55049504950495,1817.60891089109,2495.11485148515,2436.12772277228,20,40,10,32,5306390.38182553,396938.993318909,0,0,0,0,0,0,0,83.734207920792,1243.91846842684,41.0187722772277,21.9975943700686,22.245698098892,4.55049504950495,4.5651352584348,3.58430914423317,2.36874644635443,1.87927894824656,1.83708170516776 +41448,2874.16127069307,457.273691683169,45,84.1842178217822,86.7097443564357,22.3733168316832,3.43633663366337,1823.86633663366,2121.32475247525,2117.89504950495,20,40,10,32,5306404.509436,396957.545063971,0,0,0,0,0,0,0,84.1842178217821,1267.24647123212,44.7466336633663,23.9967761614174,23.8592283354335,3.43633663366337,3.45097684259322,2.75603394990809,2.15360030748696,1.70858967494235,1.76581020304341 +41449,2874.16910435643,457.288444455445,45,84.4655247524753,86.9994904950495,21.6083564356436,4.69712871287129,1831.18316831683,1875.60594059406,1919.57722772277,20,40,10,32,5306418.69194691,396976.179609476,0,0,0,0,0,0,0,84.4655247524752,1290.67413990648,43.2167128712871,23.1763084795708,23.2220588663011,4.69712871287129,4.71176892180114,3.73287098041467,2.18646731957579,1.73466519011847,1.71500534971854 +41450,2874.17694138614,457.303259405941,45,84.6664059405941,87.2063981188119,21.6279702970297,4.49168316831683,1835.08415841584,1725.97425742574,1785.41881188119,20,40,10,32,5306432.87936995,396994.891620811,0,0,0,0,0,0,0,84.6664059405939,1314.16537827282,43.2559405940594,23.1973455678526,23.2502440529279,4.49168316831683,4.50632337724668,3.56606068767716,2.13753413393139,1.69584334584988,1.67937934342735 +41451,2874.18476851485,457.31813049505,45,84.7868316831683,87.3304366336634,21.9623069306931,2.78524752475247,1840.12376237624,1630.48316831683,1684.50495049505,20,40,10,32,5306447.04726448,397013.673136039,0,0,0,0,0,0,0,84.7868316831682,1337.70071721672,43.9246138613861,23.5559424366557,23.5442450625892,2.78524752475247,2.79988773368233,2.22197580491623,2.00702858150912,1.59230489509086,1.58610179903318 +41452,2874.19258237624,457.333050594059,45,84.8759405940594,87.4222188118812,22.5400594059406,1.40059405940594,1839.70297029703,1577.78514851485,1589.21782178218,20,40,10,32,5306461.18955399,397032.515164379,0,0,0,0,0,0,0,84.8759405940593,1361.26725140264,45.0801188118812,24.1756179603843,24.0425684765002,1.40059405940594,1.4152342683358,1.12794441545263,1.85360360691787,1.47058299221335,1.49692520765181 +41453,2874.20038712871,457.347992376238,45,84.9118415841584,87.4591968316832,22.663504950495,3.01356435643564,1840.59900990099,1522.5198019802,1513.44554455446,20,40,10,32,5306475.31454923,397051.38380643,0,0,0,0,0,0,0,84.9118415841584,1384.8480709846,45.3270099009901,24.3080209975863,24.1494582620173,3.01356435643564,3.0282045653655,2.41945594905971,1.94607516919096,1.54394663168551,1.51413248204764 +41454,2874.20818366337,457.362951188119,45,84.9169207920792,87.4644284158416,22.6304851485149,3.38435643564356,1841.16336633663,1504.66534653465,1511.37821782178,20,40,10,32,5306489.42400448,397070.273295519,0,0,0,0,0,0,0,84.9169207920791,1408.43648344334,45.2609702970297,24.2726052028262,24.1195665083773,3.38435643564356,3.39899664457342,2.71705748419379,2.07778231280027,1.64843838203709,1.63558243900832 +41455,2874.21597376237,457.377921188119,45,84.9522574257426,87.5008251485149,21.3323366336634,1.17405940594059,1841.18316831683,1496.25445544554,1494.21287128713,20,40,10,32,5306503.52135093,397089.176414605,0,0,0,0,0,0,0,84.9522574257424,1432.02956017602,42.6646732673267,22.8802600458912,23.0196468510343,1.17405940594059,1.18869961487045,0.939484526740965,1.83991299183454,1.45972134648751,1.52606790283853 +41456,2874.22375752475,457.392905940594,45,84.9651287128713,87.5140825742574,19.7023509350495,0.839009900990099,1842.05940594059,1476.97128712871,1469.35841584158,20,40,10,32,5306517.60669293,397108.097606507,0,0,0,0,0,0,0,84.9651287128712,1455.62955937844,39.404701870099,21.1319988358877,21.6319558582246,0.839009900990099,0.853650109919956,0.670545961732154,3.08870136981605,2.45046550704021,2.30796311689276 +41457,2874.2315449505,457.407886138614,45,84.9825049504951,87.53198009901,20.8694086908911,1.33485148514851,1842.55445544554,1502.20594059406,1481.51782178218,20,40,10,32,5306531.69898291,397127.013154091,0,0,0,0,0,0,0,84.9825049504949,1479.23327667766,41.7388173817822,22.3837409868198,22.6265485428927,1.33485148514851,1.34949169407837,1.06385511497725,2.23233239122992,1.77105290217271,1.98358165945053 +41458,2874.23934831683,457.422855049505,45,85.0122673267327,87.5626353465347,18.9948162818812,-0.253069306930693,1897.91089108911,1466.55742574257,1456.41287128713,20,40,10,32,5306545.82111198,397145.915077037,0,0,0,0,0,0,0,85.0122673267325,1502.84170775577,37.9896325637624,20.3731238408989,21.032051536248,-0.253069306930693,-0.238429098000836,-0.178622234484704,3.69139196267548,2.92861872821343,2.81439108587718 +41459,2874.24716059406,457.437817029703,45,85.0017920792079,87.5518458415842,19.3055286027723,-0.435940594059406,1840.33663366337,1436.43168316832,1423.69405940594,20,40,10,32,5306559.95996186,397164.808569125,0,0,0,0,0,0,0,85.0017920792078,1526.4559810506,38.6110572055445,20.7063821624572,21.2969487546921,-0.435940594059406,-0.421300385129549,-0.32487239453986,3.37838149310259,2.6802873852981,2.6831649237011 +41460,2874.2549840594,457.45277,45,85.021297029703,87.5719359405941,19.1245715075248,-2.00960396039604,1843.23267326733,1451.15742574257,1455.5603960396,20,40,10,32,5306574.11979683,397183.691115724,0,0,0,0,0,0,0,85.0212970297028,1550.07289397689,38.2491430150495,20.5122944041627,21.1429976079797,-2.00960396039604,-1.99496375146618,-1.53468083974008,3.58768592861502,2.84634205950711,2.84941403123891 +41461,2874.26281752475,457.467713168317,45,85.0486534653465,87.600113069307,19.3513118813861,-0.446534653465346,1843.26237623762,1438.75445544555,1430.64653465346,20,40,10,32,5306588.29843355,397202.561690963,0,0,0,0,0,0,0,85.0486534653464,1573.69110781078,38.7026237627723,20.7554875810725,21.3382610406562,-0.446534653465346,-0.431894444535489,-0.325020032484084,3.36765993404845,2.67178128273325,2.72767312929188 +41462,2874.27065594059,457.482652079208,45,85.017297029703,87.5678159405941,18.8747381743564,-0.0542574257425745,1842.73267326733,1410.78316831683,1407.18910891089,20,40,10,32,5306602.48639544,397221.427033957,0,0,0,0,0,0,0,85.0172970297029,1597.31145434543,37.7494763487129,20.2443325897029,20.9301871035119,-0.0542574257425745,-0.0396172168127171,-0.0325609416060112,3.80008867710221,3.01485482472773,2.85094397158016 +41463,2874.27850584158,457.497575346535,45,84.9968316831683,87.5467366336633,20.6393322331683,-0.547425742574257,1841.31683168317,1424.01485148515,1423.68910891089,20,40,10,32,5306616.69603949,397240.273178678,0,0,0,0,0,0,0,84.9968316831683,1620.92499070406,41.2786644663366,22.1369696521304,22.4314296189984,-0.547425742574257,-0.5327855336444,-0.418929077724813,2.3670959883295,1.87796953371383,2.00406484585499 +41464,2874.28635643564,457.512491089109,45,84.9813861386139,87.5308277227723,19.8057590760396,-1.22435643564356,1842.29702970297,1443.1099009901,1466.84059405941,20,40,10,32,5306630.90719477,397259.109881131,0,0,0,0,0,0,0,84.9813861386138,1644.53520921341,39.6115181520792,21.2429105094351,21.7208198942461,-1.22435643564356,-1.20971622671371,-0.934139048389343,3.04002850474913,2.41185019183335,2.29645673415005 +41465,2874.29420881188,457.527406831683,45,84.9877128712871,87.5373442574258,20.01699945,-0.403960396039604,1840.37623762376,1422.03069306931,1448.46831683168,20,40,10,32,5306645.12171173,397277.946549406,0,0,0,0,0,0,0,84.987712871287,1668.14716534653,40.0339989,21.4694789707999,21.9021623031711,-0.403960396039604,-0.389320187109746,-0.301336712211161,2.95236106372588,2.34229797081992,2.36776128597425 +41466,2874.30204544555,457.542335148515,45,84.9896831683168,87.5393736633663,19.7437535756436,1.24564356435644,1842.10396039604,1417.95544554455,1441.20792079208,20,40,10,32,5306659.30684965,397296.798266865,0,0,0,0,0,0,0,84.9896831683167,1691.75403138063,39.4875071512871,21.1764057473127,21.6701544418262,1.24564356435644,1.26028377328629,0.98352002451032,2.93749242248229,2.3305017211533,2.4483010625897 +41467,2874.30987465346,457.557268415841,45,84.9987524752475,87.548715049505,19.3750423541584,1.06277227722772,1844.44059405941,1451.96930693069,1469.63168316832,20,40,10,32,5306673.47818332,397315.655812476,0,0,0,0,0,0,0,84.9987524752474,1715.35872662265,38.7500847083168,20.7809399915311,21.3557770947748,1.06277227722772,1.07741248615758,0.821048214049433,3.35685988467448,2.66321290874803,2.60372466325593 +41468,2874.31770089109,457.572211485149,45,85.0299207920792,87.5808184158416,19.1540528054455,-1.66277227722772,1842.65346534653,1447.5900990099,1451.60594059406,20,40,10,32,5306687.64385832,397334.525375692,0,0,0,0,0,0,0,85.0299207920791,1738.97053195819,38.3081056108911,20.5439149328699,21.1690019213609,-1.66277227722772,-1.64813206829787,-1.26516371616856,3.55030955609113,2.81668897858996,2.84240937127539 +41469,2874.32554613861,457.587136534654,45,85.0065742574258,87.5567714851486,18.7276699672277,0.291485148514851,1840.9801980198,1440.88910891089,1421.40099009901,20,40,10,32,5306701.84520624,397353.373029046,0,0,0,0,0,0,0,85.0065742574256,1762.58467995049,37.4553399344555,20.0865927751962,20.8056614893863,0.291485148514851,0.306125357444709,0.235207948388419,3.89168168790881,3.08752145280025,3.05902520516047 +41470,2874.33340485148,457.602047524752,45,84.9930891089109,87.5428817821782,18.9120665571287,0.402178217821782,1842.70297029703,1448.38811881188,1437.37821782178,20,40,10,32,5306716.0718687,397372.203522308,0,0,0,0,0,0,0,84.9930891089108,1786.19972753025,37.8241331142574,20.2843696057874,20.9607212534171,0.402178217821782,0.416818426751639,0.319508933817738,3.76123171331049,2.98402709550456,2.99626093191313 +41471,2874.34126653465,457.616956237624,45,85.0030594059406,87.5531511881188,18.9235819579208,-0.0137623762376237,1840.37128712871,1440.44554455445,1439.11782178218,20,40,10,32,5306730.30414404,397391.031184152,0,0,0,0,0,0,0,85.0030594059405,1809.81174095159,37.8471639158416,20.2967205905473,20.9739416547395,-0.0137623762376237,0.00087783269223373,-0.00258722861132904,3.66966881975976,2.91138436138869,2.91884659072326 +41472,2874.34912683168,457.631860594059,45,84.9793069306931,87.5286861386138,18.9152387243564,-0.848217821782178,1840.28217821782,1430.14950495049,1435.94653465347,20,40,10,32,5306744.53400867,397409.853281431,0,0,0,0,0,0,0,84.979306930693,1833.42015783827,37.8304774487129,20.2877719527654,20.9631807225858,-0.848217821782178,-0.83357761285232,-0.645324373862758,3.78495438548352,3.00284781752803,2.97777148146812 +41473,2874.35697237624,457.646781287129,45,84.9621485148515,87.511012970297,18.9276727175248,-2.23425742574257,1840.28712871287,1447.91782178218,1448.97722772277,20,40,10,32,5306758.73624521,397428.695146812,0,0,0,0,0,0,0,84.9621485148514,1857.02482120461,37.8553454350495,20.3011081850772,20.9721048147397,-2.23425742574257,-2.21961721681272,-1.70495768940766,3.74461019859008,2.97084017853837,2.98158485012325 +41474,2874.36481663366,457.661699207921,45,84.9590099009901,87.5077801980198,19.0624444447525,-1.39891089108911,1840.4603960396,1459.31584158416,1427.14554455446,20,40,10,32,5306772.93621941,397447.533424072,0,0,0,0,0,0,0,84.95900990099,1880.62490294278,38.124888889505,20.4456592588184,21.0875517090964,-1.39891089108911,-1.38427068215925,-1.07206264040628,3.61911902541272,2.87127995743242,2.90201254236294 +41475,2874.37267584158,457.676595346535,45,84.9420792079208,87.4903415841584,19.3954488449505,-0.307029702970297,1841.12376237624,1453.12079207921,1440.72277227723,20,40,10,32,5306787.16442975,397466.344971494,0,0,0,0,0,0,0,84.9420792079207,1904.22324524201,38.790897689901,20.8028272242317,21.3703039475884,-0.307029702970297,-0.29238949404044,-0.228304682873648,3.28025336937205,2.60243603170914,2.59307661714855 +41476,2874.38053673267,457.691484752475,45,84.954297029703,87.5029259405941,18.9834845984158,-1.96079207920792,1839.9801980198,1480.84950495049,1492.41386138614,20,40,10,32,5306801.39596723,397485.148096041,0,0,0,0,0,0,0,84.9542970297028,1927.81558690868,37.9669691968317,20.3609699044176,21.0200520345607,-1.96079207920792,-1.94615187027806,-1.50163981832487,3.6808235109063,2.92023409550782,2.88789144220473 +41477,2874.38838633664,457.706395544555,45,84.9516435643565,87.5001928712871,19.2905456550495,-0.709306930693069,1840.08910891089,1436.77524752475,1452.65247524753,20,40,10,32,5306815.60618406,397503.977391968,0,0,0,0,0,0,0,84.9516435643563,1951.4125111111,38.581091310099,20.6903120175857,21.2802459321857,-0.709306930693069,-0.694666721763211,-0.541647589238799,3.42403873535023,2.71651021291354,2.78199904256093 +41478,2874.39619237624,457.721321782178,45,84.5921188118812,87.1298823762376,18.5913047307921,-3.06594059405941,1825.82673267327,260.09801980198,310.169306930693,20,40,10,32,5306829.73542323,397522.824398442,0,0,0,0,0,0,0,84.5921188118811,1974.98091586907,37.1826094615841,19.9403325635538,20.6633828791733,-3.06594059405941,-3.05130038512955,-2.34428311795136,4.00727027304561,3.1792253137346,3.11906995573524 +41479,2874.40391623762,457.736172871287,45,83.8886633663366,86.4053232673267,18.3666897690099,-2.38356435643564,1809.36138613861,251.393069306931,286.786138613861,20,40,10,32,5306843.7141626,397541.575014289,0,0,0,0,0,0,0,83.8886633663365,1998.38209496699,36.7333795380198,19.6994190235122,20.4325271367757,-2.38356435643564,-2.36892414750579,-1.81841926988715,4.01415097412758,3.18468421657006,3.10614346493947 +41480,2874.41155346535,457.750924851485,45,83.1575940594059,85.6523218811881,18.7762651262376,-3.27346534653465,1792.10396039604,-677.864356435644,-533.475247524752,20,40,10,32,5306857.53467812,397560.199253383,0,0,0,0,0,0,0,83.1575940594058,2021.58909279427,37.5525302524753,20.1387141107166,20.7384648551648,-3.27346534653465,-3.2588251376048,-2.52050584318703,3.53100458195281,2.80137310062825,2.86648258582394 +41481,2874.41905544554,457.765457326733,45,80.9836237623763,83.4131324752476,17.5197678766337,-2.48524752475248,1735.21782178218,-3188.86831683168,-2791.39207920792,20,40,10,32,5306871.10958096,397578.545571563,0,0,0,0,0,0,0,80.9836237623761,2044.42561086358,35.0395357532673,18.7910425306367,19.5464269091824,-2.48524752475248,-2.47060731582262,-1.89189811146573,4.04471262431937,3.20893073983874,3.18810936627686 +41482,2874.42631316832,457.779546534654,45,78.4295148514851,80.7824002970297,16.9077425742574,-1.57504950495049,1682.15346534653,-3128.11881188119,-2659.88514851485,20,40,10,32,5306884.24189135,397596.331703085,0,0,0,0,0,0,0,78.429514851485,2066.55135995599,33.8154851485148,18.1346072646127,18.8807239366006,-1.57504950495049,-1.56040929602064,-1.19516309341782,3.93833956742384,3.12453815033551,3.14314283885237 +41483,2874.43331762376,457.793176930693,45,75.5221881188119,77.7878537623762,16.0443525854455,-2.55287128712871,1618.24257425743,-3531.94356435644,-3032.68316831683,20,40,10,32,5306896.91525832,397613.537999722,0,0,0,0,0,0,0,75.5221881188118,2087.93878996149,32.0887051708911,17.2085677123462,17.9773020401317,-2.55287128712871,-2.53823107819886,-1.93627532592383,4.08866036156615,3.24379730715668,3.25151294225186 +41484,2874.44003475247,457.806296039604,45,72.4715544554456,74.6457010891089,15.4686600660396,-0.767524752475247,1548.79207920792,-3694.30693069307,-3182.39207920792,20,40,10,32,5306909.06774668,397630.097994644,0,0,0,0,0,0,0,72.4715544554455,2108.49611644664,30.9373201320792,16.5911016195931,17.3139119520519,-0.767524752475247,-0.75288454354539,-0.576414483202727,3.82451843196538,3.03423652093917,2.90919068743744 +41485,2874.44645554456,457.818825742574,45,68.8471881188119,70.9126037623762,15.5772843785149,-1.45108910891089,1469.76237623762,-4074.94653465347,-3414.96138613861,20,40,10,32,5306920.68438773,397645.914107661,0,0,0,0,0,0,0,68.8471881188118,2128.1381201045,31.1545687570297,16.7076079620262,17.1993486658162,-1.45108910891089,-1.43644889998103,-1.12625530541494,2.85652982297348,2.26626888226656,2.35350184471904 +41486,2874.45251425743,457.83066990099,45,64.7163168316831,66.6578063366337,14.5635066008911,-1.24534653465347,1382.75247524752,-4192.73564356436,-3530.9396039604,20,40,10,32,5306931.64552147,397660.864452196,0,0,0,0,0,0,0,64.7163168316831,2146.69104612211,29.1270132017822,15.6202681370877,16.0990745502722,-1.24534653465347,-1.23070632572361,-0.949782965742039,2.77280983411296,2.19984842901157,2.20073111405031 +41487,2874.45817356436,457.841740891089,45,60.0052673267327,61.8054253465346,13.9218344334653,-2.18188118811881,1356.52475247525,-4920.5900990099,-4116.79306930693,20,40,10,32,5306941.88393492,397674.838681692,0,0,0,0,0,0,0,60.0052673267326,2164.03020387788,27.8436688669307,14.932034761296,15.2838231025437,-2.18188118811881,-2.16724097918896,-1.67746106880413,2.16666581099992,1.71895537944312,1.75313451129141 +41488,2874.46338019802,457.851904455446,45,54.6852772277228,56.3258355445545,12.4651386138614,-2.36188118811881,1363.78217821782,-5185.1603960396,-4377.59900990099,20,40,10,32,5306951.30391708,397687.667847304,0,0,0,0,0,0,0,54.6852772277227,2179.95898319581,24.9302772277228,13.3696377425041,13.7383241617999,-2.36188118811881,-2.34724097918896,-1.82112753674244,2.21652552061835,1.75851229478786,1.74553690694034 +41489,2874.46811841584,457.86111009901,45,49.6558712871287,51.1455474257426,10.810125962604,-1.07613861386139,1242.47524752475,-4506.70792079208,-3677.96435643564,20,40,10,32,5306959.877415,397699.288554586,0,0,0,0,0,0,0,49.6558712871286,2194.40452497249,21.6202519252079,11.5945335666093,12.043149635866,-1.07613861386139,-1.06149840493153,-0.817398811900165,2.43637585370973,1.93293370801235,1.90110598754648 +41490,2874.47247366337,457.869583861386,45,46.1487623762376,47.5332252475248,9.91264356435644,-0.909405940594059,1158.40594059406,-4070.52574257426,-3300.87722772277,20,40,10,32,5306967.75770454,397709.985138105,0,0,0,0,0,0,0,46.1487623762376,2207.68639526952,19.8252871287129,10.6319277812632,11.0782559787279,-0.909405940594059,-0.894765731664201,-0.695615221839658,2.40552713111789,1.90845943174003,1.95684930548194 +41491,2874.47651841584,457.877490990099,45,43.0056435643565,44.2958128712871,9.46512871287129,-2.13,1398.40594059406,-3823.02475247525,-2977.03861386139,20,40,10,32,5306975.075381,397719.965790608,0,0,0,0,0,0,0,43.0056435643564,2220.06052043454,18.9302574257426,10.1519402228342,10.51702576134,-2.13,-2.11535979107014,-1.64336563630219,2.03878525078049,1.61749950387644,1.59335406631743 +41492,2874.48028415842,457.884906138614,45,40.3978415841584,41.6097768316832,7.96714851485148,-2.43534653465347,1405.86138613861,-3183.45049504951,-2414.55544554455,20,40,10,32,5306981.88711385,397729.324527478,0,0,0,0,0,0,0,40.3978415841584,2231.63520330033,15.934297029703,8.54526313617118,9.09342942132571,-2.43534653465347,-2.42070632572361,-1.79613412390193,2.80986666989931,2.22924800087756,2.25692260947605 +41493,2874.4837770297,457.891881881188,45,37.6833663366337,38.8138673267327,6.08324807480198,-0.515544554455446,1316.98514851485,-3173.75841584158,-2397.32574257426,20,40,10,32,5306988.20311021,397738.127032567,0,0,0,0,0,0,0,37.6833663366336,2242.47008817381,12.166496149604,6.52466254706922,7.33518499076202,-0.515544554455446,-0.500904345525588,-0.408421458696351,4.00372713411601,3.17641431367532,2.95890954695866 +41494,2874.48690049505,457.898519009901,45,34.9742475247525,36.0234749504951,7.52709900990099,1.00287128712871,1224.05445544554,-3283.04851485148,-2503.26633663366,20,40,9.93069306930693,32,5306993.84232671,397746.495669686,0,0,0,0,0,0,0,34.9742475247524,2252.56247786028,15.054198019802,8.07328262699223,8.40805330514886,1.00287128712871,1.01751149605857,0.770174226569256,1.81579935951947,1.4405904506311,1.69515684951241 +41495,2874.48953742574,457.904795742574,45,31.8424851485149,32.7977597029703,5.79347359735644,-1.92524752475248,1121.22772277228,-5064.94950495049,-4005.48712871287,20,40,9.54455445544554,32,5306998.58827913,397754.399469365,0,0,0,0,0,0,0,31.8424851485148,2261.86483033553,11.5869471947129,6.21386136703563,6.75353098691918,-1.92524752475248,-1.91060731582262,-1.36959170884108,2.72281463640482,2.16018402224868,2.06586518298344 +41496,2874.49138237624,457.910692970297,45,27.8222178217822,28.6568843564356,4.7094994499604,-4.04752475247525,1313.4801980198,-4133.18514851485,-3253.40495049505,20,40,10,32,5307001.87559598,397761.804609961,0,0,0,0,0,0,0,27.8222178217821,2270.12611853685,9.41899889992079,5.05123156227686,5.6008933370293,-4.04752475247525,-4.03288454354539,-2.83166120642956,2.75836655241668,2.18838964443917,2.23407627022887 +41497,2874.49259495049,457.91630960396,45,24.8232772277228,25.5679755445545,3.48235808580198,-4.92366336633663,1410.88118811881,-3605.91584158416,-2806.95148514852,20,40,10,32,5307003.99773434,397768.839523435,0,0,0,0,0,0,0,24.8232772277227,2277.43716014851,6.96471617160396,3.73504599821132,4.38461508781839,-4.92366336633663,-4.90902315740678,-3.30396845772636,3.20145911834006,2.53992348316889,2.47008706868686 +41498,2874.49345514851,457.92145970297,45,22.7519207920792,23.4344784158416,3.80229702970297,-4.26970297029703,1523.18811881188,-1590.33465346535,-1159.56633663366,20,40,10,32,5307005.47745416,397775.281830138,0,0,0,0,0,0,0,22.7519207920792,2283.99309796479,7.60459405940594,4.07820044776706,4.53836339033007,-4.26970297029703,-4.25506276136718,-3.03928979413045,2.29052083421556,1.81721753752338,1.95600857354396 +41499,2874.4943029703,457.926307029703,45,21.4114059405941,22.0537481188119,1.90118811881188,-2.09891089108911,1418,-2072.42475247525,-1607.10594059406,20,40,10,32,5307006.94093781,397781.3466466,0,0,0,0,0,0,0,21.411405940594,2290.14293721122,3.80237623762376,2.03914270159838,2.84432205964902,-2.09891089108911,-2.08427068215925,-1.30079270782654,3.92301998442083,3.11238413955999,2.88852875095705 +41500,2874.49543227723,457.930552079208,45,19.663504950495,20.2534100990099,3.4669603960396,-5.5,1263.70792079208,-1937.70693069307,-2373.15346534653,20,40,10,32,5307008.939127,397786.670607074,0,0,0,0,0,0,0,19.663504950495,2295.84541193619,6.93392079207921,3.71853101666386,4.07549581384663,-5.5,-5.48535979107015,-4.00794540664753,1.7982721553129,1.42668499192836,1.55716816840631 +41501,2874.49703435644,457.93387980198,45,17.7098811881188,18.2411776237624,3.24830693069307,-5.5,1104.55445544554,-1165.01188118812,-1704.36930693069,20,40,10,32,5307011.83330217,397790.867618574,0,0,0,0,0,0,0,17.7098811881188,2301.02940775577,6.49661386138614,3.48401155295123,3.77759355466926,-5.5,-5.48535979107015,-4.04338932373223,1.49386370599214,1.18517818508657,1.15258621227811 +41502,2874.49905168317,457.936154158416,45,16.6793762376238,17.1797575247525,3.98324752475247,-5.5,995.925742574257,-39.0910891089109,-291.774257425743,20,40,10,32,5307015.51990688,397793.766366056,0,0,0,0,0,0,0,16.6793762376237,2305.792094967,7.96649504950495,4.27228112693804,4.34377872293682,-5.5,-5.48535979107015,-4.27807877413144,0.672170025994414,0.533275725410688,0.594869464487289 +41503,2874.50136326733,457.937296633663,45,15.8696237623762,16.3457124752475,4.739,-5.5,907.891089108911,65.6356435643564,-172.875247524752,20,40,9.69306930693069,32,5307019.77655588,397795.265096023,0,0,0,0,0,0,0,15.8696237623762,2310.30315217272,9.478,5.08287274008097,4.94037215452772,-5.5,-5.48535979107015,-4.45885758046733,0.891604281175205,0.7073670372605,0.690190086760884 +41504,2874.50361891089,457.937150594059,45,15.6753069306931,16.1455661386139,5.32559405940594,-5.5,909.782178217822,3749.43861386139,3346.3198019802,20,40,10,32,5307023.95801572,397795.157242966,0,0,0,0,0,0,0,15.6753069306931,2314.62623564357,10.6511881188119,5.7120314136509,5.42831608992189,-5.5,-5.48535979107015,-4.55405813275581,1.4466272074664,1.14770243186489,1.14502565347338 +41505,2874.50591821782,457.93598,45,17.4050396039604,17.9271907920792,5.70840594059406,-5.5,980.707920792079,4093.36336633663,3580.8900990099,20,40,10,32,5307028.24296315,397793.774821235,0,0,0,0,0,0,0,17.4050396039604,2319.22645915842,11.4168118811881,6.12262100543613,5.85302710773466,-5.5,-5.48535979107015,-4.52978138653223,1.40200663089406,1.11230205782314,1.16084651583193 +41506,2874.50805227723,457.933578316832,45,18.7482079207921,19.3106541584158,6.48175247524753,-5.5,920.257425742574,3983.23564356436,3493.13267326733,20,40,10,32,5307032.24898097,397790.853754692,0,0,0,0,0,0,0,18.7482079207921,2324.25819040154,12.9635049504951,6.95208334340325,6.58787661797278,-5.5,-5.48535979107015,-4.56857592157442,1.84139913535211,1.46090039975045,1.37998254893645 +41507,2874.50958544554,457.93,45,20.0323168316832,20.6332863366337,6.47460396039604,-5.5,850.762376237624,3373.54059405941,2975.56435643564,20,40,10,32,5307035.16790622,397786.447567149,0,0,0,0,0,0,0,20.0323168316831,2329.6513869637,12.9492079207921,6.94441611587198,6.65529949095173,-5.5,-5.48535979107015,-4.52083827901817,1.51032291944715,1.19823633801734,1.27707853449506 +41508,2874.51034148515,457.925644455446,50.3465346534653,21.0218613861386,21.6525172277228,7.28562376237624,-5.5,920.985148514852,3601.30495049505,3189.88415841584,20,40,9.93069306930693,32,5307036.66447433,397781.047901374,0,0,0,0,0,0,0,21.0218613861386,2335.34213140815,14.5712475247525,7.81428538009461,7.40196040824106,-5.5,-5.48535979107015,-4.57087497199238,2.08206152137811,1.65183335350306,1.58996924685575 +41509,2874.51009881188,457.920828514851,171.534653465347,22.2283564356436,22.8952071287129,7.16482178217822,-5.46188118811881,936.366336633663,3239.5198019802,2876.80198019802,20,40,10,32,5307036.32124444,397775.042068783,0,0,0,0,0,0,0,22.2283564356435,2341.3713629538,14.3296435643564,7.68471773035915,7.36828402958954,-5.46188118811881,-5.44724097918896,-4.48779894717903,1.65494548649204,1.31297472468896,1.34690361938216 +41510,2874.50893504951,457.916206732673,225,23.1222475247525,23.815914950495,7.30722772277228,-4.44980198019802,770.539603960396,3585.82178217822,3211.61188118812,20,40,10,32,5307034.26755761,397769.247807039,0,0,0,0,0,0,0,23.1222475247524,2347.66872524753,14.6144554455446,7.83745697354783,7.54123817731484,-4.44980198019802,-4.43516177126817,-3.64126643065378,1.56006228602343,1.23769777748452,1.22079961973451 +41511,2874.5070480198,457.911838712871,225,23.8958415841584,24.6127168316832,7.17868316831683,-1.79514851485149,814.29702970297,4341.68910891089,3853.96336633663,20,40,10,32,5307030.8685324,397763.745837714,0,0,0,0,0,0,0,23.8958415841584,2354.19361160617,14.3573663366337,7.69958493055829,7.4766037312742,-1.79514851485149,-1.78050830592163,-1.45283000040747,1.23114143349241,0.9767437041804,0.948087809930795 +41512,2874.50479821782,457.907534455446,225,25.3793861386138,26.1407677227723,6.20620792079208,0.527623762376238,894.460396039604,4550.44455445544,3967.6603960396,20,40,10,32,5307026.79612435,397758.311362756,0,0,0,0,0,0,0,25.3793861386138,2361.03016782179,12.4124158415842,6.65654464230189,6.73498223107893,0.527623762376238,0.542263971306095,0.433879861651448,1.00145686002653,0.794520155384905,0.780442639756012 +41513,2874.50238693069,457.903067326733,225,26.5835346534654,27.3810406930693,7.28108910891089,2.12029702970297,1295.77722772277,4793.03663366337,4207.19405940594,20,40,10,32,5307022.42819,397752.668734557,0,0,0,0,0,0,0,26.5835346534653,2368.24587235974,14.5621782178218,7.80942168174375,7.71877453595747,2.12029702970297,2.13493723863283,1.70145070606943,0.853290201239377,0.676970012726425,0.714857865070166 +41514,2874.49980534653,457.898237821782,225,29.3413168316832,30.2215563366337,7.7049702970297,0.574158415841584,1496.58415841584,7549.6,6523.5,20,40,10,32,5307017.75281162,397746.569194185,0,0,0,0,0,0,0,29.3413168316831,2375.97324108912,15.4099405940594,8.26406066383327,8.23719217258537,0.574158415841584,0.588798624771441,0.450318853045904,1.11547458819149,0.884977754423029,0.88666474314862 +41515,2874.4969229703,457.892802475247,225,32.7815247524753,33.7649704950495,7.34489108910891,-0.894752475247525,1661.53465346535,7075.35148514852,6396.99405940594,20,40,10,32,5307012.53364349,397739.705236751,0,0,0,0,0,0,0,32.7815247524752,2384.61259576458,14.6897821782178,7.87785328037462,8.12737381637885,-0.894752475247525,-0.880112266317668,-0.662584438760661,1.50661579155171,1.1952952349613,1.41150009260908 +41516,2874.49372990099,457.886805247525,225,35.7802673267327,36.8536753465346,6.88236468647525,-0.316831683168317,1810.40099009901,6633.6603960396,5975.44158415842,20,40,10,32,5307006.75137759,397732.131282561,0,0,0,0,0,0,0,35.7802673267326,2394.14629719472,13.7647293729505,7.38176489811794,7.90607214056632,-0.316831683168317,-0.30219147423846,-0.133742388577826,3.22244520629042,2.55657309687147,2.31649925706231 +41517,2874.49026168317,457.88031960396,225,38.4791386138614,39.6335127722772,9.63228712871287,-0.470891089108911,1919.96534653465,5687.32673267327,5141.73564356436,20,40,10,32,5307000.47023536,397723.93999036,0,0,0,0,0,0,0,38.4791386138614,2404.47000962597,19.2645742574257,10.331228037807,10.4005200393106,-0.470891089108911,-0.456250880179053,-0.41114587862797,2.02191605687242,1.60411608707634,1.60330574353704 +41518,2874.48655831683,457.87341049505,225,40.7350198019802,41.9570703960396,10.1667722772277,-0.838613861386138,1530.94554455446,5788.05148514851,5154.84158415842,20,40,10,32,5306993.762879,397715.213561025,0,0,0,0,0,0,0,40.7350198019801,2415.47858666117,20.3335445544554,10.9044966580569,10.9839837510643,-0.838613861386138,-0.823973652456281,-0.625044116976096,1.75108727315821,1.38925018929456,1.4102200900395 +41519,2874.48263415842,457.866101980198,225,43.1056831683168,44.3988536633663,11.9815148514851,-1.95475247524752,1538.98514851485,5717.27920792079,5145.42871287129,20,40,10,32,5306986.65537268,397705.98242662,0,0,0,0,0,0,0,43.1056831683168,2427.1321979373,23.9630297029703,12.8509211275563,12.664328931245,-1.95475247524752,-1.94011226631767,-1.53663022999559,1.7442646613949,1.38383737245273,1.35946233169153 +41520,2874.47849485149,457.858363663366,225,45.5679108910891,46.9349482178218,13.5709108910891,-2.48039603960396,1620.14851485149,5484.54554455445,5006.13267326733,20,40,10,32,5306979.15884398,397696.208912538,0,0,0,0,0,0,0,45.567910891089,2439.4558659241,27.1418217821782,14.5556473995326,14.1569123134467,-2.48039603960396,-2.4657558306741,-2.00667239816958,2.23263560960056,1.77129346481356,1.77132523892337 +41521,2874.47414554455,457.850203069307,225,47.8515643564356,49.2871112871287,14.6830891089109,0.472673267326733,1838.25742574257,5198.5900990099,4886.26435643564,20,40,10,32,5306971.28266623,397685.90255543,0,0,0,0,0,0,0,47.8515643564356,2452.43160288779,29.3661782178218,15.7485278269388,15.2350136136165,0.472673267326733,0.48731347625659,0.398061723086209,2.70144459315457,2.14322979210509,2.13132058928179 +41522,2874.46960960396,457.841637227723,225,49.9130594059406,51.4104511881188,15.4229900990099,0.972673267326733,1772.67326732673,5040.75841584158,4752.57425742574,20,40,10,32,5306963.06974861,397675.085328214,0,0,0,0,0,0,0,49.9130594059405,2466.02137560507,30.8459801980198,16.5421177347112,15.9821478199317,0.972673267326733,0.987313476256591,0.815048803714502,2.93758894143627,2.330578295849,2.42523271883856 +41523,2874.46489752475,457.832692970297,225,52.0557821782178,53.6174556435643,16.2391188118812,-0.331188118811881,1847.0198019802,4848.40792079208,4621.6,20,40,10,32,5306954.53894162,397663.79098884,0,0,0,0,0,0,0,52.0557821782178,2480.18497040705,32.4782376237624,17.41746662415,16.800114196128,-0.331188118811881,-0.316547909882024,-0.259975610597767,3.19215508720703,2.53254199669994,2.51133511486785 +41524,2874.46002861386,457.823360693069,225,53.9633069306931,55.5822061386138,17.0611386138614,0.458811881188119,1915.85643564356,4622.23366336634,4510.3,20,40,10,32,5306945.72622337,397652.008206685,0,0,0,0,0,0,0,53.963306930693,2494.90949353686,34.1222772277228,18.2991340736735,17.6091849377125,0.458811881188119,0.473452090117976,0.389283235605747,3.5388190976164,2.80757285864792,2.76606569394136 +41525,2874.45501475248,457.813666831683,225,55.7346039603961,57.406642079208,17.1333663366337,0.00772277227722773,1902.66336633663,4125.50099009901,4036.05940594059,20,40,10,32,5306936.65302071,397639.770292302,0,0,0,0,0,0,0,55.734603960396,2510.15619034654,34.2667326732673,18.3766028061397,17.7720900349885,0.00772277227722773,0.0223629812070851,0.0151284203542469,3.15945609399029,2.50659978170448,2.50353043205379 +41526,2874.44986257426,457.803663267327,225,57.3820198019802,59.1034803960396,17.0884356435644,1.62811881188119,1474.55445544554,4384.43564356436,4161.37524752475,20,40,10,32,5306927.33047765,397627.14207502,0,0,0,0,0,0,0,57.3820198019802,2525.86556102861,34.1768712871287,18.3284118386371,17.8283459162718,1.62811881188119,1.64275902081105,1.33277328634495,2.70659507645026,2.14731600185784,2.27501665763872 +41527,2874.44456594059,457.793347524753,225,59.0621485148515,60.834012970297,18.6040594059406,2.35079207920792,1510.23267326733,4339.53861386139,4083.18316831683,20,40,10,32,5306917.74728061,397614.120266676,0,0,0,0,0,0,0,59.0621485148514,2542.04666265127,37.2081188118812,19.9540127472679,19.2134751140095,2.35079207920792,2.36543228813778,1.94591193453995,3.8021558549623,3.01649484991519,2.90244950416711 +41528,2874.43912732673,457.782734356436,225,60.6816831683168,62.5021336633663,18.2021089108911,0.277425742574258,1547.60396039604,4273.05643564356,4058.51287128713,20,40,10,32,5306907.90769108,397600.723318362,0,0,0,0,0,0,0,60.6816831683167,2558.67994887239,36.4042178217822,19.5228957997791,18.9640734871852,0.277425742574258,0.292065951504115,0.237666813281043,3.02560279067677,2.40040534478722,2.46472457788046 +41529,2874.43355891089,457.771829306931,225,62.2253267326733,64.0920865346535,18.5132079207921,-0.543267326732674,1586.68811881188,4245.16534653465,3974.44158415842,20,40,10,32,5306897.83414734,397586.958532298,0,0,0,0,0,0,0,62.2253267326732,2575.75139053906,37.0264158415842,19.8565688693913,19.317097860224,-0.543267326732674,-0.528627117802814,-0.424635200191141,2.95524968722281,2.34458970167847,2.30115679907597 +41530,2874.42784732673,457.760661782178,225,63.6755445544554,65.5858108910891,18.5599504950495,-1.04059405940594,1623.34158415842,4188.71089108911,3879.71188118812,20,40,10,32,5306887.5012426,397572.862088958,0,0,0,0,0,0,0,63.6755445544553,2593.24644854236,37.119900990099,19.9067031923485,19.4398572415768,-1.04059405940594,-1.02595385047608,-0.834676779657627,2.68197168539159,2.127780681595,2.09914098614352 +41531,2874.42201108911,457.749243762376,225,65.109099009901,67.062371980198,18.4606831683168,-1.79732673267327,1659.37128712871,4087.28811881188,3828.98613861386,20,40,10,32,5306876.94301024,397558.449514459,0,0,0,0,0,0,0,65.1090990099009,2611.13425214522,36.9213663366337,19.8002328000653,19.4370532645701,-1.79732673267327,-1.78268652374341,-1.4386762363047,2.3122911939403,1.83448936448039,1.88968049092222 +41532,2874.41605009901,457.737578316832,225,66.4638217821782,68.4577364356435,18.9694356435644,-2.72841584158416,1693.82178217822,4051.44356435644,3713.83465346535,20,40,10,32,5306866.1592013,397543.724624803,0,0,0,0,0,0,0,66.4638217821781,2629.40904603961,37.9388712871287,20.3459015250883,19.9478316135348,-2.72841584158416,-2.7137756326543,-2.17885198606952,2.70114888485666,2.14299518768809,2.11816294924139 +41533,2874.40995148515,457.725693168317,225,67.7615148514852,69.7943602970297,19.2363762376238,-2.22089108910891,1726.9603960396,3983.40891089109,3641.41485148515,20,40,10,32,5306855.12536272,397528.721520589,0,0,0,0,0,0,0,67.7615148514851,2648.05437681518,38.4727524752475,20.6322119426375,20.2492964408923,-2.22089108910891,-2.20625088017906,-1.7847368774619,2.51447144909107,1.99489196807721,2.0141868111609 +41534,2874.40370910891,457.713608910891,225,69.0490297029703,71.1205005940594,18.9792772277228,-1.65564356435644,1757.21287128713,3993.1297029703,3521.19900990099,20,40,10,32,5306843.82967012,397513.465645378,0,0,0,0,0,0,0,69.0490297029702,2667.05982365237,37.9585544554455,20.3564572372297,20.1049947182998,-1.65564356435644,-1.64100335542658,-1.31745958844951,2.14105027612298,1.69863292766007,1.76972440195905 +41535,2874.39729584158,457.701369306931,225,70.2596930693069,72.3674838613862,20.9184356435644,-1.50168316831683,1790.19801980198,3974.87623762376,3434.17920792079,20,40,10,32,5306832.22090524,397498.010607248,0,0,0,0,0,0,0,70.2596930693068,2686.41157783279,41.8368712871287,22.436325447945,21.8255577364954,-1.50168316831683,-1.48704295938697,-1.20952977925263,3.30362613087077,2.62097914708332,2.444172258334 +41536,2874.39071247525,457.688993564357,225,71.4061782178218,73.5483635643565,19.970099009901,-2.35841584158416,1817.75247524752,3881.2198019802,3433.19801980198,20,40,10,32,5306820.30011173,397482.380351441,0,0,0,0,0,0,0,71.4061782178217,2706.09184106161,39.940198019802,21.4191753268925,21.0819592248834,-2.35841584158416,-2.3437756326543,-1.87449071685879,2.61407999381747,2.07391783488448,2.33100388432649 +41537,2874.38399990099,457.676449108911,225,72.5104158415842,74.6857283168317,22.4331485148515,-2.93861386138614,1798.0495049505,3670.22871287129,3432.64455445544,20,40,10,32,5306808.14375655,397466.535650364,0,0,0,0,0,0,0,72.5104158415841,2726.08496163367,44.866297029703,24.0609493691341,23.2411979073063,-2.93861386138614,-2.92397365245628,-2.39102513974073,4.32223246928074,3.42910508697463,3.28888628159434 +41538,2874.3771809901,457.66371980198,225,73.6128811881188,75.8212676237624,22.1683861386139,-2.81356435643564,1605.55940594059,3675.43564356435,3452.15049504951,20,40,10,32,5306795.79456429,397450.457153616,0,0,0,0,0,0,0,73.6128811881187,2746.38036834434,44.3367722772277,23.7769752259019,23.0794269656429,-2.81356435643564,-2.79892414750579,-2.27343987902128,3.77191299227485,2.99250124128279,2.93598975710807 +41539,2874.37026029703,457.650798613861,225,74.6776534653465,76.917983069307,21.9526633663366,-3.02792079207921,1623.36633663366,3595.86237623762,3405.63564356436,20,40,10,32,5306783.26112897,397434.136252759,0,0,0,0,0,0,0,74.6776534653464,2766.977624945,43.9053267326733,23.5455991130886,22.9559061261873,-3.02792079207921,-3.01328058314935,-2.43821098377106,3.38994923776311,2.68946482134352,2.80238199301689 +41540,2874.36324673267,457.637684455446,225,75.7370891089109,78.0092017821782,21.9370396039604,-2.85217821782178,1647.90099009901,3556.92475247525,3403.64851485148,20,40,10,32,5306770.55998278,397417.571881685,0,0,0,0,0,0,0,75.7370891089108,2787.86639422443,43.8740792079208,23.5288416545784,23.0040990703107,-2.85217821782178,-2.83753800889193,-2.2891604960912,3.15937034950862,2.50653175509083,2.45309519407043 +41541,2874.35614811881,457.624377029703,225,76.7444653465347,79.0467993069307,22.503,-2.75663366336634,1671.21782178218,3506.40297029703,3385.61584158416,20,40,10,32,5306757.70562303,397400.763925065,0,0,0,0,0,0,0,76.7444653465345,2809.04482475248,45.006,24.135869438709,23.5436514430275,-2.75663366336634,-2.74199345443648,-2.23031269098775,3.3950119580666,2.69348140306835,2.63276955952444 +41542,2874.34896821782,457.610873663366,225,77.7475148514852,80.0799402970297,22.7676534653465,-3.35514851485148,1692.82673267327,3442.6396039604,3389.98217821782,20,40,10,32,5306744.70508025,397383.709174365,0,0,0,0,0,0,0,77.7475148514851,2830.50294268427,45.5353069306931,24.4197267682253,23.8239679549228,-3.35514851485148,-3.34050830592163,-2.70972350954513,3.46717047291058,2.75072939518323,2.76196278993238 +41543,2874.34172455446,457.597165940594,225,78.7074158415842,81.0686383168317,22.7103168316832,-2.88752475247525,1712.94059405941,3432.6504950495,3360.83069306931,20,40,10,32,5306731.591005,397366.397722283,0,0,0,0,0,0,0,78.7074158415841,2852.23607775028,45.4206336633663,24.3582296565445,23.8324359689926,-2.88752475247525,-2.87288454354539,-2.31922447114852,3.12744008678966,2.48119942345522,2.48782867656718 +41544,2874.33440792079,457.583267425743,225,79.6945643564356,82.0854012871288,21.1238316831683,-2.16910891089109,1734.34158415842,3438.87128712871,3327.49504950495,20,40,10,32,5306718.34604269,397348.846156788,0,0,0,0,0,0,0,79.6945643564355,2874.24230231023,42.2476633663366,22.65662549661,22.538340675616,-2.16910891089109,-2.15446870196123,-1.72790473239003,2.47231185551668,1.96144405017408,2.03131412000422 +41545,2874.32701,457.569188811881,225,80.6509108910891,83.0704382178218,23.3085742574258,-2.27960396039604,1752.07425742574,3432.01485148515,3282.07227722772,20,40,10,32,5306704.9545528,397331.067518991,0,0,0,0,0,0,0,80.650910891089,2896.51621311881,46.6171485148515,24.9998980171391,24.4515063157995,-2.27960396039604,-2.26496375146618,-1.83076204461342,3.28666129245489,2.60751984934192,2.49449805550725 +41546,2874.31952267327,457.554951683168,225,81.5901485148515,84.037852970297,22.7104059405941,-2.67445544554456,1774.63366336634,3430.35742574258,3249.64059405941,20,40,10,32,5306691.40102004,397313.08842124,0,0,0,0,0,0,0,81.5901485148514,2919.04964136414,45.4208118811881,24.3583252314029,23.9972178133825,-2.67445544554456,-2.6598152366147,-2.12996361635415,3.10776422395262,2.46558929562784,2.49905319388698 +41547,2874.31194504951,457.540558118813,225,82.5008415841585,84.9758668316831,22.2330891089109,-3.11792079207921,1796.63861386139,3416.80396039604,3213.21683168317,20,40,10,32,5306677.68374955,397294.911420869,0,0,0,0,0,0,0,82.5008415841584,2941.83960258526,44.4661782178218,23.8463731925457,23.6424665189617,-3.11792079207921,-3.10328058314935,-2.48326253908447,2.31276641584514,1.83486638859071,1.88863401488025 +41548,2874.30427930693,457.52601029703,225,83.3733861386138,85.8745877227723,23.5607227722772,-2.61762376237624,1810.91584158416,3129.71683168317,3014.16138613861,20,40,10,32,5306663.80672968,397276.539299742,0,0,0,0,0,0,0,83.3733861386137,2964.88004975248,47.1214455445545,25.2703430081901,24.8234137467407,-2.61762376237624,-2.60298355344638,-2.09733756332948,2.93161579288789,2.32583941282545,2.31650219118993 +41549,2874.29655861386,457.511333861386,225,83.7145049504951,86.2259400990099,24.6793168316832,-4.69851485148515,1815.71782178218,1853.05643564356,1955.85049504951,20,40,10,32,5306649.83083268,397258.005088292,0,0,0,0,0,0,0,83.714504950495,2988.10873943895,49.3586336633664,26.4701048254028,25.7915412948584,-4.69851485148515,-4.6838746425553,-3.80400177723533,3.90884897871167,3.10114136904494,3.01852074763295 +41550,2874.28883534654,457.496623564356,225,83.8167425742574,86.3312448514851,22.764501650099,-3.18128712871287,1817.81683168317,2074.43267326733,2114.43267326733,20,40,10,32,5306635.85097696,397239.428527357,0,0,0,0,0,0,0,83.8167425742573,3011.37453063807,45.529003300198,24.416346250014,24.1712783156665,-3.18128712871287,-3.16664691978302,-2.53001196765315,2.76356543028586,2.19251424872051,2.3114429939257 +41551,2874.28108267327,457.48189990099,225,84.043,86.56429,19.6670665568317,-2.27891089108911,1824.00495049505,2148.13267326733,2126.16831683168,20,40,10,32,5306621.81700664,397220.834257936,0,0,0,0,0,0,0,84.0429999999999,3034.68635822333,39.3341331136634,21.0941541420295,21.5491143348957,-2.27891089108911,-2.26427068215925,-1.75871191472907,2.99331096987938,2.3747861658673,2.22870071161098 +41552,2874.27329247525,457.467158217822,225,84.2232475247525,86.7499449504951,23.3515940594059,-2.20514851485149,1823.26732673267,2099.29801980198,2063.7603960396,20,40,10,32,5306607.71398629,397202.216215482,0,0,0,0,0,0,0,84.2232475247524,3058.05680748075,46.7031881188119,25.0460394349,24.693680719161,-2.20514851485149,-2.19050830592163,-1.7595472102717,2.6453779166797,2.09874849063041,2.17996789196888 +41553,2874.26546683168,457.452408712871,225,84.3806435643564,86.9120628712871,23.2359801980198,-3.42712871287129,1830.25247524752,1992.70594059406,2028.3702970297,20,40,10,32,5306593.54554119,397183.587169628,0,0,0,0,0,0,0,84.3806435643563,3081.47377992299,46.4719603960396,24.9220363658105,24.6017089573607,-3.42712871287129,-3.41248850394143,-2.72555977597171,2.87139305612957,2.27806084134944,2.33041047926716 +41554,2874.25763108911,457.437632376238,225,84.4732871287129,87.0074857425742,24.6929504950495,-4.24524752475247,1831.48514851485,1916.28910891089,2014.07425742574,20,40,10,32,5306579.35904403,397164.924279318,0,0,0,0,0,0,0,84.4732871287127,3104.92775563807,49.385900990099,26.4847277787415,25.8467554720154,-4.24524752475247,-4.23060731582262,-3.42974489694376,3.77765598598794,2.99705752766858,2.90650903572616 +41555,2874.24980138614,457.422825148515,225,84.5329801980198,87.0689696039603,24.8860495049505,-4.64742574257426,1836.40594059406,1839.61683168317,1996.56831683168,20,40,10,32,5306565.18447958,397146.223020983,0,0,0,0,0,0,0,84.5329801980196,3128.40227959296,49.772099009901,26.6918384969442,26.0138466048372,-4.64742574257426,-4.63278553364441,-3.76178434253029,3.96731660084165,3.1475274951717,3.15328608805715 +41556,2874.24199059406,457.407978910891,225,84.5917029702971,87.1294540594059,24.5488415841584,-3.94772277227723,1838.24752475248,1878.47128712871,1979.31584158416,20,40,10,32,5306551.04587058,397127.473707354,0,0,0,0,0,0,0,84.591702970297,3151.89505354786,49.0976831683168,26.3301619938141,25.7324015502031,-3.94772277227723,-3.93308256334737,-3.1824019589993,3.53594275089908,2.80529086774845,2.82065840397547 +41557,2874.23417970297,457.393117722772,225,84.6592277227723,87.1990045544554,24.0609504950495,-4.73613861386139,1836.58415841584,1853.56633663366,1935.5,20,40,10,32,5306536.90747016,397108.705677118,0,0,0,0,0,0,0,84.6592277227722,3175.4031589384,48.121900990099,25.8068684050907,25.3194455593357,-4.73613861386139,-4.72149840493153,-3.80733066191792,3.20749853431442,2.54471494040476,2.6286041863564 +41558,2874.22636960396,457.37824019802,225,84.7207227722772,87.2623444554456,25.0888415841584,-4.50089108910891,1837.40099009901,1850.70693069307,1922.5900990099,20,40,10,32,5306522.77095991,397089.917233096,0,0,0,0,0,0,0,84.7207227722771,3198.92754356436,50.1776831683168,26.9093456358575,26.198694208976,-4.50089108910891,-4.48625088017906,-3.64562454228297,4.00071174376789,3.17402201051822,3.05561442584475 +41559,2874.21855584158,457.363352871287,225,84.7649405940594,87.3078888118812,23.9393861386139,-4.34633663366337,1838.07920792079,1812.44851485149,1904.48217821782,20,40,10,32,5306508.62794179,397071.116367067,0,0,0,0,0,0,0,84.7649405940592,3222.46289361936,47.8787722772277,25.6764830593443,25.2229460064577,-4.34633663366337,-4.33169642473351,-3.49007005305807,3.02688568066942,2.4014231439526,2.49500655240457 +41560,2874.21074386139,457.34845009901,225,84.783594059406,87.3271018811881,24.1618316831683,-4.08425742574257,1838.03465346535,1821.89801980198,1890.32673267327,20,40,10,32,5306494.48862837,397052.296229579,0,0,0,0,0,0,0,84.7835940594059,3246.01066419142,48.3236633663367,25.9150697642543,25.4135664608203,-4.08425742574257,-4.06961721681272,-3.28408040321666,3.19858173857796,2.53764067268854,2.52596226362654 +41561,2874.2029309901,457.333545049505,225,84.7989207920793,87.3428884158416,23.245,-4.4650495049505,1839.21782178218,1796.14158415842,1886.70495049505,20,40,10,32,5306480.34777531,397033.47313384,0,0,0,0,0,0,0,84.7989207920791,3269.56272929043,46.49,24.9317106653687,24.6340967007023,-4.4650495049505,-4.45040929602064,-3.56126797874211,2.78205667019018,2.20718453896312,2.20416061647326 +41562,2874.19512029703,457.31863019802,225,84.8396138613861,87.3848022772276,23.1356633663366,-3.89920792079208,1838.12376237624,1797.36138613861,1873.61089108911,20,40,10,32,5306466.21123537,397014.637808875,0,0,0,0,0,0,0,84.839613861386,3293.12410253025,46.2713267326733,24.8144403140836,24.5433537672328,-3.89920792079208,-3.88456771186223,-3.10183376948053,2.74682640270031,2.17923410123826,2.24389974103388 +41563,2874.18730267327,457.303715247525,225,84.839198019802,87.384373960396,23.8331386138614,-3.66435643564356,1838.97524752475,1805.41782178218,1866.81485148515,20,40,10,32,5306452.06192003,396995.802038921,0,0,0,0,0,0,0,84.8391980198019,3316.69166443894,47.6662772277228,25.5625259698179,25.1386332135903,-3.66435643564356,-3.64971622671371,-2.94451796818972,3.14954489226923,2.49873658774596,2.43549643285943 +41564,2874.17947326733,457.288807029703,225,84.8445940594059,87.389931881188,23.3336534653465,-3.69178217821782,1838.81683168317,1825.58118811881,1857.93861386139,20,40,10,32,5306437.89069073,396976.974172598,0,0,0,0,0,0,0,84.8445940594058,3340.26189070407,46.6673069306931,25.0267970300708,24.713207511804,-3.69178217821782,-3.67714196928797,-2.95894756393687,2.93859840440973,2.33137916776925,2.43074952357188 +41565,2874.1716269307,457.273917524752,225,84.8645346534654,87.4104706930693,25.0783564356436,-4.55405940594059,1838.20297029703,1800.41584158416,1860.76336633663,20,40,10,32,5306423.68774407,396958.168961432,0,0,0,0,0,0,0,84.8645346534652,3363.83288831133,50.1567128712871,26.8980996608497,26.197077083197,-4.55405940594059,-4.53941919701074,-3.68805877281746,4.00133236955911,3.17451439288611,3.13179861228802 +41566,2874.1637819802,457.259029009901,225,84.8522574257426,87.3978251485148,24.0243305830693,-3.46405940594059,1839.93564356436,1818.09900990099,1871.79306930693,20,40,10,32,5306409.48740325,396939.364936624,0,0,0,0,0,0,0,84.8522574257425,3387.40318627613,48.0486611661386,25.7675912680685,25.3011065840662,-3.46405940594059,-3.44941919701074,-2.80318086353357,3.46798863445463,2.75137849537221,2.72454741473016 +41567,2874.15593049505,457.244147227723,225,84.8689405940595,87.4150088118812,22.722396039604,-3.14504950495049,1841.33663366337,1810.61089108911,1857.84653465347,20,40,10,32,5306395.27486842,396920.568988804,0,0,0,0,0,0,0,84.8689405940593,3410.97552775028,45.4447920792079,24.3711853595752,24.1946556443252,-3.14504950495049,-3.13040929602064,-2.49297297062081,2.76845989887772,2.19639734553811,2.11381874175187 +41568,2874.14807237624,457.229262673267,225,84.9034851485149,87.4505897029703,24.1039504950495,-2.66772277227723,1840.21782178218,1809.47227722772,1863.56336633663,20,40,10,32,5306381.05016763,396901.769275619,0,0,0,0,0,0,0,84.9034851485147,3434.55626240374,48.207900990099,25.8529885839942,25.3722425262904,-2.66772277227723,-2.65308256334737,-2.13952599405568,3.10119929777607,2.46038091734009,2.65886397457861 +41569,2874.14020970297,457.214372475247,225,84.9644554455446,87.5133891089109,26.2248712871287,-3.72821782178218,1842.61386138614,1769.19900990099,1845.12475247525,20,40,10,32,5306366.81721627,396882.962289386,0,0,0,0,0,0,0,84.9644554455444,3458.14679942244,52.4497425742574,28.127808267035,27.1799566362363,-3.72821782178218,-3.71357761285233,-3.04327435221773,4.99531667070076,3.96310608656356,3.68624243673231 +41570,2874.13234881188,457.199470891089,225,84.964702970297,87.513644059406,20.8760401540594,-2.12178217821782,1843.25247524752,1757.52376237624,1782.05841584158,20,40,10,32,5306352.58787988,396864.141087,0,0,0,0,0,0,0,84.9647029702969,3481.74624031904,41.7520803081188,22.3908536442086,22.6303484836561,-2.12178217821782,-2.10714196928797,-1.65080331590893,3.15109362220993,2.49996529484484,2.68716923884907 +41571,2874.12448554455,457.184565643564,225,84.9726237623762,87.5218024752475,22.4918921894059,-2.33841584158416,1840.81188118812,1737.92475247525,1789.36138613861,20,40,10,32,5306338.3542838,396845.315149951,0,0,0,0,0,0,0,84.9726237623761,3505.34954722223,44.9837843788119,24.1239556198294,24.0060381967835,-2.33841584158416,-2.3237756326543,-1.8688718082523,4.11093572066081,3.26146978260277,3.15562071906093 +41572,2874.11662,457.169661386139,225,84.9831584158416,87.5326531683168,22.3941776676238,-2.90633663366337,1843.24752475248,1736.61386138614,1772.40198019802,20,40,10,32,5306324.11650784,396826.490277688,0.277227722772277,0.277227722772277,735529.267807291,55004.4754313387,0.213180367810469,0,0,84.9831584158414,3528.95451542905,44.7883553352475,24.0191507075955,23.9217233464368,-2.90633663366337,-2.89169642473351,-2.28343436053605,3.19620675040405,2.53575644177626,2.68424726547292 +41573,2874.10875930693,457.154757029703,225,84.9727821782178,87.5219656435644,25.0998316831683,-2.52544554455446,1842.13366336634,1702.39702970297,1735.19702970297,20,40,10,32,5306309.88778108,396807.66534978,2,2,5306309.87597245,396807.674970646,14.8576924931873,0,0,84.9727821782177,3552.55916980199,50.1996633663366,26.9211332017297,26.2238677569044,-2.52544554455446,-2.5108053356246,-2.02952794228956,4.03578098503845,3.20184469578375,3.04798872704776 +41574,2874.10090792079,457.139847425743,225,84.9566435643564,87.5053428712871,22.8932244223762,-1.38277227722772,1844.89603960396,1721.88415841584,1759.2594059406,20,40,10,32,5306295.67647126,396788.834101031,2,2,5306294.98482542,396789.39760679,38.4332792136102,0,0,84.9566435643563,3576.15909177668,45.7864488447525,24.5544094427204,24.3467496022099,-1.38277227722772,-1.36813206829787,-1.10662013878329,3.47891070495746,2.76004367656914,2.98227927313035 +41575,2874.09305227723,457.124941089109,225,84.9500198019802,87.4985203960396,25.1271881188119,-1.37762376237624,1841.39603960396,1736.46831683168,1762.95346534653,20,40,10,32,5306281.45726281,396770.006688004,2,2,5306280.09240544,396771.118680512,62.0108812699552,0,0,84.9500198019801,3599.75967464247,50.2543762376238,26.9504746832655,26.2478734692167,-1.37762376237624,-1.36298355344638,-1.11307396719307,3.98895753704275,3.16469664212099,3.14914046106884 +41576,2874.08518960396,457.11003960396,225,84.9494653465347,87.4979493069307,23.8081386138614,-4.20267326732673,1837.16336633663,1695.41386138614,1743.02277227723,20,40,10,32,5306267.22498518,396751.18499198,2,2,5306265.19757089,396752.836790592,85.5923060641829,0,0,84.9494653465345,3623.35978261827,47.6162772277228,25.5357119123159,25.1223063012567,-4.20267326732673,-4.18803305839688,-3.37186562246901,3.41771097807895,2.71148999597651,2.58257957764642 +41577,2874.07734089109,457.095133267327,225,84.9325346534653,87.4805106930693,23.8627326732673,-3.73207920792079,1841.61386138614,1710.39900990099,1764.31188118812,20,40,10,32,5306253.01873553,396732.357622811,2,2,5306250.31034245,396734.564236401,109.161688899608,0,0,84.9325346534652,3646.9553158691,47.7254653465347,25.5942674422431,25.1670770372664,-3.73207920792079,-3.71743899899094,-2.98622823160899,3.15910086210628,2.50631795339719,2.53673234456393 +41578,2874.06950574258,457.080212574257,225,84.9368811881188,87.4849876237623,25.2095742574257,-3.5109900990099,1843.44554455446,1717.04356435644,1778.53762376238,20,40,10,32,5306238.83799224,396713.512728237,2,2,5306235.42470816,396716.293638852,132.728547903189,0,0,84.9368811881187,3670.54515610562,50.4191485148515,27.038838949592,26.3146875257294,-3.5109900990099,-3.49634989008005,-2.8464466827945,4.13620365737455,3.28151646240036,3.21522365179932 +41579,2874.06168861386,457.065262673268,225,84.9573564356436,87.5060771287129,23.9122277227723,-2.0619801980198,1839.15346534653,1716.52277227723,1728.05346534654,20,40,10,32,5306224.6913397,396694.631957137,2,2,5306220.53510656,396698.018171861,156.301687897385,0,0,84.9573564356434,3694.14371608912,47.8244554455446,25.6473539663827,25.2122762226125,-2.0619801980198,-2.04733998908995,-1.64859232407637,3.44253075486612,2.73118112167217,2.75961216403652 +41580,2874.05387118812,457.050320594059,225,84.930099009901,87.478001980198,24.4137326732673,-2.5429702970297,1841.25742574257,1735.53762376238,1760.66930693069,20,40,10,32,5306210.54402321,396675.760826249,2,2,5306205.64996076,396679.748173884,179.867773526354,0,0,84.9300990099009,3717.73598558857,48.8274653465346,26.1852492695874,25.6382628097339,-2.5429702970297,-2.52833008809985,-2.03878967705552,3.60500344485923,2.86008115925911,2.82517828314663 +41581,2874.0460570297,457.03537019802,225,84.9563267326733,87.5050165346534,25.987198019802,-4.23564356435644,1841.62871287129,1733.36435643564,1768.23663366337,20,40,10,32,5306196.40300516,396656.879351556,2,2,5306190.76226258,396661.475043133,203.437900054082,0,0,84.9563267326732,3741.33266240375,51.9743960396039,27.8728888807634,26.9762812183941,-4.23564356435644,-4.22100335542658,-3.44935944546245,4.81015788884566,3.81620771280186,3.74401974031105 +41582,2874.0382470297,457.020408217821,225,84.9677623762376,87.5167952475248,24.7558910891089,-4.04049504950495,2034.18316831683,1715.00495049505,1749.14653465346,20,40,10,32,5306182.27000914,396637.983492802,2,2,5306175.87072122,396643.197195277,227.014111075343,0,0,84.9677623762375,3764.93159229924,49.5117821782178,26.5522354870743,25.9298441665081,-4.04049504950495,-4.0258548405751,-3.25958594902705,3.65401902644923,2.89896837353226,2.94686455580098 +41583,2874.03043782178,457.005446237623,225,84.9877821782178,87.5374156435643,24.1206732673267,-3.79356435643564,1839.80198019802,1717.82871287129,1738.2900990099,20,40,10,32,5306168.13854115,396619.08756758,1.51485148514851,2,5306160.9797222,396624.919806111,128.788020568091,0,0,84.9877821782177,3788.53550836085,48.2413465346535,25.8709247990915,25.3909020315787,-3.79356435643564,-3.77892414750579,-3.0493655633564,3.05365665071359,2.42266227678827,2.40588370826724 +41584,2874.02261940594,456.990492475248,225,84.9794950495049,87.5288799009901,23.908702970297,-4.37762376237624,1840.85643564356,1728.71188118812,1717.28811881188,20,40,10,32,5306153.98989432,396600.201480204,1,2,5306146.08729707,396606.639360994,23.1079590172339,0,0,84.9794950495048,3812.14133110562,47.8174059405941,25.6435734497606,25.2086716736597,-4.37762376237624,-4.36298355344638,-3.51036514061927,3.31267710914797,2.62815987044169,2.60056825240598 +41585,2874.01478188119,456.975560891089,225,84.9766435643564,87.5259428712871,24.5215346534653,-3.78267326732673,1841.90099009901,1680.23366336634,1686.54059405941,20,40,10,32,5306139.80541682,396581.342291191,1,2,5306131.19400183,396588.357613042,46.6883014901699,0,0,84.9766435643563,3835.74840574809,49.0430693069307,26.3008736094218,25.7307602457548,-3.78267326732673,-3.76803305839688,-3.04726871787656,3.47897249508084,2.76009269864926,2.81358533714767 +41586,2874.00693920792,456.960638415842,225,84.9601386138614,87.5089427722772,24.8436732673267,-3.9329702970297,1842.9603960396,1693.11089108911,1720.65742574257,20,40,10,32,5306125.61125971,396562.494184584,1,2,5306116.30227202,396570.077786675,70.2661654457771,0,0,84.9601386138613,3859.35028773379,49.6873465346535,26.6463873420497,26.0031777738941,-3.9329702970297,-3.91833008809985,-3.17968832216335,3.75076729314668,2.97572499776432,3.00801922841742 +41587,2873.99909970297,456.945716237624,225,84.9653465346535,87.5143069306931,24.8685247524753,-4.05316831683168,1839.93069306931,1697.20792079208,1761.19900990099,20,40,10,32,5306111.4230253,396543.646460293,1,2,5306101.41309208,396551.801090312,93.8399922284303,0,0,84.9653465346534,3882.95000860837,49.7370495049505,26.673042108121,26.0251670519792,-4.05316831683168,-4.03852810790183,-3.27304886583648,3.76206894132733,2.98469132235304,2.97408718439739 +41588,2873.9912659406,456.930793564356,225,84.9625346534654,87.5114106930693,24.4048415841584,-4.44336633663366,1842.61386138614,1669.24554455446,1730.92079207921,20,40,10,32,5306097.24549967,396524.798217261,1,2,5306086.52793004,396533.529325973,117.407457539682,0,0,84.9625346534652,3906.54724708472,48.8096831683168,26.1757130226025,25.6300335516686,-4.44336633663366,-4.42872612770381,-3.57800599562919,3.40437850353271,2.70091248617956,2.74777199033366 +41589,2873.98342524753,456.915875049505,225,84.9388613861386,87.4870272277227,24.446603960396,-4.03821782178218,1842.35148514851,1683.47821782178,1772.19207920792,20,40,10,32,5306083.05510364,396505.954831024,1,2,5306071.64001203,396515.254178651,140.979286323857,0,0,84.9388613861385,3930.14878880639,48.8932079207921,26.2205057729168,25.6635105799703,-4.03821782178218,-4.02357761285232,-3.2497212683409,3.50228918778744,2.77859133104349,2.6934653616325 +41590,2873.97558534653,456.900955049505,225,84.958693069307,87.5074538613861,24.7105841584158,-3.93158415841584,1841.65346534653,1683.96732673267,1787.29405940594,20,40,10,32,5306068.86626848,396487.109528317,1,2,5306056.75177824,396496.978643693,164.551615091899,0,0,84.9586930693068,3953.74814796481,49.4211683168317,26.5036409812806,25.8906613462899,-3.93158415841584,-3.91694394948599,-3.17073703466028,3.607869200908,2.86235474789987,2.89064708167754 +41591,2873.96775445545,456.886021287129,225,84.978396039604,87.5277479207921,24.7207821782178,-3.6639603960396,1841.12871287129,1661.38514851485,1743.6,20,40,10,32,5306054.69449083,396468.247289307,1,2,5306041.86205566,396478.701281237,188.126301021874,0,0,84.9783960396038,3977.35181705171,49.4415643564356,26.5145789928556,25.9000111496961,-3.6639603960396,-3.64932018710975,-2.95492399364828,3.64772659496789,2.89397618281706,2.92169661249993 +41592,2873.95993138614,456.871081386139,225,84.9681089108911,87.5171521782178,24.7144752475248,-4.15663366336634,1839.31683168317,1679.11089108911,1744.64356435644,20,40,10,32,5306040.53739964,396449.377570985,1,2,5306026.97452931,396460.426614683,211.697509696554,0,0,84.968108910891,4000.95273657867,49.4289504950495,26.507814416765,25.8938982950017,-4.15663366336634,-4.14199345443648,-3.35778367656696,3.65408356647195,2.89901957728444,2.80307916287394 +41593,2873.95211732673,456.856131584158,225,84.9693663366337,87.5184473267327,23.3047425742574,-3.46841584158416,1840.65841584158,1699.18415841584,1741.84356435644,20,40,10,32,5306026.39727989,396430.49572635,1,2,5306012.08783519,396442.152969695,235.26740072499,0,0,84.9693663366335,4024.55364870738,46.6094851485149,24.9957882982269,24.6957144313143,-3.46841584158416,-3.4537756326543,-2.77157218630502,2.55117307539434,2.02400972940801,2.24020497474669 +41594,2873.94429910891,456.841183069307,225,84.9793762376237,87.5287575247525,23.5200792079208,-3.78554455445545,1843.67821782178,1660.85445544554,1698.5099009901,20,40,10,32,5306012.24948928,396411.615254027,0.148514851485149,0.297029702970297,788020.336692602,58876.000174631,36.9364516472651,0,0,84.9793762376236,4048.15515418043,47.0401584158416,25.2267502533205,24.8786415559756,-3.78554455445545,-3.77090434552559,-3.03497385780436,3.07799745771182,2.44197340493604,2.32423264400926 +41595,2873.93647990099,456.826242079208,225,84.9439405940594,87.4922588118813,22.0122079207921,-2.73544554455446,1840.38118811881,1694.97623762376,1707.47326732673,20,40,10,32,5305998.09975709,396392.74402921,0,0,0,0,0,0,0,84.9439405940593,4071.75593762377,44.0244158415841,23.6094643573725,23.5950762864405,-2.73544554455446,-2.7208053356246,-2.15574154837232,2.33508224553047,1.85257097196005,1.88941954056709 +41596,2873.92864970297,456.811320792079,225,84.9554653465346,87.5041293069307,22.9703069306931,-3.38970297029703,1840.75247524752,1684.03366336634,1718.91386138614,20,40,10,32,5305983.92928738,396373.896889116,0,0,0,0,0,0,0,84.9554653465345,4095.35509029154,45.9406138613861,24.6370852351367,24.4099199950171,-3.38970297029703,-3.37506276136718,-2.70093719296083,2.51342526463341,1.99406196264108,2.10729294348697 +41597,2873.92081851485,456.796397623763,225,84.9470891089109,87.4955017821782,26.0084356435644,-4.42029702970297,1840.13861386139,1669.85247524752,1706.16435643564,20,40,10,32,5305969.75708626,396355.047280039,0,0,0,0,0,0,0,84.9470891089108,4118.95261457646,52.0168712871287,27.8956675553542,26.9934895339219,-4.42029702970297,-4.40565682077312,-3.60073720291571,4.83923767292753,3.83927857635026,3.71302234014258 +41598,2873.91299811881,456.781472178218,225,84.8940396039604,87.4408607920792,26.3662475247525,-5.1239603960396,1841.22277227723,1700.20198019802,1745.41584158416,20,40,10,32,5305955.60498726,396336.195100688,0,0,0,0,0,0,0,84.8940396039603,4142.53929370188,52.732495049505,28.2794430896374,27.2930946613238,-5.1239603960396,-5.10932018710975,-4.18616907904403,5.2736258616326,4.18390667264008,4.17231846885671 +41599,2873.90519237624,456.766535445544,225,84.8498217821783,87.3953164356436,26.3973168316832,-5.12940594059406,1838.58910891089,1724.0396039604,1768.18613861386,20,40,10,32,5305941.48034468,396317.329256459,0,0,0,0,0,0,0,84.8498217821781,4166.11902480749,52.7946336633663,28.3127668569409,27.3170023069358,-5.12940594059406,-5.11476573166421,-4.1909301068727,5.3131413188629,4.21525682707199,4.17040125236582 +41600,2873.89740821782,456.751586138614,225,84.8378217821782,87.3829564356436,25.7685346534653,-5.41871287128713,1839.70792079208,1741.88910891089,1781.42178217822,20,40,10,32,5305927.39602548,396298.448374879,0,0,0,0,0,0,0,84.8378217821781,4189.68742530253,51.5370693069307,27.638358797622,26.7806418035383,-5.41871287128713,-5.40407266235727,-4.41072209163615,4.73698743944909,3.75815688790402,3.77348641277403 +41601,2873.88961287129,456.736643960396,225,84.8558217821782,87.4014964356435,25.4983861386139,-3.81643564356436,1839.78712871287,1786.52475247525,1776.43762376238,20,40,10,32,5305913.29088316,396279.575908438,0,0,0,0,0,0,0,84.8558217821781,4213.25799433444,50.9967722772278,27.3486076851696,26.5548866096232,-3.81643564356436,-3.8017954346345,-3.09682950207337,4.35242139085986,3.45305590065552,3.42665358460566 +41602,2873.88179118812,456.721734653465,225,84.8669108910891,87.4129182178218,23.0994543453465,-2.6550495049505,1839.09900990099,1804.17425742574,1774.8495049505,20,40,10,32,5305899.1362809,396260.743419318,0,0,0,0,0,0,0,84.866910891089,4236.82900838834,46.1989086906931,24.7756038832468,24.5156049623789,-2.6550495049505,-2.64040929602064,-2.11505107037379,3.47314206816591,2.75546704587947,2.88441201204613 +41603,2873.87395633664,456.706833168317,225,84.9206732673267,87.4682934653466,25.0841683168317,-4.0150495049505,1838.72772277228,1763.03762376238,1802.23663366337,20,40,10,32,5305884.95717163,396241.920142446,0,0,0,0,0,0,0,84.9206732673266,4260.40979603961,50.1683366336634,26.9043332655047,26.2068713914538,-4.0150495049505,-4.00040929602064,-3.24810316242971,3.9421495958676,3.1275608910166,3.07634045035661 +41604,2873.86611415842,456.691927227723,225,84.9428217821782,87.4911064356435,25.1474851485149,-4.79415841584158,1841.79207920792,1714.07326732673,1775.26237623762,20,40,10,32,5305870.76465089,396223.090978811,0,0,0,0,0,0,0,84.9428217821781,4284.00129986249,50.2949702970297,26.9722445121285,26.2594311380189,-4.79415841584158,-4.77951820691173,-3.88054384724101,4.11168241793364,3.26206218558778,3.2118926368973 +41605,2873.85828079208,456.677003762376,225,84.970198019802,87.519303960396,25.0682673267327,-4.86336633663366,1841.03465346535,1700.01683168317,1740.79207920792,20,40,10,32,5305856.58890583,396204.240185769,0,0,0,0,0,0,0,84.9701980198019,4307.59977040704,50.1365346534653,26.8872784629905,26.1942378925637,-4.86336633663366,-4.84872612770381,-3.93826027689349,3.97655484292677,3.15485678695643,3.1991706924354 +41606,2873.85046643565,456.662056633664,225,84.9688217821782,87.5178864356435,25.3904554455445,-4.29633663366337,1840.44554455446,1699.37920792079,1753.30693069307,20,40,10,32,5305842.44896443,396185.360456384,0,0,0,0,0,0,0,84.9688217821781,4331.19940448295,50.7809108910891,27.2328452927619,26.4699954126614,-4.29633663366337,-4.28169642473351,-3.48578787186558,4.21435439758309,3.34351847240436,3.39279106018107 +41607,2873.8426709901,456.647095346534,225,84.9215445544555,87.4691908910891,26.3605247524753,-5.27663366336634,1842.35643564356,1690.6099009901,1731.97227722772,20,40,10,32,5305828.34443055,396166.463627651,0,0,0,0,0,0,0,84.9215445544553,4354.79234862487,52.7210495049505,28.2733050598409,27.2895498055405,-5.27663366336634,-5.26199345443648,-4.31017086977817,5.26686901309858,4.1785460299989,4.13171759053864 +41608,2873.83489376238,456.632121188119,225,84.8818316831683,87.4282866336633,27.4187442244554,-4.78019801980198,1839.62871287129,1727.1900990099,1761.43465346535,20,40,10,32,5305814.27399169,396147.551280034,0,0,0,0,0,0,0,84.8818316831682,4378.38106485149,54.8374884489109,29.4083113706979,28.18854482292,-4.78019801980198,-4.76555781087213,-3.92984321315416,6.2991123569558,4.99749108364279,4.97112861473092 +41609,2873.8271290099,456.617141980198,225,84.8523168316832,87.3978863366336,27.5358811881188,-4.56980198019802,1840.42079207921,1744.78712871287,1784.12673267327,20,40,10,32,5305800.22683541,396128.632965789,0,0,0,0,0,0,0,84.8523168316831,4401.95864925743,55.0717623762376,29.5339480618691,28.2877458784789,-4.56980198019802,-4.55516177126817,-3.75868348892825,6.38648822694096,5.06681198259361,5.08582488756325 +41610,2873.81938356436,456.602151584159,225,84.8148316831683,87.3592766336633,27.1135841584158,-5.28277227722772,1839.07920792079,1773.78217821782,1801.80198019802,20,40,10,32,5305786.21575406,396109.701266081,0,0,0,0,0,0,0,84.8148316831682,4425.52762211221,54.2271683168317,29.0810081883737,27.9241437070411,-5.28277227722772,-5.26813206829787,-4.33621551773084,6.03554906347604,4.78838936668641,4.74937040786188 +41611,2873.81165227723,456.587170891089,225,84.6096930693069,87.1479838613861,26.273297029703,-5.4109900990099,1827.60396039604,787.99504950495,812.476237623762,20,40,10,32,5305772.23074236,396090.78203342,0,0,0,0,0,0,0,84.6096930693068,4449.07316867437,52.5465940594059,28.1797478928735,27.1968645514801,-5.4109900990099,-5.39634989008005,-4.41992544545506,5.28523397768867,4.19311613791086,4.19599944833927 +41612,2873.80395227723,456.572323960396,225,83.661198019802,86.171033960396,25.1081188118812,-5.34732673267327,1801.49504950495,-381.876237623762,-316.113861386139,20,40,10,32,5305758.30074525,396072.030380522,0,0,0,0,0,0,0,83.6611980198019,4472.44993817382,50.2162376237624,26.930021663563,26.1515348747846,-5.34732673267327,-5.33268652374341,-4.34248923782942,4.39101204670028,3.48367235064811,3.51033108820213 +41613,2873.79635118812,456.557793366336,225,81.2632475247525,83.7011449504951,24.1786831683168,-5.37376237623762,1739.0099009901,-3579.98712871287,-3117.61881188119,20,40,10,32,5305744.54692695,396053.67599895,0,0,0,0,0,0,0,81.2632475247524,4495.40399361936,48.3573663366336,25.9331440319249,25.2235410996859,-5.37376237623762,-5.35912216730777,-4.35849570156552,4.06739741206489,3.22692804137398,3.27814969725727 +41614,2873.78901623762,456.543833366337,225,77.8821683168317,80.2186333663366,23.6415148514852,-5.29633663366337,1669.42574257426,-3502.56534653466,-3005.3900990099,20,40,10,32,5305731.27334091,396036.041203874,0,0,0,0,0,0,0,77.8821683168316,4517.49266067106,47.2830297029703,25.3569975464936,24.5733148824924,-5.29633663366337,-5.28169642473351,-4.30967384150828,4.32119071534496,3.42827859655655,3.4078440044143 +41615,2873.78198366337,456.530435643564,225,74.6224356435643,76.8611087128713,23.4515148514852,-5.36722772277228,1598.35643564356,-3559.21089108911,-3080.03861386139,20,40,10,32,5305718.54729185,396019.11685368,0,0,0,0,0,0,0,74.6224356435643,4538.67607197469,46.9030297029703,25.1532107094783,24.2245120744938,-5.36722772277228,-5.35258751384242,-4.39260851069238,4.93524744058489,3.91544930178279,3.7278624969529 +41616,2873.77523960396,456.517642871287,225,71.1981881188119,73.3341337623762,21.4239405940594,-5.11722772277228,1525.15841584158,-3766.33069306931,-3209.26930693069,20,40,10,32,5305706.34213963,396002.95565385,0,0,0,0,0,0,0,71.1981881188118,4558.93332629262,42.8478811881188,22.97851100035,22.3041810923445,-5.11722772277228,-5.10258751384243,-4.15535006500275,3.78268973987435,3.00105112847121,3.15694021821159 +41617,2873.76880306931,456.505487722772,225,67.6740297029703,69.7042505940594,20.5283861386139,-4.61356435643564,1446.78217821782,-3815.3495049505,-3155.4099009901,20,40,10,32,5305694.69235722,395987.598949855,0,0,0,0,0,0,0,67.6740297029702,4578.21440970847,41.0567722772277,22.0179730537701,21.3415444456026,-4.61356435643564,-4.59892414750579,-3.74799833694296,3.713667430711,2.94629129008932,2.91343523587333 +41618,2873.76267376238,456.493989207921,225,63.9289603960396,65.8468292079208,18.5135940594059,-4.88267326732673,1367.73267326733,-3924.11287128713,-3244.48118811881,20,40,10,32,5305683.59696123,395973.070422083,0,0,0,0,0,0,0,63.9289603960395,4596.49820148514,37.0271881188119,19.8569830271111,19.4123953809042,-4.88267326732673,-4.86803305839688,-3.93921387949862,2.72320170649835,2.16049110985589,2.15911683614157 +41619,2873.75688089109,456.483197722772,225,60.0677524752475,61.8697850495049,17.2277722772277,-5.18514851485148,1342.78217821782,-2831.05148514852,-2339.74356435644,20,40,10,32,5305673.10891681,395959.433834242,0,0,0,0,0,0,0,60.0677524752474,4613.70123803629,34.4555445544554,18.4778590589246,18.0968410636831,-5.18514851485148,-5.17050830592163,-4.17866197029044,2.45220620924383,1.94549294749713,2.00011189838482 +41620,2873.75132861386,456.472928613861,225,58.4887722772277,60.2434354455446,17.5780099009901,-5.20663366336634,1471.65841584158,-1166.99108910891,-888.10594059406,20,40,10,32,5305663.05483384,395946.455967571,0,0,0,0,0,0,0,58.4887722772276,4630.11382486247,35.1560198019802,18.8535107302418,18.3042379114352,-5.20663366336634,-5.19199345443648,-4.22861116059535,3.09175452437256,2.45288777097337,2.40228572541895 +41621,2873.7459249505,456.462980693069,225,55.8280495049505,57.502890990099,16.9493861386139,-5.5,1395.17326732673,-4322.43366336634,-3459.13267326733,20,40,10,32,5305653.2688483,395933.883131525,0,0,0,0,0,0,0,55.8280495049504,4646.04648289328,33.8987722772277,18.1792725817824,17.6163024126017,-5.5,-5.48535979107015,-4.47588848941901,3.13828213032147,2.48980111410753,2.55875687673954 +41622,2873.74084673267,456.453643861386,225,51.9733762376238,53.5325775247525,16.0961683168317,-5.5,1298.83168316832,-4573.42673267327,-3544.16930693069,20,40,10,32,5305644.07199756,395922.082374345,0,0,0,0,0,0,0,51.9733762376237,4661.01384870736,32.1923366336634,17.2641433123821,16.6697276997051,-5.5,-5.48535979107015,-4.48999173156413,3.22609957800447,2.55947234505476,2.56062998568266 +41623,2873.73616326733,456.44492970297,225,48.1870693069307,49.6326813861386,14.7288118811881,-5.49990099009901,1205.80693069307,-4508.4702970297,-3418.49504950495,20,40,10,32,5305635.5923969,395911.070449457,0,0,0,0,0,0,0,48.1870693069306,4674.92168836633,29.4576237623762,15.7975683487385,15.2896448738806,-5.49990099009901,-5.48526078116916,-4.48006496836163,2.80991629126797,2.22928736870169,2.22194288870817 +41624,2873.73192871287,456.436764455445,225,44.3901881188119,45.7218937623762,13.5611782178218,-5.47435643564356,1137.41584158416,-4942.02277227723,-3856.65544554455,20,40,10,32,5305627.93201931,395900.757286023,0,0,0,0,0,0,0,44.3901881188118,4687.77637387238,27.1223564356436,14.545208501107,14.0789504777476,-5.47435643564356,-5.45971622671371,-4.45940182324981,2.57327380173665,2.04154365745674,2.02368888241481 +41625,2873.72829465346,456.429056732673,225,40.2730198019802,41.4812103960396,12.7104851485148,-5.5,1378.23267326733,-4164.54752475247,-3127.16534653465,20,40,10,32,5305621.37370051,395891.03411389,0,0,0,0,0,0,0,40.2730198019801,4699.5129731298,25.4209702970297,13.6327871860287,13.1194240560316,-5.5,-5.48535979107015,-4.50406641748817,2.73392676137945,2.16899998588517,2.11792352511385 +41626,2873.72529267327,456.421598118812,225,37.9881386138614,39.1277827722772,11.1919603960396,-5.47693069306931,1334.89108910891,-2590.84752475248,-1929.66930693069,20,40,10,32,5305615.98062637,395881.642365596,0,0,0,0,0,0,0,37.9881386138613,4710.3525341309,22.3839207920792,12.0040747847849,11.6967365552371,-5.47693069306931,-5.46229048413945,-4.43294242983347,1.87020427240949,1.48375336814502,1.52780518791643 +41627,2873.72294613861,456.414152178218,225,35.9675049504951,37.0465300990099,11.1441782178218,-5.5,1269.44059405941,-1500.17623762376,-1075.89702970297,20,40,10,32,5305611.80139193,395872.288292935,0,0,0,0,0,0,0,35.967504950495,4720.60516529151,22.2883564356436,11.9528254218127,11.5403562438102,-5.5,-5.48535979107015,-4.48884399866924,2.27477753028927,1.8047273616795,1.79737685045349 +41628,2873.72123455445,456.406683267327,225,34.9564455445544,36.0051389108911,10.9706138613861,-5.5,1238.83663366337,94.8643564356436,216.671287128713,20,40,10,32,5305608.79883447,395862.926814267,0,0,0,0,0,0,0,34.9564455445544,4730.43171339382,21.9412277227723,11.7666668364621,11.3348068840853,-5.5,-5.48535979107015,-4.49929121039905,2.31604804634886,1.83746991719169,1.80331519036876 +41629,2873.72006009901,456.399181782178,196.485148514851,34.4635445544554,35.4974508910891,10.1801584158416,-5.5,1218.05445544554,161.282178217822,267.143564356436,20,40,10,32,5305606.79197055,395853.542701358,0,0,0,0,0,0,0,34.4635445544554,4740.07255071505,20.3603168316832,10.9188541256778,10.6340818655507,-5.5,-5.48535979107015,-4.45466109910054,1.69317835342041,1.34330731771941,1.44168269056849 +41630,2873.71943732673,456.391685742574,110.940594059406,33.872198019802,34.8883639603961,10.0000594059406,-5.5,1320.01485148515,156.922772277228,263.826732673267,20,40,10,32,5305605.80690539,395844.1838081,0,0,0,0,0,0,0,33.8721980198019,4749.56764169415,20.0001188118812,10.7256867173762,10.447007585231,-5.5,-5.48535979107015,-4.45163508375668,1.71748552686131,1.36259176220234,1.29978062942592 +41631,2873.71928049505,456.384217425742,52.1287128712871,33.3840099009901,34.3855301980198,9.29375247524753,-5.5,1180.85643564356,159.447524752475,262.350495049505,20,40,10,32,5305605.68431346,395834.875024285,0,0,0,0,0,0,0,33.38400990099,4758.90698110559,18.5875049504951,9.96812853122931,9.81814971270233,-5.5,-5.48535979107015,-4.40843749396831,1.24214044763908,0.985469929720116,0.980423460543534 +41632,2873.71957673267,456.37686,45,32.8806732673267,33.8670934653465,9.1359504950495,-5.5,1158.26732673267,-241.656435643564,-88.4910891089109,20,40,10,32,5305606.39848235,395825.719529419,0,0,0,0,0,0,0,32.8806732673267,4768.11110695817,18.271900990099,9.79887607639088,9.65507953967894,-5.5,-5.48535979107015,-4.40690105500903,1.20407787799442,0.955272444480842,1.00747114860454 +41633,2873.72031980198,456.369775940594,45,31.5514257425742,32.4979685148515,9.23990099009901,-5.5,1103.26732673267,-2814.27722772277,-2286.67821782178,20,40,10,32,5305607.93420338,395816.919519793,0,0,0,0,0,0,0,31.5514257425742,4777.08732940041,18.479801980198,9.91036945845567,9.66741482986209,-5.5,-5.48535979107015,-4.44720554420139,1.50154776677783,1.19127444485884,1.15025251411562 +41634,2873.72137267327,456.363196039604,45,29.4154851485149,30.2979497029703,8.03287128712871,-5.5,1220.32673267327,-1537.38118811881,-1159.4603960396,20,40,9.78217821782178,32,5305610.0324585,395808.757921934,0,0,0,0,0,0,0,29.4154851485148,4785.54422667764,16.0657425742574,8.6157549039725,8.51822820020978,-5.5,-5.48535979107015,-4.39069064886404,1.09287386599555,0.86704714749658,0.87157677665923 +41635,2873.72273287129,456.357101584158,45,28.5578712871287,29.4146074257426,6.90524752475248,-5.5,1423.93069306931,-499.694059405941,-288.641584158416,20,40,10,32,5305612.68908101,395801.21134367,0,0,0,0,0,0,0,28.5578712871287,4793.58537216718,13.810495049505,7.40630816777294,7.50980400129759,-5.5,-5.48535979107015,-4.29175695863924,1.06825536481944,0.847515706692165,0.839325817398183 +41636,2873.72437613861,456.351322376238,45,27.2195742574258,28.0361614851485,7.38489108910891,-5.5,1365.58910891089,-1108.96237623762,-801.862376237623,20,40,9.68316831683168,32,5305615.86296372,395794.0669539,0,0,0,0,0,0,0,27.2195742574257,4801.32838011547,14.7697821782178,7.92075577237783,7.84122410992927,-5.5,-5.48535979107015,-4.38726221713499,0.945519194154662,0.750141206321429,0.732109256606908 +41637,2873.72619415842,456.345977524752,45,25.8899702970297,26.6666694059406,6.82209900990099,-5.5,1300.15346534653,-747.743564356436,-496.418811881188,20,40,10,32,5305619.35078599,395787.469508634,0,0,0,0,0,0,0,25.8899702970297,4808.6928743399,13.644198019802,7.31712620543557,7.28629711929474,-5.5,-5.48535979107015,-4.36443840118105,0.805951450732296,0.63941313642961,0.658168042987571 +41638,2873.72809663366,456.341060792079,45,24.9024851485148,25.6495597029703,6.18258415841584,-5.5,1251.87128712871,-124.028712871287,39.1445544554455,20,40,10,32,5305622.9854253,395781.40821722,0,0,0,0,0,0,0,24.9024851485148,4815.74838652362,12.3651683168317,6.63120668539108,6.68569263040519,-5.5,-5.48535979107015,-4.31516768101735,0.816394901959938,0.64769859816375,0.657602144099658 +41639,2873.73015237624,456.336518712871,45,24.1887722772277,24.9144354455445,5.55569306930693,-5.5,1212.55445544554,-94.2346534653465,54.439603960396,20,40,9.16831683168317,32,5305626.89554595,395775.818777694,0,0,0,0,0,0,0,24.1887722772277,4822.56835101757,11.1113861386139,5.95882693695652,6.11151309786408,-5.5,-5.48535979107015,-4.24767841278204,1.04664736441242,0.830372689827227,0.805589953400922 +41640,2873.7322750495,456.332214257426,45,23.3231683168317,24.0228633663366,5.23226732673267,-5.5,1167.27722772277,-226.251485148515,-88.0336633663366,20,40,9,32,5305630.92430449,395770.527599706,0,0,0,0,0,0,0,23.3231683168316,4829.16639045651,10.4645346534653,5.61193267859588,5.78680002019658,-5.5,-5.48535979107015,-4.22783381315491,1.07949762324446,0.856434913566925,0.856243057059964 +41641,2873.73434742574,456.328243861387,45,21.5295841584158,22.1754716831683,4.93768316831683,-5.5,1150.21287128713,-1385.07425742574,-1065.08316831683,20,40,9.7029702970297,32,5305634.85238451,395765.650893651,0,0,0,0,0,0,0,21.5295841584158,4835.42252610007,9.87536633663366,5.29597281607813,5.43347984489627,-5.5,-5.48535979107015,-4.24819989672305,0.915822809203113,0.726581153634337,0.741546992588632 +41642,2873.73605663366,456.324456930693,45,20.1875544554455,20.7931810891089,5.04505940594059,-5.5,1284.46534653465,-729.436633663366,-776.20099009901,20,40,9.92079207920792,32,5305638.10362871,395760.990591444,0,0,0,0,0,0,0,20.1875544554455,4841.1871623212,10.0901188118812,5.41114052047785,5.44798026643372,-5.5,-5.48535979107015,-4.31824257070067,0.746395040118792,0.592163204352102,0.576394394412497 +41643,2873.73730564356,456.320496732673,45,19.3082178217822,19.8874643564356,5.291,-5.5,1245.60396039604,-150.963366336634,-440.228712871287,20,40,9.8019801980198,32,5305640.50633135,395756.099052888,0,0,0,0,0,0,0,19.3082178217822,4846.66636878435,10.582,5.67492712972535,5.60686421102013,-5.5,-5.48535979107015,-4.39289495061855,0.763256054639978,0.605540131918373,0.638788921909897 +41644,2873.73798425742,456.316456237624,48.5643564356436,18.7553168316832,19.3179763366337,6.02242574257426,-5.5,1187.23267326733,1298.46237623762,1096.29900990099,20,40,10,32,5305641.85427641,395751.088404331,0,0,0,0,0,0,0,18.7553168316831,4851.93228366333,12.0448514851485,6.4594268065188,6.19748838850402,-5.5,-5.48535979107015,-4.51535953732203,1.37968644800892,1.09459402078034,1.11208124172514 +41645,2873.73777079208,456.312352277228,167.970297029703,19.3367821782178,19.9168856435644,7.64705940594059,-5.5,1176.79702970297,2553.01881188119,2279.66336633663,20,40,10,32,5305641.5512181,395745.968846508,0,0,0,0,0,0,0,19.3367821782178,4857.2145863586,15.2941188118812,8.20194762528703,7.61303621107933,-5.5,-5.48535979107015,-4.65315226428762,2.90729347841015,2.3065429559839,2.33946562345775 +41646,2873.73658386139,456.308448811881,225,19.4773762376237,20.0616975247525,9.48178272821782,-5.5,1165.58415841584,2679.87227722772,2400.76930693069,20,40,10,32,5305639.44046118,395741.066474375,0,0,0,0,0,0,0,19.4773762376237,4862.61480896586,18.9635654564356,10.1698026918398,9.18214045197111,-5.5,-5.48535979107015,-4.78588218349732,4.81244641404601,3.81802334707465,3.71376369676222 +41647,2873.73460405941,456.305299108911,225,19.9428514851485,20.541137029703,9.53930033,-5.5,1136,3211.04752475247,2849.60198019802,20,40,10,32,5305635.84407539,395737.076548163,0,0,0,0,0,0,0,19.9428514851485,4868.07857301977,19.07860066,10.2314939031024,9.25771403261344,-5.5,-5.48535979107015,-4.77614046454947,4.74715019590452,3.76621965641697,3.789500199458 +41648,2873.73197069307,456.303214257426,225,20.4485346534653,21.0619906930693,9.44859405940594,-5.5,922.410891089109,3523.84455445545,3133.0900990099,20,40,10,32,5305631.01310145,395734.39126168,0,0,0,0,0,0,0,20.4485346534653,4873.68876672164,18.8971881188119,10.1342057768824,9.20947209901156,-5.5,-5.48535979107015,-4.75615082391483,4.51320981902833,3.58061970498067,3.5668215021393 +41649,2873.72894534653,456.302583861387,225,21.2023465346535,21.8384169306931,9.67763366336634,-5.5,933.113861386139,4133.89207920792,3649.33564356436,20,40,10,32,5305625.42331239,395733.50471247,0,0,0,0,0,0,0,21.2023465346534,4879.46411908688,19.3552673267327,10.3798650213156,9.44748577788423,-5.5,-5.48535979107015,-4.74917649300433,4.55255341736011,3.61183351269191,3.56964098329293 +41650,2873.7257619802,456.303490792079,225,22.4267425742574,23.0995448514852,9.10340594059406,-5.49831683168317,999.945544554455,4250.51881188119,3731.8900990099,20,40,10,32,5305619.50621706,395734.527970569,0,0,0,0,0,0,0,22.4267425742574,4885.51797615509,18.2068118811881,9.76397001420906,9.02898394666134,-5.49831683168317,-5.48367662275331,-4.67270169974492,3.61793812192929,2.87034307072606,2.92931539060359 +41651,2873.72278910891,456.305978514851,225,23.6366633663366,24.3457632673267,9.03553465346535,-0.774851485148515,847.10396039604,3943.5198019802,3505.06336633663,20,40,10,32,5305613.94345394,395737.527520404,0,0,0,0,0,0,0,23.6366633663366,4891.92694947742,18.0710693069307,9.69117383037687,9.04192537468625,-0.774851485148515,-0.760211276218659,-0.651425010395179,3.19288927179187,2.53312447256456,2.45200875324211 +41652,2873.72031009901,456.309822673267,225,24.9136336633663,25.6610426732673,8.48457425742574,4.96425742574257,812.014851485148,4424.22376237624,3878.28910891089,20,40,9.92079207920792,32,5305609.2649666,395742.233360757,0,0,0,0,0,0,0,24.9136336633663,4898.66147447743,16.9691485148515,9.10023448074743,8.64532922657953,4.96425742574257,4.97889763467243,4.13385266703083,2.31508737799063,1.83670775717889,1.94146092964989 +41653,2873.71853524753,456.314789603961,225,26.2061188118812,26.9923023762376,8.78282178217822,5.45128712871287,876.737623762376,4915.78316831683,4288.94257425743,20,40,9.62376237623762,32,5305605.86555939,395748.361447484,0,0,0,0,0,0,0,26.2061188118812,4905.76696732671,17.5656435643564,9.42012353188923,8.97253239544506,5.45128712871287,5.46592733764273,4.5308994582246,2.34647199857579,1.86160719580609,1.81974846028233 +41654,2873.7174150495,456.320572772277,203.613861386139,27.8331188118812,28.6681123762376,9.09192079207921,5.32762376237624,949.980198019802,5269.32079207921,4613.15940594059,20,40,10,32,5305603.66043421,395755.528261458,0,0,0,0,0,0,0,27.8331188118811,4913.27791003848,18.1838415841584,9.7516514769012,9.32865295280922,5.32762376237624,5.34226397130609,4.40705147640638,2.24308951916835,1.77958722382178,1.70227120056808 +41655,2873.71672148515,456.326966930693,139.455445544554,29.3947227722772,30.2765644554455,8.42039603960396,5.18643564356436,1016.41089108911,4744.46831683168,4104.89108910891,20,40,10,32,5305602.23184223,395763.470486421,0,0,0,0,0,0,0,29.3947227722772,4921.21792772275,16.8407920792079,9.03139934382544,8.84680212452925,5.18643564356436,5.20107585249421,4.20710151275692,1.43350066685726,1.13728830270894,1.2290095473424 +41656,2873.71632831683,456.33372029703,94.9009900990099,30.8027920792079,31.7268758415842,8.50552475247525,5.34712871287129,856.450495049505,4438.84554455445,3844.31386138614,20,40,10,32,5305601.35161593,395771.870242472,0,0,0,0,0,0,0,30.8027920792079,4929.57379158414,17.0110495049505,9.12270519190555,8.99977248759186,5.34712871287129,5.36176892180114,4.30986145035597,1.16755831675884,0.926299127081313,0.956367534339618 +41657,2873.71610772277,456.340780990099,78.8613861386139,32.5849603960396,33.5625092079208,9.69266336633664,5.44623762376238,828.544554455446,4354.93762376238,3765.54851485148,20,40,10,32,5305600.78415478,395780.658621406,0,0,0,0,0,0,0,32.5849603960395,4938.38091732672,19.3853267326733,10.395985314103,10.1117822907654,5.44623762376238,5.46087783269223,4.43807798663223,1.68404728939014,1.33606305718085,1.32471923839069 +41658,2873.71597465347,456.34821019802,61.039603960396,34.173297029703,35.198495940594,10.5907425742574,5.5,822.772277227723,2696.58910891089,2375.60693069307,20,40,10,32,5305600.37054336,395789.909001324,0,0,0,0,0,0,0,34.1732970297029,4947.6722721947,21.1814851485148,11.3592312150049,10.9667102768805,5.5,5.51464020892985,4.51508429782247,2.12745733815923,1.68784877547721,1.68807239373811 +41659,2873.71585891089,456.355846732673,73.5148514851485,34.2237524752475,35.250465049505,10.1040495049505,5.5,742.480198019802,471.451485148515,408.170297029703,20,40,10,32,5305599.98437854,395799.418235984,0,0,0,0,0,0,0,34.2237524752475,4957.21217799779,20.208099009901,10.8372225771558,10.5555333857008,5.5,5.51464020892985,4.4764305306089,1.71089912574794,1.35736634646563,1.37944268578457 +41660,2873.71562287129,456.363346039604,98.4653465346535,32.9903168316832,33.9800263366337,9.96956435643564,5.39435643564356,762.059405940594,-537.214851485149,-370.142574257426,20,40,10,32,5305599.37848435,395808.752498972,0,0,0,0,0,0,0,32.9903168316831,4966.58979793728,19.9391287128713,10.6929788769381,10.3706008646412,5.39435643564356,5.40899664457342,4.40956323331362,1.83894525238969,1.45895357652678,1.4262281982937 +41661,2873.71527732673,456.370386336634,116.287128712871,30.6411683168317,31.5604033663366,9.50072277227723,5.49613861386139,646.445544554455,-797.396039603961,-612.219801980198,20,40,10,32,5305598.58008691,395817.511296449,0,0,0,0,0,0,0,30.6411683168316,4975.40123696368,19.0014455445545,10.1901170690598,9.8371514907911,5.49613861386139,5.51077882279124,4.50992551915119,1.93919352212354,1.53848697833891,1.6874347993416 +41662,2873.71487673267,456.37694960396,118.069306930693,28.5667722772277,29.4237754455446,10.6327128712871,5.5,638.673267326733,-513.128712871287,-406.668316831683,20,40,10,32,5305597.69045898,395825.674002,0,0,0,0,0,0,0,28.5667722772277,4983.61877643013,21.2654257425743,11.4042469733221,10.6815075898871,5.5,5.51464020892985,4.64265751181979,3.59475827175137,2.85195300431354,2.70872628056309 +41663,2873.71447475247,456.383167326733,114.504950495049,27.4236732673268,28.2463834653465,10.9028613861386,5.5,998.495049504951,-287.014851485148,-154.235643564356,20,40,10,32,5305596.80604456,395833.406205865,0,0,0,0,0,0,0,27.4236732673267,4991.39157389987,21.8057227722772,11.6939980857745,10.8459304437496,5.5,5.51464020892985,4.68835667894972,4.17738747100556,3.314190231298,3.25781344324688 +41664,2873.7141339604,456.389221683168,94.9009900990099,27.5330297029703,28.3590205940594,9.65927722772278,5.5,1579.72772277228,3890.41287128713,3668.46831683168,20,40,10,32,5305596.03865489,395840.936945904,0,0,0,0,0,0,0,27.5330297029703,4998.95287585257,19.3185544554456,10.3601766004805,9.79412632314794,5.5,5.51464020892985,4.60291692124991,2.852407749369,2.26299857608417,2.31400420604088 +41665,2873.71402267327,456.395594950495,48.5643564356436,29.8245544554455,30.7192910891089,9.27453465346535,5.5,1532.63861386139,6374.03762376238,5487.6,20,40,10,32,5305595.68922725,395848.872638667,0,0,0,0,0,0,0,29.8245544554455,5006.89686823431,18.5490693069307,9.94751622009608,9.59795857630025,5.5,5.51464020892985,4.51637829110469,1.91207649528049,1.51697329638127,1.58680959003507 +41666,2873.71436930693,456.402505049505,45,32.4519306930693,33.4254886138614,10.1495544554455,5.5,1244.45544554455,6088.64356435644,5233.07128712871,20,40,10,32,5305596.17596875,395857.492389394,0,0,0,0,0,0,0,32.4519306930693,5015.54977681517,20.2991089108911,10.8860294715238,10.4928149013445,5.5,5.51464020892985,4.52136927115881,2.1154849524048,1.67835031161958,1.72817185825376 +41667,2873.71534079208,456.409813168317,45,34.5530594059406,35.5896511881188,12.2826633663366,5.5,1287.58910891089,5055.28811881188,4354.23564356436,20,40,10,32,5305597.81121531,395866.628850439,0,0,0,0,0,0,0,34.5530594059405,5024.88872819031,24.5653267326733,13.1739216713112,12.4279343119039,5.5,5.51464020892985,4.61257519398913,3.74120943313993,2.96814213251988,2.87182521462481 +41668,2873.71694613861,456.41731960396,45,36.3461386138614,37.4365227722772,12.4785742574257,5.5,913.663366336634,4777.81188118812,4134.80396039604,20,40,10,32,5305600.61614715,395876.033539907,0,0,0,0,0,0,0,36.3461386138613,5034.74228685368,24.9571485148515,13.3840483072685,12.697250255344,5.5,5.51464020892985,4.58831113813562,3.48182294248937,2.76235414196084,2.73165599943478 +41669,2873.71920326733,456.424838118812,45,37.8909801980198,39.0277096039604,11.9321584158416,5.5,957.594059405941,4678.0297029703,4027.43069306931,20,40,10,32,5305604.6281464,395885.475047979,0,0,0,0,0,0,0,37.8909801980198,5045.05062134212,23.8643168316832,12.7979832754186,12.3207891882045,5.5,5.51464020892985,4.5263267389054,2.54887257818108,2.02218459696717,2.00760144759843 +41670,2873.72194128713,456.432428019802,45,39.427702970297,40.6105340594059,11.5994950495049,5.5,1034.84653465347,4021.54257425742,3490.30297029703,20,40,10,32,5305609.52933168,395895.02153924,0,0,0,0,0,0,0,39.427702970297,5055.79430948844,23.1989900990099,12.4411810900681,12.1257372369744,5.5,5.51464020892985,4.47531839624635,1.90522590828896,1.51153828499111,1.56715660456101 +41671,2873.7250809901,456.440012574258,45,40.6369306930693,41.8560386138614,12.2815742574257,5.5,1421.38613861386,4459.70891089109,3926.46534653465,20,40,9.7029702970297,32,5305615.1747074,395904.574774322,0,0,0,0,0,0,0,40.6369306930693,5066.91870585808,24.5631485148515,13.1727535341527,12.7752603826837,5.5,5.51464020892985,4.49551440297076,2.24913985659492,1.78438734574831,1.82767776630796 +41672,2873.7285670297,456.447730495049,45,43.0366930693069,44.3277938613861,12.2716534653465,5.5,1521.12871287129,5909.50792079208,5033.33663366337,20,40,10,32,5305621.45863638,395914.305699444,0,0,0,0,0,0,0,43.0366930693069,5078.51471969197,24.5433069306931,13.1621128665816,12.9042161455788,5.5,5.51464020892985,4.44711662667406,1.99694556890917,1.58430539250874,1.48953307096375 +41673,2873.73244415842,456.455783069307,45,45.4573465346535,46.8210669306931,11.6313465346535,5.5,1610.92574257426,5765.65049504951,4813.57425742574,20,40,10,32,5305628.45949436,395924.466555174,0,0,0,0,0,0,0,45.4573465346534,5090.81035374037,23.2626930693069,12.47534379224,12.4980525483364,5.5,5.51464020892985,4.36472963314932,1.33482570460054,1.05900310693652,1.07214223268194 +41674,2873.73662603961,456.464202079208,45,47.8060495049505,49.240230990099,12.0936138613861,5.5,1696.14851485149,5443.47623762376,4686.66138613861,20,40,10,32,5305636.01664464,395935.094044429,0,0,0,0,0,0,0,47.8060495049504,5103.77446171616,24.1872277227723,12.9711542994524,13.0258072049242,5.5,5.51464020892985,4.35388314131833,1.51533406974648,1.20221200594015,1.18849041192929 +41675,2873.74102613861,456.47299029703,45,50.0594653465347,51.5612493069307,12.6798910891089,5.5,1777.40099009901,5260.46732673267,4557.48811881188,20,40,10,32,5305643.96973563,395946.188725715,0,0,0,0,0,0,0,50.0594653465346,5117.3738380088,25.3597821782178,13.5999731513035,13.6536023287812,5.5,5.51464020892985,4.35541996230412,1.56254615755826,1.23966839257198,1.27147320090745 +41676,2873.74567475248,456.482083762376,45,52.1520495049505,53.716610990099,12.8350198019802,5.5,1847.73762376238,5059.15841584158,4423.83465346535,20,40,10,32,5305652.3763269,395957.671929557,0,0,0,0,0,0,0,52.1520495049504,5131.57741988448,25.6700396039604,13.7663583603892,13.9053974617463,5.5,5.51464020892985,4.33087245859115,1.72799653056104,1.37093081765855,1.34939810065103 +41677,2873.75055465346,456.491473861386,45,54.1352772277228,55.7593355445544,13.1684554455446,5.38554455445545,1921.77227722772,4853.87722772277,4281.65346534653,20,40,10,32,5305661.20470251,395969.532345859,0,0,0,0,0,0,0,54.1352772277227,5146.34495376787,26.3369108910891,14.1239888611794,14.3028816762441,5.38554455445545,5.4001847633853,4.23079318415012,1.86094459680787,1.47640707177274,1.46552741817701 +41678,2873.75564524752,456.501145346535,45,55.9477326732674,57.6261646534654,13.435504950495,5.38079207920792,1863.17821782178,4429.97722772277,3940.92376237624,20,40,10,32,5305670.41705983,395981.750288599,0,0,0,0,0,0,0,55.9477326732673,5161.64752018701,26.8710099009901,14.4104160924445,14.6337964215767,5.38079207920792,5.39543228813777,4.21762160686303,1.89277962643893,1.50166384887293,1.52173121294634 +41679,2873.76091871287,456.511069207921,45,57.6463861386139,59.3757777227723,13.7862475247525,5.02861386138614,1470.74752475248,4385.2099009901,4013.62574257426,20,40,10,32,5305679.96251692,395994.288686717,0,0,0,0,0,0,0,57.6463861386138,5177.41863198569,27.572495049505,14.7866093546261,15.0299861143462,5.02861386138614,5.04325407031599,3.94096780751266,1.95890529561242,1.55412559639669,1.55341214675703 +41680,2873.76634207921,456.521290693069,45,59.3181683168317,61.0977133663366,14.1628613861386,5.4109900990099,1504.14356435644,4340.44851485149,4167.31782178218,20,40,10,32,5305689.77898783,396007.202801517,0,0,0,0,0,0,0,59.3181683168316,5193.65977288228,28.3257227722772,15.1905511840366,15.4456405171094,5.4109900990099,5.42563030793975,4.23709293907412,2.05326131832167,1.62898429956886,1.60486012176858 +41681,2873.77189693069,456.531848613861,45,61.0051287128713,62.8352825742574,15.0679900990099,5.34336633663366,1558.24257425743,4220.87722772277,4175.62277227723,20,40,10,32,5305699.83149147,396020.540363115,0,0,0,0,0,0,0,61.0051287128712,5210.378630033,30.1359801980198,16.1613581181826,16.3124766455386,5.34336633663366,5.35800654556352,4.21203450475305,1.88566741786048,1.49602127624655,1.51185869040645 +41682,2873.77758366337,456.54273019802,45,62.6933663366337,64.5741673267327,16.1823366336634,5.5,1600.27227722772,4185.28415841584,4036.82574257426,20,40,10,32,5305710.12105097,396034.285470273,0,0,0,0,0,0,0,62.6933663366336,5227.56536974697,32.3646732673267,17.3565642004771,17.356665008093,5.5,5.51464020892985,4.37127411627846,1.88688734441605,1.49698912246658,1.48417387853581 +41683,2873.78341049505,456.55390950495,45,64.2834158415842,66.2119183168317,16.2917128712871,5.48881188118812,1638.98514851485,4096.88217821782,3936.32673267327,20,40,10,32,5305720.66347347,396048.406078862,0,0,0,0,0,0,0,64.283415841584,5245.20498866886,32.5834257425742,17.473877029477,17.5408024260212,5.48881188118812,5.50345209011797,4.34763859430117,1.92168246900727,1.5245943333352,1.53710564811772 +41684,2873.78937475247,456.565378316832,45,65.8305247524753,67.8054404950495,16.2137722772277,5.26633663366337,1678.9702970297,4030.05346534653,3843.45841584158,20,40,10,32,5305731.45399426,396062.891858765,0,0,0,0,0,0,0,65.8305247524752,5263.28373748624,32.4275445544555,17.390280886643,17.563760080616,5.26633663366337,5.28097684259322,4.14952536304358,1.96246706700303,1.556951378786,1.5710879229631 +41685,2873.79547455446,456.577114950495,45,67.3135643564357,69.3329712871287,16.0495148514851,5.36168316831683,1715.37623762376,3939.6702970297,3750.99702970297,20,40,10,32,5305742.48961785,396077.715732484,0,0,0,0,0,0,0,67.3135643564356,5281.77947048955,32.0990297029703,17.2141045642833,17.5085155299637,5.36168316831683,5.37632337724669,4.19859412906209,2.38299262468613,1.89058135803928,1.86692588490574 +41686,2873.80169306931,456.589126039604,45,68.7553861386139,70.8180477227723,16.6379306930693,5.47148514851485,1752.60396039604,3868.62376237624,3704.03267326733,20,40,10,32,5305753.73901996,396092.885398374,0,0,0,0,0,0,0,68.7553861386138,5300.68043479097,33.2758613861386,17.8452172127365,18.0914606301863,5.47148514851485,5.48612535744471,4.29597274306894,2.26485527000725,1.79685539425314,1.77397424950982 +41687,2873.80806108911,456.601404059406,45,70.1226039603961,72.2262820792079,17.1201683168317,5.45247524752475,1786.54455445545,3806.66633663366,3635.7198019802,20,40,10.8910891089109,32,5305765.25940953,396108.392505923,0,0,0,0,0,0,0,70.122603960396,5319.96719799229,34.2403366336634,18.3624471076644,18.5800804716151,5.45247524752475,5.46711545645461,4.28813561077681,2.26913975733996,1.80025455369495,1.85914776308522 +41688,2873.8145719802,456.613925742574,45,71.4842376237624,73.6287647524752,16.6860099009901,5.5,1820.56930693069,3767.18811881188,3544.09207920792,20,40,11,32,5305777.03902309,396124.207845795,0,0,0,0,0,0,0,71.4842376237623,5339.63871663916,33.3720198019802,17.8967851585701,18.2885263311942,5.5,5.51464020892985,4.28735697377747,2.73969579359437,2.17357693028964,2.128992100764 +41689,2873.82120059406,456.626668712871,45,72.7696732673267,74.9527634653466,17.176603960396,5.1690099009901,1854.61881188119,3687.83069306931,3510.40297029703,20,40,11,32,5305789.03178114,396140.302701573,0,0,0,0,0,0,0,72.7696732673266,5359.67426518151,34.3532079207921,18.4229778513323,18.7802911840288,5.1690099009901,5.18365010991995,4.03824569470944,2.60422211151737,2.0660969426529,2.10103172119043 +41690,2873.82791237624,456.639621584158,45,74.0053465346534,76.225506930693,17.5831287128713,4.92287128712871,1886.93564356436,3620.56930693069,3448.35940594059,20,40,11,32,5305801.17393449,396156.661734381,0,0,0,0,0,0,0,74.0053465346534,5380.06354334434,35.1662574257426,18.8590009748868,19.1975515248829,4.92287128712871,4.93751149605856,3.85166899986373,2.52301314543888,2.00166864531653,1.97707067027447 +41691,2873.83472534653,456.652782079208,45,75.2109207920792,77.4672484158416,17.8602178217822,4.94465346534654,1917.73762376238,3564.7504950495,3396.15841584158,20,40,11,32,5305813.49891525,396173.282705026,0,0,0,0,0,0,0,75.2109207920791,5400.79043330583,35.7204356435644,19.1561963068675,19.502747945335,4.94465346534654,4.95929367427639,3.86889237562123,2.53149240627456,2.00839578844733,2.03603314150716 +41692,2873.84164138614,456.666165049505,45,76.3506534653465,78.6411730693069,17.9407722772277,4.0639603960396,1841.59900990099,3517.76336633663,3349.38712871287,20,40,11,32,5305826.00987746,396190.184173248,0,0,0,0,0,0,0,76.3506534653465,5421.84525008251,35.8815445544555,19.2425959788819,19.6388017229242,4.0639603960396,4.07860060496946,3.17279521515512,2.57107263528943,2.039797330503,2.00378902626989 +41693,2873.84866257426,456.679762574257,45,77.5300495049505,79.855950990099,19.3345742574257,0.932178217821782,1686.23267326733,3484.57722772277,3318.23564356436,20,40,11,32,5305838.7108524,396207.356338034,0,0,0,0,0,0,0,77.5300495049504,5443.22119942245,38.6691485148515,20.7375354366197,20.8930882790698,0.932178217821782,0.94681842675164,0.748355458403906,1.94290862142815,1.54143440562669,1.54885715910965 +41694,2873.85579663366,456.693572376238,45,78.6337524752475,80.9927650495049,20.2036435643564,2.83534653465347,1709.43564356436,3494.27524752475,3257.2198019802,20,40,11,32,5305851.6161987,396224.796616437,0,0,0,0,0,0,0,78.6337524752474,5464.91189320683,40.4072871287129,21.6696664113905,21.6948561774606,2.83534653465347,2.84998674358332,2.25933463793322,1.8533075000785,1.47034807160777,1.50411465444097 +41695,2873.86304504951,456.707558217822,45,79.7214554455446,82.1130991089109,20.6759207920792,4.17178217821782,1734.87623762376,3475.10792079208,3234.21386138614,20,40,11,32,5305864.72948136,396242.459913892,0,0,0,0,0,0,0,79.7214554455444,5486.90742742025,41.3518415841584,22.1762131610324,22.1584997827165,4.17178217821782,4.18642238714768,3.32224196164999,1.94006239092893,1.53917630786056,1.55793392593181 +41696,2873.87040128713,456.721709702971,45,80.7618712871287,83.1847274257426,20.8177920792079,3.81772277227723,1757.97524752475,3458.1801980198,3198.07524752475,20,40,11,32,5305878.0388308,396260.333059281,0,0,0,0,0,0,0,80.7618712871287,5509.19485162267,41.6355841584159,22.3283789550706,22.338391111319,3.81772277227723,3.83236298120708,3.04129084591297,2.06063061493489,1.63483083667287,1.59833380280665 +41697,2873.87786237624,456.736036336634,45,81.7924356435644,84.2462087128713,20.901198019802,4.19287128712871,1779.14851485149,3301.47524752475,3126.80594059406,20,40,11,32,5305891.53853409,396278.427790486,0,0,0,0,0,0,0,81.7924356435643,5531.77363143565,41.802396039604,22.4178370225545,22.4671415249991,4.19287128712871,4.20751149605857,3.33200991184223,2.16753666723415,1.71964628571991,1.70273639631118 +41698,2873.88542277228,456.750536237624,45,82.6295247524753,85.1084104950495,20.4636336633663,3.9960396039604,1797.58415841584,2797.30594059406,2691.67128712871,20,40,11,32,5305905.21836497,396296.741576298,0,0,0,0,0,0,0,82.6295247524752,5554.6170779703,40.9272673267327,21.9485219899827,22.1440263460172,3.9960396039604,4.01067981289025,3.1574217572023,2.22423284716032,1.76462701278137,1.75590505611387 +41699,2873.89304237624,456.765153366336,45,83.2128910891089,85.7092778217821,20.7225445544555,2.04039603960396,1808,2440.31287128713,2366.98514851485,20,40,11,32,5305919.00530261,396315.203272242,0,0,0,0,0,0,0,83.2128910891088,5577.66012665017,41.4450891089109,22.2262200508451,22.3995857674559,2.04039603960396,2.05503624853382,1.6219834256476,2.01861291704298,1.60149549374346,1.60033614900691 +41700,2873.90070623762,456.779856138614,45,83.6732178217822,86.1834143564357,20.3670693069307,3.76584158415842,1812.87623762376,2282.97128712871,2209.70792079208,20,40,11,32,5305932.87236173,396333.773035495,0,0,0,0,0,0,0,83.6732178217821,5600.84386383388,40.7341386138614,21.8449507017383,22.123343068345,3.76584158415842,3.78048179308827,2.96601070752168,2.33552117155845,1.85291920021617,1.86541778699948 +41701,2873.90841584158,456.794613960396,45,84.0443465346535,86.5656769306931,20.8176237623762,3.75574257425743,1823.08415841584,2065.86732673267,2050.59504950495,20,40,11,32,5305946.82297889,396352.412804142,0,0,0,0,0,0,0,84.0443465346534,5624.13611410891,41.6352475247525,22.3281984247825,22.5269158381416,3.75574257425743,3.77038278318728,2.96797465395917,2.38806430774106,1.89460505049145,1.8715640839236 +41702,2873.91616227723,456.809417227723,45,84.2595643564356,86.7873512871287,21.0875445544554,4.00366336633663,1826.65841584158,1914.10891089109,1901.83564356436,20,40,11,32,5305960.84086356,396371.110317236,0,0,0,0,0,0,0,84.2595643564355,5647.51503267327,42.1750891089109,22.6177052903745,22.7685704523427,4.00366336633663,4.01830357526649,3.17003470431581,2.16634299805556,1.71869927116631,1.76567868690069 +41703,2873.92391920792,456.824243960396,45,84.4317821782178,86.9647356435643,20.816603960396,4.18663366336633,1829.85643564356,1805.3900990099,1810.8297029703,20,40,11,32,5305974.87772338,396389.837318072,0,0,0,0,0,0,0,84.4317821782177,5670.94805632563,41.6332079207921,22.3271046236249,22.5467425649503,4.18663366336633,4.20127387229619,3.30350186486655,2.34870011506577,1.86337490396258,1.90111212657681 +41704,2873.93168742574,456.839093366337,45,84.5797425742574,87.1171348514851,19.769202970297,3.03386138613861,1833.68811881188,1772.70891089109,1789.14851485148,20,40,11,32,5305988.93504358,396408.592845898,0,0,0,0,0,0,0,84.5797425742573,5694.42009829483,39.5384059405941,21.2037018085779,21.6649064253045,3.03386138613861,3.04850159506847,2.37172244733461,3.00562356177555,2.38455453714419,2.28323954528858 +41705,2873.93946623762,456.853976435644,45,84.6689801980198,87.2090496039604,19.7425770078218,1.55653465346535,1833.64851485149,1724.00495049505,1718.95544554455,20,40,11,32,5306003.0112949,396427.390567073,0.445544554455446,0.445544554455446,2364061.80620224,176628.977778823,2.30086198712811,0,0,84.6689801980197,5717.92723960396,39.4851540156436,21.1751438050236,21.6507419345242,1.55653465346535,1.5711748623952,1.22638301121809,2.84758142313953,2.25916954098657,2.26124345374848 +41706,2873.94724455446,456.868868019802,45,84.7627524752475,87.305635049505,19.6098916392079,2.02287128712871,1838.55445544554,1655.98118811881,1658.03069306931,20,40,11,32,5306017.08649906,396446.198786373,1,1,5306016.0630188,396447.032568447,22.0669435731724,0,0,84.7627524752474,5741.45957013201,39.2197832784158,21.0328304808761,21.5422520447359,2.02287128712871,2.03751149605857,1.58125089146232,3.03066280887953,2.40441978276171,2.44023966258642 +41707,2873.9550359406,456.883793267327,45,84.8072871287129,87.3515057425742,19.993400990099,3.47831683168317,1837.17326732673,1616.70396039604,1605.75544554455,20,40,11,32,5306031.18521997,396465.049280553,1,1,5306030.91784672,396465.267097184,45.5863812968126,0,0,84.8072871287128,5765.01463283829,39.986801980198,21.4441681523702,21.8693447337911,3.47831683168317,3.49295704061302,2.72790249481771,2.86956842615717,2.27661324500549,2.29180511252853 +41708,2873.96285019802,456.898724653465,45,84.8513366336634,87.3968767326732,19.7841661165347,3.76722772277228,1836.9504950495,1602.33168316832,1563.97425742574,20,40,11,32,5306045.32622972,396483.908088951,1,1,5306045.7936156,396483.527331271,69.1389745465375,0,0,84.8513366336633,5788.5831639989,39.5683322330693,21.2197507151229,21.6939595982686,3.76722772277228,3.78186793170213,2.94228609095982,3.04573162685856,2.41637484551085,2.39418332878448 +41709,2873.97066118812,456.913663861386,45,84.8582178217822,87.4039643564357,19.3799372935644,3.85148514851485,1837.20792079208,1631.52673267327,1585.43762376238,20,40,11,32,5306059.46107309,396502.776439278,1,1,5306060.67159707,396501.790281333,92.6950709420305,0,0,84.8582178217821,5812.15335805831,38.7598745871287,20.7861901189991,21.3511412716387,3.85148514851485,3.86612535744471,2.99343446868713,3.30662313281601,2.6233568615374,2.61798238764957 +41710,2873.97848405941,456.928585940594,45,84.8858514851486,87.4324270297029,18.9973806382178,3.6349504950495,1838.75742574257,1594.06831683168,1560.20297029703,20,40,11,32,5306073.61836778,396521.623755554,1,1,5306075.54823486,396520.051582025,116.249039930238,0,0,84.8858514851484,5835.72865360287,37.9947612764356,20.3758742728296,21.0271012291145,3.6349504950495,3.64959070397936,2.81150652534704,3.64890956532781,2.89491470930951,2.90999200446655 +41711,2873.98630544555,456.943483267327,45,84.9108316831683,87.4581566336634,19.789703520297,3.38069306930693,1839.57920792079,1625.6603960396,1575.67425742574,20,40,11,32,5306087.77352477,396540.440097511,1,1,5306090.40885253,396538.293217766,139.777644479496,0,0,84.9108316831683,5859.30938998901,39.5794070405941,21.2256899256388,21.7007943100458,3.38069306930693,3.39533327823679,2.64671964170395,3.11655280978375,2.47256184617783,2.39413264226245 +41712,2873.99414237624,456.958366831683,45,84.8978910891089,87.4448278217821,21.1474257425743,2.39108910891089,1839.63861386139,1597.04356435644,1572.79702970297,20,40,11,32,5306101.95784328,396559.239720356,1,1,5306105.27291626,396556.539083592,163.311705119194,0,0,84.8978910891088,5882.8920289054,42.2948514851485,22.6819315952347,22.8593610000846,2.39108910891089,2.40572931784075,1.89911457591749,1.93647015007268,1.53632635208392,1.60555580225956 +41713,2874.00198871287,456.97326049505,45,84.9400198019802,87.4882203960396,21.0242079207921,2.43792079207921,1838.58415841584,1620.07425742574,1578.43267326733,20,40,11,32,5306116.15941954,396578.052142488,1,1,5306120.15013188,396574.801093566,186.866588961046,0,0,84.9400198019801,5906.47860121013,42.0484158415842,22.5497728048931,22.755936533817,2.43792079207921,2.45256100100906,1.93157097460427,2.08731692840771,1.65600280600415,1.64323485621756 +41714,2874.00984742574,456.988125643564,45,84.9198217821782,87.4674164356436,21.5641089108911,2.86782178217822,1839.75247524752,1608.90891089109,1561.73564356436,20,40,11,32,5306130.38461765,396596.829364028,1,1,5306135.01953376,396593.05351206,210.409101425166,0,0,84.9198217821781,5930.06747967548,43.1282178217822,23.1288502526494,23.2133295948181,2.86782178217822,2.88246199110807,2.2836081581092,1.95392570466695,1.55017496653966,1.58752283609157 +41715,2874.01774891089,457.00298980198,45,84.902297029703,87.449365940594,22.6555742574257,4.3309900990099,1838.83663366337,1566.06930693069,1534.0198019802,20,40,11,32,5306144.68912691,396615.60667909,1,1,5306149.92061991,396611.34482349,234.001779157346,0,0,84.9022970297029,5953.65916072608,45.3111485148515,24.2995148351866,24.1392828986207,4.3309900990099,4.34563030793976,3.46896937007193,2.10893836863519,1.6731564855433,1.694327238567 +41716,2874.02565445545,457.017820495049,45,84.9077029702971,87.4549340594059,22.8252277227723,4.14653465346535,1838.85148514851,1628.36237623762,1568.9297029703,20,40,11,32,5306159.00196235,396634.342350832,1.77227722772277,1,5306164.80471908,396629.614760168,63.5483348962449,0,0,84.9077029702969,5977.24406908692,45.6504554455446,24.4814787461953,24.2836261418952,4.14653465346535,4.1611748623952,3.32895616683796,2.26323816335386,1.7955724395091,1.74802867920074 +41717,2874.03356663366,457.032615841584,45,84.8879900990098,87.4346298019801,21.9230891089109,4.69277227722772,1839.5396039604,1620.83267326733,1590.9099009901,20,40,11,32,5306173.32793402,396653.03412157,2,1,5306179.67324035,396647.864399594,29.8774585207744,0,0,84.8879900990098,6000.82438732124,43.8461782178218,23.5138788795208,23.5137934503476,4.69277227722772,4.70741248615758,3.73413647532961,2.11458606806327,1.67763716884208,1.67031461575013 +41718,2874.04152356436,457.047421287129,45,84.8876633663366,87.4342932673267,21.7472178217822,4.88069306930693,1838.21782178218,1659.16633663366,1635.72178217822,20,40,11,32,5306187.73663692,396671.739863292,2,1,5306194.58168077,396666.162989336,53.4804240648844,0,0,84.8876633663366,6024.40317367988,43.4944356435644,23.32524596728,23.3642801271039,4.88069306930693,4.89533327823678,3.87632510194952,2.35461636184282,1.86806864315018,1.93398354572887 +41719,2874.04946633663,457.062225940594,45,84.9008811881188,87.4479076237624,20.1055231022772,4.7749504950495,1837.82673267327,1633.09603960396,1643.25742574257,20,40,11,32,5306202.11919082,396690.444055344,2,1,5306209.4789299,396684.447842894,77.0656715940348,0,0,84.9008811881187,6047.98493718372,40.2110462045545,21.5644261028979,21.9680431237775,4.7749504950495,4.78959070397936,3.73263684974962,2.89514120673954,2.29690177705608,2.25006917301481 +41720,2874.05738336634,457.077032871287,45,84.9094554455446,87.4567391089109,20.706900990099,4.40445544554455,1843.76732673267,1629.35445544554,1627.23762376238,20,40,11,32,5306216.45406939,396709.150136989,2,1,5306224.35808369,396702.710486286,100.622270697891,0,0,84.9094554455445,6071.57468844885,41.413801980198,22.2094413534775,22.4812869171492,4.40445544554455,4.41909565447441,3.46935528360923,2.45625638805614,1.94870621491557,1.91445319547614 +41721,2874.06530316832,457.091861287129,45,84.9460099009902,87.4943901980198,21.0161386138614,4.42792079207921,1842.79207920792,1618.00198019802,1591.9198019802,20,40,11,32,5306230.79366381,396727.882979298,2,1,5306239.25222322,396720.991523132,124.202595130187,0,0,84.94600990099,6095.16814623213,42.0322772277228,22.5411179704915,22.7469557485614,4.42792079207921,4.44256100100906,3.49509174546472,2.30924164631659,1.83206996215907,1.85351417702101 +41722,2874.07322732673,457.106686831683,45,84.9278118811882,87.4756462376237,20.4800396039604,4.82574257425743,1834.94059405941,1568.12673267327,1577.57326732673,20,40,11,32,5306245.1414516,396746.612296379,2,1,5306254.14790534,396739.274453358,147.78536179483,0,0,84.927811881188,6118.75950360287,40.9600792079208,21.9661183833613,22.2885549973599,4.82574257425743,4.84038278318728,3.78770205794924,2.61172330228438,2.07204811987447,2.05672698144842 +41723,2874.08112663366,457.121519108911,45,84.8958613861386,87.4427372277227,20.635702970297,4.76326732673267,1841.33663366337,1614.44851485148,1627.75742574257,20,40,11,32,5306259.44311558,396765.34908276,2,1,5306269.02884343,396757.539286782,171.344785775044,0,0,84.8958613861385,6142.34417871288,41.2714059405941,22.1330770415975,22.4186057565681,4.76326732673267,4.77790753566252,3.74657384735928,2.61550638952864,2.07504948636874,2.10636370232509 +41724,2874.0889790099,457.136358712871,45,84.9134257425743,87.4608285148515,20.3156336633663,4.47970297029703,1837.5495049505,1605.37623762376,1629.94752475248,20,40,11,32,5306273.65774427,396784.09334715,2,1,5306283.87871963,396775.765994913,194.855032742852,0,0,84.9134257425741,6165.92874150166,40.6312673267327,21.7897827695708,22.1491604927389,4.47970297029703,4.49434317922688,3.51116201803121,2.64826513247993,2.1010391046726,2.12493294507681 +41725,2874.09681019802,457.151241188119,45,84.9393564356436,87.4875371287129,19.8744257425743,4.14495049504951,1844.71287128713,1591.93663366337,1616.12178217822,20,40,11,32,5306287.83223004,396802.890216873,2,1,5306298.73834037,396794.004663476,218.380707219973,0,0,84.9393564356434,6189.51853179319,39.7488514851485,21.3165597872324,21.7752962466023,4.14495049504951,4.15959070397936,3.2368595071746,2.9730023875007,2.35867406092177,2.33490470553352 +41726,2874.10463455446,457.166157623762,45,84.9896039603961,87.539292079208,19.6063349835644,4.46871287128713,1843.48514851485,1591.38415841584,1577.91386138614,20,40,11,32,5306301.99336492,396821.729068225,1.72277227722772,0.861386138613861,4570784.09514491,341807.479451227,206.973238010154,0,0,84.9896039603959,6213.1151468922,39.2126699671287,21.0290157461184,21.5487327399476,4.46871287128713,4.48335308021698,3.48138946570088,3.27866858185155,2.60117871781245,2.5799188677164 +41727,2874.11245425743,457.181095544554,45,84.9458910891089,87.4942678217822,19.2759939494059,4.64970297029703,1836.13366336634,1533.76930693069,1537.94158415842,20,40,11,32,5306316.14546199,396840.594434269,0,0,0,0,0,0,0,84.9458910891088,6236.71747277228,38.5519878988119,20.6747044067105,21.2660658952222,4.64970297029703,4.66434317922688,3.60727247406486,3.49703731376548,2.77442468150466,2.72676483511423 +41728,2874.12025871287,457.196051386138,45,84.9380396039604,87.4861807920792,19.7284900992079,5.33564356435644,1982.25742574257,1546.04356435644,1526.14455445545,20,40,11,32,5306330.26897698,396859.481524395,0,0,0,0,0,0,0,84.9380396039603,6260.3172539604,39.4569801984158,21.1600347179197,21.6479942565995,5.33564356435644,5.35028377328629,4.15618517957591,3.26578913577726,2.59096062464772,2.63897073047486 +41729,2874.12805445545,457.211017227723,45,84.8859603960396,87.4325392079208,19.5657486249505,4.6660396039604,1841.30198019802,1544.75247524753,1543.1801980198,20,40,11,32,5306344.3761909,396878.380689145,0,0,0,0,0,0,0,84.8859603960395,6283.91101064357,39.131497249901,20.9854843479716,21.5087414370874,4.6660396039604,4.68067981289025,3.63073268537268,3.27158982121665,2.59556268159156,2.65702928253237 +41730,2874.13582287129,457.226006930693,45,84.9495049504951,87.4979900990099,18.696497249901,1.92217821782178,1843.9900990099,1564.52475247525,1566.22079207921,20,40,11,32,5306358.43231603,396897.308577754,0,0,0,0,0,0,0,84.9495049504949,6307.4983408966,37.392994499802,20.0531580938005,20.7745536176415,1.92217821782178,1.93681842675164,1.49064983334638,3.9542819522974,3.13718626990265,3.02535950003201 +41731,2874.14358168317,457.241014455445,45,84.997504950495,87.5474300990099,19.5243520351485,2.59267326732673,1838.93564356436,1580.68613861386,1567.71683168317,20,40,10.6138613861386,32,5306372.47031575,396916.258254303,0,0,0,0,0,0,0,84.9975049504949,6331.09959507702,39.048704070297,20.9410839263982,21.481129163668,2.59267326732673,2.60731347625659,2.02285505993778,3.25087418889862,2.57912763774176,2.69009967403593 +41732,2874.15131574257,457.256006534654,45,85.0288910891089,87.5797578217822,19.9445423540594,1.79227722772277,1843.4900990099,1522.38415841584,1497.36534653465,20,40,10.3564356435644,32,5306386.46287018,396935.187780995,0,0,0,0,0,0,0,85.0288910891088,6354.71382442246,39.8890847081188,21.3917642213207,21.8419722337114,1.79227722772277,1.80691743665263,1.40755808618619,2.86882567967571,2.27602397643745,2.2617371368439 +41733,2874.15907782178,457.27100009901,45,85.0552772277228,87.6069355445545,19.8357810781188,1.92613861386139,1843.48514851485,1517.70891089109,1466.0099009901,20,40,10,32,5306400.50735499,396954.119992434,0,0,0,0,0,0,0,85.0552772277227,6378.33550731575,39.6715621562376,21.2751109770382,21.7513014373139,1.92613861386139,1.94077882279124,1.51099917148699,2.9353288263745,2.3287852011669,2.23632983106592 +41734,2874.1668769307,457.285987227723,45,85.1071584158416,87.6603731683168,19.638402640396,3.88009900990099,1843.37128712871,1487.38712871287,1456.43564356436,20,40,10,32,5306414.62063583,396973.045320348,0,0,0,0,0,0,0,85.1071584158415,6401.97062145217,39.2768052807921,21.063410305888,21.5842366416384,3.88009900990099,3.89473921883084,3.02241820905425,3.22524621472575,2.55879531706497,2.5416168511161 +41735,2874.17469445545,457.300969207921,45,85.1213762376238,87.6750175247524,18.9752486254455,0.842079207920792,1845.03465346535,1392.24752475248,1405.27128712871,20,40,10,32,5306428.76820469,396991.964751766,0,0,0,0,0,0,0,85.1213762376236,6425.61350885591,37.9504972508911,20.3521363103051,21.0222924198982,0.842079207920792,0.85671941685065,0.665808801170458,3.71362039583299,2.94625397429462,2.96251266320296 +41736,2874.18250425742,457.315968910891,45,85.1108316831683,87.6641566336634,18.7565077008911,-3.2009900990099,1842.51485148515,1347.36534653465,1366.77425742574,20,40,10,32,5306442.90113527,397010.90590947,0,0,0,0,0,0,0,85.1108316831682,6449.25940596812,37.5130154017822,20.1175230411433,20.8336915099101,-3.2009900990099,-3.18634989008005,-2.44778122348186,3.9724251416533,3.15158042925351,3.1676849730902 +41737,2874.19031247525,457.33097019802,45,85.1068910891089,87.6600978217822,18.8397623769307,0.179306930693069,1839.72772277228,1388.61188118812,1338.92475247525,20,40,10,32,5306457.03115734,397029.848894948,0,0,0,0,0,0,0,85.1068910891088,6472.89867431246,37.6795247538614,20.2068188679688,20.9066531605089,0.179306930693069,0.193947139622927,0.152290381951847,3.81968375160332,3.03040085797073,3.05046004879952 +41738,2874.19816376238,457.345918118812,45,85.086396039604,87.6389879207921,19.5504499451485,0.484554455445544,1842.72277227723,1402.39801980198,1367.2198019802,20,40,10,32,5306471.24220589,397048.726740889,0,0,0,0,0,0,0,85.0863960396039,6496.53524735977,39.100899890297,20.969075560775,21.5095526657603,0.484554455445544,0.499194664375401,0.384429086556233,3.24336462323802,2.57316981617831,2.61572160448925 +41739,2874.20603425743,457.360835742574,45,85.054900990099,87.6065480198019,19.2773129811881,-1.40257425742574,1841.93069306931,1367.89504950495,1377.03762376238,20,40,10,32,5306485.48956812,397067.567392255,0,0,0,0,0,0,0,85.0549009900989,6520.16337032457,38.5546259623762,20.6761191504727,21.2769320975974,-1.40257425742574,-1.38793404849589,-1.0635034172784,3.35697956921293,2.66330786219223,2.65926102812499 +41740,2874.21390613862,457.375741089109,45,85.0102574257426,87.5605651485148,18.7232293726733,-0.00475247524752479,1840.0198019802,1400.76237623762,1391.84059405941,20,40,10,32,5306499.73983121,397086.392704479,0,0,0,0,0,0,0,85.0102574257425,6543.78114845988,37.4464587453465,20.0818299608872,20.8030355731926,-0.00475247524752479,0.00988773368233267,0.00861731800030891,3.86272692234377,3.06454977448427,2.91243503091712 +41741,2874.22178059406,457.390635346535,45,84.9717821782178,87.5209356435644,20.7155940594059,0.896435643564356,1843.99504950495,1423.28217821782,1440.38514851485,20,40,10,32,5306513.9951694,397105.204196741,0,0,0,0,0,0,0,84.9717821782177,6567.39227480751,41.4311881188119,22.2187652118881,22.4947853489333,0.896435643564356,0.911075852494214,0.718874784413679,2.31511077206297,1.83672631720153,1.98791981801837 +41742,2874.22965188119,457.405533168317,45,84.9895148514851,87.5392002970297,20.1623855885149,2.37554455445545,1839.29207920792,1441.23168316832,1437.43168316832,20,40,10,32,5306528.24461992,397124.019930775,0,0,0,0,0,0,0,84.989514851485,6591.00042453249,40.3247711770297,21.6254146619252,22.0247895843431,2.37554455445545,2.3901847633853,1.87083182788797,2.72703051296456,2.16352874835026,2.07665980143035 +41743,2874.23753425743,457.42041980198,45,84.9935841584158,87.5433916831683,20.8663069306931,3.14009900990099,1840.37623762376,1469.83762376238,1455.55346534653,20,40,10,32,5306542.51492005,397142.822002807,0,0,0,0,0,0,0,84.9935841584157,6614.60951716174,41.7326138613861,22.3804141557676,22.6244585420794,3.14009900990099,3.15473921883085,2.47750824322696,2.17300872917706,1.72398762450214,1.83549594892614 +41744,2874.24541465347,457.43530950495,45,85.0217128712871,87.5723642574257,19.2550621562376,2.7119801980198,1843.21287128713,1465.68712871287,1463.24554455446,20,40,10,32,5306556.78154426,397161.627739217,0,0,0,0,0,0,0,85.021712871287,6638.22270852588,38.5101243124752,20.6522537544851,21.2546652634077,2.7119801980198,2.72662040694966,2.10593968918713,3.42533621532614,2.71753958725128,2.60861576348357 +41745,2874.25329148515,457.450213564356,45,85.0392673267327,87.5904453465347,19.1536804180198,1.1139603960396,1843.81188118812,1410.77722772277,1414.74851485148,20,40,10,32,5306571.04130764,397180.451146072,0,0,0,0,0,0,0,85.0392673267326,6661.84476388891,38.3073608360396,20.5435155241561,21.1689361752159,1.1139603960396,1.12860060496946,0.86754069084135,3.55022905513564,2.81662511200298,2.74599915460534 +41746,2874.26115564356,457.465131287129,45,85.0499306930693,87.6014286138614,19.9905374037624,1.26851485148515,1841.77227722772,1409.01188118812,1414.33168316832,20,40,10,32,5306585.27735287,397199.29105944,0,0,0,0,0,0,0,85.0499306930692,6685.46517640267,39.9810748075247,21.4410967776224,21.884161648053,1.26851485148515,1.28315506041501,1.00991932467685,2.73711028233784,2.17152567787201,2.30603792053995 +41747,2874.26900613861,457.480066534653,45,85.0449702970297,87.5963194059406,20.1536732673267,1.84841584158416,1840.53465346535,1414.82871287129,1424.76633663366,20,40,10,32,5306599.48776043,397218.152256151,0,0,0,0,0,0,0,85.0449702970296,6709.0895757701,40.3073465346535,21.6160701546726,22.0216426827685,1.84841584158416,1.86305605051401,1.45379924043766,2.62283377625139,2.08086277366039,2.01065993242488 +41748,2874.27684841584,457.495007425743,45,85.0528514851485,87.604437029703,20.8297326732673,0.915346534653465,1840.71287128713,1399.85742574257,1379.62673267327,20,40,10,32,5306613.68288116,397237.020117773,0,0,0,0,0,0,0,85.0528514851484,6732.7130007701,41.6594653465347,22.3411859860993,22.5972098062954,0.915346534653465,0.929986743583323,0.734931425722086,2.12602975734137,1.68671618377156,1.77219301461712 +41749,2874.28468742574,457.509951089109,45,85.0126138613861,87.5629922772278,19.3715418040594,-0.079009900990099,1843.12376237624,1408.82772277228,1396.21485148515,20,40,10,32,5306627.87194883,397255.891231504,0,0,0,0,0,0,0,85.012613861386,6756.33384612214,38.7430836081188,20.7771854334654,21.3541598258799,-0.079009900990099,-0.064369692060242,-0.0493610750543986,3.30151872153459,2.6193072036776,2.50313794174289 +41750,2874.29252128713,457.524897128713,45,85.0376930693069,87.5888238613862,18.8544317931683,0.410693069306931,1841.56930693069,1421.44356435644,1430.03069306931,20,40,10,32,5306642.05148765,397274.765042051,0,0,0,0,0,0,0,85.0376930693069,6779.95080596813,37.7088635863366,20.2225527307895,20.9147333580127,0.410693069306931,0.425333278236788,0.324711277721973,3.7971262997917,3.01250458022394,3.05965675857501 +41751,2874.30034049505,457.539858514851,45,85.0252277227723,87.5759845544555,18.7057601762376,-0.716336633663366,1843.57920792079,1406.2900990099,1402.19405940594,20,40,10,32,5306656.20360361,397293.657390603,0,0,0,0,0,0,0,85.0252277227722,6803.56780294281,37.4115203524753,20.0630931593776,20.7893664402298,-0.716336633663366,-0.701696424733509,-0.536651136102537,3.87252342469486,3.07232197005344,3.01563258529119 +41752,2874.30815445545,457.554828217822,45,85.0078217821782,87.5580564356436,19.5863828382178,1.84257425742574,1841.62871287129,1405.06534653465,1405.2702970297,20,40,10,32,5306670.34587577,397312.559831889,0,0,0,0,0,0,0,85.0078217821781,6827.18448858638,39.1727656764356,21.007615827214,21.5365372825984,1.84257425742574,1.8572144663556,1.44639793550522,3.13968181501013,2.4909115740192,2.50364564312911 +41753,2874.31597168317,457.569795841584,45,85.0288613861386,87.5797272277228,21.9758613861386,3.9670297029703,1845.09405940594,1448.15841584158,1430.52673267327,20,40,10,32,5306684.49430712,397331.459698377,0,0,0,0,0,0,0,85.0288613861385,6850.80256229375,43.9517227722772,23.5704804345647,23.5690507538897,3.9670297029703,3.98166991190015,3.1571999570559,1.9436538020881,1.54202560538513,1.63510399064881 +41754,2874.32380069307,457.58474960396,45,85.0081881188119,87.5584337623763,21.3748811881188,2.91871287128713,1843.59900990099,1446.35643564356,1414.08316831683,20,40,10,32,5306698.6649312,397350.342596031,0,0,0,0,0,0,0,85.0081881188117,6874.41885401543,42.7497623762376,22.9258917310738,23.0569369224614,2.91871287128713,2.93335308021698,2.3117860284157,2.08726121211714,1.65595860268635,1.56763406905879 +41755,2874.33162762376,457.599700792079,45,84.9823663366336,87.5318373267326,20.8352178217822,1.45168316831683,1839.78217821782,1447.42376237624,1442.21782178218,20,40,10,32,5306712.83182168,397369.22212602,0,0,0,0,0,0,0,84.9823663366335,6898.03224188671,41.6704356435644,22.3470691496066,22.5979161819121,1.45168316831683,1.46632337724669,1.15664230001204,2.31933646059722,1.84007882777373,1.783472477041 +41756,2874.33944475248,457.614660990099,45,85.0111782178218,87.5615135643564,21.2104059405941,0.778811881188119,1841.36633663366,1478.25940594059,1455.7099009901,20,40,10,32,5306726.98041665,397388.112461887,0,0,0,0,0,0,0,85.0111782178217,6921.6437667492,42.4208118811881,22.7494817812823,22.9190467856787,0.778811881188119,0.793452090117976,0.625247290915196,1.90918372939114,1.51467827909631,1.60070154839953 +41757,2874.34727326733,457.629614356436,45,85.0256039603961,87.576372079208,21.1913465346535,0.180693069306931,1842.03465346535,1450.74851485149,1429.89306930693,20,40,10,32,5306741.15031481,397406.994571227,0,0,0,0,0,0,0,85.025603960396,6945.26121952698,42.3826930693069,22.7290393810085,22.9036512457266,0.180693069306931,0.195333278236788,0.154612006604533,1.98403376498975,1.57406162778374,1.60428861898476 +41758,2874.35510811881,457.64456029703,45,85.052900990099,87.604488019802,20.1233602860396,0.298613861386139,1841.13366336634,1465.43564356436,1420.7900990099,20,40,10,32,5306755.33217582,397425.867547709,0,0,0,0,0,0,0,85.0529009900989,6968.88056685921,40.2467205720792,21.583557593741,21.9976823884323,0.298613861386139,0.313254070315996,0.242609729200924,2.67983296825373,2.12608389969603,1.97887379362624 +41759,2874.36296841584,457.659479504951,45,85.0360495049505,87.587130990099,21.6339801980198,2.16732673267327,1841.71287128713,1482.35346534653,1431.87326732673,20,40,10,32,5306769.56182338,397444.70797416,0,0,0,0,0,0,0,85.0360495049503,6992.50194961498,43.2679603960396,23.2037915610818,23.2798636435436,2.16732673267327,2.18196694160312,1.73306832367378,1.89509511841181,1.50350087762127,1.63070454983543 +41760,2874.37084445545,457.674383168317,45,85.0120594059406,87.5624211881188,21.1526138613861,1.48386138613861,1843.22772277228,1406.15049504951,1401.33564356436,20,40,10,32,5306783.82103626,397463.529465462,0,0,0,0,0,0,0,85.0120594059405,7016.12452813534,42.3052277227723,22.6874961758807,22.870045778181,1.48386138613861,1.49850159506847,1.17758160152064,2.03241902226742,1.61244876522826,1.74112913375635 +41761,2874.37871267327,457.689287821782,45,84.989801980198,87.5394960396039,20.0025088009901,1.53792079207921,1842.84653465347,1402.38415841584,1379.76237623762,20,40,10,32,5306798.06579893,397482.351839261,0,0,0,0,0,0,0,84.9898019801979,7039.73503781631,40.0050176019802,21.4539368469682,21.8909690852002,1.53792079207921,1.55256100100907,1.2032927515027,2.70937624436192,2.14952248128748,2.0432573455504 +41762,2874.38657485148,457.704193267327,45,84.9542673267327,87.5028953465347,21.8483388339604,1.6190099009901,1842.75247524752,1417.71485148515,1420.54653465347,20,40,10,32,5306812.299417,397501.174907706,0,0,0,0,0,0,0,84.9542673267325,7063.33999840486,43.6966776679208,23.4337045526883,23.4588098445006,1.6190099009901,1.63365010991996,1.3078298622415,2.53267519270215,2.00933416901443,1.94448414587829 +41763,2874.39440495049,457.719108415841,45,84.6903366336633,87.2310467326733,22.2058415841584,0.584257425742574,1826.66336633663,479.129702970297,499.733663366336,20,40,10,32,5306826.47345894,397520.008912285,0,0,0,0,0,0,0,84.6903366336632,7086.91795093513,44.4116831683168,23.8171485247257,23.7473829480415,0.584257425742574,0.598897634672432,0.479262741037908,1.89802648398203,1.50582651851635,1.54202064784422 +41764,2874.40213831683,457.733940990099,45,83.2635940594059,85.7615018811881,20.7668316831683,-0.0976237623762374,1779.31683168317,-2587.87920792079,-2321.3297029703,20,40,10,32,5306840.47020533,397538.73679865,0,0,0,0,0,0,0,83.2635940594058,7110.30438256329,41.5336633663366,22.2737207554813,22.4402648191422,-0.0976237623762374,-0.0829835534463804,-0.0593509766275399,2.05354316658719,1.62920790793049,1.70221480505021 +41765,2874.40955188119,457.748249207921,45,78.828702970297,81.1935640594059,19.3943564356436,-0.563069306930693,1687.86138613861,-3903.11683168317,-3400.86930693069,20,40,10,32,5306853.88622391,397556.801010003,0,0,0,0,0,0,0,78.8287029702969,7132.81834837737,38.7887128712872,20.8016555471928,21.0176614161479,-0.563069306930693,-0.548429098000836,-0.425399951426942,2.1337562666291,1.69284612067139,1.63349515018736 +41766,2874.4165439604,457.761813960396,45,74.228504950495,76.4553600990099,17.7051287128713,1.04475247524752,1580.54455445545,-4800.96237623762,-4247.37821782178,20,40,10,32,5306866.53800137,397573.925321206,0,0,0,0,0,0,0,74.228504950495,7154.11661820686,35.4102574257426,18.9898535754966,19.3174147752917,1.04475247524752,1.05939268417738,0.826527633814193,2.32662903530544,1.84586449645463,1.9597350061579 +41767,2874.42301792079,457.774439504951,45,68.2949306930693,70.3437786138614,15.490003850396,-0.0482178217821782,1457.12376237624,-5012.7396039604,-4247.3900990099,20,40,10,32,5306878.25085804,397589.862779292,0,0,0,0,0,0,0,68.2949306930692,7173.9006476898,30.9800077007921,16.6139941580349,17.0926801241919,-0.0482178217821782,-0.0335776128523209,-0.0351511275930353,2.77089977274668,2.19833305444667,2.03306073922118 +41768,2874.42894554456,457.786035445545,45,62.3799405940594,64.2513388118812,15.2315247524753,-0.574257425742574,1354.26732673267,-5312.81881188119,-4425.91683168317,20,40,10,32,5306888.97451349,397604.499887468,0,0,0,0,0,0,0,62.3799405940593,7192.04377084712,30.4630495049505,16.3367592222463,16.5337449888655,-0.574257425742574,-0.559617216812716,-0.444669279052974,1.68825443910324,1.33940085971355,1.3633106468229 +41769,2874.43431891089,457.796577425743,45,56.2132673267327,57.8996653465346,14.7478316831683,3.52960396039604,1395.5,-5630.90495049505,-4765.49306930693,20,40,10,32,5306898.69482427,397617.806065452,0,0,0,0,0,0,0,56.2132673267326,7208.51742425746,29.4956633663366,15.8179682712975,15.7685361942473,3.52960396039604,3.54424416932589,2.82409828501768,1.34158854521266,1.06436850347876,1.10428603741573 +41770,2874.43911623762,457.806022376237,45,49.9659405940594,51.4649188118812,13.6611287128713,4.80910891089109,1245.32178217822,-5526.31683168317,-4729.87524752475,20,40,10,32,5306907.37238505,397629.726970353,0,0,0,0,0,0,0,49.9659405940593,7223.25907959299,27.3222574257426,14.6524116339715,14.4844589421684,4.80910891089109,4.82374911982094,3.86541828133115,1.59240370739529,1.26335630773121,1.21392422472315 +41771,2874.44332178218,457.814358217822,45,43.5008811881188,44.8059076237624,12.0624257425743,5.42594059405941,1276.06930693069,-6346.00198019802,-5151.52772277228,20,40,10,32,5306914.97829359,397640.247053505,0,0,0,0,0,0,0,43.5008811881188,7236.23641606164,24.1248514851485,12.9377030990044,12.7529853338274,5.42594059405941,5.44058080298926,4.36974883222034,1.5863560143873,1.25855828379206,1.26884129427905 +41772,2874.44692336634,457.821701089109,45,38.5578217821782,39.7145564356436,10.9007326732673,5.5,1343.70792079208,-4990.65148514852,-3914.6396039604,20,40,10,32,5306921.48741783,397649.510570268,0,0,0,0,0,0,0,38.5578217821782,7247.5558006876,21.8014653465347,11.6917149086011,11.4814500380959,5.5,5.51464020892985,4.44431855527518,1.50959917296856,1.19766214337394,1.20319537352191 +41773,2874.44984069307,457.828537722772,45,34.5553465346535,35.592006930693,9.53816831683168,5.5,1204.60891089109,-5330.61287128713,-4281.43465346535,20,40,9.71287128712871,32,5306926.74025933,397658.12108967,0,0,0,0,0,0,0,34.5553465346534,7257.71453916395,19.0763366336634,10.2302797484549,10.0930822306424,5.5,5.51464020892985,4.42515625912064,1.22267341851273,0.970025483110664,0.98665410869304 +41774,2874.45190405941,457.834897524752,45,30.2658316831683,31.1738066336634,8.96687128712871,5.5,1266.36633663366,-4430.2801980198,-3441.83366336634,20,40,10,32,5306930.4218166,397666.109666079,0,0,0,0,0,0,0,30.2658316831683,7266.69821740928,17.9337425742574,9.61752809224758,9.36146500265835,5.5,5.51464020892985,4.48062242044624,1.53042727976767,1.21418642046557,1.15213366035297 +41775,2874.45318990099,457.84110019802,45,28.4239207920792,29.2766384158416,8.30687128712871,5.45,1434.36633663366,-485.338613861386,-223.114851485149,20,40,10,32,5306932.6666098,397673.876990149,0,0,0,0,0,0,0,28.4239207920792,7274.7942156766,16.6137425742574,8.90963697419453,8.69456143608131,5.45,5.46464020892985,4.42913999154553,1.32641407465735,1.05232961974375,1.11057020709182 +41776,2874.45392594059,457.847158415842,45,26.4582277227723,27.2519745544554,7.71689108910891,5.5,1330.78712871287,-828.370297029703,-643.784158415841,20,40,10,32,5306933.89617982,397681.446333498,0,0,0,0,0,0,0,26.4582277227722,7282.45715115515,15.4337821782178,8.27684645600453,8.08003354958869,5.5,5.51464020892985,4.4677314716884,1.24512087779926,0.987834496710973,1.00257135167286 +41777,2874.45430851485,457.852919108911,45,24.6926930693069,25.4334738613861,7.32579207920793,5.42356435643564,1242.16336633663,-468.972277227723,-311.706930693069,20,40,10,32,5306934.47759082,397688.63351135,0,0,0,0,0,0,0,24.6926930693069,7289.51565629816,14.6515841584159,7.85736840238595,7.64630843953389,5.42356435643564,5.4382045653655,4.41838731220922,1.25197415264129,0.993271640545844,0.989180426388008 +41778,2874.45469594059,457.858246930693,45,22.3265247524752,22.9963204950495,6.78105940594059,5.45386138613861,1180.92574257426,-1353.07128712871,-1083.54257425743,20,40,10,32,5306935.0775582,397695.281730809,0,0,0,0,0,0,0,22.3265247524752,7296.08147596263,13.5621188118812,7.27310867341741,7.04736004524841,5.45386138613861,5.46850159506847,4.46153499906013,1.28086443263753,1.01619215831145,0.977354297690996 +41779,2874.45544881188,457.862919207921,45,20.6132079207921,21.2316041584158,6.0259801980198,5.48792079207921,1285.48514851485,-414.838613861386,-782.629702970297,20,40,10,32,5306936.36894368,397701.125510393,0,0,0,0,0,0,0,20.613207920792,7302.00831713424,12.0519603960396,6.463239181427,6.30684672564706,5.48792079207921,5.50256100100906,4.45868332801763,0.987961994527167,0.783813810397495,0.815688502591658 +41780,2874.45677376238,457.866823762376,45,19.4953663366337,20.0802273267327,5.41810891089109,5.5,1240.08910891089,1091.74851485149,846.890099009901,20,40,10,32,5306938.73697964,397706.031924629,0,0,0,0,0,0,0,19.4953663366336,7307.56631430146,10.8362178217822,5.8112593555514,5.72567573054631,5.5,5.51464020892985,4.42949453661223,0.736391225309821,0.584226534472728,0.600402400998164 +41781,2874.45862326733,457.870049207921,45,20.0877623762376,20.6903952475247,4.54533663366337,5.43841584158416,1252.01485148515,3057.60198019802,2728.2801980198,20,40,10,32,5306942.09167445,397710.109774294,0,0,0,0,0,0,0,20.0877623762376,7313.01776397143,9.09067326732673,4.87515671444164,5.01714198394402,5.43841584158416,5.45305605051401,4.21128175557731,0.914133655559266,0.72524103937765,0.776009712572414 +41782,2874.46111306931,457.872646138614,45,20.9009207920792,21.5279484158416,3.73636633663366,4.69831683168317,1099.54455445545,2653.92178217822,2362.52673267327,20,40,10,32,5306946.6463045,397713.425872291,0,0,0,0,0,0,0,20.9009207920792,7318.72167711775,7.47273267326733,4.00748567196275,4.37597222752817,4.69831683168317,4.71295704061302,3.43728025996895,1.85936870480819,1.47515681526501,1.49493566590036 +41783,2874.4641119802,457.874385049505,45,21.7344752475247,22.3865095049505,3.75779207920792,2.15742574257426,996.826732673267,1458.32574257426,1259.4396039604,20,40,10,32,5306952.16293058,397715.690075664,0,0,0,0,0,0,0,21.7344752475247,7324.6477877063,7.51558415841584,4.03046611569912,4.44281756099659,2.15742574257426,2.17206595150411,1.57749789066753,2.04436043600968,1.62192265699606,1.57923276239665 +41784,2874.46727059406,457.874858217821,45,21.4301683168317,22.0730733663366,3.27426732673268,-4.02,991.519801980198,319.827722772277,123.851485148515,20,40,10.1980198019802,32,5306958.0033337,397716.383117849,0,0,0,0,0,0,0,21.4301683168317,7330.66479815735,6.54853465346535,3.51185569503847,4.01341966969508,-4.02,-4.00535979107015,-2.79171645487599,2.47391909447239,1.96271917623872,1.8848527068539 +41785,2874.4703470297,457.874081287129,45,21.0355544554455,21.6666210891089,3.31956435643564,-5.35207920792079,962.985148514852,126.028712871287,-88.110891089109,20,40,11,32,5306963.71911977,397715.516542191,0,0,0,0,0,0,0,21.0355544554455,7336.55974829487,6.63912871287129,3.56043958140349,4.02884632046928,-5.35207920792079,-5.33743899899094,-3.79119387655943,2.3238160720692,1.84363279174846,1.8415280351398 +41786,2874.47311980198,457.871973564356,45,20.5800099009901,21.1974101980198,4.30536633663366,-5.5,925.950495049505,177.253465346535,-34.9663366336634,20,40,11,32,5306968.90180398,397712.982580675,0,0,0,0,0,0,0,20.5800099009901,7342.34575409795,8.61073267326733,4.61777362070849,4.84119170755856,-5.5,-5.48535979107015,-4.16250266530472,1.23080548455009,0.976477174271317,1.00965304606826 +41787,2874.47522712871,457.868839207921,45,19.7320396039604,20.3240007920792,4.55603960396039,-5.5,876.366336633663,237.781188118812,20.4920792079208,20,40,11,32,5306972.87452491,397709.148162772,0,0,0,0,0,0,0,19.7320396039604,7347.95285396044,9.11207920792079,4.88663631688111,5.00587083804224,-5.5,-5.48535979107015,-4.25404449569976,0.806942756563167,0.640199603120504,0.639098264306301 +41788,2874.47656247525,457.865134554455,45,18.9731386138614,19.5423327722772,4.61829702970297,-5.5,847.940594059406,2163.10891089109,1896.42277227723,20,40,11,32,5306975.42986757,397704.578125897,0,0,0,0,0,0,0,18.9731386138614,7353.30849854239,9.23659405940594,4.95341128463265,5.01537612011125,-5.5,-5.48535979107015,-4.29899324954637,0.646404841120668,0.512834546657499,0.539504091668678 +41789,2874.47703237624,457.860902277228,62.8217821782178,19.9379207920792,20.5360584158416,5.94429702970297,-5.5,888.019801980198,4807.20198019802,4222.97128712871,20,40,10.9108910891089,32,5306976.39376085,397699.322543942,0,0,0,0,0,0,0,19.9379207920792,7358.67908314085,11.8885940594059,6.37562889453925,6.19871779332829,-5.5,-5.48535979107015,-4.46048702309074,1.04047176462539,0.825473189211439,0.824372215839072 +41790,2874.47657089109,457.856359009901,200.049504950495,21.6146534653465,22.2630930693069,6.73391089108911,-5.5,970.326732673267,5681.59306930693,4879.07128712871,20,40,10.8118811881188,32,5306975.63927665,397693.649049286,0,0,0,0,0,0,0,21.6146534653465,7364.45128182072,13.4678217821782,7.22253895388293,6.96649696731045,-5.5,-5.48535979107015,-4.49438012064361,1.38129840649071,1.09587289114865,1.08366201909232 +41791,2874.47514455446,457.851903762377,225,22.9753564356436,23.6646171287129,7.25072277227723,-5.5,1008.38118811881,5536.65247524752,4792.17524752475,20,40,11,32,5306973.09561304,397688.053477645,0,0,0,0,0,0,0,22.9753564356435,7370.66319334438,14.5014455445545,7.77685189387893,7.48409067982524,-5.5,-5.48535979107015,-4.50351439257272,1.56001599401165,1.2376610510534,1.25054940212932 +41792,2874.47311,457.8476,225,24.3362178217822,25.0663043564356,7.67879207920792,-5.5,842.282178217822,5809.8495049505,5002.66534653465,20,40,11,32,5306969.42197744,397682.62658309,0,0,0,0,0,0,0,24.3362178217822,7377.21496135868,15.3575841584158,8.23598289431433,7.92619312420914,-5.5,-5.48535979107015,-4.50263319996156,1.65931800504025,1.31644372495748,1.28926977022451 +41793,2874.4708,457.843157920792,225,26.1734455445545,26.9586489108911,7.82229702970297,-5.5,922.064356435644,5818.53168316832,4928.84752475247,20,40,11,32,5306965.24118151,397677.018366779,0,0,0,0,0,0,0,26.1734455445544,7384.22506677672,15.6445940594059,8.38990089409023,8.15346150066757,-5.5,-5.48535979107015,-4.46227108837269,1.38401822654545,1.09803069937661,1.10656014854445 +41794,2874.46833326733,457.838374158416,225,28.4452277227723,29.2985845544555,8.32986138613861,-5.5,1034.70792079208,5253.57524752475,4501.60594059406,20,40,11,32,5306960.77761609,397670.979447774,0,0,0,0,0,0,0,28.4452277227723,7391.80008311335,16.6597227722772,8.93429528766766,8.71534463586013,-5.5,-5.48535979107015,-4.44743494821047,1.35294834162582,1.07338096080126,1.08296764104888 +41795,2874.46566049505,457.833182277228,225,30.3157326732673,31.2252046534653,9.05206930693069,-5.44524752475248,1497.47524752475,5344.24752475248,4638.46534653465,20,40,11,32,5306955.94141673,397664.4254625,0,0,0,0,0,0,0,30.3157326732673,7399.97413223326,18.1041386138614,9.70890827632869,9.43696924122098,-5.44524752475248,-5.43060731582262,-4.41798550311346,1.57505301831457,1.24959088983384,1.19453090545756 +41796,2874.46276455445,457.827596138614,225,33.2617821782178,34.2596356435644,9.36890099009901,-5.5,1685.70297029703,7141.74554455446,6190.50693069307,20,40,11,32,5306950.70055057,397657.373108977,0,0,0,0,0,0,0,33.2617821782178,7408.7802256326,18.737801980198,10.048729995166,9.87508508805522,-5.5,-5.48535979107015,-4.41777790377839,1.29685498108319,1.02887848913892,1.0952465605209 +41797,2874.45955722772,457.821484158416,225,36.3978811881188,37.4898176237624,10.4907722772277,-5.5,1839.20297029703,6668.55148514851,5757.24554455445,20,40,11,32,5306944.89451691,397649.655604954,0,0,0,0,0,0,0,36.3978811881188,7418.47006397143,20.9815445544554,11.252006843283,11.0090860810146,-5.5,-5.48535979107015,-4.4363246254929,1.56352169810728,1.24044235165053,1.17492937984508 +41798,2874.45603376238,457.81488019802,225,39.073099009901,40.245291980198,10.6325742574257,-5.5,1863.21782178218,5609.69306930693,4810.67722772277,20,40,11,32,5306938.51376684,397641.314962349,0,0,0,0,0,0,0,39.0730990099009,7428.97447285482,21.2651485148515,11.4040983013201,11.2828927230596,-5.5,-5.48535979107015,-4.39054094674528,1.28985920362007,1.02332828880689,1.07709645454931 +41799,2874.45222257426,457.807863168317,225,41.4549900990099,42.6986398019802,11.5497425742574,-5.28237623762376,1481.13861386139,5885.24059405941,5054.71881188119,20,40,11,32,5306931.60919503,397632.450389646,0,0,0,0,0,0,0,41.4549900990098,7440.15661958199,23.0994851485148,12.387818460782,12.1999957794336,-5.28237623762376,-5.26773602869391,-4.23507781684147,1.49790593419694,1.18838514477657,1.25011428423611 +41800,2874.44816722772,457.80037980198,225,43.7337425742574,45.0457548514852,13.4061188118812,-1.89792079207921,1541.36138613861,3788.55445544555,3379.30396039604,20,40,11,32,5306924.26267757,397622.996973176,0,0,0,0,0,0,0,43.7337425742574,7452.01042709024,26.8122376237624,14.3788976280223,13.9122609648086,-1.89792079207921,-1.88328058314935,-1.54086523188724,2.4748330007969,1.96344423692175,1.93059494928762 +41801,2874.44399247525,457.792664554455,225,43.9039207920792,45.2210384158416,13.393099009901,-2.80415841584158,1551.40594059406,1701.02079207921,1655.43069306931,20,40,11,32,5306916.70011961,397613.250811616,0,0,0,0,0,0,0,43.9039207920792,7464.22221080862,26.786198019802,14.3649330792638,13.9103996534669,-2.80415841584158,-2.78951820691173,-2.28295164234527,2.44215026993534,1.93751492389888,1.91869360990643 +41802,2874.43978128713,457.784863069307,225,45.0873960396039,46.4400179207921,13.5551089108911,-1.66019801980198,1603.24752475248,4720.75346534653,4474.5801980198,20,40,11,32,5306909.0719928,397603.396022037,0,0,0,0,0,0,0,45.0873960396039,7476.53248204074,27.1102178217822,14.5386987913055,14.1162992872325,-1.66019801980198,-1.64555781087212,-1.33541178766477,2.29415472995882,1.82010054080173,1.7588844647125 +41803,2874.43543366337,457.776725940594,225,47.2715742574257,48.6897214851485,13.9056831683168,-1.11693069306931,1679.76237623762,5149.40693069307,5019.21584158416,20,40,11,32,5306901.19857709,397593.118692899,0,0,0,0,0,0,0,47.2715742574257,7489.36048506604,27.8113663366337,14.9147115231991,14.5404869556529,-1.11693069306931,-1.10229048413945,-0.900380990264572,2.07734625060179,1.64809242584115,1.68140153065187 +41804,2874.4309480198,457.768215940594,225,49.4020099009901,50.8840701980198,14.4108712871287,-3.06633663366337,1751.79702970297,4952.17623762376,4969.04653465347,20,40,11,32,5306893.07776336,397582.372403823,0,0,0,0,0,0,0,49.4020099009901,7502.79301284381,28.8217425742574,15.4565572538852,15.091381937723,-3.06633663366337,-3.05169642473351,-2.47142988068511,2.12214854714799,1.68363697002904,1.70940942552756 +41805,2874.42632722772,457.759342277228,225,51.4150198019802,52.9574703960396,14.6243564356436,-3.32851485148515,1826.82673267327,4872.91089108911,4748.5,20,40,11,32,5306884.71466921,397571.168713858,0,0,0,0,0,0,0,51.4150198019801,7516.8014727723,29.2487128712871,15.6855333758093,15.3880928952947,-3.32851485148515,-3.31387464255529,-2.67467865598945,1.90245569596028,1.50934049733028,1.50007904158965 +41806,2874.42155267327,457.750118811881,225,53.3548316831683,54.9554766336634,14.8504851485148,-4.40227722772277,1891.9504950495,4765.76435643564,4552.37425742574,20,40,11,32,5306876.07451138,397559.524271039,0,0,0,0,0,0,0,53.3548316831683,7531.35704290432,29.7009702970297,15.9280705082008,15.6904940403733,-4.40227722772277,-4.38763701879292,-3.52446452981789,1.80484145363358,1.43189683891933,1.41523785960052 +41807,2874.41662643564,457.740555742574,225,55.1462277227723,56.8006145544554,14.7512178217822,-4.81762376237624,1955.11386138614,4454.06138613861,4220.89207920792,20,40,11,32,5306867.16091832,397547.45184129,0,0,0,0,0,0,0,55.1462277227722,7546.4320727448,29.5024356435644,15.8216001159175,15.7085266118125,-4.81762376237624,-4.80298355344639,-3.8343191579826,1.54145199257403,1.22293303440534,1.23380373950384 +41808,2874.41155247525,457.730687326733,225,56.7388217821782,58.4409864356436,15.2472574257426,-3.52871287128713,1598.62871287129,4421.93168316832,4101.09603960396,20,40,11,32,5306857.98047087,397534.994217407,0,0,0,0,0,0,0,56.7388217821782,7561.97814543457,30.4945148514851,16.3536334944723,16.2236956038078,-3.52871287128713,-3.51407266235728,-2.80492560813724,1.46997202768051,1.16622337962041,1.18476287338764 +41809,2874.40632811881,457.720536435644,225,58.3531683168317,60.1037633663366,16.2387227722772,-2.85178217821782,1496.91584158416,4410.16633663366,4063.1900990099,20,40,11,32,5306848.52771369,397522.179793129,0,0,0,0,0,0,0,58.3531683168316,7577.96534942247,32.4774455445545,17.4170418470015,17.1589754328596,-2.85178217821782,-2.83714196928797,-2.28289829060326,1.93538998931331,1.5354693910618,1.49264206068232 +41810,2874.40095108911,457.710103168317,225,59.9453564356436,61.7437171287129,16.375504950495,-1.81405940594059,1531.58415841584,4420.32673267327,4047.13465346534,20,40,11,32,5306838.79842869,397509.008613261,0,0,0,0,0,0,0,59.9453564356435,7594.39943998902,32.7510099009901,17.5637492546808,17.366703022938,-1.81405940594059,-1.79941919701074,-1.43944831183689,1.76872260497308,1.4032414325853,1.45832250320694 +41811,2874.39542108911,457.699394356436,225,61.5096435643564,63.3549328712871,17.0337227722772,-3.01475247524752,1569.04455445545,4359.97227722772,3998.92475247525,20,40,11,32,5306828.7919169,397495.489172944,0,0,0,0,0,0,0,61.5096435643564,7611.27096012103,34.0674455445545,18.2697288755654,18.0162559424515,-3.01475247524752,-3.00011226631767,-2.40451489928673,1.97845588185254,1.56963633424011,1.54307100831396 +41812,2874.38972990099,457.688432178218,225,63.0186435643564,64.9092028712872,16.6529801980198,-1.51455445544554,1606.85643564356,4324.10792079208,3884.6702970297,20,40,11,32,5306818.49246757,397481.648820153,0,0,0,0,0,0,0,63.0186435643564,7628.5706767877,33.3059603960396,17.8613587443813,17.7801701498221,-1.51455445544554,-1.49991424651569,-1.20438879274066,2.3226853492224,1.84273571656949,1.74459220032459 +41813,2874.38387564356,457.677233861386,225,64.4642673267327,66.3981953465346,17.588099009901,-2.25138613861386,1645.73267326733,4240.75544554456,3822.8,20,40,11,32,5306807.89621703,397467.508945756,0,0,0,0,0,0,0,64.4642673267326,7646.28066053357,35.176198019802,18.864331928101,18.6586093037831,-2.25138613861386,-2.236745929684,-1.78807115092778,2.00042556935834,1.58706630074951,1.61112730441044 +41814,2874.37786980198,457.665806732673,225,65.8867722772277,67.8633754455445,18.0543861386139,-1.60138613861386,1679.69306930693,4128.40198019802,3783.16633663366,20,40,11,32,5306797.02427971,397453.079049333,0,0,0,0,0,0,0,65.8867722772276,7664.38705167769,36.1087722772277,19.3644539233712,19.1368058148087,-1.60138613861386,-1.586745929684,-1.26878424972064,2.09425592281563,1.66150795668537,1.76830363621194 +41815,2874.37172752475,457.654142970297,225,67.2473663366337,69.2647873267327,19.7261287128713,-3.98584158415842,1712.43564356436,4034.80396039604,3722.25346534653,20,40,11,32,5306785.90489125,397438.34988422,0,0,0,0,0,0,0,67.2473663366336,7682.87562651267,39.4522574257426,21.1575019839591,20.6354565013562,-3.98584158415842,-3.97120137522856,-3.21873924686894,3.05103739446208,2.42058425229514,2.44061692626713 +41816,2874.36545712871,457.642244257426,225,68.4820990099009,70.536561980198,19.8647920792079,-4.58653465346535,1681.0495049505,3881.78514851485,3610.03861386138,20,40,11,32,5306774.55342228,397423.323817062,0,0,0,0,0,0,0,68.4820990099009,7701.73075104512,39.7295841584158,21.306227083094,20.8235217895058,-4.58653465346535,-4.57189444453549,-3.70221383659509,2.89713124151049,2.29848059966797,2.32956686226362 +41817,2874.35906653465,457.630131287129,225,69.7151485148515,71.806602970297,21.1031386138614,-4.48930693069307,1512.96534653465,3856.50495049505,3603.12475247525,20,40,11,32,5306762.98408881,397408.026878002,0,0,0,0,0,0,0,69.7151485148514,7720.93182304732,42.2062772277228,22.6344308905985,21.9477785246301,-4.48930693069307,-4.47466672176322,-3.64834713785355,3.75589090247667,2.97978988667117,2.77274391373817 +41818,2874.35255980198,457.617808613861,225,70.9104752475247,73.0377895049505,19.4404752475248,-4.02980198019802,1596.9603960396,3415.95346534654,3186.15742574257,20,40,11,32,5306751.20431151,397392.464869902,0,0,0,0,0,0,0,70.9104752475246,7740.47161251376,38.8809504950495,20.851120846141,20.6018192545503,-4.02980198019802,-4.01516177126817,-3.21343615201155,2.18591807811325,1.73422944153101,1.93162288051915 +41819,2874.34594940594,457.605321683168,225,71.7994851485149,73.9534697029703,19.0802376237624,-4.18910891089109,1827.93069306931,3602.62376237624,3353.53366336634,20,40,11,32,5306739.2361941,397376.694802275,0,0,0,0,0,0,0,71.7994851485148,7760.29169942245,38.1604752475247,20.464743551823,20.3460306686875,-4.18910891089109,-4.17446870196124,-3.32872719073155,2.2054836829052,1.74975209455781,1.73560160849167 +41820,2874.33924425743,457.592653267327,225,72.9734851485149,75.1626897029703,20.1089900990099,-4.36405940594059,1858.30198019802,3752.82178217822,3512.37425742574,20,40,11,32,5306727.09662608,397360.695508981,0,0,0,0,0,0,0,72.9734851485148,7780.39500748076,40.2179801980198,21.5681446728879,21.2886240443796,-4.36405940594059,-4.34941919701074,-3.48484968654708,2.32864078968153,1.8474605506266,1.86498271648136 +41821,2874.33242990099,457.579784356436,225,74.0819603960396,76.3044192079208,21.093801980198,-3.69326732673267,1886.0495049505,3682.80594059406,3475.74356435643,20,40,11,32,5306714.75925412,397344.442834066,0,0,0,0,0,0,0,74.0819603960395,7800.82104466447,42.1876039603961,22.6244167693215,22.1904245770355,-3.69326732673267,-3.67862711780282,-2.96447169673391,2.80343162134422,2.22414266286254,2.14725564746328 +41822,2874.32550742574,457.566720693069,225,75.1796435643565,77.4350328712871,20.4835649064356,-2.99089108910891,1916.20792079208,3632.40891089109,3420.60693069307,20,40,11,32,5306702.22597044,397327.943962463,0,0,0,0,0,0,0,75.1796435643564,7821.55816509902,40.9671298128713,21.9698994898926,21.7356598842458,-2.99089108910891,-2.97625088017906,-2.36525964119799,2.99640964797551,2.37724454655317,2.34442321403963 +41823,2874.31847722772,457.553475544554,225,76.2514653465347,78.5390093069307,19.9083173815842,-3.58277227722772,1942.5396039604,3596.2405940594,3376.80396039604,20,40,11,32,5306689.49721658,397311.215428342,0,0,0,0,0,0,0,76.2514653465346,7842.59298446094,39.8166347631683,21.3529106815223,21.3062382211185,-3.58277227722772,-3.56813206829787,-2.84413756614305,3.42094882201987,2.71405878588023,2.85899316366506 +41824,2874.3113690099,457.540034356436,225,77.2385544554456,79.5557110891089,24.0901485148515,-4.3419801980198,1966.33168316832,3500.10495049505,3371.26237623762,20,40,11,32,5306676.62833744,397294.24008044,0,0,0,0,0,0,0,77.2385544554455,7863.91051267876,48.180297029703,25.8381851003673,24.9195045780502,-4.3419801980198,-4.32733998908995,-3.55071500665887,4.85152874917079,3.84902987787551,3.65702759465096 +41825,2874.30418049505,457.526411683168,225,78.1764653465346,80.5217593069307,22.7518811881188,-2.74306930693069,1869.89108910891,3493.40198019802,3283.15544554456,20,40,11,32,5306663.61479415,397277.035968321,0,0,0,0,0,0,0,78.1764653465345,7885.49959768977,45.5037623762376,24.4028100182845,23.8374443319999,-2.74306930693069,-2.72842909800084,-2.2028736934957,3.32778735667042,2.64014780191297,2.80324740824476 +41826,2874.29690118812,457.512622772277,225,79.1459306930693,81.5203086138613,24.9602178217822,-2.87772277227723,1721.33168316832,3484.30198019802,3277.27821782178,20,40,11,32,5306650.4368101,397259.621733786,0,0,0,0,0,0,0,79.1459306930692,7907.35327249724,49.9204356435644,26.7713886374382,25.7720957416841,-2.87772277227723,-2.86308256334737,-2.34969544413278,5.1474727817304,4.08382131834581,3.98009262702342 +41827,2874.2895329703,457.498665742574,225,80.085801980198,82.4883760396039,24.7910792079208,-3.30485148514851,1742.75247524752,3449.3,3270.00396039604,20,40,11,32,5306637.09791346,397241.995092941,0,0,0,0,0,0,0,80.0858019801979,7929.4722619912,49.5821584158416,26.5899769367227,25.6809946536017,-3.30485148514851,-3.29021127621866,-2.69167317702263,4.77322175480398,3.78690390139521,3.8471984803292 +41828,2874.28208316832,457.484541188119,225,81.0022178217822,83.4322843564356,24.9279603960396,-4.06871287128713,1760.58910891089,3407.91485148515,3267.06435643564,20,40,11,32,5306623.61166465,397224.157024517,0,0,0,0,0,0,0,81.002217821782,7951.84676688669,49.8559207920792,26.7367905386891,25.8492239506601,-4.06871287128713,-4.05407266235727,-3.31629125404348,4.70978772890855,3.73657760764972,3.71680327375207 +41829,2874.27456366337,457.470241089109,225,81.9054158415842,84.3625783168317,25.2144455445545,-5.1919801980198,1782.82673267327,3390.20396039604,3248.60396039604,20,40,11,32,5306610.00025163,397206.097929001,0,0,0,0,0,0,0,81.9054158415841,7974.47403385588,50.4288910891089,27.0440637085191,26.1420942884985,-5.1919801980198,-5.17733998908995,-4.23544515637027,4.86789149983719,3.86201150067018,3.79799563986625 +41830,2874.26697148515,457.455774851485,225,82.7788514851485,85.262217029703,24.6411782178218,-4.92970297029703,1800.27722772277,3385.90099009901,3229.92475247525,20,40,11,32,5306596.25796564,397187.829420838,0,0,0,0,0,0,0,82.7788514851484,7997.34611960945,49.2823564356436,26.4291987859978,25.7052074130059,-4.92970297029703,-4.91506276136718,-3.99865329208863,4.10953478792992,3.26035833253891,3.24241095035855 +41831,2874.25930059406,457.441152772277,225,83.629188118812,86.1380637623763,22.3439207920792,-2.7290099009901,1814.0198019802,3040.82871287129,2868.8702970297,20,40,11,32,5306582.37339263,397169.364123031,0,0,0,0,0,0,0,83.6291881188117,8020.46239097909,44.6878415841584,23.9652470775665,23.8024841177948,-2.7290099009901,-2.71436969206025,-2.16994476361054,2.67772610621511,2.12441239049667,2.28810861021569 +41832,2874.25155990099,457.426428613861,225,84.0143564356436,86.5347871287129,23.7892574257426,-2.88,1820.17821782178,1985.59405940594,2007.9396039604,20,40,11,32,5306568.36184676,397150.769289325,0,0,0,0,0,0,0,84.0143564356435,8043.76030660065,47.5785148514852,25.515460661759,25.0531576309385,-2.88,-2.86535979107015,-2.31828320141647,3.18270089617033,2.52504137871893,2.59352643828909 +41833,2874.24381693069,457.411677227723,225,83.8920099009901,86.4087701980198,24.053702970297,-3.27207920792079,1821.06930693069,1619.56435643564,1682.98514851485,20,40,11,32,5306554.34674623,397132.14037716,0,0,0,0,0,0,0,83.89200990099,8067.08902887788,48.1074059405941,25.7990949832723,25.2723714509785,-3.27207920792079,-3.25743899899094,-2.63636698254752,3.21334771262928,2.54935546986648,2.45515196129931 +41834,2874.23608475247,457.396944257426,225,83.9094455445545,86.4267289108911,25.071397689802,-3.60712871287129,1820.30693069307,2053.26237623763,2037.66435643564,20,40,11,32,5306540.35128646,397113.534668262,0,0,0,0,0,0,0,83.9094455445544,8090.38947722771,50.142795379604,26.8906359724042,26.1388225872167,-3.60712871287129,-3.59248850394143,-2.93871601780342,4.47788993346161,3.55259816746991,3.58291728905446 +41835,2874.2283260396,457.38221,225,84.0730693069307,86.5952613861386,25.9645643564356,-3.6850495049505,1822.36138613861,2186.24554455446,2081.63267326733,20,40,11,32,5306526.3067629,397094.926389092,0,0,0,0,0,0,0,84.0730693069305,8113.71632345983,51.9291287128713,27.848612866724,26.9080703136413,-3.6850495049505,-3.67040929602064,-2.99540165551423,5.01175366079806,3.97614660827491,3.80969379098879 +41836,2874.22050227723,457.367501089109,225,84.2079999999999,86.7342400000001,25.8639801980198,-2.14732673267327,1827.0297029703,2186.40198019802,2058.14158415842,20,40,11,32,5306512.14124095,397076.347439654,0,0,0,0,0,0,0,84.2079999999999,8137.08977172716,51.7279603960396,27.7407300904218,26.8301717946219,-2.14732673267327,-2.13268652374341,-1.74978907168164,4.86959494402368,3.86336295253372,3.91930609682376 +41837,2874.21262891089,457.35281029703,225,84.3713465346535,86.9024869306931,25.7158613861386,-3.01643564356436,1828.87623762376,2134.61287128713,2025.94257425743,20,40,11,32,5306497.88349146,397057.789327119,0,0,0,0,0,0,0,84.3713465346534,8160.50276534652,51.4317227722772,27.5818634368653,26.7136922916507,-3.01643564356436,-3.0017954346345,-2.4570830659083,4.61441737549532,3.66091417067353,3.70035184633959 +41838,2874.20471574257,457.338122079208,225,84.4611386138614,86.9949727722772,26.2128712871287,-2.05910891089109,1833.71782178218,2037.9504950495,2026.77722772277,20,40,11,32,5306483.55201639,397039.233013433,0,0,0,0,0,0,0,84.4611386138613,8183.95224562706,52.4257425742574,28.114937519434,27.1435317543715,-2.05910891089109,-2.04446870196123,-1.67901435873507,5.02298928972241,3.98506055554029,3.77890269168269 +41839,2874.19678851485,457.323424554456,225,84.5415247524752,87.0777704950495,22.1907524752475,-4.01712871287129,1831.96534653465,1961.94356435644,2043.00396039604,20,40,11,32,5306469.19476399,397020.664550477,0,0,0,0,0,0,0,84.5415247524752,8207.42781812432,44.381504950495,23.8009645153661,23.7227715013843,-4.01712871287129,-4.00248850394144,-3.19130300096279,2.47502505411046,1.96359660517107,2.21897854935786 +41840,2874.18887782178,457.308682277228,225,84.6066138613861,87.1448122772277,22.1222766778218,-3.62366336633663,1836.09405940594,1889.56435643564,2044.47920792079,20,40,11,32,5306454.86919332,397002.040800475,0,0,0,0,0,0,0,84.606613861386,8230.92595478548,44.2445533556436,23.7275199565793,23.6686005191501,-3.62366336633663,-3.60902315740678,-2.85639131588969,3.05556061875206,2.42417281712421,2.40855844552826 +41841,2874.18100049505,457.293880990099,225,84.6880792079208,87.2287215841584,21.8991743678218,-2.42851485148515,1834.91089108911,1894.11089108911,1983.78217821782,20,40,11,32,5306440.60680005,396983.344561622,0,0,0,0,0,0,0,84.6880792079207,8254.44083374588,43.7983487356436,23.4882288298125,23.4859919182745,-2.42851485148515,-2.41387464255529,-1.89369680108228,3.07798060549481,2.4419600349881,2.43901438211161 +41842,2874.17312841584,457.279057227723,225,84.7386930693069,87.2808538613862,23.016099009901,-4.1260396039604,1836.89108910891,1896.65742574257,1969.53465346535,20,40,11,32,5306426.35468646,396964.620409677,0,0,0,0,0,0,0,84.7386930693068,8277.96969983499,46.032198019802,24.6862000929374,24.4359012614611,-4.1260396039604,-4.11139939503054,-3.28185128177755,3.32179196124204,2.63539126900827,2.70091584659468 +41843,2874.16526227723,457.264218613861,225,84.7873762376237,87.3309975247524,23.0914653465346,-3.36960396039604,1836.75247524752,1886.04257425743,1953.00594059406,20,40,11,32,5306412.11396704,396945.877863284,0,0,0,0,0,0,0,84.7873762376236,8301.51224620463,46.1829306930693,24.7670351843058,24.5052328337451,-3.36960396039604,-3.35496375146619,-2.67895484400492,3.39872276684255,2.69642542640371,2.69189761296303 +41844,2874.15739445545,457.249367128713,225,84.8262376237624,87.3710247524752,23.9968514851485,-1.75990099009901,1838.19801980198,1875.11287128713,1947.76633663366,20,40,11,32,5306397.87047605,396927.119136583,0,0,0,0,0,0,0,84.8262376237623,8325.06991278879,47.993702970297,25.7381182235984,25.277628430329,-1.75990099009901,-1.74526078116915,-1.39860337857539,3.0609773526729,2.42847026062702,2.31184505936339 +41845,2874.14953217822,457.23449059406,225,84.9108316831683,87.4581566336633,21.8740594059406,-2.98643564356436,1839.64851485149,1810.3801980198,1916.92871287129,20,40,11,32,5306383.63787293,396908.329299892,0,0,0,0,0,0,0,84.9108316831683,8348.64452678769,43.7481188118812,23.4612914685308,23.4767671510645,-2.98643564356436,-2.9717954346345,-2.34810447802353,2.44378016271435,1.93880802269897,1.94936798162119 +41846,2874.1416739604,457.219596237624,225,84.969504950495,87.5185900990099,24.2890396039604,-2.56386138613861,1840.96534653465,1775.21287128713,1873.14752475247,20,40,11,32,5306369.41324609,396889.517306536,0,0,0,0,0,0,0,84.9695049504949,8372.2359829483,48.5780792079208,26.0515081843675,25.5332829420685,-2.56386138613861,-2.54922117720876,-2.0745010426489,3.75192491764196,2.97664341575174,3.0668720220921 +41847,2874.1338229703,457.204674950495,225,85.0134257425742,87.5638285148515,26.270801980198,-3.43663366336634,1840.12871287129,1739.60891089109,1828.76138613861,20,40,11,32,5306355.20266732,396870.671915523,0,0,0,0,0,0,0,85.0134257425741,8395.84753666117,52.541603960396,28.1770717968377,27.221881692009,-3.43663366336634,-3.42199345443648,-2.80048455007384,5.03695191841441,3.99613800716178,3.88131327200528 +41848,2874.12596841584,457.18974990099,225,85.0273663366336,87.5781873267328,25.8489108910891,-3.17207920792079,1842.46534653465,1705.54851485148,1787.78811881188,20,40,11,32,5306340.98563043,396851.821627183,0,0,0,0,0,0,0,85.0273663366335,8419.46451537404,51.6978217821782,27.7245673199196,26.8639619223555,-3.17207920792079,-3.15743899899094,-2.57853014559607,4.60883469403082,3.65648507030817,3.51811934574188 +41849,2874.11811920792,457.174814752475,225,85.0397524752476,87.590945049505,23.0499306930693,-2.41178217821782,1841.42079207921,1691.82475247525,1766.13069306931,20,40,11,32,5306326.77878261,396832.95884379,0,0,0,0,0,0,0,85.0397524752475,8443.08454812981,46.0998613861386,24.722486680852,24.4830064918045,-2.41178217821782,-2.39714196928797,-1.92685539838064,3.08123021561844,2.44453815976154,2.69960267000242 +41850,2874.11026861386,457.15987990099,225,85.0327920792079,87.5837758415842,24.5826732673267,-2.3149504950495,1844.03465346535,1690.83861386139,1752.11683168317,20,40,11,32,5306312.56942119,396814.096291401,1.7029702970297,1.7029702970297,4518246.69322776,337879.082899836,8.53598095299962,0,0,85.0327920792078,8466.70801672168,49.1653465346535,26.3664485817287,25.7880531463732,-2.3149504950495,-2.30031028611965,-1.85892686071671,3.63273588115678,2.88208308512914,2.83169993829473 +41851,2874.10242534654,457.144934257426,225,85.0157326732673,87.5662046534653,25.7114257425743,-3.85653465346535,1841.74752475248,1641.5702970297,1746.86336633663,20,40,11,32,5306298.37393247,396795.220446279,2,2,5306299.188306,396794.556950381,31.8548932677729,0,0,85.0157326732672,8490.32952678768,51.4228514851485,27.5771059328016,26.7463933455114,-3.85653465346535,-3.84189444453549,-3.13118652481077,4.50861074110701,3.57697096058585,3.5185826889608 +41852,2874.09460287129,457.129958712871,225,84.9940198019802,87.5438403960396,25.7745247524752,-4.0870297029703,1841.44554455446,1641.66732673267,1757.53069306931,20,40,11,32,5306284.21768485,396776.307952918,2,2,5306284.27934243,396776.257718535,55.4586870485325,0,0,84.9940198019801,8513.94220365786,51.5490495049505,27.6447835519938,26.7976994007781,-4.0870297029703,-4.07238949404044,-3.32083432609122,4.59492328035165,3.64544825085126,3.71840006289114 +41853,2874.08681554455,457.11497990099,225,84.9716732673268,87.5208234653466,25.7008613861386,-3.36752475247525,1839.80198019802,1699.15841584158,1777.72376237624,20,40,11,32,5306270.12667817,396757.39246178,2,2,5306269.39493954,396757.988632413,79.023596494247,0,0,84.9716732673266,8537.54564196918,51.4017227722773,27.5657750023641,26.7347243550211,-3.36752475247525,-3.35288454354539,-2.73332460592525,4.54255104926396,3.60389799058289,3.53723825652299 +41854,2874.07903742574,457.099989108911,225,84.9798514851485,87.5292470297029,25.4795940594059,-4.67207920792079,2113.93069306931,1719.39801980198,1772.62673267327,20,40,11,32,5306256.05305575,396738.462260863,2,2,5306254.51026915,396739.71921796,102.588929447193,0,0,84.9798514851484,8561.1495290979,50.9591881188119,27.3284520094711,26.5447047180918,-4.67207920792079,-4.65743899899094,-3.7927796331706,4.36029913567588,3.45930582242963,3.50323299459729 +41855,2874.07125039604,457.085006237624,225,84.9870693069307,87.5366813861386,24.3258910891089,-3.65504950495049,1841.02475247525,1720.91188118812,1751.67227722772,20,40,11,32,5306241.96281175,396719.541538033,2,2,5306239.62360865,396721.44736086,126.157413119432,0,0,84.9870693069306,8584.75563556104,48.6517821782178,26.0910336980397,25.5658000555324,-3.65504950495049,-3.64040929602064,-2.94698154884274,3.35554689649855,2.66217123075749,2.80586514000762 +41856,2874.06344891089,457.070032772277,225,85.0212772277227,87.5719155445545,25.4640891089109,-3.1380198019802,1843.17326732673,1728.20891089109,1737.15841584158,20,40,11,32,5306227.84564251,396700.631959236,2,2,5306224.73166308,396703.169016874,149.734264089387,0,0,85.0212772277226,8608.36583932891,50.9281782178218,27.3118219841055,26.5368122980025,-3.1380198019802,-3.12337959305034,-2.53435138159556,4.26580265743261,3.38433568684617,3.06093820984596 +41857,2874.05562960396,457.055081188119,225,84.9669108910891,87.5159182178218,22.0918118811881,-2.49069306930693,1842.18316831683,1695.26534653465,1739.08613861386,20,40,11,32,5306213.69503409,396681.748951835,2,2,5306209.83938817,396684.890268644,173.311636484131,0,0,84.966910891089,8631.97597904288,44.1836237623762,23.6948445642304,23.6649659092658,-2.49069306930693,-2.47605286037708,-1.96555441393492,2.28960749442211,1.81649292630589,2.07374123933945 +41858,2874.04780564356,457.04014009901,225,84.9577425742575,87.5064748514852,25.7148217821782,-4.37415841584158,1840.34158415842,1671.47524752475,1734.70198019802,20,40,11,32,5306199.53563247,396662.878769935,2,2,5306194.94988555,396666.614923139,196.884619777094,0,0,84.9577425742574,8655.5801773377,51.4296435643565,27.5807483968504,26.7437449237381,-4.37415841584158,-4.35951820691173,-3.54726871575815,4.8547741730975,3.85160468146961,3.70533215105972 +41859,2874.03998465346,457.025204950495,225,84.9257425742574,87.4735148514851,26.9920693069307,-4.59574257425743,1839.54455445545,1709.43861386139,1785.98415841584,20,40,11,32,5306185.38166099,396644.015993447,2,2,5306180.06617568,396648.346687625,220.448432041616,0,0,84.9257425742573,8679.17233275575,53.9841386138614,28.9506759397709,27.8285431019348,-4.59574257425743,-4.58110236532757,-3.7667638209242,5.84479855160153,4.6370547137586,4.64937606134797 +41860,2874.03216950495,457.010261782178,225,84.9266831683168,87.4744836633663,25.9898811881188,-3.44831683168317,1840.5396039604,1715.09504950495,1784.62178217822,20,40,11,32,5306171.23874971,396625.143328559,1.79207920792079,2,5306165.18200387,396630.077848234,191.811162101343,0,0,84.9266831683167,8702.76316094606,51.9797623762376,27.8757667459448,26.9770410326848,-3.44831683168317,-3.43367662275332,-2.80967004811283,4.8127985887219,3.81830274990205,3.87836814745422 +41861,2874.02436237624,456.995312574258,225,84.9335841584158,87.4815916831683,26.0703366336634,-4.4880198019802,1840.46534653465,1741.24356435644,1793.21188118812,20,40,11,32,5306157.11088936,396606.263314151,1,2,5306150.30064276,396611.811307348,16.5080165039416,0,0,84.9335841584157,8726.35309100657,52.1406732673268,27.962060223672,27.0462346483356,-4.4880198019802,-4.47337959305035,-3.65648100643863,4.8766719907818,3.8689776290259,3.82873317813542 +41862,2874.01654772277,456.980368118812,225,84.9599108910891,87.5087082178218,25.5742673267327,-3.2780198019802,1842.66831683168,1758.32079207921,1786.58316831683,20,40,11,32,5306142.9690452,396587.38887706,1,2,5306135.41688803,396593.541270514,40.0732536277875,0,0,84.959910891089,8749.94733190316,51.1485346534654,27.4299949868312,26.6269744114666,-3.2780198019802,-3.26337959305034,-2.65819718784525,4.35207731480484,3.45278292298507,3.50123287510213 +41863,2874.00872435644,456.965424851485,225,84.954207920792,87.5028341584158,24.5582178217822,-4.47742574257426,1840.02475247525,1733.99504950495,1756.82475247525,20,40,11,32,5306128.81109597,396568.515537921,1,2,5306120.52724637,396575.264007382,63.6478114466586,0,0,84.954207920792,8773.54925277775,49.1164356435644,26.3402185928059,25.7597851825215,-4.47742574257426,-4.46278553364441,-3.60680819624123,3.55693429583006,2.82194481082483,2.86128919482571 +41864,2874.00089524752,456.950486633664,225,84.9816435643564,87.5310928712871,25.3623168316832,-3.59207920792079,1841.28217821782,1733.07128712871,1755.49504950495,20,40,11,32,5306114.64245742,396549.648205059,1,2,5306105.6362817,396556.985120233,87.2244639704478,0,0,84.9816435643563,8797.15306314628,50.7246336633664,27.2026648763577,26.446925677202,-3.59207920792079,-3.57743899899094,-2.91129992165948,4.19963379251452,3.33183966935923,3.26042846303328 +41865,2873.99305168317,456.935561980198,225,84.9746435643564,87.5238828712871,25.764,-3.86851485148515,1841.5297029703,1715.05841584159,1742.25742574257,20,40,11,32,5306100.44680008,396530.79719534,1,2,5306090.74253184,396538.702814227,110.80552623802,0,0,84.9746435643563,8820.75840041251,51.528,27.6334950992712,26.7887733227323,-3.86851485148515,-3.85387464255529,-3.14534917595941,4.5306597062798,3.59446382316877,3.60029082328412 +41866,2873.9851990099,456.920646930693,225,84.9801188118812,87.5295223762377,25.2178514851485,-4.96920792079208,1842.07425742574,1662.44257425743,1727.50594059406,20,40,11,32,5306086.23411589,396511.957753069,1,2,5306075.847654,396520.419123598,134.388374433929,0,0,84.980118811881,8844.36569667214,50.435702970297,27.0477167919966,26.3211048076134,-4.96920792079208,-4.95456771186223,-4.02712966379076,4.1621573250406,3.30210717667865,3.316963397344 +41867,2873.97735564356,456.905728316832,225,84.9626138613862,87.5114922772277,25.4488316831683,-4.81019801980198,1842.01485148515,1688.11287128713,1765.70792079208,20,40,11,32,5306072.03881144,396493.114087206,1,2,5306060.95764102,396502.14140467,157.963520152158,0,0,84.962613861386,8867.96578239821,50.8976633663367,27.2954574444577,26.5169486229225,-4.81019801980198,-4.79555781087213,-3.90551221387916,4.35807714605433,3.45754297511203,3.46129368882322 +41868,2873.96953346535,456.890784752475,225,84.9617623762376,87.5106152475247,25.7362673267327,-4.71564356435644,1842.59900990099,1678.75643564356,1763.18217821782,20,40,11,32,5306057.88337276,396474.239953404,1,2,5306046.06861173,396483.864893234,181.537108409852,0,0,84.9617623762375,8891.56887348732,51.4725346534654,27.6037500794442,26.7619613132962,-4.71564356435644,-4.70100335542658,-3.8347886145594,4.60674401462295,3.65482639983088,3.62939589256911 +41869,2873.96172287129,456.875830990099,225,84.9687326732673,87.5177946534653,25.6461188118812,-4.42079207920792,1843.68811881188,1698.90792079208,1762.88910891089,20,40,11,32,5306043.74968055,396455.353408827,1,2,5306031.18218021,396465.591570593,205.106583666333,0,0,84.9687326732672,8915.16794551702,51.2922376237624,27.5070601810063,26.6870214536896,-4.42079207920792,-4.40615187027807,-3.59215278948318,4.46936791747786,3.54583710392951,3.58224075022832 +41870,2873.95393237624,456.860854059406,225,84.9678910891089,87.5169278217822,25.8485445544555,-4.98445544554455,1841.17326732673,1711.50099009901,1770.67128712871,20,40,11,32,5306029.65379734,396436.438580323,1,2,5306016.29698136,396447.31976107,228.674107258154,0,0,84.9678910891088,8938.76878182066,51.6970891089109,27.7241744010572,26.8575379382483,-4.98445544554455,-4.9698152366147,-4.05677193888281,4.729598202149,3.75229453057023,3.66653391049875 +41871,2873.94614782178,456.845866435644,225,84.972900990099,87.522088019802,24.8406138613861,-4.04940594059406,1840.31683168317,1690.71881188119,1728.68415841584,20,40,11,32,5306015.56921819,396417.51053697,0.435643564356436,0.871287128712871,2311527.21415209,172704.03024646,106.963679729766,0,0,84.9729009900989,8962.37329007148,49.6812277227723,26.6431059385772,26.0020652202198,-4.04940594059406,-4.03476573166421,-3.26977611751484,3.72426938056253,2.95470249897873,3.04918804966747 +41872,2873.93836128713,456.830879702971,225,84.9773267326733,87.5266465346535,25.5390099009901,-4.13792079207921,1840.53465346535,1689.3297029703,1732.94752475248,20,40,11,32,5306001.48101215,396398.583445142,0,0,0,0,0,0,0,84.9773267326731,8985.9780923542,51.0780198019802,27.3921792011818,26.5966363267477,-4.13792079207921,-4.12328058314935,-3.35795877827166,4.35185533195007,3.45260680970521,3.46002009423911 +41873,2873.93056831683,456.81590049505,225,84.9808712871287,87.5302974257426,25.4417920792079,-4.65504950495049,1840.29207920792,1703.55841584158,1742.78811881188,20,40,11,32,5305987.38077779,396379.665419829,0,0,0,0,0,0,0,84.9808712871286,9009.58263883385,50.8835841584158,27.2879070306423,26.5127209448968,-4.65504950495049,-4.64040929602064,-3.77626293504056,4.34376965101141,3.44619191882753,3.4351190908734 +41874,2873.92276673268,456.800930891089,225,84.9652673267326,87.5142253465347,24.2851881188119,-4.39356435643564,1840.51485148515,1690.58613861386,1701.48514851485,20,40,11,32,5305973.2644337,396360.758978505,0,0,0,0,0,0,0,84.9652673267325,9033.18836331129,48.5703762376238,26.0473772265978,25.5290295454378,-4.39356435643564,-4.37892414750579,-3.53645696640959,3.32128571649116,2.63498963247834,2.62211610734413 +41875,2873.91495445545,456.785979207921,225,84.9398811881188,87.4880776237624,24.911396039604,-4.88366336633663,1839.41584158416,1696.9702970297,1702.00594059406,20,40,11,32,5305959.12794226,396341.874411841,0,0,0,0,0,0,0,84.9398811881187,9056.78788734869,49.8227920792079,26.7190242344512,26.0593174371749,-4.88366336633663,-4.86902315740678,-3.9496654066945,3.94145661624414,3.12701110569875,3.07232894191233 +41876,2873.90712742574,456.771052970297,225,84.9456435643564,87.4940128712871,24.2941287128713,-4.1639603960396,1839.09405940594,1731.22079207921,1728.2900990099,20,40,11,32,5305944.96361544,396323.020957988,0,0,0,0,0,0,0,84.9456435643563,9080.38259755221,48.5882574257426,26.0569665707263,25.5357995763978,-4.1639603960396,-4.14932018710975,-3.34970499817449,3.99633196080859,3.17054724692503,3.28398822445106 +41877,2873.8992829703,456.756151188119,225,84.919801980198,87.467396039604,26.402504950495,-3.67742574257426,1840.63366336634,1729.72871287129,1729.60099009901,20,40,11,32,5305930.76652328,396304.197294618,0,0,0,0,0,0,0,84.9198019801979,9103.97209114407,52.8050099009901,28.3183314375869,27.3278005051059,-3.67742574257426,-3.66278553364441,-3.00128324383135,5.21217637797951,4.13515484393018,4.00581253002758 +41878,2873.89141831683,456.741271980198,225,84.9324851485149,87.4804597029703,25.9424356435643,-3.61524752475247,1840.27722772277,1737.63465346535,1751.80693069307,20,40,11,32,5305916.5315724,396285.400986023,0,0,0,0,0,0,0,84.9324851485147,9127.5639303905,51.8848712871287,27.8248784435489,26.9379573879232,-3.61524752475247,-3.60060731582262,-2.9425830118891,4.72216927032774,3.74640068101907,3.74784204699885 +41879,2873.88354316832,456.726402277228,225,84.9535544554456,87.5021610891089,25.6600792079208,-4.17742574257426,1841.26732673267,1709.2297029703,1755.58118811881,20,40,11,32,5305902.27702843,396266.616075117,0,0,0,0,0,0,0,84.9535544554454,9151.15689194165,51.3201584158416,27.5220335754925,26.698034114951,-4.17742574257426,-4.1627855336444,-3.39048985730715,4.50429028250775,3.57354326282409,3.53780838529237 +41880,2873.87567504951,456.711522079208,225,84.9356831683168,87.4837536633663,23.7447524752475,-3.37108910891089,1839.86633663366,1677.6099009901,1754.88514851485,20,40,11,32,5305888.03580104,396247.818232006,0,0,0,0,0,0,0,84.9356831683167,9174.75151133109,47.489504950495,25.467726329691,25.0681808671215,-3.37108910891089,-3.35644889998104,-2.68860825428494,3.34507750909283,2.65386519218469,2.69387247958436 +41881,2873.8678219802,456.69662059406,225,84.9538316831683,87.5024466336634,24.3593069306931,-3.20653465346535,1838.9504950495,1676.51287128713,1777.63069306931,20,40,11,32,5305873.82298751,396228.99428041,0,0,0,0,0,0,0,84.9538316831682,9198.34833220567,48.7186138613861,26.1268742699484,25.5937054336854,-3.20653465346535,-3.19189444453549,-2.56486951529457,4.24881146142726,3.37085547793334,3.34479155786228 +41882,2873.85997920792,456.681706633663,225,84.9706732673268,87.5197934653466,25.8937722772277,-4.76089108910891,1840.64851485149,1634.27524752475,1716.82277227723,20,40,11,32,5305859.62958747,396210.155038841,0,0,0,0,0,0,0,84.9706732673266,9221.94801416386,51.7875445544554,27.7726839514212,26.8962717952209,-4.76089108910891,-4.74625088017906,-3.87621483958517,4.76736438573011,3.78225687367742,3.79438838598177 +41883,2873.85214891089,456.666781980198,225,84.9354158415842,87.4834783168317,25.5356732673267,-3.01782178217822,1839.67326732673,1680.29900990099,1743.17227722772,20,40,11,32,5305845.45959593,396191.302799974,0,0,0,0,0,0,0,84.935415841584,9245.54524251919,51.0713465346535,27.3886004537053,26.5934899149736,-3.01782178217822,-3.00318157324836,-2.44590207017895,4.26606294643686,3.38454219085883,3.45928465108418 +41884,2873.84432049505,456.651855544554,225,84.9439900990099,87.4923098019802,25.1000099009901,-3.76396039603961,1839.76237623762,1697.94059405941,1742.38910891089,20,40,11,32,5305831.29318946,396172.448311011,0,0,0,0,0,0,0,84.9439900990098,9269.14024199663,50.2000198019802,26.9213243514465,26.2217118522923,-3.76396039603961,-3.74932018710975,-3.05375518850617,3.94250394067208,3.12784201554663,3.0816627066199 +41885,2873.83648108911,456.636937326733,225,84.9427623762376,87.4910452475248,24.7912178217822,-3.81475247524752,1839.4900990099,1690.06534653465,1727.60594059406,20,40,11,32,5305817.10630189,396153.603599813,0,0,0,0,0,0,0,84.9427623762375,9292.73773729365,49.5824356435644,26.5901256087247,25.9580185898717,-3.81475247524752,-3.80011226631767,-3.07797113636072,3.74403307889905,2.97038231235871,2.95403336867988 +41886,2873.82863405941,456.622032772277,225,84.9543168316832,87.5029463366336,24.4651881188119,-3.1539603960396,1840.40594059406,1733.40297029703,1745.80891089109,20,40,11,32,5305802.90504665,396134.775561958,0,0,0,0,0,0,0,84.9543168316831,9316.33396787669,48.9303762376238,26.2404384406123,25.6830476022371,-3.1539603960396,-3.13932018710975,-2.5482442078241,4.00268634120467,3.17558858569976,3.10979877270949 +41887,2873.82077188119,456.607141188118,225,84.9587128712871,87.5074742574257,23.9754455445545,-2.11,1841.04455445545,1707.15643564356,1726.32079207921,20,40,11,32,5305788.67550068,396115.963083179,0,0,0,0,0,0,0,84.958712871287,9339.93194364676,47.9508910891089,25.7151590187195,25.2673274628048,-2.11,-2.09535979107014,-1.68780512353651,3.10648594835828,2.4645751573615,2.56393488237764 +41888,2873.81290663366,456.592254653465,225,84.9232178217822,87.4709143564356,24.1851881188119,-4.37623762376238,1839.62871287129,1708.95940594059,1760.00198019802,20,40,11,32,5305774.44021632,396097.156699277,0,0,0,0,0,0,0,84.923217821782,9363.52500321772,48.3703762376238,25.9401209965898,25.4410856185392,-4.37623762376238,-4.36159741483252,-3.51966977523068,3.21753636233885,2.55267859515618,2.71952150557826 +41889,2873.80504188119,456.577374356436,225,84.9033267326733,87.4504265346534,25.9914455445545,-3.81881188118812,1840.14851485149,1720.99702970297,1768.49504950495,20,40,11,32,5305760.20576927,396078.358009175,0,0,0,0,0,0,0,84.9033267326732,9387.11460129252,51.9828910891089,27.8774446156815,26.9770566363733,-3.81881188118812,-3.80417167225827,-3.10854542587848,4.84218880532678,3.84161989954251,3.67405284552023 +41890,2873.79717346535,456.562505148515,225,84.8573663366337,87.4030873267327,22.9054257425743,-2.69267326732673,1834.0495049505,1293.33465346535,1330.1396039604,20,40,11,32,5305745.96434779,396059.572917719,0,0,0,0,0,0,0,84.8573663366335,9410.69749246414,45.8108514851485,24.567496118776,24.3498694544038,-2.69267326732673,-2.67803305839688,-2.14384328118572,3.22718015638861,2.56032963740548,2.52577411375849 +41891,2873.78933712871,456.547693069307,225,84.0911881188119,86.6139237623762,21.7586353135644,-3.30831683168317,1809.78217821782,-627.128712871287,-513.89702970297,20,40,11,32,5305731.78112606,396040.859969549,0,0,0,0,0,0,0,84.0911881188117,9434.18530998338,43.5172706271287,23.337491938527,23.3307493935172,-3.30831683168317,-3.29367662275331,-2.61601981604879,2.72744136251058,2.16385470172696,2.26842982118892 +41892,2873.7816690099,456.533147425743,225,81.3660297029703,83.8070105940594,19.2364636966337,-1.89960396039604,1736.94554455446,-3829.37623762376,-3264.04356435644,20,40,11,32,5305717.9035809,396022.484445097,0,0,0,0,0,0,0,81.3660297029702,9457.22248657854,38.4729273932673,20.6323057478743,21.0282971010453,-1.89960396039604,-1.88496375146618,-1.45066799279091,3.29707152069779,2.61577895314487,2.52836670738257 +41893,2873.77431405941,456.519205643564,225,77.7360297029703,80.0681105940594,20.283301980198,-2.68663366336634,1662.93564356436,-3821.16138613861,-3101.08415841584,20,40,11,32,5305704.59263264,396004.871523582,0,0,0,0,0,0,0,77.7360297029702,9479.30917893277,40.566603960396,21.7551050251063,21.7107039488174,-2.68663366336634,-2.67199345443648,-2.11891641317938,2.87386570339717,2.28002255150359,2.18618577176395 +41894,2873.76731554455,456.50587950495,225,73.9038118811881,76.1209262376238,18.8350891089109,-0.748514851485149,1579.68811881188,-4180.91683168317,-3389.86633663366,20,40,11,32,5305691.92815583,395988.037337163,0,0,0,0,0,0,0,73.903811881188,9500.38110896577,37.6701782178218,20.2018064968726,20.2598465942142,-0.748514851485149,-0.733874642555291,-0.561338690911568,2.25881893494266,1.7920663813012,1.87623057647857 +41895,2873.76071069307,456.493263465346,225,69.6158217821782,71.7042964356436,18.6018910891089,-1.82039603960396,1487.71782178218,-4141.24356435643,-3452.80693069307,20,40,11,32,5305679.97698123,395972.100804531,0,0,0,0,0,0,0,69.6158217821781,9520.30297854773,37.2037821782178,19.9516870923796,19.8146687155678,-1.82039603960396,-1.8057558306741,-1.45512389506447,2.15715575706558,1.71141044183149,1.83400113864085 +41896,2873.75448495049,456.481394752475,225,65.3987425742574,67.3607048514852,20.0537524752475,-1.89653465346535,1395.43069306931,-4110.28910891089,-3479.20396039604,20,40,11,32,5305668.71130567,395957.107826432,0,0,0,0,0,0,0,65.3987425742574,9539.0559152639,40.107504950495,21.5088988800943,20.8086219364954,-1.89653465346535,-1.88189444453549,-1.5283132420711,3.83489248717576,3.04246692634825,2.92159717748267 +41897,2873.74863009901,456.470301782178,225,61.0717326732673,62.9038846534653,19.091396039604,-2.53752475247525,1316.81188118812,-4397.19603960396,-3731.21386138614,20,40,11,32,5305658.11526143,395943.093537581,0,0,0,0,0,0,0,61.0717326732672,9556.61995937831,38.1827920792079,20.4767116479833,19.7424644854415,-2.53752475247525,-2.52288454354539,-2.0662799241574,3.82982707477443,3.03844820880899,2.98056255460668 +41898,2873.74317772277,456.460024158416,225,56.2475742574257,57.9350014851485,17.1740198019802,-2.81861386138614,1383.04455445545,-5107.48712871287,-4293.58613861386,20,40,11,32,5305648.2464565,395930.108338968,0,0,0,0,0,0,0,56.2475742574256,9572.92437510988,34.3480396039604,18.4202061804381,17.8352176675122,-2.81861386138614,-2.80397365245628,-2.28961794092452,3.15356198049775,2.50192360227541,2.5221594878942 +41899,2873.73819207921,456.450656534654,225,50.8035841584158,52.3276916831683,15.7337722772277,-3.13792079207921,1268.23762376238,-5190.62079207921,-4145.98613861386,20,40,11,32,5305639.22178426,395918.272299843,0,0,0,0,0,0,0,50.8035841584158,9587.78505090747,31.4675445544555,16.8754509826045,16.2969062958994,-3.13792079207921,-3.12328058314935,-2.55457284680742,3.05861861557585,2.42659892273952,2.49952709023858 +41900,2873.73372811881,456.442176534653,225,45.8100594059406,47.1843611881188,14.4693762376238,-4.03168316831683,1182.22772277228,-5371.95148514851,-4101.2,20,40,11,32,5305631.14352772,395907.559391941,0,0,0,0,0,0,0,45.8100594059405,9601.1816021451,28.9387524752475,15.5193074581543,14.9346140655672,-4.03168316831683,-4.01704295938698,-3.3011141632352,3.04910078639114,2.41904781652157,2.39973592456171 +41901,2873.72983742574,456.434418316832,225,41.1684653465347,42.4035193069307,13.1694059405941,-1.78,1406.5,-5039.15841584158,-3904.74653465347,20,40,11,32,5305624.11095886,395897.764754948,0,0,0,0,0,0,0,41.1684653465346,9613.24262621001,26.3388118811881,14.1250083263359,13.5644542383766,-1.78,-1.76535979107014,-1.45261598597273,2.86267912048071,2.27114751559164,2.31171535755007 +41902,2873.72656504951,456.42713990099,225,37.6336831683168,38.7626936633663,11.2863465346535,-1.60534653465346,1315.4702970297,-4267.7801980198,-3302.5297029703,20,40,11,32,5305618.21295823,395888.588460416,0,0,0,0,0,0,0,37.6336831683168,9624.16299510441,22.5726930693069,12.1053097987123,11.7587604588215,-1.60534653465346,-1.59070632572361,-1.29785290356078,2.09245567944526,1.66007970780173,1.65615019684436 +41903,2873.72392336634,456.420123663367,225,34.8627425742574,35.9086248514852,8.45662376237624,-5.27277227722772,1227.90594059406,-1956.93762376238,-1395.74257425742,20,40,11,32,5305613.47733901,395879.759828152,0,0,0,0,0,0,0,34.8627425742574,9634.19851993939,16.9132475247525,9.07025583348874,9.19095685984227,-5.27277227722772,-5.25813206829787,-4.10334986554782,1.60891665787685,1.27645709370228,1.31175708442936 +41904,2873.72187732673,456.413106831683,225,33.8743465346535,34.8905769306931,11.0129207920792,-4.67861386138614,1195.68811881188,117.623762376238,248.092079207921,20,40,11,32,5305609.84508229,395870.950348529,0,0,0,0,0,0,0,33.8743465346534,9643.70608789869,22.0258415841584,11.8120436553556,11.3093627817708,-4.67861386138614,-4.66397365245629,-3.85994900591891,2.64339426953732,2.09717473573522,2.06715290487904 +41905,2873.72035188119,456.406004059406,225,32.9930891089109,33.9828817821782,11.5617524752475,-5.5,1159.15346534653,-1494.13663366337,-1203.0603960396,20,40,10.3663366336634,32,5305607.17908903,395862.051199019,0,0,0,0,0,0,0,32.9930891089108,9653.01421306371,23.123504950495,12.4006998278116,11.7253584754574,-5.5,-5.48535979107015,-4.57891854059844,3.397132824064,2.69516402250915,2.68828137982143 +41906,2873.71938237624,456.399071485148,176.881188118812,30.7566633663366,31.6793632673267,10.6600099009901,-5.47990099009901,1086.50495049505,-3322.32574257426,-2696.36237623762,20,40,10,32,5305605.53907543,395853.382646132,0,0,0,0,0,0,0,30.7566633663366,9661.90032321222,21.3200198019802,11.4335247382857,10.8301707857416,-5.47990099009901,-5.46526078116915,-4.5546582901584,3.04324287705074,2.41440036017557,2.46744678213264 +41907,2873.71884306931,456.392626138614,107.376237623762,28.5932376237624,29.4510347524752,10.7094554455446,-5.5,1362.45544554455,-1377.60495049505,-989.723762376237,20,40,10,32,5305604.68499472,395845.335425993,0,0,0,0,0,0,0,28.5932376237623,9670.10752323973,21.4189108910891,11.4865581652817,10.7483756961418,-5.5,-5.48535979107015,-4.62406111475087,3.66285819225936,2.90598105243363,2.83780847061644 +41908,2873.71863267327,456.386395247525,62.8217821782178,27.7991683168317,28.6331433663366,10.5308316831683,-5.5,1393.97524752475,-225.483168316832,-50.3346534653465,20,40,10.3465346534653,32,5305604.43535898,395837.566354025,0,0,0,0,0,0,0,27.7991683168317,9677.91787323973,21.0616633663366,11.2949730518585,10.5509486012266,-5.5,-5.48535979107015,-4.63221031059725,3.68425592985587,2.92295725428381,2.91946023088376 +41909,2873.71865831683,456.380274356436,45,26.7474455445545,27.5498689108911,9.83456435643564,-5.5,1334.39108910891,-1605.1,-1297.31485148515,20,40,11,32,5305604.62048637,395829.942203848,0,0,0,0,0,0,0,26.7474455445544,9685.51198976887,19.6691287128713,10.5481829664272,9.89835424983435,-5.5,-5.48535979107015,-4.61197298811063,3.23311682777339,2.56503958074841,2.57641301770344 +41910,2873.71897257426,456.37452049505,45,24.7455643564357,25.4879312871287,9.17087128712872,-5.5,1228.82673267327,-3178.76930693069,-2629.42871287129,20,40,10.6831683168317,32,5305605.33198197,395822.784925965,0,0,0,0,0,0,0,24.7455643564356,9692.68500272267,18.3417425742574,9.83633080146398,9.21909231377446,-5.5,-5.48535979107015,-4.61735690038005,3.06743768010556,2.43359565400193,2.46814177339542 +41911,2873.71960693069,456.369476138614,45,21.5138712871287,22.1592874257426,8.61753465346535,-5.5,1271.70792079208,-3596.59603960396,-2826.8198019802,20,40,10.980198019802,32,5305606.62046359,395816.522208249,0,0,0,0,0,0,0,21.5138712871287,9699.12432018692,17.2350693069307,9.24284278894326,8.56333846053181,-5.5,-5.48535979107015,-4.66763462340715,3.34469013806969,2.65355786583067,2.60833820659958 +41912,2873.72026415842,456.365010990099,45,19.831801980198,20.426756039604,7.76903960396039,-5.5,1337.82178217822,-839.062376237624,-509.762376237624,20,40,11,32,5305607.93829132,395810.981797074,0,0,0,0,0,0,0,19.831801980198,9704.81464493941,15.5380792079208,8.33277898703941,7.74514613000832,-5.5,-5.48535979107015,-4.65250043026839,2.89946893540749,2.30033524263105,2.31441376883863 +41913,2873.72103970297,456.360843168317,45,19.0978118811881,19.6707462376238,6.75972277227723,-5.5,1289.10891089109,-450.391089108911,-227.288118811881,20,40,10.8415841584158,32,5305609.46860053,395805.815735139,0,0,0,0,0,0,0,19.0978118811881,9710.20378712862,13.5194455445545,7.25022380453946,6.84438800141359,-5.5,-5.48535979107015,-4.58441199521888,2.03763005621178,1.6165830137061,1.65851367712957 +41914,2873.72201376238,456.356932772277,45,18.581198019802,19.138633960396,6.76049504950495,-5.5,1279.62376237624,2136.89900990099,2383.19504950495,20,40,11,32,5305611.36084187,395800.976998872,0,0,0,0,0,0,0,18.581198019802,9715.41429862476,13.5209900990099,7.25105211997913,6.8154744597602,-5.5,-5.48535979107015,-4.60421519551201,2.17262100002381,1.72368001402047,1.68369450684897 +41915,2873.72313881188,456.352976633663,45,20.2234752475248,20.8301795049505,6.95063366336633,-5.5,1206.63366336634,4603.2405940594,5343.09702970297,20,40,11,32,5305613.53380158,395796.086332655,0,0,0,0,0,0,0,20.2234752475247,9720.76965236514,13.9012673267327,7.45498762899639,7.07124817561112,-5.5,-5.48535979107015,-4.56525530327224,1.94245348283974,1.54107331490334,1.50795815710566 +41916,2873.72452405941,456.34864,45,22.5302178217822,23.2061243564356,7.25525742574258,-5.5,1124.65346534653,4445.67425742574,5198.88712871287,20,40,11,32,5305616.19730015,395790.730377948,0,0,0,0,0,0,0,22.5302178217821,9726.71052970287,14.5105148514852,7.78171559222979,7.46246665880223,-5.5,-5.48535979107015,-4.51792756919955,1.67136411256549,1.32600067703875,1.34605312564567 +41917,2873.72623029703,456.344074455446,45,24.3728712871287,25.1040574257426,7.18043564356435,-5.5,920.019801980198,3810.34851485149,4473.31881188119,20,40,10.9207920792079,32,5305619.46053667,395785.100003395,0,0,0,0,0,0,0,24.3728712871287,9733.23795805821,14.3608712871287,7.7014645694406,7.50429780234102,-5.5,-5.48535979107015,-4.45191073489363,1.20661180725712,0.957282773584268,0.971832097740216 +41918,2873.7282249505,456.339361584159,45,25.7249900990099,26.4967398019802,6.76800990099009,-5.5,911.158415841584,2567.9297029703,2964.30792079208,20,40,10.960396039604,32,5305623.26133796,395779.295753511,0,0,0,0,0,0,0,25.7249900990099,9740.21403149056,13.5360198019802,7.2591122663728,7.23083444799095,-5.5,-5.48535979107015,-4.36326150508963,0.798093334328416,0.633178787137642,0.635480670357931 +41919,2873.73048019802,456.334628613861,45,25.9766336633663,26.7559326732673,6.8440198019802,-5.5,911.995049504951,613.938613861386,702.435643564357,20,40,11,32,5305627.54530677,395773.475190943,0,0,0,0,0,0,0,25.9766336633663,9747.43255838826,13.6880396039604,7.34063762060762,7.30990839644652,-5.5,-5.48535979107015,-4.36449584448578,0.810241936674948,0.64281705495461,0.646465138359511 +41920,2873.73278772277,456.330038613862,45,25.3621584158416,26.1230231683168,6.49342574257426,-5.5,895.707920792079,-219.176237623762,-129.563366336634,20,40,11,32,5305631.9229002,395767.834488148,0,0,0,0,0,0,0,25.3621584158415,9754.56290948837,12.9868514851485,6.96460364985666,6.97645860352983,-5.5,-5.48535979107015,-4.34047568679178,0.802661794002394,0.636803240107032,0.640480945479509 +41921,2873.7349019802,456.325604158416,45,23.4420099009901,24.1452701980198,5.99219801980198,-5.5,1002.71287128713,-1045.94653465347,-1046.29405940594,20,40,11,32,5305635.93900228,395762.381093966,0,0,0,0,0,0,0,23.4420099009901,9761.38343006042,11.984396039604,6.42700569065597,6.44009736772653,-5.5,-5.48535979107015,-4.3388791483332,0.77931979524379,0.618284530793693,0.620042833516199 +41922,2873.73643168317,456.321177623762,45,21.6773465346535,22.3276669306931,6.3559801980198,-5.5,1026.58415841584,-997.655445544554,-1401.66633663366,20,40,11,32,5305638.87213654,395756.918016045,0,0,0,0,0,0,0,21.6773465346534,9767.61107180961,12.7119603960396,6.81718474045353,6.64855304695845,-5.5,-5.48535979107015,-4.44667105721008,1.08002000341822,0.856849351365889,0.878306157011299 +41923,2873.7372360396,456.316720891089,45,20.0205742574257,20.6211914851485,7.14822772277228,-5.5,1023.91584158416,-1172.30495049505,-1650.73366336634,20,40,11,32,5305640.46236557,395751.393054626,0,0,0,0,0,0,0,20.0205742574257,9773.40854359178,14.2964554455446,7.66691956783505,7.22775306543218,-5.5,-5.48535979107015,-4.58922141275453,2.20576609279647,1.74997614849329,1.78879472747443 +41924,2873.73722326733,456.31245039604,119.851485148515,19.043603960396,19.6149120792079,7.97219801980198,-5.5,1184.05940594059,2188.89801980198,1827.76534653465,20,40,11,32,5305640.53480684,395746.07275445,0,0,0,0,0,0,0,19.043603960396,9778.80185363029,15.944396039604,8.55067904481515,7.87289094150189,-5.5,-5.48535979107015,-4.69504105263459,3.32495504743341,2.63790074877976,2.656417798306 +41925,2873.73637039604,456.308326930693,221.435643564356,20.2126336633663,20.8190126732673,8.46825742574257,-5.5,1233.06930693069,4249.28118811881,3744.6297029703,20,40,10.7227722772277,32,5305639.04779328,395740.907500256,0,0,0,0,0,0,0,20.2126336633663,9784.22521655658,16.9365148514852,9.0827336622273,8.36185959464762,-5.5,-5.48535979107015,-4.69564318592177,3.53634132956845,2.80560708584926,2.7632353036763 +41926,2873.73465069307,456.304648910891,225,20.809801980198,21.434096039604,8.7269603960396,-5.5,1136.62871287129,2132.49405940594,1889.90198019802,20,40,10.8613861386139,32,5305635.94509016,395736.268138595,0,0,0,0,0,0,0,20.809801980198,9789.95145990092,17.4539207920792,9.36020871508671,8.61614841660864,-5.5,-5.48535979107015,-4.69629533915083,3.64953120307376,2.89540789452619,2.8000451775471 +41927,2873.73215920792,456.302048217822,225,20.7004851485149,21.3214997029703,8.3039801980198,-5.5,916.579207920792,2650.55643564356,2370.04554455446,20,40,11,32,5305631.3885389,395732.945000603,0,0,0,0,0,0,0,20.7004851485148,9795.72121694163,16.6079603960396,8.90653610101013,8.25001132931975,-5.5,-5.48535979107015,-4.66328517596908,3.27236285878912,2.59617598203086,2.62433949428319 +41928,2873.72920267327,456.300804752475,225,21.3679306930693,22.0089686138614,8.22389108910891,-5.35910891089109,936.163366336634,3442.94455445544,3062.96237623762,20,40,11,32,5305625.94001143,395731.297033707,0,0,0,0,0,0,0,21.3679306930693,9801.53993679861,16.4477821782178,8.82063554214528,8.22018712526133,-5.35910891089109,-5.34446870196124,-4.5193803798305,2.96865190051895,2.35522253971232,2.36409943970661 +41929,2873.72599881188,456.301066534653,225,21.9431881188119,22.6014837623762,7.86205940594059,-3.88158415841584,988.60396039604,3755.74257425743,3314.89603960396,20,40,11,32,5305619.99947203,395731.515921464,0,0,0,0,0,0,0,21.9431881188118,9807.55184983492,15.7241188118812,8.43254851980432,7.94618872498863,-3.88158415841584,-3.86694394948599,-3.23271963462149,2.41687053222737,1.91745888161335,1.89007022872742 +41930,2873.72284217822,456.302786237624,225,23.1447128712871,23.8390542574258,7.91873267326732,-2.07247524752475,1001.90099009901,3107.36534653465,2766.55841584158,20,40,11,32,5305614.11360177,395733.552570762,0,0,0,0,0,0,0,23.1447128712871,9813.82649504945,15.8374653465346,8.49333412976135,8.06357347276912,-2.07247524752475,-2.0578350385949,-1.68080613042198,2.23826151825534,1.77575686008998,1.75636184284065 +41931,2873.72003475248,456.305858118812,225,23.9449900990099,24.6633398019802,7.21007920792079,2.94752475247525,795.90099009901,3579.82277227723,3193.75049504951,20,40,10.8712871287129,32,5305608.84415309,395737.28536547,0,0,0,0,0,0,0,23.9449900990099,9820.35573578102,14.4201584158416,7.73325913900933,7.50622206906813,2.94752475247525,2.9621649614051,2.44520430735425,1.54205345015508,1.22341020939892,1.26476433467382 +41932,2873.71768752475,456.309938415841,225,24.8602277227723,25.6060345544554,7.06347524752475,4.62128712871287,833.752475247525,3650.67722772277,3224.57128712871,20,40,10.5940594059406,32,5305604.4044571,395742.289785985,0,0,0,0,0,0,0,24.8602277227722,9827.13909983493,14.1269504950495,7.57601725804606,7.43289680666699,4.62128712871287,4.63592733764272,3.77440751285941,1.38757558083255,1.10085297739352,1.10799906677566 +41933,2873.71592396039,456.314866039604,225,26.0795247524752,26.8619104950495,7.74317821782178,5.13069306930693,877.970297029703,3596.44653465346,3192.22376237624,20,40,10.5049504950495,32,5305601.0268422,395748.369289681,0,0,0,0,0,0,0,26.0795247524752,9834.21284851479,15.4863564356436,8.30504103923931,8.08082285499641,5.13069306930693,5.14533327823678,4.19107191011051,1.45023196868388,1.15056232084959,1.19619544304067 +41934,2873.71483693069,456.320519504951,182.227722772277,27.0243168316832,27.8350463366336,7.86634653465347,5.2280198019802,915.574257425743,3233.45049504951,2863.75346534653,20,40,11,32,5305598.88607472,395755.375643791,0,0,0,0,0,0,0,27.0243168316831,9841.59981166111,15.7326930693069,8.43714673243733,8.23990423092868,5.2280198019802,5.24266001091005,4.24856319111269,1.31040371880758,1.03962757442829,0.991137421715143 +41935,2873.71434425742,456.326608811881,89.5544554455445,27.4169108910891,28.2394182178218,7.68163366336634,5.14683168316832,939.995049504951,2606.78712871287,2330.2702970297,20,40,11,32,5305597.83646077,395762.944831715,0,0,0,0,0,0,0,27.4169108910891,9849.17352109455,15.3632673267327,8.23903067035516,8.105147252574,5.14683168316832,5.16147189209817,4.1630168322918,1.29808291502056,1.02985268813007,0.983472388735798 +41936,2873.71434623763,456.332795643564,45,27.7932079207921,28.6270041584159,7.97139603960396,5.43316831683168,962.564356435644,2462.07722772277,2209.34653465347,20,40,11,32,5305597.70093007,395770.652060313,0,0,0,0,0,0,0,27.793207920792,9856.84194196914,15.9427920792079,8.54981887108934,8.37306734235465,5.43316831683168,5.44780852576154,4.39942275425657,1.32940421961557,1.05470189410888,1.13077049660589 +41937,2873.71458336634,456.338968910891,45,28.0914356435644,28.9341787128713,8.66047524752475,5.5,990.386138613861,2612.79207920792,2329.99108910891,20,40,11,32,5305598.00129031,395778.350257425,0,0,0,0,0,0,0,28.0914356435643,9864.58207918036,17.3209504950495,9.28889925127444,8.97631787854346,5.5,5.51464020892985,4.50568849452654,1.83293872247509,1.45418820991784,1.43121338604049 +41938,2873.71486455446,456.345275841584,45,28.7638217821782,29.6267364356435,8.35576237623763,5.44980198019802,876.70297029703,1842.76336633663,1706.65247524752,20,40,11,32,5305598.38026717,395786.216436486,0,0,0,0,0,0,0,28.7638217821782,9872.50629730467,16.7115247524753,8.96207571318261,8.75562124100109,5.44980198019802,5.46444218912787,4.42044128561962,1.51301771245674,1.20037429068028,1.21090062080556 +41939,2873.71502594059,456.351693366337,45,28.948801980198,29.8172660396039,8.90289108910891,5.47910891089109,732.688118811881,678.775247524753,701.189108910891,20,40,11,32,5305598.53485283,395794.216378288,0,0,0,0,0,0,0,28.948801980198,9880.52887797026,17.8057821782178,9.54890534389987,9.23166929117159,5.47910891089109,5.49374911982094,4.49098262327967,1.77858181279772,1.41106337644077,1.33886660422342 +41940,2873.71499841584,456.358060792079,69.950495049505,28.5082673267327,29.3635153465347,8.35131683168317,5.5,720.70297029703,180.00198019802,221.735643564357,20,40,11,32,5305598.34064875,395802.147591274,0,0,0,0,0,0,0,28.5082673267326,9888.52264009897,16.7026336633663,8.95730758969018,8.73714708830793,5.5,5.51464020892985,4.47188724890637,1.34588417307503,1.06777650141947,1.10345926311308 +41941,2873.71477237624,456.364226633663,100.247524752475,26.859198019802,27.6649739603961,8.31569306930693,5.5,669.064356435644,-349.331683168317,-151.389108910891,20,40,11,32,5305597.78327171,395809.821045119,0,0,0,0,0,0,0,26.8591980198019,9896.22831600655,16.6313861386139,8.9190988851784,8.61243831134092,5.5,5.51464020892985,4.51194923803356,1.70064837266944,1.34923376457036,1.32790432789165 +41942,2873.71438158416,456.37003019802,130.544554455446,25.8736237623763,26.6498324752475,7.90032673267327,5.5,743,-633.984158415841,-399.630693069307,20,40,11,32,5305596.92887395,395817.037688993,0,0,0,0,0,0,0,25.8736237623762,9903.52536518146,15.8006534653465,8.47359261178264,8.20262817532069,5.5,5.51464020892985,4.5027489424106,1.50852972498542,1.1968136814864,1.28561618009953 +41943,2873.71386336634,456.375651881188,143.019801980198,24.8443465346535,25.5896769306931,8.29417821782178,5.5,929.851485148515,-144.630693069307,-17.249504950495,20,40,11,32,5305595.8425391,395824.023497917,0,0,0,0,0,0,0,24.8443465346534,9910.58988666112,16.5883564356436,8.8960228665836,8.47879460594816,5.5,5.51464020892985,4.56814786541372,2.14042766932352,1.6981389736309,1.73196018106273 +41944,2873.71330306931,456.381046831683,143.019801980198,24.3160396039604,25.0455207920792,9.01768316831683,5.5,1328.08910891089,2273.41881188119,2458.74554455446,20,40,11,32,5305594.68336582,395830.725453011,0,0,0,0,0,0,0,24.3160396039604,9917.37301908687,18.0353663366337,9.67202700040613,9.06412064966891,5.5,5.51464020892985,4.64110596037514,3.02290135977172,2.39826212585477,2.2934932458521 +41945,2873.71280148515,456.386578019802,123.415841584158,25.9944257425743,26.7742585148515,8.44939603960396,5.5,1406.68811881188,5567.8198019802,5546.2198019802,20,40,11,32,5305593.62989362,395837.59908973,0,0,0,0,0,0,0,25.9944257425742,9924.31087109457,16.8987920792079,9.06250365052776,8.6766919887575,5.5,5.51464020892985,4.54639249320092,2.03527003539772,1.61471065736331,1.62764147595005 +41946,2873.71251376238,456.392687920792,66.3861386138614,28.8575841584158,29.7233116831683,7.71347524752475,5.5,1310.26237623762,6471.81386138614,5379.74158415842,20,40,11,32,5305592.95956333,395845.20080229,0,0,0,0,0,0,0,28.8575841584158,9931.93530811327,15.4269504950495,8.27318275309831,8.21450152748633,5.5,5.51464020892985,4.3971114804799,1.12081910681652,0.889217904885725,0.894005625176011 +41947,2873.71267207921,456.399424851485,45,31.4875940594059,32.4322218811881,8.26875247524752,5.5,1116.31188118812,5840.46732673267,4942.23564356436,20,40,11,32,5305593.1013651,395853.598540459,0,0,0,0,0,0,0,31.4875940594059,9940.31713814628,16.537504950495,8.86875217364691,8.83748199092742,5.5,5.51464020892985,4.38349959548693,1.03926381987321,0.824514848926893,0.833715669050692 +41948,2873.71346069307,456.406572673267,45,33.3497623762376,34.3502552475248,7.84415841584158,5.5,1592.69306930693,4997.99603960396,4297.34653465346,20,40,11,32,5305594.40146858,395862.52920735,0,0,0,0,0,0,0,33.3497623762376,9949.35906839931,15.6883168316832,8.41334859269,8.5828971887666,5.5,5.51464020892985,4.29081337971807,1.35425967167592,1.0744213232939,1.08195690894432 +41949,2873.71493732673,456.413886435643,45,35.7705346534653,36.8436506930693,7.60585148514852,5.5,1785.36138613861,6926.44059405941,5871.24257425743,20,40,10.8019801980198,32,5305596.9723042,395871.689582637,0,0,0,0,0,0,0,35.7705346534653,9958.92034293176,15.211702970297,8.15774956298075,8.51879531985271,5.5,5.51464020892985,4.2042057725908,1.99597535272469,1.58353565759113,1.53369338940205 +41950,2873.7170760396,456.421447821782,45,38.3995247524753,39.5515104950495,8.43049504950495,5.5,1919.35643564356,6102.31782178218,5141.87722772277,20,40,10.9009900990099,32,5305600.76398631,395881.180548767,0,0,0,0,0,0,0,38.3995247524752,9969.23716622659,16.8609900990099,9.04223116111338,9.37087561334833,5.5,5.51464020892985,4.23266085360479,1.92278063824012,1.52546558163789,1.55149518622986 +41951,2873.71980514851,456.429318118812,45,40.6061584158416,41.8243431683168,8.27466336633663,5.5,1608.08910891089,5784.39504950495,4861.61188118812,20,40,10.8613861386139,32,5305605.64235745,395891.076051319,0,0,0,0,0,0,0,40.6061584158415,9980.21366248621,16.5493267326733,8.87509197258897,9.36468831809141,5.5,5.51464020892985,4.16516086657217,2.60990061199846,2.0706020624086,2.04444722885957 +41952,2873.72296326733,456.437284455446,45,43.0319207920792,44.3228784158416,9.32443564356436,5.5,1527.58910891089,5931.94455445545,4966.72673267326,20,40,10.1485148514851,32,5305611.31326044,395901.105510752,0,0,0,0,0,0,0,43.0319207920791,9991.82753091306,18.6488712871287,10.001038140813,10.3966355271789,5.5,5.51464020892985,4.22087765137785,2.2423794404884,1.77902387272235,1.84866402987591 +41953,2873.7265719802,456.445359009901,45,45.4696732673267,46.8337634653465,9.31588118811882,5.5,1612.34158415842,5771.87821782178,4817.30396039604,20,40,10.4257425742574,32,5305617.81640369,395911.284814383,0,0,0,0,0,0,0,45.4696732673267,10004.1176433993,18.6317623762376,9.99186295440436,10.5289725611835,5.5,5.51464020892985,4.1710652789243,2.8677045929409,2.27513454620606,2.2399626367736 +41954,2873.73068207921,456.453814158416,45,47.849198019802,49.284673960396,9.54262376237624,5.48207920792079,1696.66831683168,5509.55742574258,4657.92277227723,20,40,11,32,5305625.23975305,395921.954961536,0,0,0,0,0,0,0,47.8491980198019,10017.0985922992,19.0852475247525,10.235058491376,10.8581846916884,5.48207920792079,5.49671941685065,4.13331274012188,3.26179176120478,2.58778925022987,2.53515755412769 +41955,2873.73511712871,456.462655346535,45,50.1179603960396,51.6214992079208,10.7917326732673,3.57811881188119,1776.94554455446,5356.58514851485,4452.11386138614,20,40,11,32,5305633.25636965,395933.116835661,0,0,0,0,0,0,0,50.1179603960395,10030.7134315731,21.5834653465347,11.5748056178923,12.0533683997901,3.57811881188119,3.59275902081104,2.73677534247771,2.57465313082605,2.04263796796195,2.1225543816049 +41956,2873.7398260396,456.471932772277,45,52.2994257425743,53.8684085148515,11.1731188118812,4.44534653465347,1855.56930693069,5135.59504950495,4349.29702970297,20,40,10.9306930693069,32,5305641.7704942,395944.831258043,0,0,0,0,0,0,0,52.2994257425742,10044.9424471397,22.3462376237624,11.9838660119428,12.5018998634481,4.44534653465347,4.45998674358332,3.40082052972966,2.79735356504801,2.21932054977344,2.21114448662366 +41957,2873.74475039604,456.481472871287,45,54.3057821782178,55.9349556435643,11.5890495049505,3.06752475247525,1925.83663366337,4810.56732673267,4322.10594059406,20,40,10.6633663366337,32,5305650.67782184,395956.880059074,0,0,0,0,0,0,0,54.3057821782177,10059.7541892189,23.178099009901,12.4299775927752,12.9722152494627,3.06752475247525,3.0821649614051,2.36070905491634,2.88433138610829,2.28832565090383,2.27548470144661 +41958,2873.74980742574,456.491292079208,45,56.1218217821782,57.8054764356436,12.1208316831683,2.32168316831683,1789.85148514851,4264.62475247525,4094.63465346535,20,40,10.4554455445545,32,5305659.82466296,395969.280945147,0,0,0,0,0,0,0,56.1218217821781,10075.1002752475,24.2416633663366,13.0003471089863,13.5290311452912,2.32168316831683,2.33632337724669,1.78804180733419,2.81781240303267,2.23555186215782,2.31614678185298 +41959,2873.75500485148,456.501395445545,45,57.9320396039604,59.6700007920792,11.9429713969307,1.47009900990099,1481.42079207921,4395.81188118812,4078.26336633663,20,40,10.4158415841584,32,5305669.22521163,395982.040461128,0,0,0,0,0,0,0,57.9320396039603,10090.9432275852,23.8859427938614,12.8095808712863,13.4816229340874,1.47009900990099,1.48473921883085,1.12309219949091,3.45859455496775,2.74392556775093,2.68323766064327 +41960,2873.76038613861,456.511785247525,45,59.686495049505,61.4770899009901,12.902603960396,0.571881188118812,1527.09405940594,4410.9900990099,4011.97623762376,20,40,11,32,5305678.95993178,395995.162891338,0,0,0,0,0,0,0,59.6864950495049,10107.2775910341,25.8052079207921,13.8388465807887,14.39968330289,0.571881188118812,0.586521397048669,0.448788696716147,2.95952860942571,2.34798444594477,2.40297909849524 +41961,2873.7659429703,456.522453168317,45,61.401297029703,63.2433359405941,12.8312678768317,0.184158415841584,1565.56435643564,4372.58910891089,3956.59207920792,20,40,10.7227722772277,32,5305689.01360689,396008.637593702,0,0,0,0,0,0,0,61.4012970297029,10124.0947020077,25.6625357536634,13.7623341869222,14.4360930023625,0.184158415841584,0.198798624771442,0.150393613106494,3.5033940118446,2.77946785904644,2.73240781777172 +41962,2873.77166356435,456.53338990099,45,63.071099009901,64.963231980198,13.6244169417822,-0.552772277227723,1608.79207920792,4264.74455445545,3919.28118811881,20,40,10.9009900990099,32,5305699.36462367,396022.45257711,0,0,0,0,0,0,0,63.0710990099009,10141.3887810506,27.2488338835644,14.6130359723321,15.2066880012217,-0.552772277227723,-0.538132068297866,-0.416097863905012,3.17078682348492,2.51558917837051,2.54156119222953 +41963,2873.7775650495,456.544602376238,45,64.7209900990099,66.6626198019802,14.6748712871287,-0.532673267326733,1650.0495049505,4156.5495049505,3856.09207920792,20,40,11,32,5305710.0445572,396036.617042837,0,0,0,0,0,0,0,64.7209900990098,10159.1433630363,29.3497425742574,15.7397137011065,16.1933813732538,-0.532673267326733,-0.518033058396876,-0.394311732504192,2.66175414721091,2.11174080786905,2.04211364461628 +41964,2873.78364891089,456.556094851485,45,66.3047425742574,68.2938848514851,15.2823267326733,-0.706435643564356,1688.41584158416,4064.17722772277,3767.93762376237,20,40,11,32,5305721.05606552,396051.136339615,0,0,0,0,0,0,0,66.3047425742573,10177.3431655115,30.5646534653465,16.3912475109761,16.8030325397789,-0.706435643564356,-0.691795434634499,-0.544186446633794,2.41318583509047,1.91453557432113,1.9848455853557 +41965,2873.78986465346,456.567860693069,45,67.8167227722772,69.8512244554455,15.4379504950495,0.341683168316832,1728.41089108911,4006.16336633663,3684.34356435644,20,40,10.980198019802,32,5305732.3057659,396066.000514808,0,0,0,0,0,0,0,67.8167227722771,10195.9777434268,30.875900990099,16.5581636914975,17.0211766707377,0.341683168316832,0.356323377246689,0.277407108331611,2.70177921838404,2.14349527182761,2.09545069946472 +41966,2873.79621574258,456.579868217822,45,69.2958118811881,71.3746862376238,15.6590792079208,0.0957425742574258,1765.13366336634,3874.51089108911,3685.88811881188,20,40,10.960396039604,32,5305743.80079071,396081.170212228,0,0,0,0,0,0,0,69.295811881188,10215.021900495,31.3181584158416,16.7953380123885,17.2945336467755,0.0957425742574258,0.110382783187283,0.0865449642408429,2.82250978814228,2.23927859996965,2.26115385932414 +41967,2873.80268059406,456.592154059406,45,70.7133267326733,72.8347265346535,15.524902640297,-1.00247524752475,1805.30693069307,3774.92079207921,3673.60792079208,20,40,10.970297029703,32,5305755.5003394,396096.690342915,0,0,0,0,0,0,0,70.7133267326732,10234.4723367437,31.0498052805941,16.6514252844011,17.2617866518724,-1.00247524752475,-0.987835038594895,-0.763566944176008,3.29626079920038,2.61513575562354,2.59484092795142 +41968,2873.80926118812,456.604697326733,45,72.138702970297,74.302864059406,16.6747167216832,0.498415841584159,1837.27227722772,3744.14455445544,3581.08118811881,20,40,10.980198019802,32,5305767.40855126,396112.534945054,0,0,0,0,0,0,0,72.1387029702969,10254.3116178768,33.3494334433663,17.8846725201974,18.3210751479719,0.498415841584159,0.513056050514016,0.386316608704251,2.64186097928023,2.09595827793065,2.15253536341833 +41969,2873.81597584158,456.617494455445,45,73.4592178217822,75.6629943564356,17.3293366336634,1.70207920792079,1872.9801980198,3708.59504950495,3483.64059405941,20,40,10.8019801980198,32,5305779.55943787,396128.700185515,0,0,0,0,0,0,0,73.4592178217821,10274.5376677668,34.6586732673267,18.5867931586693,18.9540253615154,1.70207920792079,1.71671941685065,1.33652238820206,2.40538391167785,1.90834580654429,1.92744875107346 +41970,2873.82280089109,456.630518910891,45,74.7527722772277,76.9953554455445,17.8026633663366,2.1050495049505,1901.99504950495,3644.45148514852,3416.95148514851,20,40,10.5148514851485,32,5305791.90976408,396145.152217343,0,0,0,0,0,0,0,74.7527722772276,10295.1242027503,35.6053267326733,19.0944655677549,19.4306315731008,2.1050495049505,2.11968971388035,1.66214146568688,2.349837062868,1.86427691779916,1.77701834251607 +41971,2873.82975247525,456.643754752475,45,75.9650396039604,78.2439907920792,19.0072475247525,4.57594059405941,1932.71782178218,3617.39603960396,3333.63564356436,20,40,10.7326732673267,32,5305804.48978384,396161.871717831,0,0,0,0,0,0,0,75.9650396039603,10316.060530363,38.0144950495049,20.3864571233458,20.5219291934919,4.57594059405941,4.59058080298926,3.61669112875978,2.0455094037777,1.62283420704481,1.63042724379157 +41972,2873.83684138614,456.657176336634,45,77.1362178217821,79.4503043564357,18.9438514851485,4.40326732673267,1962.79207920792,3551.32079207921,3284.2702970297,20,40,10.4158415841584,32,5305817.32006477,396178.827099015,0,0,0,0,0,0,0,77.1362178217821,10337.3270034928,37.887702970297,20.3184609212922,20.5357692532715,4.40326732673267,4.41790753566253,3.47094011563541,2.19048678276288,1.73785408885534,1.77948646745791 +41973,2873.84406079208,456.670758910891,45,78.2400396039604,80.5872407920792,18.6371881188119,4.89217821782178,1813.37128712871,3524.52871287129,3273.01584158416,20,40,10.6732673267327,32,5305830.38850893,396195.987295722,0,0,0,0,0,0,0,78.2400396039603,10358.9068539054,37.2743762376238,19.9895453557438,20.3372594757605,4.89217821782178,4.90681842675164,3.83088526312248,2.59929949876948,2.06219151726568,2.01271326690646 +41974,2873.85139752475,456.684533564356,45,79.3831485148515,81.764642970297,19.3451089108911,4.41653465346535,1727.22772277228,3493.7,3254.94257425743,20,40,10.5940594059406,32,5305843.67002936,396213.390592891,0,0,0,0,0,0,0,79.3831485148513,10380.8028702145,38.6902178217822,20.748834508771,21.005706133091,4.41653465346535,4.4311748623952,3.47498840871044,2.33799055790436,1.85487832327136,1.87113953754332 +41975,2873.85883782178,456.698495049505,45,80.4475742574258,82.8610014851485,19.3330198019802,4.8929702970297,1748.56930693069,3425.30396039604,3192.29603960396,20,40,10.8217821782178,32,5305857.13925312,396231.029991804,0,0,0,0,0,0,0,80.4475742574256,10403.0032309406,38.6660396039604,20.7358681863116,21.0560773151767,4.8929702970297,4.90761050595956,3.83867969250738,2.57042589217053,2.03928422757882,2.04153847550109 +41976,2873.8663629703,456.712641386139,45,81.1630891089109,83.5979817821782,19.1093762376238,4.31138613861386,1756.21287128713,1916.57920792079,1935.99207920792,20,40,10.3861386138614,32,5305870.761564,396248.902399224,0,0,0,0,0,0,0,81.1630891089108,10425.4730985148,38.2187524752475,20.4959965305273,20.9077835719745,4.31138613861386,4.32602634754371,3.37054229407242,2.78639653686945,2.21062763440337,2.20537405890925 +41977,2873.87386891089,456.726856336633,45,80.8758613861386,83.3021372277228,18.7073366336634,3.09871287128713,1746.62376237624,539.561386138614,527.932673267327,20,40,10.6930693069307,32,5305884.34681315,396266.859553118,0,0,0,0,0,0,0,80.8758613861385,10448.0020766501,37.4146732673267,20.0647840081801,20.5500950451259,3.09871287128713,3.11335308021698,2.41543518887725,2.97487102713107,2.36015657295873,2.3737945954594 +41978,2873.88130841584,456.741046138614,45,80.7054059405941,83.1265681188119,18.1985550054455,4.57712871287129,1750.9702970297,2232.75742574257,2240.64752475248,20,40,11,32,5305897.80961861,396284.783083775,0,0,0,0,0,0,0,80.7054059405939,10470.417350605,36.3971100108911,19.5190840147802,20.1062530585399,4.57712871287129,4.59176892180114,3.54667577099794,3.43719766473826,2.72695003817151,2.69359660041357 +41979,2873.88878237624,456.755309108911,45,81.5143366336634,83.9597667326732,19.0682233222772,4.00861386138614,1773.90594059406,3327.67722772277,3164.68811881188,20,40,10.8613861386139,32,5305911.33466433,396302.798820833,0,0,0,0,0,0,0,81.5143366336632,10492.9289455445,38.1364466445545,20.4518574649882,20.8939929005868,4.00861386138614,4.02325407031599,3.12931434520984,2.82580488790173,2.24189281459775,2.30008172987731 +41980,2873.89634138614,456.769725346535,45,82.5175544554455,84.9930810891089,19.6723861386139,3.86960396039604,1791.37128712871,3085.11584158416,2917.67821782178,20,40,10.6633663366337,32,5305925.01387605,396321.0082234,0,0,0,0,0,0,0,82.5175544554454,10515.7128553355,39.3447722772277,21.0998597249013,21.4660622077774,3.86960396039604,3.88424416932589,3.03555495805647,2.5558878548215,2.02775026725102,1.99505749518472 +41981,2873.90396336634,456.784320396039,45,83.1822475247525,85.677714950495,20.5018415841584,3.45188118811881,1805.61881188119,2523.19405940594,2444.42376237624,20,40,10.5247524752475,32,5305938.80578562,396339.442373835,0,0,0,0,0,0,0,83.1822475247523,10538.7386497249,41.0036831683168,21.9895023653888,22.2103354164855,3.45188118811881,3.46652139704867,2.72545568085513,2.08856392792314,1.65699213094495,1.63973404054627 +41982,2873.91167861386,456.798957920792,45,83.6463762376238,86.1557675247525,21.589297029703,2.87782178217822,1814.36138613861,2269.59405940594,2202.36237623762,20,40,10.7623762376238,32,5305952.76956593,396357.932448548,0,0,0,0,0,0,0,83.6463762376237,10561.9155432618,43.1785940594059,23.155866079297,23.1620262253903,2.87782178217822,2.89246199110807,2.29883923776966,1.91303386081413,1.51773283605083,1.52017523013646 +41983,2873.91942732673,456.81367970297,45,83.9922475247524,86.5120149504951,21.0727227722772,3.28019801980198,1821.65346534653,2093.78316831683,2077.5495049505,20,40,10.6534653465347,32,5305966.79350908,396376.528502509,0,0,0,0,0,0,0,83.9922475247523,10585.1995059956,42.1454455445544,22.6018080055901,22.7420218843262,3.28019801980198,3.29483822873183,2.59677398893894,2.06945362053956,1.64183069464359,1.64834466023449 +41984,2873.92718594059,456.828477920792,45,84.2369108910891,86.7640182178218,20.9611188118812,2.51960396039604,1824.66336633663,1906.90792079208,1956.11089108911,20,40,11,32,5305980.83414168,396395.2200074,0,0,0,0,0,0,0,84.236910891089,10608.5703533828,41.9222376237624,22.4821058051296,22.6589856451727,2.51960396039604,2.5342441693259,2.0010688518053,2.24824789350727,1.78367969404679,1.76942920684822 +41985,2873.93499386139,456.843322574258,45,84.4192178217822,86.9517943564357,21.6489900990099,4.61485148514852,1829.58910891089,1822.27128712871,1839.22079207921,20,40,10.990099009901,32,5305994.96512885,396413.970903214,0,0,0,0,0,0,0,84.4192178217821,10631.9977596534,43.2979801980198,23.2198906150117,23.2540922427401,4.61485148514852,4.62949169407837,3.66872420640051,2.1765734098549,1.72681571501618,1.72494124036516 +41986,2873.94275465346,456.858197920792,45,84.5476336633664,87.0840626732673,21.5503861386139,4.78217821782178,1831.93069306931,1804.6495049505,1776.6702970297,20,40,10.980198019802,32,5306009.00819111,396432.758372938,0.782178217821782,0.782178217821782,4150243.79283587,310084.383348874,7.15429433461607,0,0,84.5476336633662,10655.4663033828,43.1007722772277,23.1141317244522,23.1772909588531,4.78217821782178,4.79681842675163,3.79460672633282,2.11675859962838,1.67936077790163,1.69564842558797 +41987,2873.95054970297,456.873051584158,45,84.6552376237624,87.1948947524752,21.428801980198,4.97623762376238,1831.36633663366,1757.97920792079,1759.40198019802,20,40,11,32,5306023.11525472,396451.51988022,1,1,5306021.07359431,396453.183126608,30.0247080316872,0,0,84.6552376237622,10678.9645856435,42.8576039603961,22.9837251398484,23.0789167644376,4.97623762376238,4.99087783269223,3.94370217398257,2.30922572311344,1.8320573292576,1.79379440146869 +41988,2873.95837742574,456.887924950495,45,84.7470594059406,87.2894711881188,21.8592772277228,5.02019801980198,1836.08910891089,1711.4297029703,1717.41386138614,20,40,11,32,5306037.28246008,396470.30692427,1,1,5306035.9246718,396471.413051637,53.5382077562908,0,0,84.7470594059404,10702.4867841584,43.7185544554455,23.4454366614612,23.4510018211143,5.02019801980198,5.03483822873183,3.99200016803106,2.17548670262165,1.72595356025516,1.76211445106978 +41989,2873.96621485149,456.902814257426,45,84.7583267326733,87.3010765346535,21.4414218921782,4.99970297029703,1835.94554455446,1717.43861386139,1677.24851485148,20,40,10.9207920792079,32,5306051.46734262,396489.114054523,1,1,5306050.79263672,396489.66370624,77.0784451022079,0,0,84.7583267326732,10726.0252815181,42.8828437843564,22.9972607816687,23.0957926918525,4.99970297029703,5.01434317922688,3.96309925984422,2.30895335197705,1.83184123971222,1.80676159276957 +41990,2873.97404435643,456.917684752475,45,84.7932871287129,87.3370857425743,21.0813663366337,4.19772277227723,1837.29207920792,1704.27425742574,1653.43564356436,20,40,10.8910891089109,32,5306065.63803362,396507.897396327,1,1,5306065.64329179,396507.893112737,100.59127600898,0,0,84.7932871287128,10749.5798675467,42.1627326732673,22.6110787668571,22.7941678573678,4.19772277227723,4.21236298120708,3.31680625425403,2.18725537418675,1.73529040454053,1.72947857725646 +41991,2873.98187940594,456.932554356436,45,84.836099009901,87.381181980198,21.6086732673267,4.12257425742574,1837.21782178218,1650.34752475248,1658.17326732673,20,40,10.7524752475248,32,5306079.81907507,396526.679719896,1,1,5306080.49757722,396526.12697555,124.109854805104,0,0,84.8360990099009,10773.1448956545,43.2173465346535,23.1766483012896,23.2452433968485,4.12257425742574,4.1372144663556,3.27300782505293,2.1727086491631,1.72374955172154,1.77787439954568 +41992,2873.98977128713,456.947392673267,45,84.8649504950495,87.410899009901,20.9623366336634,4.34663366336634,1839.28712871287,1678.27524752475,1654.71386138614,20,40,11,32,5306094.10614716,396545.424866294,1,1,5306095.37595521,396544.390412357,147.666579018316,0,0,84.8649504950494,10796.7174870462,41.9246732673267,22.4834119948614,22.6956855110449,4.34663366336634,4.36127387229619,3.43168672728219,2.35668522727089,1.86971000719389,1.85294915491668 +41993,2873.99768435644,456.962231584158,45,84.8966039603961,87.4435020792079,20.6458316831683,4.37316831683168,1839.29702970297,1636.32178217822,1633.43663366337,20,40,11,32,5306108.43251355,396564.171363295,1,1,5306110.27066968,396562.673902439,171.249168542318,0,0,84.8966039603959,10820.2955789054,41.2916633663366,22.1439407171716,22.4292485918817,4.37316831683168,4.38780852576154,3.4408133058305,2.4294894105195,1.92747024959297,1.92615839057723 +41994,2874.0055850495,456.977076930693,45,84.901900990099,87.448958019802,20.3078910891089,3.98485148514852,1839.5396039604,1630.9297029703,1664.2801980198,20,40,11,32,5306122.73587105,396582.925372601,1,1,5306125.15988412,396580.950641164,194.823049965261,0,0,84.9019009900989,10843.8816737073,40.6157821782178,21.7814783763167,22.1433128439024,3.98485148514852,3.99949169407837,3.12727335897626,2.58756596665895,2.0528825513703,2.06247906915959 +41995,2874.01346663366,456.99193039604,45,84.9618613861386,87.5107172277228,19.7132596259406,4.2219801980198,1841.29702970297,1587.75445544554,1608.2603960396,20,40,11,32,5306137.00371096,396601.688767472,1,1,5306140.03952592,396599.215629312,218.381775144291,0,0,84.9618613861385,10867.4720710946,39.4265192518812,21.1436990864807,21.6392683235929,4.2219801980198,4.23662040694965,3.29185775146671,3.13842806653591,2.48991689469519,2.4741244925317 +41996,2874.02133861386,457.00679970297,45,84.9854554455446,87.5350191089108,20.0273382838614,3.03881188118812,1841.9801980198,1584.10396039604,1559.31584158416,20,40,11,32,5306151.25346746,396620.471483201,1.10891089108911,1,5306154.92140399,396617.483351285,214.566635642024,0,0,84.9854554455445,10891.0734671067,40.0546765677228,21.4805680142264,21.9107246108539,3.03881188118812,3.05345209011797,2.37704375505691,2.71373371750929,2.15297954507159,2.17950532028771 +41997,2874.02921821782,457.021673168317,45,84.9660891089109,87.5150717821782,20.491495049505,3.04732673267327,1841.25742574257,1603.24257425743,1603.40495049505,20,40,11,32,5306165.51731309,396639.259538761,2,1,5306169.81189634,396635.760605819,14.1448425915329,0,0,84.9660891089108,10914.6788999725,40.9829900990099,21.978405062383,22.3030417534483,3.04732673267327,3.06196694160312,2.40110243324935,2.44710244680437,1.94144380440539,1.91349377781243 +41998,2874.03709831683,457.036552376238,45,85.0069207920792,87.5571284158416,20.4499444444554,2.37168316831683,1841.44059405941,1560.2396039604,1578.77623762376,20,40,11,32,5306179.78200776,396658.054670718,2,1,5306184.70665603,396654.042403853,37.7261488644376,0,0,85.0069207920791,10938.2862022827,40.8998888889109,21.9338394498613,22.2704633631027,2.37168316831683,2.38632337724669,1.86607210615846,2.47188508007803,1.96110546176217,1.9459362198893 +41999,2874.04497138614,457.051448712871,45,85.0028514851485,87.552937029703,20.5189246425743,2.76029702970297,1840.29702970297,1541.74455445545,1562.44455445544,20,40,11,32,5306194.03335911,396676.870812057,2,1,5306199.60638022,396672.330295309,61.315314914043,0,0,85.0028514851484,10961.8967465896,41.0378492851485,22.0078250098157,22.3280973024916,2.76029702970297,2.77493723863283,2.17673575553294,2.57413711776217,2.04222858160088,2.02794860148498 +42000,2874.05283811881,457.066357722772,45,85.0141782178218,87.5646035643564,19.6606936193069,1.5790099009901,1840.51485148515,1555.97524752475,1579.51188118812,20,40,11,32,5306208.27275051,396695.702436011,2,1,5306214.50891445,396690.621635803,84.9089298061296,0,0,85.0141782178217,10985.5104377337,39.3213872386139,21.0873187694997,21.5989473302961,1.5790099009901,1.59365010991995,1.241553046861,3.12243814353837,2.47723106007595,2.43755785768863 +42001,2874.06070277228,457.081275247525,45,85.0348910891089,87.5859378217822,19.3744895490099,2.19386138613861,1842.79207920792,1511.09603960396,1514.21584158416,20,40,11,32,5306222.50816107,396714.544504025,2,1,5306229.41497478,396708.917304215,108.508127188038,0,0,85.0348910891088,11009.1281094059,38.7489790980198,20.7803470735696,21.3571539437192,2.19386138613861,2.20850159506847,1.71181793325921,3.33063962618454,2.64241069081813,2.71844968785027 +42002,2874.06856663366,457.096192871287,45,84.9901683168316,87.5398733663366,20.2056133112871,0.683267326732673,1841.58415841584,1520.90495049505,1506.42079207921,20,40,11,32,5306236.74216268,396733.386575985,2,1,5306244.32047492,396727.212285059,132.10643769042,0,0,84.9901683168316,11032.7443416666,40.4112266225743,21.6717790876891,22.0624225035177,0.683267326732673,0.697907535662531,0.552196302530952,2.68828367936519,2.13278839249386,2.21325649459466 +42003,2874.07643079208,457.111104554456,45,84.9848217821782,87.5343664356436,20.0934669967327,-0.381386138613861,1842.92079207921,1544.53861386139,1563.32376237624,20,40,11,32,5306250.97690738,396752.221165116,2,1,5306259.2226073,396745.503132321,155.699416371851,0,0,84.9848217821781,11056.3534517326,40.1869339934653,21.551495178605,21.9675149647461,-0.381386138613861,-0.366745929684003,-0.278072407942303,2.63992272663891,2.09442053741359,2.04371638923954 +42004,2874.08429475248,457.126013762376,45,84.9919306930693,87.5416886138614,19.5267299230693,1.01663366336634,1840.32673267327,1522.38316831683,1554.83663366337,20,40,11,32,5306265.21140088,396771.052571462,2,1,5306274.1230809,396763.791943591,179.289768871521,0,0,84.9919306930692,11079.962025055,39.0534598461386,20.9436343593358,21.4841346421851,1.01663366336634,1.03127387229619,0.792978458532938,3.17869093347031,2.52186001732967,2.39889883250933 +42005,2874.0921560396,457.140925346535,45,84.9974356435644,87.5473587128713,20.7685049504951,2.07425742574257,1840.9900990099,1539.09702970297,1555.66138613861,20,40,11,32,5306279.44095003,396789.886755984,2,1,5306289.02294232,396782.080003482,202.879152182041,0,0,84.9974356435642,11103.5712293729,41.5370099009901,22.2755154389339,22.5414660891446,2.07425742574257,2.08889763467243,1.64169720261288,2.2718718758536,1.80242211908157,1.91264022222332 +42006,2874.10001762376,457.155839009901,45,85.0072079207921,87.5574241584158,20.3781127612871,3.73732673267327,1837.88118811881,1562.93861386139,1552.82376237624,20,40,11,32,5306293.67106349,396808.723447122,2,1,5306303.92425633,396800.369846279,226.470835225178,0,0,85.007207920792,11127.183689934,40.7562255225742,21.8567954945437,22.2075944521763,3.73732673267327,3.75196694160312,2.94039650348752,2.67695044283346,2.123797006834,2.06644950373731 +42007,2874.10788633663,457.170742574257,45,85.0025049504951,87.5525800990099,20.3494356435644,3.49564356435644,1841.29207920792,1517.76633663366,1548.26237623762,20,40,11,32,5306307.91466716,396827.547702191,1.02970297029703,0.514851485148515,2731964.24730456,204300.367893617,125.767525652073,0,0,85.0025049504949,11150.7962823982,40.6988712871287,21.8260374991993,22.183131046866,3.49564356435644,3.51028377328629,2.74861753380172,2.65556067845051,2.10682713064709,2.09702843692706 +42008,2874.11574524752,457.185650792079,45,85.0107524752475,87.5610750495049,20.3767920792079,3.31594059405941,1840.89603960396,1544.93465346535,1569.25643564356,20,40,11,32,5306322.14007093,396846.377335825,0,0,0,0,0,0,0,85.0107524752474,11174.4046283003,40.7535841584158,21.8553789807351,22.2071320572116,3.31594059405941,3.33058080298926,2.60379420856849,2.58525514207726,2.05104922556368,2.09893631230539 +42009,2874.12360079208,457.200564653466,45,85.0035544554455,87.5536610891089,20.0776617162376,2.64683168316832,1840.08415841584,1543.36237623762,1564.14653465347,20,40,11,32,5306336.35917383,396865.213794483,0,0,0,0,0,0,0,85.0035544554454,11198.0128490649,40.1553234324753,21.5345430306038,21.9529849190422,2.64683168316832,2.66147189209817,2.08194539663358,2.82488856420955,2.24116583606143,2.18100727017963 +42010,2874.13144960396,457.215489504951,45,84.996702970297,87.546604059406,19.9670346534653,1.45811881188119,1840.10396039604,1520.62178217822,1531.60099009901,20,40,11,32,5306350.56562129,396884.063626213,0,0,0,0,0,0,0,84.9967029702969,11221.6266964521,39.9340693069307,21.4158886137057,21.8596783274249,1.45811881188119,1.47275902081105,1.14931086717885,2.82900047987197,2.24442808329488,2.27516918920822 +42011,2874.13929009901,457.23042059406,45,85.0045247524752,87.5546604950495,20.013198019802,2.15613861386139,1841.63861386139,1530.21782178218,1552.96732673267,20,40,11,32,5306364.75658482,396902.920859057,0,0,0,0,0,0,0,85.0045247524751,11245.2383355061,40.026396039604,21.4654017000831,21.8995298133287,2.15613861386139,2.17077882279124,1.69463524743386,2.74349197749953,2.17658868720757,2.15971121662591 +42012,2874.14712653465,457.245361287129,45,85.0152475247525,87.565704950495,20.522198019802,2.47425742574257,1841.58910891089,1546.32871287129,1547.39702970297,20,40,11,32,5306378.9398758,396921.789826986,0,0,0,0,0,0,0,85.0152475247523,11268.8512934819,41.044396039604,22.011335910824,22.3342916549222,2.47425742574257,2.48889763467243,1.95106878803895,2.29920023949401,1.82410346811683,1.92636106287789 +42013,2874.15495960396,457.260304257426,45,85.0375247524752,87.5886504950495,19.6062145211881,2.02782178217822,1842.64851485149,1493.47722772277,1511.1504950495,20,40,11,32,5306393.11694115,396940.66142704,0,0,0,0,0,0,0,85.0375247524752,11292.4718839109,39.2124290423762,21.0288865427151,21.5549153091305,2.02782178217822,2.04246199110807,1.58434933517843,3.10370293525302,2.46236721402107,2.35435077073244 +42014,2874.16278188119,457.275262277228,45,85.074396039604,87.6266279207921,20.4694653465347,2.01158415841584,1843.62871287129,1477.66237623762,1499.2,20,40,11,32,5306407.27374176,396959.551322187,0,0,0,0,0,0,0,85.0743960396038,11316.099660066,40.9389306930693,21.9547768334951,22.2892478009536,2.01158415841584,2.0262243673457,1.59398023445432,2.63539135589082,2.0908255094752,2.04526474956023 +42015,2874.17061831683,457.290231287128,45,85.1213663366336,87.6750073267327,21.1027524752475,1.61554455445545,1844.86138613861,1472.79900990099,1467.97722772277,20,40,11,32,5306421.45658502,396978.455281514,0,0,0,0,0,0,0,85.1213663366336,11339.7389657866,42.2055049504951,22.6340167328786,22.8328136062496,1.61554455445545,1.6301847633853,1.27598500452546,2.2251468518292,1.76535215148731,1.79652886326289 +42016,2874.17845732673,457.305195643564,45,85.1309405940594,87.6848688118812,21.5034752475248,0.267128712871287,1843.75247524752,1405.72079207921,1397.06138613861,20,40,11,32,5306435.64436106,396997.353436737,0,0,0,0,0,0,0,85.1309405940593,11363.3829522552,43.0069504950495,23.0638168712069,23.1747620095467,0.267128712871287,0.281768921801145,0.225976869114964,1.98008254239038,1.57092686869534,1.59874159662825 +42017,2874.18629712871,457.320152079208,45,85.0843267326733,87.6368565346535,21.6619603960396,0.457029702970297,1842.14851485149,1386.19702970297,1382.26732673267,20,40,11,32,5306449.83384125,397016.241659303,0,0,0,0,0,0,0,85.0843267326732,11387.0237356436,43.3239207920792,23.2338020666266,23.3082080470708,0.457029702970297,0.471669911900154,0.371903774098662,1.73132145710871,1.37356869579663,1.42718413723675 +42018,2874.19413247525,457.335105544554,45,85.0596831683169,87.6114736633663,21.9607128712871,0.325346534653465,1839.84158415842,1415.50099009901,1413.04059405941,20,40,11,32,5306464.01519523,397035.125941868,0,0,0,0,0,0,0,85.0596831683168,11410.6552388889,43.9214257425743,23.5542327086328,23.5598849565745,0.325346534653465,0.339986743583323,0.2660663277494,1.89275230226704,1.50164217084948,1.47169446026561 +42019,2874.20195960396,457.350065742574,45,85.0572178217822,87.6089343564357,20.2571705171287,-0.441089108910891,1843.0198019802,1428.59504950495,1432.34356435644,20,40,11,32,5306478.1812381,397054.018245646,0,0,0,0,0,0,0,85.0572178217821,11434.2840533554,40.5143410342574,21.7270774029722,22.1092236168749,-0.441089108910891,-0.426448899981034,-0.328698794215333,2.71477451978634,2.15380528047757,2.18575697020192 +42020,2874.20978168317,457.365032871287,45,85.0388415841584,87.5900068316832,19.1599196918812,-1.45445544554455,1841.74752475248,1406.23366336634,1397.2297029703,20,40,11,32,5306492.33783435,397072.918922064,0,0,0,0,0,0,0,85.0388415841583,11457.9121890539,38.3198393837624,20.5502075340797,21.1765212142207,-1.45445544554455,-1.4398152366147,-1.10285347669629,3.4302904420884,2.72147009406998,2.64398563046984 +42021,2874.21759970297,457.380001881188,45,85.0413168316832,87.5925563366337,19.5691853685148,-0.293366336633663,1840.84158415842,1423.64950495049,1421.75643564356,20,40,11,32,5306506.48693025,397091.821714519,0,0,0,0,0,0,0,85.041316831683,11481.5345688394,39.1383707370297,20.9891704695538,21.5239151511895,-0.293366336633663,-0.278726127703806,-0.206212561389792,3.23090738852567,2.5632866904498,2.59827117252677 +42022,2874.2254119802,457.394974653465,45,85.0544356435643,87.6060687128713,18.8742739275248,-0.434257425742574,1841.5396039604,1444.72673267327,1439.57425742574,20,40,11,32,5306520.62536625,397110.728910542,0,0,0,0,0,0,0,85.0544356435643,11505.1563992574,37.7485478550495,20.2438346560533,20.9323455139095,-0.434257425742574,-0.419617216812717,-0.325243018907943,3.7996220688313,3.01448463436736,3.00807356706823 +42023,2874.23321485149,457.409963663366,45,85.0584158415841,87.6101683168317,19.1658454344554,0.560495049504951,1840.79702970297,1408.75544554455,1404.35544554455,20,40,11,32,5306534.74607949,397129.655927502,0,0,0,0,0,0,0,85.0584158415841,11528.781115154,38.3316908689109,20.5565632621648,21.1818722020584,0.560495049504951,0.575135258434808,0.44592903821475,3.474933932116,2.75688864682992,2.78321564909041 +42024,2874.24102267327,457.424951188119,45,85.0804158415842,87.6328283168317,18.6782062711881,2.5019801980198,1842.16336633663,1414.81584158416,1390.64653465347,20,40,11,32,5306548.87605678,397148.581165296,0,0,0,0,0,0,0,85.0804158415841,11552.4090286029,37.3564125423763,20.0335398796015,20.766672589707,2.5019801980198,2.51662040694966,1.93197584771035,3.99166021644527,3.1668408515668,3.08456924132466 +42025,2874.2488370297,457.439936039604,45,85.0718415841584,87.6239968316832,19.1694801980198,1.87762376237624,1843.20297029703,1396.59207920792,1379.38415841584,20,40,11,32,5306563.01825889,397167.50319633,0,0,0,0,0,0,0,85.0718415841583,11576.0406540429,38.3389603960396,20.5604617725336,21.1852641976246,1.87762376237624,1.89226397130609,1.46564525604398,3.5127325402116,2.78687671439047,2.83889478304911 +42026,2874.25665128713,457.454931485149,45,85.0832376237624,87.6357347524753,18.7999108909901,0.412178217821782,1841.5099009901,1360.71287128713,1354.07821782178,20,40,11,32,5306577.16010347,397186.43832626,0,0,0,0,0,0,0,85.0832376237623,11599.6786058031,37.5998217819802,20.1640756665467,20.8714764894101,0.412178217821782,0.42681842675164,0.328752483021743,3.83981813355685,3.04637475851185,3.02434730168776 +42027,2874.26447316831,457.469926138614,45,85.1006435643565,87.6536628712871,19.0963558856436,2.13524752475248,1841.14851485149,1356.59207920792,1350.92871287129,20,40,11,32,5306591.31614858,397205.372628236,0,0,0,0,0,0,0,85.1006435643564,11623.3119573983,38.1927117712871,20.4820313918596,21.1253436933975,2.13524752475248,2.14988773368233,1.65630617194683,3.55323726365904,2.81901171735648,2.83309116502106 +42028,2874.27227445545,457.48491990099,45,85.0417821782178,87.5930356435643,19.1578751377228,2.27574257425743,1843.16831683168,1379.08217821782,1363.3801980198,20,40,11,32,5306605.43412722,397224.30504769,0,0,0,0,0,0,0,85.0417821782177,11646.9431721948,38.3157502754455,20.5480146223689,21.1725889628431,2.27574257425743,2.29038278318728,1.77348163479524,3.58140451651345,2.8413586111748,2.76927761882049 +42029,2874.2800780198,457.499924653465,45,85.0369801980198,87.5880896039604,20.5153366336634,1.38594059405941,1839.83168316832,1359.54356435644,1364.3,20,40,11,32,5306619.55614136,397243.251137705,0,0,0,0,0,0,0,85.0369801980197,11670.5680380639,41.0306732673267,22.0039766467255,22.3270540796506,1.38594059405941,1.40058080298926,1.10841586150951,2.50752476353822,1.9893807155159,2.07176693419016 +42030,2874.28786207921,457.514924059406,45,85.0139702970297,87.5643894059406,20.5537722772277,1.78891089108911,1842.82673267327,1376.81485148515,1369.09405940594,20,40,11,32,5306633.64220531,397262.189832235,0,0,0,0,0,0,0,85.0139702970296,11694.1873616887,41.1075445544554,22.0452012689919,22.3584711714809,1.78891089108911,1.80355110001897,1.41421766153049,2.47848423627457,1.96634099692695,1.94331984870467 +42031,2874.29564485149,457.529901980198,45,84.7030792079208,87.2441715841584,19.929801980297,3.92653465346535,1828.44059405941,384.334653465347,397.558415841584,20,40,11,32,5306647.72642262,397281.101631784,0,0,0,0,0,0,0,84.7030792079207,11717.7794163092,39.8596039605941,21.3759542521341,21.8087756439329,3.92653465346535,3.9411748623952,3.07253706493672,2.94577506575632,2.33707287492313,2.2875619352224 +42032,2874.30338920792,457.544784455445,45,84.049504950495,86.5709900990099,19.6564653465347,-0.252673267326733,1813.96534653465,296.963366336634,293.233663366337,20,40,11,32,5306661.74165758,397299.893194476,0,0,0,0,0,0,0,84.0495049504949,11741.2158466997,39.3129306930693,21.0827836835297,21.5426183886871,-0.252673267326733,-0.238033058396875,-0.177702529951809,2.73563581167875,2.17035588543867,2.24924541026901 +42033,2874.31108287129,457.559512772277,45,83.3663168316832,85.8673063366337,19.1530517052475,2.51485148514852,1796.49504950495,-46.680198019802,-31.9237623762377,20,40,11,32,5306675.66646889,397318.49099027,0,0,0,0,0,0,0,83.3663168316831,11764.4633277779,38.3061034104951,20.5428411905389,21.07328878825,2.51485148514852,2.52949169407837,1.96579677244766,3.12389935186058,2.47839033064421,2.43903593917677 +42034,2874.31872,457.574070693069,45,82.3576138613861,84.8283422772277,18.9047574256436,-0.365049504950495,1776.14851485149,-233.888118811881,-147.920792079208,20,40,11,32,5306689.49039394,397336.874605041,0,0,0,0,0,0,0,82.357613861386,11787.4763259077,37.8095148512871,20.2765301069101,20.8038573380686,-0.365049504950495,-0.350409296020638,-0.279071607956501,3.12163801826193,2.47659626921842,2.4809384425471 +42035,2874.32625089109,457.588442475247,45,80.9068811881188,83.3340876237623,18.0269741474258,0.878118811881188,1735.66831683168,-2382.30891089109,-2063.96336633663,20,40,11,32,5306703.12171244,397355.022796018,0,0,0,0,0,0,0,80.9068811881187,11810.1809119088,36.0539482948515,19.3350528550527,19.9752243582504,0.878118811881188,0.892759020811046,0.687478503232872,3.49612989256756,2.77370476588977,2.7871634912662 +42036,2874.33358495049,457.602471287129,45,78.4624158415842,80.8162883168317,17.2322502747525,-1.56623762376238,1681.08910891089,-3312.22277227723,-2813.66336633663,20,40,11,32,5306716.39608527,397372.737249237,0,0,0,0,0,0,0,78.4624158415841,11832.3240294005,34.4645005495049,18.4826619902495,19.1572280845508,-1.56623762376238,-1.55159741483252,-1.19438442143488,3.68729991803247,2.92537224593808,2.94847707304919 +42037,2874.3406749505,457.616048712871,45,75.7879108910891,78.0615482178218,16.6644543451485,1.72465346534653,1623.88118811881,-3397.08712871287,-2942.26435643565,20,40,11,32,5306729.22842811,397389.881384409,0,0,0,0,0,0,0,75.787910891089,11853.7445281354,33.328908690297,17.8736654820172,18.5220174158744,1.72465346534653,1.73929367427639,1.33017192312256,3.50345470305585,2.77951600928887,2.72062591965108 +42038,2874.34753405941,457.629136831683,45,73.0901782178218,75.2828835643564,16.859802530297,1.7449504950495,1566.69306930693,-3382.3801980198,-3017.17425742574,20,40,11,32,5306741.64396815,397406.408413282,0,0,0,0,0,0,0,73.0901782178216,11874.4194577558,33.7196050605941,18.0831885807966,18.5352237095901,1.7449504950495,1.75959070397936,1.36235185504768,2.58622194819451,2.05181625505558,2.14844460230954 +42039,2874.3541739604,457.641728811881,45,70.4178712871287,72.5304074257426,15.635603410297,0.708118811881188,1498.24752475248,-3406.45643564356,-2983.61089108911,20,40,11,32,5306753.66449279,397422.310219516,0,0,0,0,0,0,0,70.4178712871286,11894.3442742025,31.2712068205941,16.770158756893,17.339626569021,0.708118811881188,0.722759020811046,0.554747189824506,3.08037034147372,2.44385596628288,2.38182961065554 +42040,2874.36056742574,457.653837722772,45,67.7262574257426,69.7580451485148,14.8778646865347,1.02871287128713,1452.36138613861,-3379.20891089109,-2966.56237623762,20,40,11,32,5306765.23927232,397437.602191249,0,0,0,0,0,0,0,67.7262574257425,11913.5248533279,29.7557293730693,15.9574367684744,16.5395847540892,1.02871287128713,1.04335308021699,0.800076622308846,3.16494992742932,2.51095839321523,2.52135277985775 +42041,2874.36672267327,457.665472079208,45,65.0454257425743,66.9967885148515,13.609501650198,-1.23405940594059,1413.42574257426,-3656.43564356436,-3188.30693069307,20,40,11,32,5306776.38333575,397452.29521133,0,0,0,0,0,0,0,65.0454257425742,11931.9643163092,27.219003300396,14.5970383928843,15.3070318602399,-1.23405940594059,-1.21941919701074,-0.92675400632249,3.687824890382,2.92578874027684,2.89790728473342 +42042,2874.37261970297,457.676605049505,45,62.0919702970297,63.9547294059406,12.936602860198,1.31376237623762,1544.65346534653,-4074.71683168317,-3555.32673267327,20,40,11,32,5306787.06022557,397466.355209935,0,0,0,0,0,0,0,62.0919702970296,11949.6282103686,25.873205720396,13.8753125189605,14.5648497407155,1.31376237623762,1.32840258516748,1.0033538706624,3.58223456505812,2.84201714208613,2.79256402128416 +42043,2874.37824980198,457.687206138614,45,59.114,60.88742,12.9225643564356,2.93118811881188,1489.67326732673,-3214.86534653465,-2782.48712871287,20,40,11,32,5306797.25447291,397479.743926456,0,0,0,0,0,0,0,59.1139999999999,11966.4562751376,25.8451287128713,13.8602553490755,14.3821088755232,2.93118811881188,2.94582832774174,2.2618796570345,2.83888087590225,2.25226683711701,2.23878552775098 +42044,2874.38366534653,457.697384554455,45,57.6046831683169,59.3328236633663,13.1594158415842,3.7590099009901,1457.36138613861,0.882178217821727,32.1138613861387,20,40,11,32,5306807.06067542,397492.599106823,0,0,0,0,0,0,0,57.6046831683168,11982.6181219473,26.3188316831683,14.1142933227638,14.4965689791384,3.7590099009901,3.77365010991995,2.90969239220088,2.28453827408284,1.81247118768449,1.84751838390705 +42045,2874.38900138614,457.70741009901,45,57.0892673267327,58.8019453465346,12.868702970297,2.43356435643564,1443.10891089109,325.406930693069,344.528712871287,20,40,11,32,5306816.72301803,397505.261230598,0,0,0,0,0,0,0,57.0892673267326,11998.5378028053,25.7374059405941,13.8024856568731,14.2202681327667,2.43356435643564,2.4482045653655,1.89252432907124,2.40055665701995,1.90451603486468,1.92860697827636 +42046,2874.39428920792,457.717348514851,45,56.543693069307,58.2400038613862,13.0308118811881,1.6309900990099,1429.87128712871,323.493069306931,354.134653465347,20,40,11,32,5306826.29799953,397517.813209427,0,0,0,0,0,0,0,56.5436930693068,12014.3199264577,26.0616237623762,13.976357563202,14.3268170579009,1.6309900990099,1.64563030793976,1.2842283880972,2.14401418061956,1.70098438377881,1.76166161134483 +42047,2874.39951831683,457.727201287129,45,56.0532079207921,57.7348041584158,11.8204097908911,1.77445544554455,1416.76237623762,328.89603960396,357.507920792079,20,40,11,32,5306835.76614588,397530.256548811,0,0,0,0,0,0,0,56.053207920792,12029.9545646315,23.6408195817822,12.6781259132109,13.2691292986848,1.77445544554455,1.78909565447441,1.35268678403054,3.13782171976212,2.48943584079046,2.34619903155658 +42048,2874.40469108911,457.736970495049,45,55.4825841584159,57.1470616831683,12.905099009901,5.31554455445545,1403.06435643564,329.40297029703,360.280198019802,20,40,11,32,5306845.13181202,397542.593917726,0,0,0,0,0,0,0,55.4825841584158,12045.4467657316,25.810198019802,13.8415226768246,14.1561297459596,5.31554455445545,5.3301847633853,4.1397986194681,2.21469341569685,1.7570587680859,1.81650712271211 +42049,2874.40980138614,457.746660693069,45,54.9841584158416,56.6336831683168,13.7636534653465,5.02306930693069,1389.43069306931,319.637623762376,367.485148514851,20,40,11,32,5306854.3835257,397554.830787797,0,0,0,0,0,0,0,54.9841584158415,12060.7922536304,27.5273069306931,14.7623758183015,14.8587171028155,5.02306930693069,5.03770951586055,3.97203407775749,1.58302689208803,1.2559170768943,1.31967199339021 +42050,2874.4148439604,457.756271782178,45,54.4502574257425,56.0837651485148,12.8762178217822,5.37405940594059,1377.76732673267,308.028712871287,381.028712871287,20,40,11,32,5306863.51156825,397566.966864326,0,0,0,0,0,0,0,54.4502574257425,12075.9844800055,25.7524356435644,13.8105458032668,14.0724125800305,5.37405940594059,5.38869961487045,4.2000761165439,1.97665934917739,1.56821102928971,1.54431658573997 +42051,2874.41981594059,457.765810594059,45,53.7886039603961,55.402262079208,13.1591386138614,5.21831683168317,1352.72772277228,-883.822772277228,-560.753465346535,20,40,11,32,5306872.51046935,397579.010562694,0,0,0,0,0,0,0,53.788603960396,12091.0270580583,26.3182772277228,14.1139959787599,14.2756443583353,5.21831683168317,5.23295704061302,4.1043982579763,1.75756360221,1.39438827778338,1.40773371807384 +42052,2874.42465029703,457.775130792079,45,51.549702970297,53.0961940594059,13.4648316831683,5.4360396039604,1289.73762376238,-3842.18415841584,-3038.00495049505,20,40,11,32,5306881.25930148,397590.777424576,0,0,0,0,0,0,0,51.5497029702969,12105.6998015677,26.9296633663366,14.4418708402943,14.4069181494723,5.4360396039604,5.45067981289025,4.32985757076969,1.53622626964959,1.21878713221459,1.21881241740438 +42053,2874.42920732673,457.783995247525,45,48.5387425742574,49.9949048514852,12.2250891089109,5.45930693069307,1216.42574257426,-3579.46633663366,-2853.14257425743,20,40,11,32,5306889.5045268,397601.967526916,0,0,0,0,0,0,0,48.5387425742573,12119.5919340484,24.4501782178218,13.1121696933412,13.1797327498229,5.45930693069307,5.47394713962292,4.31882191525274,1.52975218458909,1.21365082402843,1.20314344234004 +42054,2874.43350960396,457.79238990099,45,45.9622079207921,47.3410741584158,11.658297029703,5.49693069306931,1153.05445544554,-3237.14851485149,-2595.73861386139,20,40,11,32,5306897.28826816,397612.564106935,0,0,0,0,0,0,0,45.962207920792,12132.710179373,23.3165940594059,12.5042498771986,12.5498974860388,5.49693069306931,5.51157090199916,4.3545339632264,1.37257167250698,1.08894941164842,1.10418127173896 +42055,2874.43754871287,457.80033029703,45,43.1231287128713,44.4168225742574,10.8466534653465,5.4760396039604,1184.02475247525,-4446.04554455446,-3645.35247524753,20,40,11,32,5306904.5945897,397622.586252902,0,0,0,0,0,0,0,43.1231287128712,12145.0986316832,21.6933069306931,11.633711588967,11.6968963977588,5.4760396039604,5.49067981289025,4.33159801841808,1.33886264956559,1.06220587509253,1.06253400901749 +42056,2874.44126168317,457.80775,45,39.8468514851485,41.042257029703,10.6261089108911,5.5,1389.85643564356,-3598.33663366337,-2882.8099009901,20,40,11,32,5306911.30831388,397631.94915757,0,0,0,0,0,0,0,39.8468514851485,12156.6087472498,21.2522178217822,11.3971638143701,11.3216152426039,5.5,5.51464020892985,4.39674499915784,1.3036801359201,1.03429332356464,1.03408799187148 +42057,2874.44466950495,457.814673861386,45,37.0416732673267,38.1529234653465,9.14467326732673,5.5,1289.91584158416,-3578.66831683168,-2786.96237623762,20,40,11,32,5306917.46776932,397640.684467145,0,0,0,0,0,0,0,37.0416732673267,12167.2908360011,18.2893465346535,9.80823179308762,9.90067764603171,5.5,5.51464020892985,4.33419950054194,1.19712076334494,0.949752917846224,0.944857190871359 +42058,2874.44769722772,457.821084950495,45,34.0938811881188,35.1166976237624,8.78187128712871,5.5,1190.67821782178,-3622.73267326733,-2736.7603960396,20,40,11,32,5306922.93449295,397648.768636746,0,0,0,0,0,0,0,34.0938811881188,12177.1588412541,17.5637425742574,9.41910406673271,9.42324226359155,5.5,5.51464020892985,4.36882276207738,1.08388287062877,0.859914012440033,0.862445956995404 +42059,2874.45016336634,457.827152970297,45,30.9268613861386,31.8546672277228,7.83219801980198,5.5,1139.16831683168,-4728.73069306931,-3621.28415841584,20,40,10.5742574257426,32,5306927.36855881,397656.407062461,0,0,0,0,0,0,0,30.9268613861386,12186.1965101485,15.664396039604,8.40052032280389,8.43398441124929,5.5,5.51464020892985,4.35299596164459,1.11957172700931,0.888228278234986,0.862267285913481 +42060,2874.45203990099,457.832897623763,45,27.6127128712871,28.4410942574257,7.33740594059406,5.5,1362.30198019802,-3554.71683168317,-2621.20198019802,20,40,10.8217821782178,32,5306930.71762748,397663.623367528,0,0,0,0,0,0,0,27.6127128712871,12194.3079180693,14.6748118811881,7.86982499226709,7.82327938233136,5.5,5.51464020892985,4.39446679445944,0.897737669852191,0.712233049087056,0.758164880113988 +42061,2874.45323891089,457.838563465347,45,24.946396039604,25.6947879207921,7.50614851485148,5.5,1350.0396039604,-3208.77128712871,-2420.33267326733,20,40,10.8613861386139,32,5306932.81343464,397670.719246308,0,0,0,0,0,0,0,24.9463960396039,12201.6011624588,15.012297029703,8.05081191583412,7.81418829173588,5.5,5.51464020892985,4.4919748171129,1.35611689878001,1.07589478103954,1.05464085860994 +42062,2874.4537470297,457.843725049505,45,22.9521386138614,23.6407027722772,6.98525742574257,5.5,1527,-1692.9495049505,-1225.33762376238,20,40,11,32,5306933.64061936,397677.164396477,0,0,0,0,0,0,0,22.9521386138614,12208.2194966997,13.9705148514851,7.49212377120808,7.2568586032725,5.5,5.51464020892985,4.50073526621072,1.31534424412259,1.0435472110074,1.03252388891102 +42063,2874.45390485149,457.848768118812,45,21.7382079207921,22.3903541584159,6.6529702970297,5.5,1475.14356435644,-988.523762376238,-678.987128712871,20,40,11,32,5306933.82155727,397683.450432473,0,0,0,0,0,0,0,21.7382079207921,12214.4253435644,13.3059405940594,7.13572512414869,6.90466251502177,5.5,5.51464020892985,4.5046943554092,1.28719314940601,1.02121313647934,1.10522316440828 +42064,2874.45407930693,457.853645841584,45,20.8254752475248,21.4502395049505,7.29357425742574,5.5,1392.93564356436,-508.332673267327,-266.70099009901,20,40,11,32,5306934.03696555,397689.531084747,0,0,0,0,0,0,0,20.8254752475247,12220.3204298405,14.5871485148515,7.82281278135168,7.39743878008646,5.5,5.51464020892985,4.60219193416806,2.14232448525955,1.69964383974384,1.59759855486707 +42065,2874.4546060396,457.858206336634,45,19.8978415841584,20.4947768316832,6.39853465346534,5.5,1298.07425742574,-107.355445544554,-301.59603960396,20,40,11,32,5306934.91192682,397695.22821998,0,0,0,0,0,0,0,19.8978415841584,12225.9824472222,12.7970693069307,6.86282704506487,6.58284107336206,5.5,5.51464020892985,4.54018597931521,1.47506044189417,1.1702603459772,1.17644645470831 +42066,2874.45559514852,457.862233960396,45,18.6154158415842,19.1738783168317,5.97455445544554,5.5,1191.56930693069,-9.5990099009901,-266.386138613861,20,40,10.8316831683168,32,5306936.65514428,397700.276881686,0,0,0,0,0,0,0,18.6154158415841,12231.33762456,11.9491089108911,6.40808186868822,6.14871250095298,5.5,5.51464020892985,4.53859181966821,1.37183479718008,1.08836480104501,1.1016812862888 +42067,2874.45693772277,457.86547039604,45,17.3905049504951,17.9122200990099,5.292,5.5,1092.77722772277,4.07029702970297,-244.557425742574,20,40,10.9405940594059,32,5306939.07058032,397704.35177249,0,0,0,0,0,0,0,17.390504950495,12236.3338808581,10.584,5.67599969202543,5.49788314606953,5.5,5.51464020892985,4.49912086077177,1.00613009555553,0.798227733780796,0.793477906672343 +42068,2874.45865019802,457.868041881188,45,16.3427722772277,16.8330554455446,4.10148514851485,5.5,1011.75247524752,-14.7138613861386,-278.787128712871,20,40,10.8019801980198,32,5306942.18588955,397707.610653569,0,0,0,0,0,0,0,16.3427722772277,12241.0068632838,8.2029702970297,4.39909834463665,4.42505725959232,5.5,5.51464020892985,4.34414205040821,0.580734433349854,0.460733987293539,0.477889920988906 +42069,2874.46056445545,457.870099405941,45,15.3424752475248,15.8027495049505,3.64538613861386,5.5,954.564356435644,-14.9564356435644,-256.505940594059,20,40,11,32,5306945.68632159,397710.236052222,0,0,0,0,0,0,0,15.3424752475247,12245.404700275,7.29077227722772,3.90990374151286,3.97976230321762,5.5,5.51464020892985,4.29842786010807,0.614219913420731,0.48730017290871,0.479288935902709 +42070,2874.46264019802,457.871588910891,45,15.4316633663366,15.8946132673267,3.18274257425742,5.5,970.430693069307,2626.35940594059,2345.04356435644,20,40,10.9009900990099,32,5306949.49842529,397712.159317917,0,0,0,0,0,0,0,15.4316633663366,12249.6283507976,6.36548514851485,3.41368969600933,3.5913062296592,5.5,5.51464020892985,4.16898348186141,0.985241738843231,0.781655656556868,0.839352001724391 +42071,2874.46497316832,457.872327326733,45,16.6236336633663,17.1223426732673,2.32144554455446,5.5,987.767326732673,2209.46435643564,1949.23366336634,20,40,11,32,5306953.8035913,397713.155595016,0,0,0,0,0,0,0,16.6236336633663,12254.0961289329,4.64289108910891,2.4898949727787,2.92695706216352,5.5,5.51464020892985,3.79183047282709,2.15331282030183,1.70836159286301,1.70766395299149 +42072,2874.46747495049,457.87226960396,45,17.0531881188119,17.5647837623762,1.32371287128713,4.31673267326733,783.277227722772,798.037623762377,601.297029702971,20,40,11,32,5306958.43903712,397713.165875083,0,0,0,0,0,0,0,17.0531881188119,12258.7998226348,2.64742574257426,1.41976452187374,2.10317777762612,4.31673267326733,4.33137288219718,2.48988008101957,3.32709811895752,2.63960098529349,2.56267809719101 +42073,2874.46995524752,457.87151950495,45,16.8878712871287,17.3945074257426,1.14708910891089,-0.264752475247525,768.059405940594,1028.62277227723,857.812871287129,20,40,11,32,5306963.04997503,397712.313139611,0,0,0,0,0,0,0,16.8878712871287,12263.5038243399,2.29417821782178,1.23032453305063,1.94376795056788,-0.264752475247525,-0.250112266317668,-0.0287497734161628,3.46749434525929,2.75098634395365,2.76762724110107 +42074,2874.47212534654,457.869678217822,45,17.4052871287129,17.9274457425743,1.55111881188119,-5.5,787.747524752475,2552.63267326733,2270.3900990099,20,40,11,32,5306967.11041607,397710.091213473,0,0,0,0,0,0,0,17.4052871287128,12268.2523827008,3.10223762376238,1.66367156056925,2.31671958268818,-5.5,-5.48535979107015,-3.2224786899387,3.18382255971518,2.52593126657084,2.46077802313366 +42075,2874.47394950495,457.866957623762,45,18.4625544554455,19.0164310891089,3.39036633663366,-5.5,820.60396039604,3202.67326732673,2823.10495049505,20,40,10.8514851485149,32,5306970.54947483,397706.762808822,0,0,0,0,0,0,0,18.4625544554455,12273.2305326183,6.78073267326733,3.63637911613493,3.94155439531597,-5.5,-5.48535979107015,-4.03737887029125,1.55440219190244,1.23320726067845,1.29017830828935 +42076,2874.47524128713,457.863337029703,45,19.3862475247525,19.967834950495,4.55824752475248,-5.5,859.688118811881,3774.35247524753,3309.81782178218,20,40,11,32,5306973.02226653,397702.296030471,0,0,0,0,0,0,0,19.3862475247524,12278.4939071232,9.11649504950495,4.88900444948426,4.98795249037137,-5.5,-5.48535979107015,-4.26309466530787,0.844151135824773,0.669719404174909,0.705363032355089 +42077,2874.47575772277,457.859002178218,69.950495049505,20.4936732673267,21.1084834653465,6.25397029702971,-5.5,914.633663366337,4702.69504950495,4079.76732673267,20,40,10.8217821782178,32,5306974.07462577,397696.914225871,0,0,0,0,0,0,0,20.4936732673267,12284.017930143,12.5079405940594,6.70777276641662,6.49400109740498,-5.5,-5.48535979107015,-4.47465279414264,1.22229742052184,0.969727179714811,0.969485519446075 +42078,2874.47526019802,457.854361287129,200.049504950495,21.9479603960396,22.6063992079208,7.54987128712871,-5.5,989.138613861386,5000.17128712871,4322.87128712871,20,40,11,32,5306973.25554233,397691.11796069,0,0,0,0,0,0,0,21.9479603960396,12289.9219925193,15.0997425742574,8.09770731303367,7.67979458750756,-5.5,-5.48535979107015,-4.56505860327895,2.11588165758974,1.67866504336466,1.66437193418422 +42079,2874.47391059406,457.849887227723,225,22.915198019802,23.602653960396,8.04785148514851,-5.5,881.049504950495,5083.15148514851,4394.39306930693,20,40,10.4950495049505,32,5306970.85443227,397685.501477623,0,0,0,0,0,0,0,22.9151980198019,12296.1636609736,16.095702970297,8.63182209961628,8.15884734089136,-5.5,-5.48535979107015,-4.57771925423726,2.38483539742909,1.89204334821031,1.92062479069626 +42080,2874.47205633663,457.845595247525,225,24.183396039604,24.9088979207921,9.27079207920792,-5.5,829.014851485148,5510.98415841584,4764.2396039604,20,40,11,32,5306967.51451161,397680.095176974,0,0,0,0,0,0,0,24.1833960396039,12302.6835380638,18.5415841584158,9.94350207604231,9.27193264625696,-5.5,-5.48535979107015,-4.63865542088934,3.32182414699803,2.63541680403915,2.59393017781481 +42081,2874.46981,457.841188019802,225,26.0351584158416,26.8162131683168,9.39116831683169,-5.5,914.722772277228,5787.59603960396,4945.2198019802,20,40,11,32,5306963.45087486,397674.532454032,0,0,0,0,0,0,0,26.0351584158415,12309.6578528878,18.7823366336634,10.0726130903431,9.48033806246657,-5.5,-5.48535979107015,-4.59829854767218,2.96018482587755,2.34850506467344,2.33474745677217 +42082,2874.46727287129,457.83649,225,28.3419702970297,29.1922294059406,9.12057425742574,-5.5,1003.29207920792,5870.01782178218,4969.03069306931,20,40,11,32,5306958.85501974,397668.598005012,0,0,0,0,0,0,0,28.3419702970297,12317.2019308031,18.2411485148515,9.78238410359856,9.38216005904904,-5.5,-5.48535979107015,-4.5178244664952,2.09926580862132,1.66548262140403,1.68200817918585 +42083,2874.46447742574,457.831377722772,225,30.771,31.69413,9.56413861386138,-5.5,1089.72772277228,5642.70594059406,4773.55445544554,20,40,11,32,5306953.78983069,397662.139126154,0,0,0,0,0,0,0,30.771,12325.4146446645,19.1282772277228,10.2581345099708,9.89859143940517,-5.5,-5.48535979107015,-4.49211176150357,1.94936315055473,1.54655519883235,1.54418129924244 +42084,2874.46144980198,457.825796435644,225,33.0695544554455,34.0616410891089,10.3596534653465,-5.5,1182.09405940594,5576.32475247525,4876.29900990099,20,40,11,32,5306948.30493703,397655.08848265,0,0,0,0,0,0,0,33.0695544554455,12334.2821979373,20.7193069306931,11.1113737488279,10.7069896023247,-5.5,-5.48535979107015,-4.49843553523185,2.1668679804377,1.7191157734646,1.7915701607713 +42085,2874.45827148515,457.81982970297,225,34.9618217821782,36.0106764356435,11.3751386138614,-5.44346534653465,1667.09405940594,4191.87425742574,4382.6,20,40,11,32,5306942.54943318,397647.55282376,0,0,0,0,0,0,0,34.9618217821782,12343.7557314632,22.7502772277228,12.2005448354164,11.6793877284444,-5.44346534653465,-5.4288251376048,-4.47920986736634,2.71364430533643,2.15290860864256,2.11573072177421 +42086,2874.45494188119,457.813476930693,225,37.3793465346535,38.5007269306931,11.8896732673267,-5.08554455445545,1888.4702970297,5788.85346534653,5779.07524752476,20,40,11,32,5306936.52223375,397639.531387501,0,0,0,0,0,0,0,37.3793465346534,12353.7805282454,23.7793465346535,12.7524153068083,12.2561479775503,-5.08554455445545,-5.07090434552559,-4.16940036269352,2.60165216100706,2.06405803557633,2.01048388215084 +42087,2874.45140059406,457.806638514852,225,39.8394356435644,41.0346187128713,12.2580099009901,-5.07653465346535,2013.17821782178,5248.03069306931,5184.74059405941,20,40,11,32,5306930.1136676,397630.898134913,0,0,0,0,0,0,0,39.8394356435643,12364.525015044,24.5160198019802,13.1474792938141,12.7102956762727,-5.07653465346535,-5.06189444453549,-4.13700148831529,2.37088272576208,1.88097379613733,1.9198586331583 +42088,2874.44766178218,457.799368910891,225,42.3311287128713,43.6010625742574,13.0584950495049,-5.23653465346535,1492.84158415842,5625.92178217822,5398.79207920792,20,40,11,32,5306923.34876012,397621.721348892,0,0,0,0,0,0,0,42.3311287128712,12375.931834736,26.1169900990099,14.0060494858854,13.5339097333014,-5.23653465346535,-5.22189444453549,-4.26997980359566,2.56018458910178,2.03115914298425,1.99336223157016 +42089,2874.44371069307,457.791647425743,225,44.7602673267327,46.1030753465346,13.4849306930693,-5.41009900990099,1590.23762376238,5506.8495049505,5122.84158415841,20,40,11,32,5306916.20064455,397611.974768696,0,0,0,0,0,0,0,44.7602673267326,12388.0336090484,26.9698613861386,14.4634282805831,14.0353873207456,-5.41009900990099,-5.39545880097114,-4.39624059404492,2.4205070916381,1.92034399815047,1.91935633840617 +42090,2874.43954435644,457.783513069307,225,47.0696336633663,48.4817226732673,14.0311089108911,-4.74980198019802,1671.66831683168,5369.72574257426,4904.5198019802,20,40,11,32,5306908.66295932,397601.706877377,0,0,0,0,0,0,0,47.0696336633663,12400.7919731848,28.0622178217822,15.0492384461438,14.6334620136232,-4.74980198019802,-4.73516177126817,-3.85130454944579,2.34502182450848,1.86045667942213,1.89202223720443 +42091,2874.43516376238,457.774992277228,225,49.2126831683168,50.6890636633663,15.4866534653465,-2.59148514851485,1747.90594059406,5255.75940594059,4695.0495049505,20,40,11,32,5306900.73695669,397590.950627624,0,0,0,0,0,0,0,49.2126831683168,12414.1707111936,30.9733069306931,16.61040066134,15.9959751299544,-2.59148514851485,-2.576844939585,-2.1161096178444,3.19824825179981,2.53737609617269,2.56744511278697 +42092,2874.4305750495,457.766123465346,225,51.2568118811881,52.7945162376238,16.7054653465347,-3.3509900990099,1816.13366336634,5138.80495049505,4545.46237623762,20,40,11,32,5306892.43316076,397579.754062186,0,0,0,0,0,0,0,51.256811881188,12428.1311866612,33.4109306930693,17.9176523359925,17.1502069401427,-3.3509900990099,-3.33634989008005,-2.75684054908188,3.89514663792844,3.090270420567,3.0261942486884 +42093,2874.42579415842,457.756924851485,225,53.1057227722772,54.6988944554456,16.372099009901,-3.88762376237624,1881.71782178218,4788.04257425742,4263.75742574258,20,40,11,32,5306883.78069867,397568.140390708,0,0,0,0,0,0,0,53.1057227722771,12442.6326463972,32.744198019802,17.5600961712033,16.9709776600326,-3.88762376237624,-3.87298355344638,-3.16713627219021,3.15638360682129,2.50416217996608,2.53549666350312 +42094,2874.42082564356,457.747433366337,225,54.851297029703,56.4968359405941,16.9355148514852,-4.52247524752475,1942.73762376238,4690.58118811881,4153.60495049505,20,40,11,32,5306874.78719255,397556.155754541,0,0,0,0,0,0,0,54.8512970297029,12457.6317875688,33.8710297029703,18.1643947621545,17.5506611645828,-4.52247524752475,-4.5078350385949,-3.68721947272116,3.27499981066333,2.59826804559992,2.58254029249185 +42095,2874.41568108911,457.737664653465,225,56.4190594059406,58.1116311881188,17.5734257425743,-3.58059405940594,1736.28217821782,4429.33861386139,3937.9900990099,20,40,11,32,5306865.47375652,397543.820014328,0,0,0,0,0,0,0,56.4190594059405,12473.0913601761,35.1468514851485,18.8485939347474,18.1841545985366,-3.58059405940594,-3.56595385047609,-2.92285604157212,3.47642725507326,2.75807339600425,2.78032786008867 +42096,2874.4103760396,457.727642277228,225,58.0379108910891,59.7790482178218,18.4185940594059,-3.9419801980198,1477.83168316832,4500.20693069307,4058.72376237624,20,40,11,32,5306855.86866542,397531.163026203,0,0,0,0,0,0,0,58.037910891089,12488.9900851485,36.8371881188119,19.7550896086035,18.9959268419635,-3.9419801980198,-3.92733998908995,-3.22806153355313,3.91807137689352,3.10845809084189,3.12117482311172 +42097,2874.4049029703,457.717342970297,225,59.6384059405941,61.4275581188119,19.257702970297,-3.71118811881188,1518.80198019802,4458.91089108911,4017.72277227723,20,40,11,32,5306845.95849767,397518.15556049,0,0,0,0,0,0,0,59.638405940594,12505.3370704896,38.5154059405941,20.6550861920868,19.801862839869,-3.71118811881188,-3.69654790988203,-3.04447877848789,4.3543253186157,3.45456640903266,3.38275162156099 +42098,2874.39928188119,457.706794455445,225,61.1741881188119,63.0094137623762,19.4016930693069,-2.07485148514851,1558.74257425743,4389.00693069307,3965.27326732673,20,40,11,32,5306835.77968908,397504.832799244,0,0,0,0,0,0,0,61.1741881188118,12522.1206824808,38.8033861386139,20.8095245438696,20.0129197128462,-2.07485148514851,-2.06021127621866,-1.68505555753962,4.09154626175795,3.24608687744206,3.24108892119791 +42099,2874.39351445545,457.695992574257,225,62.6695247524752,64.5496104950495,19.4585247524752,-3.07108910891089,1596.94059405941,4277.68217821782,3947.93465346535,20,40,11,32,5306825.33545166,397491.189615157,0,0,0,0,0,0,0,62.6695247524752,12539.3244356986,38.9170495049505,20.8704800646861,20.1463148359788,-3.07108910891089,-3.05644889998104,-2.49734919181251,3.81751728284482,3.02868205892571,3.00018911131886 +42100,2874.3876029703,457.684949009901,225,64.1036534653465,66.0267630693069,19.2480396039604,-3.00643564356436,1632.06930693069,4185.01386138614,3868.63465346535,20,40,11,32,5306814.62974724,397477.240630605,0,0,0,0,0,0,0,64.1036534653465,12556.9329941145,38.4960792079208,20.6447216296622,20.0493150183827,-3.00643564356436,-2.9917954346345,-2.43221375346852,3.38780344108825,2.68776242279237,2.93823667608819 +42101,2874.38155316832,457.673651188119,225,65.4622772277228,67.4261455445544,20.4898118811881,-3.55841584158416,1667.21287128713,4056.67326732673,3816.20396039604,20,40,11,32,5306803.67349361,397462.970370175,0,0,0,0,0,0,0,65.4622772277227,12574.9315795105,40.9796237623762,21.9765997595016,21.183341155566,-3.55841584158416,-3.5437756326543,-2.90256643253757,4.15004381619052,3.29249675079015,3.17938813284432 +42102,2874.37538871287,457.662112871287,225,66.7888118811881,68.7924762376237,19.8561584158416,-1.93475247524752,1704.35643564356,3957.9900990099,3781.76534653465,20,40,11,32,5306792.51022119,397448.396750048,0,0,0,0,0,0,0,66.7888118811881,12593.3040230749,39.7123168316832,21.2969669412557,20.7204589538899,-1.93475247524752,-1.92011226631767,-1.55705736856635,3.19803469778323,2.53720667003243,2.51414492383672 +42103,2874.36911554455,457.650313564356,225,68.0994455445544,70.1424289108911,20.506801980198,-2.73079207920792,1735.56435643564,3903.11089108911,3752.23267326733,20,40,11,32,5306781.15139012,397433.494436407,0,0,0,0,0,0,0,68.0994455445544,12612.0408380914,41.013603960396,21.9948226991743,21.3499059510024,-2.73079207920792,-2.71615187027806,-2.21320916804069,3.47906314579841,2.76016461769548,2.72697156993114 +42104,2874.36273653465,457.63826,225,69.3739108910891,71.4551282178218,20.9520396039604,-2.44217821782178,1766.62376237624,3848.99306930693,3700.24158415841,20,40,11,32,5306769.60217237,397418.271905794,0,0,0,0,0,0,0,69.373910891089,12631.1346105336,41.9040792079208,22.4723677889992,21.8017731603719,-2.44217821782178,-2.42753800889193,-1.98118704442362,3.60079220466338,2.8567401114833,2.8877833085695 +42105,2874.35627287129,457.625994752475,225,70.5742178217822,72.6914443564356,21.1933663366337,-3.51346534653465,1800.28712871287,3791.51584158416,3657.7099009901,20,40,11,32,5306757.90087523,397402.782878122,0,0,0,0,0,0,0,70.5742178217821,12650.5737561882,42.3867326732673,22.7312057444661,22.0748842856231,-3.51346534653465,-3.4988251376048,-2.85047935747768,3.61590786233795,2.86873233517631,2.90985881774213 +42106,2874.34971118812,457.613497227723,225,71.7478910891089,73.9003278217822,20.3660693069307,-1.82059405940594,1826.89603960396,3761.10495049505,3589.41188118812,20,40,11,32,5306746.02319792,397387.001260587,0,0,0,0,0,0,0,71.7478910891088,12670.3456811332,40.7321386138614,21.8438781394382,21.4384626392581,-1.82059405940594,-1.80595385047608,-1.4078624126317,3.63006300772451,2.87996252267708,2.78354044492188 +42107,2874.34304178218,457.600788316832,225,72.886504950495,75.0731000990099,21.2866138613861,0.658811881188119,1856.36138613861,3748.27128712871,3504.91584158416,20,40,11,32,5306733.95070665,397370.952749751,0,0,0,0,0,0,0,72.886504950495,12690.4404872388,42.5732277227723,22.8312195240914,22.2878899486517,0.658811881188119,0.673452090117976,0.556980069345512,3.11384445418879,2.47041313344337,2.4902591241639 +42108,2874.33625623762,457.587887623762,225,73.9986336633663,76.2185926732673,22.8952178217822,-1.63039603960396,1885.28217821782,3708.72475247525,3465.54059405941,20,40,11,32,5306721.66738016,397354.661481444,0,0,0,0,0,0,0,73.9986336633663,12710.8436602036,45.7904356435644,24.5565474877722,23.7211600257811,-1.63039603960396,-1.6157558306741,-1.31780437686485,4.3841407412304,3.47822090195616,3.44264924362336 +42109,2874.32938019802,457.574801386139,225,75.0926237623762,77.3454024752475,22.9280495049505,-0.653960396039604,1910.88613861386,3631.4801980198,3443.17326732673,20,40,11,32,5306709.22058297,397338.136066544,0,0,0,0,0,0,0,75.0926237623761,12731.5476667492,45.856099009901,24.5917615133868,23.8115052227288,-0.653960396039604,-0.639320187109747,-0.515583696405367,4.11716370660075,3.2664108445239,3.23332765050313 +42110,2874.32240138614,457.561533069307,225,76.1197326732674,78.4033246534653,19.1726039605941,0.0485148514851487,1937.90099009901,3603.83861386139,3364.32574257426,20,40,11,32,5306696.58749857,397321.380413415,0,0,0,0,0,0,0,76.1197326732673,12752.5477776678,38.3452079211881,20.5638122025052,20.6763199299882,0.0485148514851487,0.0631550604150056,0.0242779876966072,2.55254100114656,2.0250949929122,2.03266853973057 +42111,2874.31532277228,457.548082871287,225,77.1302277227723,79.4441345544554,17.4881463147525,-3.23128712871287,1962.32673267327,3535.79603960396,3357.97920792079,20,40,11,32,5306683.77362657,397304.394863502,0,0,0,0,0,0,0,77.1302277227722,12773.8371558581,34.9762926295049,18.7571264354933,19.2990909936761,-3.23128712871287,-3.21664691978302,-2.47728601984632,3.19244311939042,2.53277051116146,2.52297653050984 +42112,2874.30815425742,457.534453366337,225,78.1170495049505,80.460560990099,20.2004752475247,-4.12257425742574,1848.61881188119,3392.39108910891,3229.78217821782,20,40,11,32,5306670.79725192,397287.182946429,0,0,0,0,0,0,0,78.1170495049504,12795.4027134214,40.4009504950495,21.6662681942022,21.6611255668949,-4.12257425742574,-4.10793404849589,-3.25813065115484,2.28927229133149,1.81622698812894,2.01372535319549 +42113,2874.3008939604,457.520653861386,225,79.0546336633664,81.4262726732673,21.5255863585149,-1.88861386138614,1721.27227722772,3428.71386138614,3255.59801980198,20,40,11,32,5306657.65468563,397269.756188964,0,0,0,0,0,0,0,79.0546336633663,12817.2314361937,43.0511727170297,23.0875324152678,22.8451218727732,-1.88861386138614,-1.87397365245628,-1.49624439233005,2.78912452746881,2.21279192485002,2.19228371013138 +42114,2874.29354544554,457.506681782178,225,80.0363564356435,82.4374471287129,19.119202970198,-1.03821782178218,1740.58910891089,3477.91584158416,3294.17227722772,20,40,11,32,5306644.3525891,397252.111499482,0,0,0,0,0,0,0,80.0363564356435,12839.3262330033,38.238405940396,20.5065363134194,20.8535928744502,-1.03821782178218,-1.02357761285232,-0.80065715783401,2.92260217225145,2.31868832768689,2.32298574015378 +42115,2874.28610544554,457.49254980198,225,81.0014356435644,83.4314787128713,20.2040209020792,-0.754257425742574,1762.90594059406,3461.30495049505,3257.39900990099,20,40,11,32,5306630.88463093,397234.26455184,0,0,0,0,0,0,0,81.0014356435643,12861.6942018702,40.4080418041584,21.6700711296064,21.8314865208116,-0.754257425742574,-0.739617216812717,-0.595307695240261,2.57705568715456,2.04454407046486,1.94427401457373 +42116,2874.27858069307,457.478258316832,225,81.9446435643564,84.4029828712872,20.8984515951485,-1.32386138613861,1781.65346534653,3384.18811881188,3191.48415841584,20,40,11,32,5306617.26327543,397216.216058545,0,0,0,0,0,0,0,81.9446435643563,12884.3281784104,41.796903190297,22.4148913110112,22.4778411131779,-1.32386138613861,-1.30922117720876,-1.03333018574589,1.93589588549205,1.53587075104702,1.60940477223314 +42117,2874.27096376238,457.463803564357,225,82.7668811881187,85.2498876237624,20.7577816283168,-2.3090099009901,1800.50495049505,2930.93564356436,2835.28910891089,20,40,11,32,5306603.47485288,397197.961085539,0,0,0,0,0,0,0,82.7668811881187,12907.2138458471,41.5155632566337,22.264014007834,22.4042180391595,-2.3090099009901,-2.29436969206024,-1.81381869330846,2.46538326424205,1.95594715296777,1.90344277980671 +42118,2874.26328841584,457.449221683168,225,83.3119801980198,85.8113396039604,19.6943239823762,-3.81732673267327,1808.42079207921,2505.76831683168,2532.17623762376,20,40,11,32,5306589.58110265,397179.545755662,0,0,0,0,0,0,0,83.3119801980197,12930.2868125688,39.3886479647525,21.1233894290658,21.5280182189357,-3.81732673267327,-3.80268652374341,-2.95830478200915,2.98618196424292,2.36913026705417,2.31906731986625 +42119,2874.25559732673,457.434533267326,225,83.7200099009901,86.2316101980198,21.1913366335644,-2.1309900990099,1814.39603960396,2312.60297029703,2379.36831683168,20,40,11,32,5306575.6606147,397160.997126007,0,0,0,0,0,0,0,83.72000990099,12953.4908215622,42.3826732671287,22.7290287614736,22.8266240463709,-2.1309900990099,-2.11634989008005,-1.65473049738065,2.62720048292764,2.08432716299698,2.16421213358664 +42120,2874.24788425743,457.419768811881,225,84.0564356435644,86.5781287128713,21.6120297029703,-3.06267326732673,1823.12376237624,2212.25841584158,2254.40495049505,20,40,11,32,5306561.70115891,397142.352971656,0,0,0,0,0,0,0,84.0564356435642,12976.7933833884,43.2240594059406,23.1802482876235,23.2040658264134,-3.06267326732673,-3.04803305839688,-2.41484745989148,2.25204317297801,1.78669073341871,1.84501502885155 +42121,2874.24015811881,457.404939009901,225,84.2677821782178,86.7958156435643,24.4190891089109,-3.40594059405941,1827.06435643564,2094.44653465347,2172.16039603961,20,40,11,32,5306547.71900477,397123.62690436,0,0,0,0,0,0,0,84.2677821782177,13000.1724234599,48.8381782178218,26.1909943805215,25.6033012169553,-3.40594059405941,-3.39130038512955,-2.74520438649618,3.47068901974146,2.75352088474846,2.67948898720055 +42122,2874.23242752475,457.390060495049,225,84.4157821782178,86.9482556435644,24.7211881188119,-3.47811881188119,1831.45544554455,2020.28217821782,2070.43663366337,20,40,11,32,5306533.72973943,397104.839925573,0,0,0,0,0,0,0,84.4157821782177,13023.6044274753,49.4423762376237,26.5150143894329,25.8682049100124,-3.47811881188119,-3.46347860295133,-2.81195478265364,3.79720144793356,3.0125642000795,3.04995661479495 +42123,2874.22469148515,457.37515019802,225,84.5508514851485,87.0873770297029,24.3025544554455,-2.62,1833.76237623762,1998.63762376238,1969.21188118812,20,40,11,32,5306519.7311533,397086.013089783,0,0,0,0,0,0,0,84.5508514851484,13047.0743032454,48.6051089108911,26.0660037045616,25.5215365832737,-2.62,-2.60535979107014,-2.10386654590441,3.35844899821305,2.66447365475316,2.72312235388776 +42124,2874.21690079208,457.360264455445,225,84.6627128712871,87.2025942574257,24.0502079207921,-5.15465346534654,1836.79207920792,2031.23762376238,1821.26732673267,20,40,11,32,5306505.6308448,397067.214939735,0,0,0,0,0,0,0,84.662712871287,13070.576153988,48.1004158415842,25.7953463249364,25.3097501549335,-5.15465346534654,-5.14001325641668,-4.14521217125551,3.34842249885937,2.65651898776506,2.53608396910366 +42125,2874.20900653465,457.345461188119,225,84.7074059405941,87.2486281188119,22.2989620462376,-4.51019801980198,1834.98514851485,1986.56435643564,1793.71485148515,20,40,11,32,5306491.33692644,397048.516000694,0,0,0,0,0,0,0,84.7074059405939,13094.1031625138,44.5979240924752,23.9170260217179,23.8237604156957,-4.51019801980198,-4.49555781087213,-3.56179975060415,3.35759421494567,2.66379550019501,2.52270530254766 +42126,2874.20106287129,457.330729009901,225,84.7734554455445,87.3166591089109,23.5841386138614,-2.12376237623762,1837.55445544554,1880.57920792079,1851.21089108911,20,40,11,32,5306476.9499705,397029.903880138,0,0,0,0,0,0,0,84.7734554455444,13117.6408479373,47.1682772277228,25.2954579570979,24.9239365788397,-2.12376237623762,-2.10912216730777,-1.69681950438216,3.19257132758894,2.53287222697357,2.5671708697703 +42127,2874.19312019802,457.31600029703,225,84.7965940594059,87.3404918811881,22.1676336633663,-3.80841584158416,1838.0396039604,1812.19306930693,1907.53267326733,20,40,11,32,5306462.56483055,397011.296015679,0,0,0,0,0,0,0,84.7965940594058,13141.1895327833,44.3352673267327,23.7761681493197,23.7181529754123,-3.80841584158416,-3.79377563265431,-3.00966166197532,2.29189042076499,1.81830411864485,1.92328269777389 +42128,2874.18520465347,457.301232475248,225,84.8065841584159,87.3507816831683,21.0210264025743,-3.42990099009901,1839.22277227723,1759.83267326733,1927.21683168317,20,40,11,32,5306448.23087102,396992.640243472,0,0,0,0,0,0,0,84.8065841584158,13164.7412160892,42.0420528051485,22.5463604283957,22.7438404808464,-3.42990099009901,-3.41526078116916,-2.6734581019796,2.62376107656132,2.08159846065375,2.07275347600239 +42129,2874.17734712871,457.286384059406,225,84.8039504950495,87.3480690099009,24.7355247524753,-3.70059405940594,1839.42079207921,1750.12178217822,1943.54554455446,20,40,11,32,5306434.00623603,396973.885913469,0,0,0,0,0,0,0,84.8039504950494,13188.2998535479,49.4710495049505,26.5303913222103,25.9025229397135,-3.70059405940594,-3.68595385047609,-2.98927172129359,3.6904867691429,2.92790057994877,2.99728615411618 +42130,2874.16954306931,457.271470495049,225,84.8042574257426,87.3483851485148,25.9767821782178,-5.01019801980198,1837.9900990099,1778.7495049505,1958.24455445545,20,40,11,32,5306419.88214651,396955.052113534,0,0,0,0,0,0,0,84.8042574257425,13211.8590887789,51.9535643564356,27.8617172417566,26.9572842056442,-5.01019801980198,-4.99555781087213,-4.08242753488243,4.89841887642585,3.8862308324845,3.83016714311843 +42131,2874.16179455446,457.256486930693,225,84.824099009901,87.368821980198,25.9462079207921,-5.07425742574257,1839.30693069307,1788.60396039604,1966.24257425743,20,40,11,32,5306405.86256258,396936.132869998,0,0,0,0,0,0,0,84.8240990099009,13235.4196514027,51.8924158415841,27.8289244458888,26.9322334961093,-5.07425742574257,-5.05961721681272,-4.13383410788397,4.86431589823922,3.85917474588761,3.8177487181965 +42132,2874.1540729703,457.241462871287,225,84.8915841584158,87.4383316831683,23.8099526952475,-3.84574257425742,1838.0198019802,1886.1099009901,1876.33465346535,20,40,11,32,5306391.89382573,396917.163986468,0,0,0,0,0,0,0,84.8915841584157,13258.990468867,47.619905390495,25.53765762762,25.1210355983081,-3.84574257425742,-3.83110236532757,-3.08102908470783,3.76883966798272,2.99006297540076,3.09438947318231 +42133,2874.14629712871,457.226481782178,225,84.951495049505,87.5000399009901,25.3913465346535,-3.36742574257426,1846.06435643564,1931.03762376238,1794.45247524752,20,40,11,32,5306377.82369026,396898.246737176,0,0,0,0,0,0,0,84.9514950495048,13282.5819373488,50.7826930693069,27.2338010413462,26.4714828478716,-3.36742574257426,-3.3527855336444,-2.72950430573545,4.14723335906142,3.29026703434,3.2320742343488 +42134,2874.13845940594,457.211559108911,225,84.992297029703,87.5420659405941,26.2662277227723,-4.33019801980198,1843.34158415842,1823.57425742574,1776.07920792079,20,40,11,32,5306363.63769004,396879.400107664,0,0,0,0,0,0,0,84.9922970297028,13306.1870375688,52.5324554455445,28.172165620772,27.2161649082175,-4.33019801980198,-4.31555781087213,-3.53105885528965,5.06136036151442,4.01550279538043,3.97256224969811 +42135,2874.13058930693,457.196668613861,225,85.0244455445545,87.5751789108911,25.278801980198,-4.78712871287129,1842.73267326733,1783.8900990099,1791.95544554455,20,40,11,32,5306349.39106189,396860.592393529,0,0,0,0,0,0,0,85.0244455445543,13329.7981911442,50.557603960396,27.1130899951579,26.3761182870207,-4.78712871287129,-4.77248850394144,-3.88053503856082,4.19126484260162,3.32520004298029,3.37815188781265 +42136,2874.12269693069,457.181791485148,225,85.055900990099,87.607578019802,24.1409405940594,-3.69623762376238,1845.36633663366,1775.13168316832,1754.36732673267,20,40,11,32,5306335.10293123,396841.800497361,0,0,0,0,0,0,0,85.0559009900989,13353.4206257976,48.2818811881188,25.8926627696684,25.41272476657,-3.69623762376238,-3.68159741483252,-2.96407497442448,3.30663628630263,2.62336729704456,2.60733497548679 +42137,2874.11475475248,457.166962574257,225,85.0797227722772,87.6321144554456,23.6320396039604,-2.39623762376238,1841.79207920792,1725.10396039604,1673.0801980198,20,40,11,32,5306320.72153627,396823.066917383,0.693069306930693,0.693069306930693,1838822.65965005,137510.562767173,1.38996515670906,0,0,85.0797227722771,13377.0511163642,47.2640792079208,25.3468347532146,24.9813952774494,-2.39623762376238,-2.38159741483252,-1.91130227529519,2.64692449719948,2.09997549245539,2.10091908553094 +42138,2874.10678108911,457.152173960396,225,85.056891089109,87.6085978217823,22.6187425742574,-3.45653465346535,1844.72772277228,1670.59801980198,1698.24257425743,20,40,11,32,5306306.28098203,396804.382394039,2,2,5306306.82938374,396803.935593803,19.824725987845,0,0,85.0568910891088,13400.6796962872,45.2374851485149,24.2600105603718,24.117212865802,-3.45653465346535,-3.44189444453549,-2.74628422259471,2.68123330824714,2.12719487950312,2.22392880737172 +42139,2874.09881851485,457.137381386139,225,85.0338415841585,87.5848568316832,25.1121782178218,-4.08386138613861,1844.4900990099,1667.64356435643,1753.29504950495,20,40,11,32,5306291.86111635,396785.693211549,2,2,5306291.9245986,396785.641490552,43.4219045019346,0,0,85.0338415841583,13424.3012791805,50.2243564356436,26.9343756293356,26.2367412205632,-4.08386138613861,-4.06922117720876,-3.30485423327012,3.94045690519643,3.12621797060859,2.84794855072539 +42140,2874.09086623762,457.122578118812,225,85.0364653465346,87.5875593069307,22.3224526952475,-2.27009900990099,1842.85148514851,1637.41584158416,1717.94059405941,20,40,11,32,5306277.46062211,396766.990957684,2,2,5306277.02114107,396767.349016803,67.0169811548077,0,0,85.0364653465346,13447.9234366612,44.6449053904951,23.9422212062504,23.8657879463492,-2.27009900990099,-2.25545880097114,-1.79041322814448,2.32583679716842,1.84523596297221,2.17150616267825 +42141,2874.08291910891,457.107768514852,225,85.0349405940594,87.5859888118812,20.477701870198,-3.04346534653465,1839.15346534653,1606.82871287129,1698.20594059406,20,40,11,32,5306263.06986551,396748.280888201,2,2,5306262.11774129,396749.056613946,90.6119663669428,0,0,85.0349405940593,13471.5463474423,40.955403740396,21.9636110182601,22.2938718032659,-3.04346534653465,-3.0288251376048,-2.32999220345072,3.5277314136899,2.79877628566732,2.54504372675042 +42142,2874.07499356436,457.092941584159,225,84.9957920792079,87.5456658415842,22.0302079207921,-1.69831683168317,1844.5099009901,1645.7297029703,1744.48316831683,20,40,11,32,5306248.71953611,396729.549858833,2,2,5306247.22020669,396730.771409986,114.197665871592,0,0,84.9957920792078,13495.1610683719,44.0604158415842,23.628770478774,23.6139880043775,-1.69831683168317,-1.68367662275331,-1.33326336663605,2.00537355758907,1.59099185813979,1.75453246878646 +42143,2874.06709871287,457.078076138614,225,85.0249603960396,87.5757092079208,22.943900990099,-3.42524752475248,1843.93069306931,1639.37722772277,1749.0900990099,20,40,11,32,5306234.42697942,396710.77177999,2,2,5306232.32268177,396712.486217912,137.783350045701,0,0,85.0249603960395,13518.7755873213,45.887801980198,24.6087632187574,24.3911804670929,-3.42524752475248,-3.41060731582262,-2.70979060306918,2.81084661583114,2.23002545502971,2.07912744736886 +42144,2874.05923613862,457.063166336633,225,85.0208613861386,87.5714872277228,22.6803267326733,-1.88643564356436,1843.36633663366,1600.11683168317,1695.23267326733,20,40,11,32,5306220.19526055,396691.93942812,2,2,5306217.42285213,396694.19819704,161.372683027294,0,0,85.0208613861385,13542.3956480198,45.3606534653465,24.3260634069708,24.1685034785541,-1.88643564356436,-1.8717954346345,-1.49938882394204,2.50548139171012,1.98775957718515,2.05071124608834 +42145,2874.05141742574,457.048207524752,225,85.0163168316832,87.5668063366337,22.5171683168317,-1.7,1841.23267326733,1628.35742574257,1723.99801980198,20,40,11,32,5306206.0459417,396673.047391268,2,2,5306202.52667012,396675.914653252,184.956241112521,0,0,85.016316831683,13566.0093530528,45.0343366336634,24.1510658411983,24.0285178102605,-1.7,-1.68535979107015,-1.3642712026207,2.49320865119221,1.97802282257045,2.05401256933018 +42146,2874.04362534653,457.033218514852,225,85.0134851485149,87.5638897029703,23.5195148514851,-3.55851485148515,1844.33663366337,1649.87128712871,1729.08514851485,20,40,11,32,5306191.94669208,396654.118530371,2,2,5306187.63243164,396657.633494948,208.536722211148,0,0,85.0134851485147,13589.6239100661,47.0390297029703,25.2261449458838,24.8793225006156,-3.55851485148515,-3.5438746425553,-2.83441119912279,2.88917255285897,2.29216645994167,2.22741365681177 +42147,2874.03584623762,457.018208910891,225,84.995801980198,87.5456760396039,24.5505049504951,-3.55495049504951,1843.10891089109,1641.36336633663,1679.72871287129,20,40,11,32,5306177.87198848,396635.164355015,2,2,5306172.73558998,396639.349141503,232.121324654793,0,0,84.9958019801979,13613.2377626238,49.1010099009901,26.331946057838,25.7579623806585,-3.55495049504951,-3.54031028611965,-2.86662771167004,3.39362096388028,2.69237783789129,2.66007987595173 +42148,2874.02807326733,457.003206039604,225,84.972702970297,87.5218840594059,23.913298129802,-3.70138613861386,1839.49504950495,1681.00693069307,1703.04653465346,20,40,11,32,5306163.80856667,396616.218677007,1.30693069306931,2,5306157.84745657,396621.075053466,81.5858353832203,0,0,84.9727029702969,13636.843905363,47.8265962596039,25.6485020446085,25.2137028480952,-3.70138613861386,-3.68674592968401,-2.97188117392825,3.31711022031354,2.63167694273176,2.651034628109 +42149,2874.0202840594,456.988220693069,225,84.9932772277228,87.5430755445545,21.062097359703,-2.72554455445545,1841.37128712871,1711.24851485149,1691.37623762376,20,40,11,32,5306149.71473714,396597.294196512,1,2,5306142.95824342,396602.798399727,28.0552841195711,0,0,84.9932772277226,13660.4509934819,42.1241947194059,22.5904115886401,22.7898645580669,-2.72554455445545,-2.71090434552559,-2.12763033847115,2.80654253570653,2.22661075136559,2.18220236940704 +42150,2874.01247079208,456.973254554455,225,85.0138811881188,87.5642976237624,22.2071584158416,-1.74693069306931,1840.83663366337,1669.01881188119,1670.95148514852,20,40,11,32,5306135.5759735,396578.392750325,1,2,5306128.06249187,396584.513636609,51.6395156436127,0,0,85.0138811881187,13684.063044252,44.4143168316832,23.8185609087447,23.7662268947609,-1.74693069306931,-1.73229048413945,-1.35901261068036,2.40936869317408,1.91150719006456,1.86448947774717 +42151,2874.00464485148,456.958301683168,225,85.0177128712871,87.5682442574257,20.4307920791089,-3.1690099009901,1841.84653465347,1686.91782178218,1643.99207920792,20,40,11,32,5306121.41349921,396559.507316553,1,2,5306113.16512264,396566.226887776,75.2263084015051,0,0,85.017712871287,13707.6768358361,40.8615841582178,21.9132973448333,22.2527047101058,-3.1690099009901,-3.15436969206024,-2.45457992188169,2.96498896690678,2.35231649882442,2.31338998652501 +42152,2873.99678158416,456.943388019802,225,85.0209801980198,87.5716096039604,20.7281325631683,-1.60920792079208,1840.84653465347,1667.12178217822,1649.6099009901,20,40,11,32,5306107.18106805,396540.669388525,1,2,5306098.26310891,396547.934437729,98.8204547545372,0,0,85.0209801980197,13731.2924142465,41.4562651263366,22.2322135383231,22.5071400066947,-1.60920792079208,-1.59456771186222,-1.25766007306406,3.06899430802453,2.43483062707508,2.47204391172165 +42153,2873.98889386139,456.928506930693,225,84.9933564356435,87.5431571287128,19.6921446646535,-1.29465346534653,1841.69306930693,1631.0801980198,1642.96633663366,20,40,11,32,5306092.9026698,396521.871130449,1,2,5306083.36218356,396529.643323705,122.412877865969,0,0,84.9933564356434,13754.9039704621,39.3842893293069,21.1210519750365,21.6243640994053,-1.29465346534653,-1.28001325641668,-0.989016750324522,3.31620553401184,2.63095919688599,2.68889121701278 +42154,2873.98099504951,456.913652079208,225,84.9494752475248,87.4979595049505,20.098494499703,-2.47930693069307,1839.59405940594,1651.91881188119,1699.62079207921,20,40,11,32,5306078.6032047,396503.105093181,1,2,5306068.46863206,396511.361261178,145.993626087509,0,0,84.9494752475247,13778.5087311331,40.1969889994059,21.5568874887545,21.9688002212599,-2.47930693069307,-2.46466672176321,-1.92421549502624,2.87794174702402,2.28325633914341,2.34561861626151 +42155,2873.97310673267,456.898787425743,225,84.9781386138614,87.5274827722772,23.1103355334653,-3.75603960396039,1839.69306930693,1655.37227722772,1692.84257425743,20,40,11,32,5306064.32345907,396484.327101853,1,2,5306053.57709335,396493.081669394,169.571187470183,0,0,84.9781386138613,13802.1088599835,46.2206710669307,24.7872746354032,24.5300302650205,-3.75603960396039,-3.74139939503054,-2.99379811323622,2.77483501219531,2.20145513307331,2.19087834280044 +42156,2873.96522762376,456.883908217822,225,84.9645346534654,87.5134706930693,22.0925412540594,-2.89267326732673,1840.85148514851,1658.64059405941,1712.1099009901,20,40,11,32,5306050.06115501,396465.53119393,1,2,5306038.68373906,396474.799848943,193.151623453959,0,0,84.9645346534652,13825.7122601211,44.1850825081188,23.6956268620749,23.6641507729215,-2.89267326732673,-2.87803305839688,-2.30837631622833,3.36548601123277,2.67005656990511,2.53834101054549 +42157,2873.95737267327,456.869005148515,225,84.9657425742574,87.5147148514852,23.9336930693069,-4.55445544554455,1842.26732673267,1683.43762376238,1709.52277227723,20,40,11,32,5306035.84419424,396446.706273328,1,2,5306023.79426612,396456.52279292,216.725914137198,0,0,84.9657425742573,13849.3146346535,47.8673861386139,25.6703768878339,25.2294494724755,-4.55445544554455,-4.5398152366147,-3.65960491463471,3.06124780372993,2.42868482684992,2.55840892139467 +42158,2873.94954158416,456.854077425743,225,84.9333267326733,87.4813265346534,26.6339603960396,-5.26693069306931,1839.20297029703,1642.37623762376,1705.94455445545,20,40,11,32,5306021.67204451,396427.851343736,0.930693069306931,1.86138613861386,4938266.20103606,368962.926330784,222.873623411497,0,0,84.9333267326732,13872.9136507701,53.2679207920792,28.5665818226263,27.52300893895,-5.26693069306931,-5.25229048413945,-4.3097464337484,5.52909872598707,4.38658973167685,4.31359850015046 +42159,2873.94175326733,456.839117821782,225,84.8873663366337,87.4339873267326,27.1118811881188,-4.66346534653465,1839.27722772277,1690.77524752475,1764.34257425743,20,40,11,32,5306007.57989723,396408.958031006,0,0,0,0,0,0,0,84.8873663366335,13896.4977061882,54.2237623762376,29.079181646635,27.9286465287824,-4.66346534653465,-4.6488251376048,-3.82549640700091,5.95966221027644,4.72818344389288,4.75448193373246 +42160,2873.9339919802,456.824133069307,225,84.8381287128713,87.3832725742574,26.5809306930693,-4.64910891089109,1837.70792079208,1740.20297029703,1798.67425742574,20,40,11,32,5305993.53844153,396390.034198553,0,0,0,0,0,0,0,84.8381287128712,13920.0706855611,53.1618613861386,28.5097041624359,27.4743921579207,-4.64910891089109,-4.63446870196124,-3.80151627443435,5.44173924646516,4.31728183633501,4.28890834721916 +42161,2873.92623227723,456.809146336634,225,84.8773366336634,87.4236567326733,26.4021188118812,-4.66326732673267,1839.0198019802,1804.52475247525,1792.56732673267,20,40,11,32,5305979.50002554,396371.107859845,0,0,0,0,0,0,0,84.8773366336632,13943.6414993125,52.8042376237624,28.317917279867,27.3243279094372,-4.66326732673267,-4.64862711780282,-3.80896632020456,5.25715875160529,4.17084225485049,4.19752829734796 +42162,2873.91847029703,456.794162079208,225,84.854,87.3996200000001,26.796099009901,-5.26564356435644,1838.89108910891,1820.55247524753,1804.93564356436,20,40,11,32,5305965.45739698,396352.184436369,0,0,0,0,0,0,0,84.8539999999999,13967.2136459296,53.592198019802,28.7404855872413,27.6564660209015,-5.26564356435644,-5.25100335542658,-4.31336013072845,5.70449607017441,4.52574372893854,4.50105166522963 +42163,2873.91069376238,456.779196039604,225,84.8714356435644,87.4175787128713,26.2579207920792,-5.04485148514852,1837.32673267327,1851.54752475248,1820.00099009901,20,40,11,32,5305951.38746189,396333.283129428,0,0,0,0,0,0,0,84.8714356435642,13990.7856386689,52.5158415841584,28.1632559200812,27.2003500443663,-5.04485148514852,-5.03021127621866,-4.11779252745245,5.14768997258341,4.0839936298224,4.14082444133822 +42164,2873.90290495049,456.764240693069,225,84.8891485148515,87.435822970297,26.4611386138614,-4.29881188118812,1838.49504950495,1850.57128712871,1828.33267326733,20,40,11,32,5305937.29460669,396314.394641436,0,0,0,0,0,0,0,84.8891485148514,14014.3646940319,52.9222772277228,28.3812196944292,27.376362739777,-4.29881188118812,-4.28417167225827,-3.51187631229075,5.26320497597944,4.17563911362792,4.14859842266373 +42165,2873.89510405941,456.749291188119,225,84.9284950495049,87.4763499009901,26.1425742574257,-4.97455445544554,1838.76732673267,1819.82673267327,1827.36732673267,20,40,11,32,5305923.17930664,396295.512935539,0,0,0,0,0,0,0,84.9284950495048,14037.9517191144,52.2851485148515,28.039539575567,27.1053325068929,-4.97455445544554,-4.95991424651569,-4.05724452943921,5.02403416233834,3.98588952020797,3.97985263509234 +42166,2873.88727910891,456.734335940594,225,84.9503564356436,87.4988671287129,25.4304653465347,-5.00871287128713,1841.86633663366,1812.85841584158,1835.56930693069,20,40,11,32,5305909.01962962,396276.623182683,0,0,0,0,0,0,0,84.9503564356434,14061.5477425193,50.8609306930693,27.2757584041939,26.5001331478212,-5.00871287128713,-4.99407266235728,-4.06709580456769,4.36664503818745,3.46434043515315,3.49085883239307 +42167,2873.87945930693,456.719396831683,225,84.9668712871287,87.5158774257426,25.6519405940594,-4.86990099009901,1840.36633663366,1773.27326732673,1821.70495049505,20,40,11,32,5305894.86918879,396257.753611818,0,0,0,0,0,0,0,84.9668712871286,14085.1479985974,51.3038811881188,27.5133044050899,26.6901954971119,-4.86990099009901,-4.85526078116916,-3.95800590673196,4.55577433547583,3.61438887424958,3.55827856938973 +42168,2873.87164217822,456.704452673267,225,85.0200792079208,87.5706815841584,25.2845742574257,-4.46762376237624,1841.35148514851,1778.35742574257,1796.73168316832,20,40,11,32,5305880.72387352,396238.877747218,0,0,0,0,0,0,0,85.0200792079207,14108.7565178493,50.5691485148515,27.119281122098,26.3815030205459,-4.46762376237624,-4.45298355344639,-3.6228697606431,4.1468913011235,3.28999565777169,3.40455020934892 +42169,2873.86380039604,456.689522871287,225,85.0251683168316,87.5759233663367,26.0677425742574,-4.9780198019802,1843.64356435644,1759.36930693069,1765.78217821782,20,40,11,32,5305866.53263062,396220.018852111,0,0,0,0,0,0,0,85.0251683168315,14132.3744275578,52.1354851485148,27.9592779333491,27.0471889093181,-4.9780198019802,-4.96337959305035,-4.05718906604772,4.93127993375268,3.91230162336483,3.81853813346614 +42170,2873.85594207921,456.674607722772,225,85.0215742574257,87.5722214851485,25.9242673267327,-4.49495049504951,1841.9603960396,1691.35940594059,1756.54851485149,20,40,11,32,5305852.31049213,396201.177566718,0,0,0,0,0,0,0,85.0215742574256,14155.9946124313,51.8485346534654,27.8053917918593,26.9268051981616,-4.49495049504951,-4.48031028611965,-3.65859492995123,4.7172366834625,3.74248734252288,3.76495430502908 +42171,2873.84808742574,456.659692079208,225,85.0038316831683,87.5539466336633,25.7593663366337,-4.76346534653465,1839.22772277228,1697.76336633663,1780.22178217822,20,40,11,32,5305838.09521101,396182.335693707,0,0,0,0,0,0,0,85.0038316831682,14179.6090166667,51.5187326732673,27.6285252066332,26.7847675936741,-4.76346534653465,-4.7488251376048,-3.87363326335227,4.59541064513443,3.64583490868785,3.66395447223249 +42172,2873.84023158416,456.644784851485,225,84.9990297029703,87.5490005940595,25.665603960396,-4.53643564356436,1842.19306930693,1720.89504950495,1768.03762376238,20,40,11,32,5305823.8776009,396163.504171613,0,0,0,0,0,0,0,84.9990297029702,14203.217489439,51.3312079207921,27.5279592167148,26.704294436393,-4.53643564356436,-4.52179543463451,-3.68576469005733,4.52528786153791,3.59020199313955,3.57916957185094 +42173,2873.83236663366,456.629872376238,225,84.9795247524753,87.5289104950495,25.4339603960396,-4.32980198019802,1841.23762376238,1681.30693069307,1791.56435643564,20,40,11,32,5305809.64329601,396144.665716137,0,0,0,0,0,0,0,84.9795247524751,14226.8269521452,50.8679207920792,27.2795070625298,26.5064489641103,-4.32980198019802,-4.31516177126817,-3.51288148843477,4.29268321732252,3.40566176435689,3.41834133134401 +42174,2873.8245349505,456.614963069307,225,84.7010792079208,87.2421115841584,25.758405940594,-4.5509900990099,1827.10396039604,473.373267326732,505.40099009901,20,40,11,32,5305795.47060301,396125.832223556,0,0,0,0,0,0,0,84.7010792079207,14250.412070462,51.5168118811881,27.627495122048,26.7671154425055,-4.5509900990099,-4.53634989008005,-3.70310173145201,4.63976566796356,3.68102460186083,3.68244257732365 +42175,2873.8167939604,456.600174158416,225,83.2403762376238,85.7375875247524,25.3578217821782,-5.16465346534654,1784.5099009901,-2470.69702970297,-2082.6099009901,20,40,11,32,5305781.46326498,396107.151639668,0,0,0,0,0,0,0,83.2403762376236,14273.7766978273,50.7156435643564,27.1978436557217,26.3408518507337,-5.16465346534654,-5.15001325641668,-4.20490831829983,4.67904316204653,3.7121859648187,3.62585090250699 +42176,2873.80928039604,456.585766336634,225,80.3555346534654,82.7662006930693,23.2774862486139,-3.16445544554455,1721.4900990099,-3560.8198019802,-2791.30495049505,20,40,11,32,5305767.86870884,396088.953272773,0,0,0,0,0,0,0,80.3555346534652,14296.5051005225,46.5549724972277,24.9665541909029,24.408348240315,-3.16445544554455,-3.1498152366147,-2.56435430544241,3.72068081766043,2.95185546115974,2.97288094113129 +42177,2873.80203158416,456.571881386138,225,77.4329603960396,79.7559492079208,18.8392238721782,-1.90267326732673,1657,-3540.08316831683,-2795.90198019802,20,40,11,32,5305754.75289139,396071.414993527,0,0,0,0,0,0,0,77.4329603960395,14318.413280418,37.6784477443564,20.2062412880729,20.4663442037025,-1.90267326732673,-1.88803305839688,-1.48767181129322,2.53579012718687,2.01180544693921,2.17538326184137 +42178,2873.79506227723,456.558570990099,225,73.6052277227723,75.8133845544554,17.0850660065347,0.694554455445544,1568.88613861386,-4418.65346534654,-3738.57128712871,20,40,11,32,5305742.14197364,396054.601685053,0,0,0,0,0,0,0,73.6052277227722,14339.4337770352,34.1701320130693,18.3247976929941,18.7525732860181,0.694554455445544,0.709194664375402,0.517469819087551,3.47984166637295,2.76078226815307,2.68905728227051 +42179,2873.78849435644,456.546118316832,225,68.4663168316832,70.5203063366336,18.6375495048515,-0.116336633663366,1462.64851485149,-4467.88910891089,-3871.80891089109,20,40,11,32,5305730.25536055,396038.870168441,0,0,0,0,0,0,0,68.4663168316831,14359.154505088,37.275099009703,19.9899329647856,19.7828276204452,-0.116336633663366,-0.101696424733509,-0.11027303933303,3.13391006655189,2.48633247464415,2.42429353584594 +42180,2873.78234960396,456.534587227723,225,63.6601881188119,65.5699937623763,15.5537062705941,-1.37930693069307,1362.29702970297,-4124.13564356436,-3519.10495049505,20,40,11,32,5305719.13195825,396024.300735901,0,0,0,0,0,0,0,63.6601881188118,14377.4844351485,31.1074125411881,16.6823189723632,16.8817949134372,-1.37930693069307,-1.36466672176321,-1.07952970049914,2.63533545049086,2.09078115612477,1.98804171320026 +42181,2873.77656920792,456.523867425742,225,59.754099009901,61.546721980198,17.3275049504951,-1.20336633663366,1434.67821782178,-4159.26930693069,-3559.77425742574,20,40,11,32,5305708.6652942,396010.754038628,0,0,0,0,0,0,0,59.7540990099009,14394.6040633388,34.6550099009901,18.5848285643573,18.1675444330532,-1.20336633663366,-1.18872612770381,-0.965686423586678,2.57675441261146,2.04430504998744,2.17676017526792 +42182,2873.77112732673,456.513788514852,225,56.4320594059406,58.1250211881188,17.3643168316832,-1.63316831683168,1418.40099009901,-2909.3702970297,-2322.67326732673,20,40,11,32,5305698.81131911,395998.016959517,0,0,0,0,0,0,0,56.4320594059405,14410.7143117987,34.7286336633664,18.6243116003147,18.0072933925485,-1.63316831683168,-1.61852810790183,-1.32189770863649,3.26551451542189,2.59074275065222,2.65712523805809 +42183,2873.76592534653,456.504121485148,225,55.0275742574257,56.6784014851485,17.5162178217822,-1.83762376237624,1389.20297029703,176.577227722772,265.543564356436,20,40,11,32,5305689.3925029,395985.800933086,0,0,0,0,0,0,0,55.0275742574257,14426.1446368812,35.0324356435643,18.7872348756398,18.0557452962803,-1.83762376237624,-1.82298355344638,-1.50007743273605,3.77165626336119,2.99229756171903,2.87005686957703 +42184,2873.76083811881,456.49461970297,225,53.7454158415842,55.3577783168317,16.4009504950495,-0.742079207920792,1358.31683168317,-201.784158415842,-115.60198019802,20,40,11,32,5305680.1825624,395973.794550116,0,0,0,0,0,0,0,53.7454158415841,14441.2814011551,32.801900990099,17.5910411864749,17.0345941387704,-0.742079207920792,-0.727438998990933,-0.595763438243973,2.93941828361699,2.33202963069096,2.42081172456737 +42185,2873.75595356436,456.485400792079,225,51.494495049505,53.0393299009901,15.972702970297,-1.0290099009901,1298.89603960396,-440.00396039604,-403.818811881188,20,40,11,32,5305671.3417142,395962.147275201,0,0,0,0,0,0,0,51.4944950495049,14455.9135426567,31.9454059405941,17.1317190363227,16.5407966337523,-1.0290099009901,-1.01436969206024,-0.832736931905369,3.08303005894595,2.44596609126545,2.39267341322049 +42186,2873.75133059406,456.47660049505,225,48.7222277227723,50.1838945544554,15.2049108910891,-3.56009900990099,1228.91089108911,-551.095049504951,-493.040594059406,20,40,11,32,5305662.9760306,395951.030177099,0,0,0,0,0,0,0,48.7222277227722,14469.8329509351,30.4098217821782,16.3082141978639,15.7278123093749,-3.56009900990099,-3.54545880097114,-2.91014072865358,3.03755505175318,2.40988784244306,2.43557362464411 +42187,2873.74698782178,456.468278415842,225,45.8306534653465,47.2055730693069,14.9285247524752,-3.18316831683168,1162.07920792079,-954.59306930693,-795.206930693069,20,40,11,32,5305655.11864904,395940.518132592,0,0,0,0,0,0,0,45.8306534653465,14482.9603806655,29.8570495049505,16.0117728453219,15.326956052516,-3.18316831683168,-3.16852810790183,-2.61371596016892,3.49523912629042,2.77299806369502,2.72934688689872 +42188,2873.74293287129,456.460473168317,225,42.7420495049505,44.024310990099,13.7247623762376,-3.89683168316832,1372.9504950495,-1068.61485148515,-883.349504950495,20,40,11,32,5305647.78282067,395930.659503857,0,0,0,0,0,0,0,42.7420495049504,14495.2485014576,27.4495247524753,14.7206627023142,14.1253473334319,-3.89683168316832,-3.88219147423846,-3.19533317818816,3.07092043292672,2.43635874587646,2.42116648827323 +42189,2873.73910772277,456.453067425743,225,41.2860693069307,42.5246513861386,13.073702970297,-2.4370297029703,1447.74257425743,38.1792079207921,183.883168316832,20,40,11,32,5305640.86370557,395921.306200711,0,0,0,0,0,0,0,41.2860693069306,14506.8772836358,26.1474059405941,14.0223609283896,13.4881917387527,-2.4370297029703,-2.42238949404044,-1.99756553521226,2.78018159471819,2.20569692095896,2.22912121182026 +42190,2873.73538564356,456.44581980198,225,40.4352673267327,41.6483253465346,12.7866534653465,-0.782871287128713,1419.40594059406,61.3316831683168,187.527722772277,20,40,11,32,5305634.13197244,395912.153291558,0,0,0,0,0,0,0,40.4352673267326,14518.232265539,25.5733069306931,13.714482451123,13.1964727987619,-0.782871287128713,-0.768231078198855,-0.636183512594623,2.66470627018377,2.11408291694706,2.07386396685573 +42191,2873.73178673267,456.438711188119,225,39.1891782178218,40.3648535643564,11.5484356435644,-2.57633663366337,1372.00495049505,-459.845544554456,-374.023762376238,20,40,11,32,5305627.62527993,395903.177645031,0,0,0,0,0,0,0,39.1891782178217,14529.3138720847,23.0968712871287,12.3864166961918,12.0709770950698,-2.57633663366337,-2.56169642473351,-2.07839200087012,1.82059375357084,1.44439415187746,1.51035707679688 +42192,2873.72848792079,456.431785643564,225,36.8767326732673,37.9830346534653,11.7082772277228,-0.131782178217822,1296.93564356436,-607.002970297029,-533.559405940594,20,40,11,32,5305621.67037335,395894.440061009,0,0,0,0,0,0,0,36.8767326732673,14539.8827393564,23.4165544554455,12.5578567533452,12.0750834166165,-0.131782178217822,-0.117141969287965,-0.0642242334255344,2.52678171388501,2.00465849311419,1.94269902490278 +42193,2873.72566435644,456.425006930693,225,34.7699801980198,35.8130796039604,11.6045445544554,-2.95019801980198,1228.65841584158,-357.715841584158,-237.151485148515,20,40,11,32,5305616.59250107,395885.901253196,0,0,0,0,0,0,0,34.7699801980198,14549.8137885038,23.2090891089109,12.4465969987121,11.8646723716331,-2.95019801980198,-2.93555781087213,-2.40680340793297,3.04782907590217,2.41803888677568,2.33879315938158 +42194,2873.72338722772,456.418187425743,225,33.8475346534653,34.8629606930693,9.81359405940594,-4.40039603960396,1196.78217821782,91.069306930693,212.359405940594,20,40,11,32,5305612.52774395,395877.329875864,0,0,0,0,0,0,0,33.8475346534653,14559.3214411441,19.6271881188119,10.5256910164117,10.2877647975067,-4.40039603960396,-4.38575583067411,-3.5475363216373,1.59150659684129,1.26264457221347,1.40233977637998 +42195,2873.72157910891,456.411203564356,225,33.2625445544554,34.2604208910891,9.43068316831683,-2.59960396039604,1174.48514851485,145.285148514852,258.291089108911,20,40,11,32,5305609.33546054,395868.569417286,0,0,0,0,0,0,0,33.2625445544554,14568.6456738174,18.8613663366337,10.1149952303393,9.92926266793597,-2.59960396039604,-2.58496375146618,-2.08582061977963,1.56357115707035,1.24048159062786,1.28510840503681 +42196,2873.7202380198,456.404135940594,217.871287128713,32.6712574257426,33.6513951485148,9.1730396039604,-3.97752475247525,1156.06435643564,156.971287128713,268.051485148515,20,40,11,32,5305607.01017205,395859.72021366,0,0,0,0,0,0,0,32.6712574257425,14577.795644912,18.3460792079208,9.83865645635228,9.67586684592354,-3.97752475247525,-3.96288454354539,-3.1823165706312,1.68395162403797,1.33598715970238,1.31580812722838 +42197,2873.71940782178,456.397044653465,157.277227722772,31.7643465346535,32.7172769306931,9.82436633663366,-2.8319801980198,1116.60396039604,-539.151485148515,-354.909900990099,20,40,11,32,5305605.63177413,395850.858602371,0,0,0,0,0,0,0,31.7643465346534,14586.7776728548,19.6487326732673,10.5372449548522,10.1782700627247,-2.8319801980198,-2.81733998908995,-2.32967046797273,2.01386467855213,1.59772841067265,1.50052899003866 +42198,2873.71899970297,456.390305346535,85.990099009901,28.8274653465347,29.6922893069307,8.15841584158416,-4.94653465346535,1143.0297029703,-1541.31287128713,-1298.37128712871,20,40,11,32,5305605.02731127,395842.449570919,0,0,0,0,0,0,0,28.8274653465346,14595.2089017051,16.3168316831683,8.7504092600618,8.59187794341617,-4.94653465346535,-4.9318944445355,-3.97047349498715,1.36209973511989,1.08064135001134,1.15916422301465 +42199,2873.71891702971,456.384065841584,48.5643564356436,27.5330495049505,28.359040990099,8.78483168316831,-5.06910891089109,1312.35148514851,-707.352475247525,-449.376237623762,20,40,11,32,5305605.01445935,395834.674038781,0,0,0,0,0,0,0,27.5330495049505,14602.9927948295,17.5696633663366,9.4222792759181,9.05070807291053,-5.06910891089109,-5.05446870196124,-4.15340989495444,2.00870629541462,1.59363593346715,1.60923571564502 +42200,2873.71904792079,456.378082277228,45,26.1025544554455,26.8856310891089,9.09492079207921,-5.14237623762376,1302.60396039604,-713.777227722772,-488.538613861386,20,40,11,32,5305605.39145703,395827.224481027,0,0,0,0,0,0,0,26.1025544554455,14610.4568978273,18.1898415841584,9.75486916380144,9.23262267305953,-5.14237623762376,-5.12773602869391,-4.27585095023331,2.62387044547785,2.08168523005144,2.04184705233624 +42201,2873.71936306931,456.372519504951,45,23.8931287128713,24.6099225742574,8.05062376237624,-5.46148514851485,1230.58910891089,-1488.59900990099,-1240.66831683168,20,40,11,32,5305606.10030947,395820.305280412,0,0,0,0,0,0,0,23.8931287128713,14617.419440209,16.1012475247525,8.63479553965611,8.21723529174435,-5.46148514851485,-5.446844939585,-4.51929146940806,2.12819797591441,1.68843637105702,1.66592923850549 +42202,2873.71987257426,456.367503861386,45,21.9602376237624,22.6190447524752,7.18550495049505,-5.5,1358.56435643564,-1496.48415841584,-1120.62277227723,20,40,11,32,5305607.15688045,395814.074157592,0,0,0,0,0,0,0,21.9602376237623,14623.7543209296,14.3710099009901,7.706901716942,7.37049481503745,-5.5,-5.48535979107015,-4.52845356467754,1.74785867256395,1.3866887327324,1.37352410086944 +42203,2873.72056079208,456.362875841584,45,20.7045148514852,21.3256502970297,6.37641584158416,-5.5,1406.09900990099,-741.732673267327,-457.766336633663,20,40,10.7029702970297,32,5305608.53577782,395808.33188949,0,0,0,0,0,0,0,20.7045148514851,14629.6614290429,12.7528316831683,6.83910324131855,6.61024260851686,-5.5,-5.48535979107015,-4.48558196745612,1.25616431796786,0.996595968272017,1.04790437158511 +42204,2873.72145910891,456.358531188119,45,20.1552277227723,20.7598845544555,6.19146534653465,-5.5,1379.40594059406,1427.77128712871,1665.86831683168,20,40,10.8811881188119,32,5305610.29748289,395802.949649465,0,0,0,0,0,0,0,20.1552277227722,14635.327955143,12.3829306930693,6.64073231294724,6.42144439026797,-5.5,-5.48535979107015,-4.48340688923437,1.2087680480824,0.958993458151851,0.939228765667823 +42205,2873.72256287129,456.354248316832,45,21.3629900990099,22.0038798019802,6.36232673267327,-5.5,1434.37128712871,3760.75445544554,4279.47326732673,20,40,10.6237623762376,32,5305612.43835889,395797.651247921,0,0,0,0,0,0,0,21.3629900990099,14641.0470903465,12.7246534653465,6.82399179425899,6.63595253131523,-5.5,-5.48535979107015,-4.46041345427258,1.09798417690741,0.871101485912768,0.866484029357891 +42206,2873.72403960396,456.349830891089,45,22.9302376237624,23.6181447524752,6.30922772277228,-5.5,1243.76237623762,3885.36732673267,4523.79207920792,20,40,10.7128712871287,32,5305615.27313506,395792.197706077,0,0,0,0,0,0,0,22.9302376237624,14647.1969189769,12.6184554455446,6.7670397980676,6.68050794171934,-5.5,-5.48535979107015,-4.39844553735091,0.863062846506791,0.684723280936283,0.701322676968753 +42207,2873.7258490099,456.345266732673,45,24.3906732673267,25.1223934653465,6.43052475247525,-5.5,1168.67326732673,2871.68316831683,3315.90198019802,20,40,10.5940594059406,32,5305618.72744197,395786.572507439,0,0,0,0,0,0,0,24.3906732673267,14653.7968247799,12.8610495049505,6.89713841923874,6.86731971915091,-5.5,-5.48535979107015,-4.36475761119294,0.776868407602206,0.616339687268582,0.621394984533387 +42208,2873.72789594059,456.340641089109,45,25.3706039603961,26.1317220792079,6.58502970297029,-5.5,910.128712871287,2074.12475247525,2342.54356435643,20,40,10.0693069306931,32,5305622.62311476,395780.878666862,0,0,0,0,0,0,0,25.370603960396,14660.7100996149,13.1700594059406,7.06285460431551,7.05487423697712,-5.5,-5.48535979107015,-4.35114851610184,0.813007970310896,0.645011527389674,0.644504419109342 +42209,2873.73007851485,456.335985148515,45,25.4030396039604,26.1651307920792,6.65562376237624,-5.46881188118812,891.108910891089,449.082178217822,505.442574257426,20,40,10.8415841584158,32,5305626.77073321,395775.151629605,0,0,0,0,0,0,0,25.4030396039604,14667.7982724422,13.3112475247525,7.13857113104396,7.11684003096519,-5.46881188118812,-5.45417167225826,-4.33426002123508,0.806334920382723,0.63971736757366,0.6313568205275 +42210,2873.7322470297,456.331414455446,45,24.8243465346535,25.5690769306931,6.3030198019802,-5.5,869.346534653465,197.765346534653,278.632673267327,20,40,11,32,5305630.8903967,395769.530325504,0,0,0,0,0,0,0,24.8243465346534,14674.7672814906,12.6060396039604,6.76038141626413,6.78367637221272,-5.5,-5.48535979107015,-4.33446296750768,0.75759527971134,0.601049074983797,0.601201707099895 +42211,2873.73419920792,456.326766633663,45,24.4525742574257,25.1861514851485,6.40027722772277,-5.5,843.648514851485,312.257425742574,148.524752475248,20,40,10.8415841584158,32,5305634.61107174,395763.805710085,0,0,0,0,0,0,0,24.4525742574257,14681.6076834158,12.8005544554455,6.86469606451848,6.84513082370821,-5.5,-5.48535979107015,-4.35892466576503,0.767314367993104,0.608759852991372,0.604490371663675 +42212,2873.73563009901,456.321835643564,45,23.8987128712871,24.6156742574257,7.02016831683168,-5.5,807.59900990099,-47.4861386138614,-289.312871287129,20,40,11,32,5305637.37252208,395757.710909826,0,0,0,0,0,0,0,23.8987128712871,14688.332840319,14.0403366336634,7.52956787685247,7.34080331507486,-5.5,-5.48535979107015,-4.4473818390357,1.19423473346052,0.947463244667341,0.948986011676522 +42213,2873.73621881188,456.316773069307,61.039603960396,22.4133168316832,23.0857163366337,7.2220198019802,-5.5,780.608910891089,-1364.79603960396,-1863.37425742574,20,40,10.8118811881188,32,5305638.57693762,395751.424017534,0,0,0,0,0,0,0,22.4133168316831,14694.7914189219,14.4440396039604,7.74606617003801,7.42749681673167,-5.5,-5.48535979107015,-4.51843281122023,1.66982048693468,1.3247760195173,1.36518958972222 +42214,2873.73584881188,456.312085742574,184.009900990099,20.5855742574257,21.2031414851485,7.0270099009901,-5.5,933.381188118812,-366.10198019802,-687.698019801981,20,40,11,32,5305637.99705112,395745.572503123,0,0,0,0,0,0,0,20.5855742574257,14700.7508661716,14.0540198019802,7.53690590209362,7.15695574943335,-5.5,-5.48535979107015,-4.56070292879671,1.92670020176297,1.52857522354412,1.47832533723552 +42215,2873.73464623762,456.308076930693,225,19.4162871287129,19.9987757425743,6.73644554455445,-5.5,874.222772277228,169.257425742574,-42.4514851485148,20,40,11,32,5305635.85968807,395740.538371236,0,0,0,0,0,0,0,19.4162871287128,14706.2961266501,13.4728910891089,7.22525752763363,6.84281232631324,-5.5,-5.48535979107015,-4.5716185995244,1.93093546261041,1.5319353284482,1.54530696270171 +42216,2873.73277306931,456.304951089109,225,18.8522673267327,19.4178353465347,6.78669306930694,-5.5,842.89603960396,2555.42475247525,2289.04554455445,20,40,10.8217821782178,32,5305632.46028763,395736.581735687,0,0,0,0,0,0,0,18.8522673267327,14711.572020517,13.5733861386139,7.27915112835549,6.85327881928312,-5.5,-5.48535979107015,-4.59728409366488,2.12804280833624,1.68831326663462,1.70333462064118 +42217,2873.73034306931,456.302825742574,225,19.3643366336634,19.9452667326733,7.04226732673268,-5.36435643564356,851.841584158416,3355.99405940594,2950.79108910891,20,40,11,32,5305628.00692937,395733.852807262,0,0,0,0,0,0,0,19.3643366336634,14716.8655929593,14.0845346534654,7.55327044174138,7.10017020386262,-5.36435643564356,-5.34971622671371,-4.4905946874208,2.25697002468495,1.79059952184486,1.7269333039144 +42218,2873.72747574257,456.301923762376,225,20.1812178217822,20.7866543564357,6.16911881188119,-4.52742574257426,889.950495049505,3348.40693069307,2943.66435643565,20,40,11,32,5305622.71595957,395732.633224621,0,0,0,0,0,0,0,20.1812178217822,14722.3676566831,12.3382376237624,6.61676426234049,6.40452281667114,-4.52742574257426,-4.51278553364441,-3.69887523633265,1.25381764759297,0.994734203691523,1.11372775945747 +42219,2873.72443366337,456.302436930693,225,21.1157128712871,21.7491842574257,5.38865346534654,0.67029702970297,934.673267326733,3185.72178217822,2799.19306930693,20,40,11,32,5305617.06943839,395733.170688151,0,0,0,0,0,0,0,21.1157128712871,14728.0970370737,10.7773069306931,5.77966655512825,5.7949205966055,0.67029702970297,0.684937238632828,0.491677670710462,1.09801503143463,0.871125964794224,0.799138834544113 +42220,2873.72150772277,456.304393564356,225,22.0641089108911,22.7260321782178,5.70744554455446,3.1890099009901,994.361386138614,3188.5900990099,2811.28316831683,20,40,10.8811881188119,32,5305611.60555891,395735.510213038,0,0,0,0,0,0,0,22.0641089108911,14734.0988268701,11.4148910891089,6.1215909208509,6.11975275451769,3.1890099009901,3.20365010991995,2.49241338511627,1.1841976523479,0.939500182489105,0.890673171340713 +42221,2873.7189850495,456.307630693069,225,22.9243465346535,23.6120769306931,5.10370297029703,5.44178217821782,832.811881188119,3258.22178217822,2882.20693069307,20,40,11,32,5305606.85985166,395739.45839473,0,0,0,0,0,0,0,22.9243465346534,14740.3557177942,10.2074059405941,5.4740393967489,5.65461244316846,5.44178217821782,5.45642238714768,4.19365101270379,1.24485409246888,0.987622838744854,1.05309025065819 +42222,2873.71707435644,456.311838910891,225,23.5851089108911,24.2926621782178,4.93409900990099,5.48049504950495,775.905940594059,3213.11188118812,2852.27722772277,20,40,11,32,5305603.2258904,395744.636781529,0,0,0,0,0,0,0,23.585108910891,14746.8125662266,9.86819801980198,5.29212858288378,5.54813745329226,5.48049504950495,5.49513525843481,4.16737557022926,1.42685203903992,1.13201351852463,1.15144848428089 +42223,2873.71584772277,456.316758019802,200.049504950495,24.3132277227723,25.0426245544554,5.31764356435644,5.5,810.985148514852,3128.6297029703,2734.52772277228,20,40,10.8316831683168,32,5305600.84304892,395750.723646346,0,0,0,0,0,0,0,24.3132277227722,14753.4629420792,10.6352871287129,5.70350401239383,5.91609317368049,5.5,5.51464020892985,4.21889849913983,1.29294309831904,1.02577494087271,0.971131343268426 +42224,2873.71524188119,456.322147920792,110.940594059406,24.7216534653465,25.4633030693069,6.03628712871287,5.40475247524753,840.658415841584,2853.36435643564,2527.12079207921,20,40,10.980198019802,32,5305599.59953982,395757.417769396,0,0,0,0,0,0,0,24.7216534653465,14760.2947580583,12.0725742574257,6.47429400671794,6.55096853310976,5.40475247524753,5.41939268417738,4.24898514261335,0.879249719222946,0.69756536843798,0.686135827496828 +42225,2873.71503108911,456.327741980198,61.039603960396,24.9879504950495,25.737589009901,5.81470297029703,5.49881188118812,864.881188118812,2456.09603960396,2187.30297029703,20,40,11,32,5305599.08321181,395764.379439423,0,0,0,0,0,0,0,24.9879504950495,14767.1915034103,11.6294059405941,6.23663119210606,6.37757848479845,5.49881188118812,5.51345209011797,4.27901278275356,1.09015937322826,0.864893565748483,0.872715357799104 +42226,2873.71499405941,456.333361089109,46.7821782178218,25.3403861386139,26.1005977227723,5.62436633663366,5.46306930693069,883.391089108911,2142.19504950495,1923.14950495049,20,40,11,32,5305598.88819602,395771.378128516,0,0,0,0,0,0,0,25.3403861386138,14774.1877023927,11.2487326732673,6.03248329451452,6.23588850792233,5.46306930693069,5.47770951586055,4.21378857402494,1.21560308605925,0.964416133508316,0.958342689002097 +42227,2873.71503920792,456.339027029703,45,25.670396039604,26.4405079207921,5.89175247524753,5.5,903.064356435644,1933.3702970297,1739.58910891089,20,40,11,32,5305598.84435734,395778.437906705,0,0,0,0,0,0,0,25.6703960396039,14781.2595783278,11.7835049504951,6.31927158635582,6.48220047999393,5.5,5.51464020892985,4.27016035948147,1.10507471069288,0.876726862531426,0.868617067775496 +42228,2873.71509742574,456.344784653465,45,26.0883663366337,26.8710173267327,6.46558415841585,5.49633663366337,914.232673267327,1138.47128712871,1041.97722772277,20,40,11,32,5305598.82267371,395785.612334943,0,0,0,0,0,0,0,26.0883663366336,14788.4674771177,12.9311683168317,6.93474181631383,6.99430931487183,5.49633663366337,5.51097684259322,4.33440998166107,0.844762180336511,0.670204185097373,0.682740520125745 +42229,2873.71512425742,456.350543168317,50.3465346534653,25.8222475247525,26.596914950495,6.51239603960396,5.41594059405941,908.29702970297,173.581188118812,221.620792079208,20,40,11,32,5305598.74284105,395792.786823249,0,0,0,0,0,0,0,25.8222475247524,14795.6850028602,13.0247920792079,6.98495047527205,7.01893932069091,5.41594059405941,5.43058080298926,4.28602975579988,0.824560983791519,0.654177276242345,0.654314997349347 +42230,2873.71502118812,456.356215346535,77.0792079207921,25.3479801980198,26.1084196039604,6.52708910891089,5.5,894.460396039604,-237.248514851485,-110.158415841584,20,40,11,32,5305598.42433812,395799.849414333,0,0,0,0,0,0,0,25.3479801980198,14802.7916413366,13.0541782178218,7.00070970748314,7.00423439914377,5.5,5.51464020892985,4.36860818346673,0.798955928304778,0.633863138433728,0.635912959651336 +42231,2873.71478,456.361668910891,96.6831683168317,23.4504752475248,24.1539895049505,6.20280198019802,5.5,987.950495049505,-1403.03069306931,-1118.7495049505,20,40,11,32,5305597.85491725,395806.63505165,0,0,0,0,0,0,0,23.4504752475247,14809.6246775577,12.405603960396,6.65289155882439,6.61970506886213,5.5,5.51464020892985,4.38947755788469,0.799790456496833,0.634525223337522,0.627502948081743 +42232,2873.71447970297,456.366615346535,102.029702970297,21.5232079207921,22.1689041584158,5.35049504950495,5.38673267326733,1045.32178217822,-761.30594059406,-515.193069306931,20,40,11,32,5305597.18741937,395812.786964655,0,0,0,0,0,0,0,21.5232079207921,14815.8301674917,10.7009900990099,5.73873927686578,5.7842739190709,5.38673267326733,5.40137288219718,4.26210095090839,0.783420407413533,0.621537810239191,0.620764638780582 +42233,2873.71412178218,456.371280990099,114.504950495049,20.8497821782178,21.4752756435644,5.009,5.5,1053.71287128713,815.078217821782,940.656435643564,20,40,11,32,5305596.41950362,395818.587159042,0,0,0,0,0,0,0,20.8497821782178,14821.6900980748,10.018,5.37246456110268,5.4551804341288,5.5,5.51464020892985,4.3097023778381,0.76973726862081,0.610682095935671,0.637603442855775 +42234,2873.71371089109,456.375937524752,123.415841584158,21.5541782178218,22.2008035643564,4.69386138613861,5.5,1094.18811881188,4238.52376237624,4530.2900990099,20,40,11,32,5305595.55367947,395824.374236337,0,0,0,0,0,0,0,21.5541782178218,14827.5383578933,9.38772277227722,5.03445876457536,5.22742726905721,5.5,5.51464020892985,4.22422034594633,1.12044019145452,0.888917286951683,0.862077748966101 +42235,2873.71325237624,456.380937821782,125.19801980198,23.7085247524752,24.4197804950495,5.46435643564356,5.49722772277228,1198.08910891089,5338.08514851485,5948.36534653466,20,40,11,32,5305594.59191604,395830.58796042,0,0,0,0,0,0,0,23.7085247524752,14833.8101974697,10.9287128712871,5.86086270707294,6.00626613562723,5.49722772277228,5.51186793170213,4.27254833024821,0.989878390436675,0.785334210563071,0.827062916064026 +42236,2873.71287108911,456.386508712871,98.4653465346535,26.3514158415842,27.1419583168317,6.04977227722772,4.68217821782178,1233.51485148515,5933.45940594059,5247.41782178218,20,40,11,32,5305593.76038227,395837.515078502,0,0,0,0,0,0,0,26.3514158415841,14840.7650926842,12.0995445544554,6.48875766862595,6.65637858425506,4.68217821782178,4.69681842675163,3.62585804928197,1.07748357166693,0.854837036877267,0.859784685809406 +42237,2873.71273693069,456.392656435644,50.3465346534653,29.0081386138614,29.8783827722772,6.30164356435644,4.64564356435644,1029.69306930693,6197.2396039604,5193.28811881188,20,40,11,32,5305593.37365527,395845.169040521,0,0,0,0,0,0,0,29.0081386138613,14848.4549075907,12.6032871287129,6.75890531567293,7.02297857078479,4.64564356435644,4.66028377328629,3.56971379270763,1.46589296713307,1.1629871984634,1.12952600358486 +42238,2873.71303,456.399345049505,45,31.4850891089109,32.4296417821782,6.54045544554456,1.64633663366337,1102.15841584158,5862.75346534653,4919.16930693069,20,40,11,32,5305593.76615087,395853.511092416,0,0,0,0,0,0,0,31.4850891089108,14856.8618395214,13.0809108910891,7.01504593624658,7.36958956158034,1.64633663366337,1.66097684259322,1.27341813305686,1.83223575712112,1.45363050227753,1.50381009762805 +42239,2873.71388306931,456.406448415842,45,33.5541485148515,34.560772970297,5.62414906490099,-2.03118811881188,989.920792079208,5006.86138613861,4221.26633663366,20,40,11,32,5305595.18664705,395862.388532934,0,0,0,0,0,0,0,33.5541485148514,14865.9129626787,11.248298129802,6.03225025704518,6.70756844258373,-2.03118811881188,-2.01654790988202,-1.39216746569914,3.35619061894819,2.66268193719042,2.59855440269387 +42240,2873.7153539604,456.413731287129,45,35.1879306930693,36.2435686138614,5.38099889989109,1.34742574257426,887.039603960396,4770.76435643564,4057.84356435644,20,40,10.5940594059406,32,5305597.74753952,395871.510233014,0,0,0,0,0,0,0,35.1879306930693,14875.4626014026,10.7619977997822,5.77145655679724,6.59517919029959,1.34742574257426,1.36206595150412,0.937544531743875,4.04194131049239,3.20673207828843,3.18737837231657 +42241,2873.71739920792,456.421102178218,45,36.8296732673267,37.9345634653465,6.07420242025743,-3.3360396039604,930.163366336634,4636.86930693069,3958.52079207921,20,40,11,32,5305601.37037278,395880.760768152,0,0,0,0,0,0,0,36.8296732673267,14885.4702415016,12.1484048405149,6.51496051902518,7.27778306118693,-3.3360396039604,-3.32139939503054,-2.40568194349599,3.7842311958317,3.00227406465113,3.04495513790274 +42242,2873.71998950495,456.42866,45,38.3315940594059,39.4815418811881,6.27955445542574,-0.861980198019802,1093.24752475248,3578.63465346535,3101.18316831683,20,40,11,32,5305605.99863817,395890.262370477,0,0,0,0,0,0,0,38.3315940594059,14895.9267481298,12.5591089108515,6.73521337019149,7.53972801773292,-0.861980198019802,-0.847339989089945,-0.583439975780652,3.96646572554531,3.14685244105839,2.99986344004227 +42243,2873.72298455446,456.436252574257,45,39.6486435643564,40.8381028712871,6.89591364137624,-2.3790099009901,1403.4801980198,5327.78910891089,4618.60198019802,20,40,10.9207920792079,32,5305611.37587819,395899.820773435,0,0,0,0,0,0,0,39.6486435643564,14906.7259711771,13.7918272827525,7.39629699635023,8.13974786799717,-2.3790099009901,-2.36436969206024,-1.69729444228341,3.68098156985001,2.92035949383653,3.01053588838632 +42244,2873.72631455445,456.443779405941,45,42.1682574257426,43.4333051485149,7.00964191418812,-1.12910891089109,1505.0099009901,5992.8198019802,5029.55247524752,20,40,10,32,5305617.37505394,395909.308451239,0,0,0,0,0,0,0,42.1682574257425,14918.0842020077,14.0192838283762,7.51827765422152,8.37954580862696,-1.12910891089109,-1.11446870196123,-0.790048219002479,4.27417250990331,3.39097602928228,3.37566743479252 +42245,2873.72998821782,456.451620693069,45,44.7594851485148,46.1022697029703,8.38416996698019,0.0651485148514854,1583.85148514851,5789.2306930693,4922.38712871287,20,40,10,32,5305624.00376267,395919.19931641,0,0,0,0,0,0,0,44.7594851485148,14930.1747457095,16.7683399339604,8.99254462404921,9.69863598835648,0.0651485148514854,0.0797887237813433,0.0575132504503407,3.54943432335281,2.8159946001509,2.72733545025479 +42246,2873.73398336634,456.459863861386,45,47.210702970297,48.6270240594059,10.0596930693069,1.51039603960396,1673.28217821782,5630.24653465347,4670.11089108911,20,40,10,32,5305631.21896069,395929.601532362,0,0,0,0,0,0,0,47.210702970297,14942.9519124587,20.1193861386138,10.7896475365186,11.2649137494365,1.51039603960396,1.52503624853382,1.16330680883307,2.49359031505329,1.97832562106565,2.20937999674359 +42247,2873.73830633663,456.468486633663,45,49.5030198019802,50.9881103960396,10.3243762376238,1.36405940594059,1755.59405940594,5444.20297029703,4483.86336633663,20,40,10,32,5305639.03288874,395940.48755433,0,0,0,0,0,0,0,49.5030198019801,14956.3863820682,20.6487524752475,11.0735367243211,11.6210375270222,1.36405940594059,1.37869961487045,1.03609928779681,2.84989433501901,2.26100452278082,2.10915072182836 +42248,2873.74291742574,456.477456732673,45,51.6826336633664,53.2331126732673,10.9954548954851,-0.532574257425743,1829.88613861386,5220.62178217822,4382.23663366337,20,40,10.049504950495,32,5305647.37273092,395951.815842556,0,0,0,0,0,0,0,51.6826336633663,14970.4470161441,21.9909097909703,11.7933103931317,12.3171350757887,-0.532574257425743,-0.517934048495886,-0.395048367482263,2.77873601982214,2.20455005339344,2.40843212395874 +42249,2873.74774128713,456.486792871287,45,53.7441683168317,55.3564933663366,9.99312981326733,1.97158415841584,1908.0099009901,4898.64257425743,4350.68514851485,20,40,11,32,5305656.09850198,395963.607187029,0,0,0,0,0,0,0,53.7441683168316,14985.0934674367,19.9862596265347,10.7182542975199,11.5825718294344,1.97158415841584,1.9862243673457,1.46806493470972,4.31750597409997,3.42535525427055,3.28838295827964 +42250,2873.75280277228,456.496527623762,45,55.6593663366337,57.3291473267327,10.8216710672277,1.54326732673267,1905.85643564356,4476.73861386139,3972.42772277228,20,40,11,32,5305665.25550671,395975.90299155,0,0,0,0,0,0,0,55.6593663366336,15000.2974083608,21.6433421344555,11.6069164105792,12.3968546993417,1.54326732673267,1.55790753566253,1.1626879186139,3.99844097256311,3.17222046163231,3.13224966808701 +42251,2873.75806544554,456.506532673267,45,57.3774257425743,59.0987485148515,12.6255852583168,0.444851485148515,1476.17821782178,4483.6603960396,4051.47623762376,20,40,11,32,5305674.77913788,395988.542187839,0,0,0,0,0,0,0,57.3774257425742,15015.9975485698,25.2511705166337,13.5417267645214,14.0300919548918,0.444851485148515,0.459491694078372,0.378248289502101,2.71441389472565,2.15351917341625,2.1948157914004 +42252,2873.76347237624,456.516778910891,45,59.1021386138614,60.8752027722772,14.3243762376238,1.17316831683168,1496.73267326733,4442.43861386139,4055.96435643564,20,40,11,32,5305684.56459605,396001.486609919,0,0,0,0,0,0,0,59.1021386138613,15032.184360286,28.6487524752475,15.3637859246426,15.5739415224459,1.17316831683168,1.18780852576154,0.932039843091284,1.76312224287276,1.39879830503406,1.46228470339732 +42253,2873.76903920792,456.527305346535,45,60.8756732673267,62.7019434653466,15.2247128712871,3.93455445544554,1554.71287128713,4378.40792079208,4020.94752475248,20,40,11,32,5305694.63998487,396014.785371808,0,0,0,0,0,0,0,60.8756732673267,15048.8528649065,30.4494257425742,16.3294530552913,16.4410151316401,3.93455445544554,3.9491946643754,3.10902785416895,1.67090780199028,1.32563865650289,1.28720296782235 +42254,2873.77477237624,456.538111485149,45,62.5569702970297,64.4336794059406,15.8195445544554,5.20386138613861,1592.66336633663,4273.83663366337,3975.9900990099,20,40,11,32,5305705.01723885,396028.438067745,0,0,0,0,0,0,0,62.5569702970297,15065.9962323432,31.6390891089109,16.967447093551,17.0411335999317,5.20386138613861,5.21850159506847,4.12076261402907,1.75909872480319,1.39560618929805,1.36114552395758 +42255,2873.78065386139,456.549206039604,45,64.1600495049505,66.084850990099,15.7938712871287,4.73613861386139,1635.49504950495,4134.72772277228,3942.37227722772,20,40,11,32,5305715.6627861,396042.45494612,0,0,0,0,0,0,0,64.1600495049504,15083.598120187,31.5877425742574,16.9399109148964,17.1120440807763,4.73613861386139,4.75077882279124,3.72946073193712,1.81724210807135,1.44173507587595,1.44694020439181 +42256,2873.78666980198,456.560593663366,45,65.7565841584158,67.7292816831683,16.0678514851485,5.14237623762376,1677.15841584158,4049.86138613862,3864.46930693069,20,40,11,32,5305726.55084878,396056.841337338,0,0,0,0,0,0,0,65.7565841584158,15101.6451186744,32.135702970297,17.233771746261,17.4357018091193,5.14237623762376,5.15701644655362,4.0425406965114,2.04615815273236,1.62334890132755,1.6086117382725 +42257,2873.79282207921,456.572255148515,45,67.2683663366337,69.2864173267327,16.5075742574257,4.4809900990099,1711.94554455446,3906.81485148515,3720.9504950495,20,40,11,32,5305737.68534511,396071.573372832,0,0,0,0,0,0,0,67.2683663366336,15120.1222885038,33.0151485148515,17.7054018142924,17.8972216211999,4.4809900990099,4.49563030793975,3.52953788218789,1.99265860442016,1.58090426777947,1.64253035815063 +42258,2873.79910405941,456.584185148515,45,68.7167227722773,70.7782244554455,16.4398217821782,3.2880198019802,1552.04455445545,3945.43366336633,3729.12277227723,20,40,11,32,5305749.05410983,396086.644167239,0,0,0,0,0,0,0,68.7167227722772,15139.0112201045,32.8796435643565,17.6327330636048,17.9248050699685,3.2880198019802,3.30266001091005,2.58368132187748,2.12748368922626,1.68786968147397,1.64243577364586 +42259,2873.80550039604,456.596395247525,45,70.102603960396,72.2056820792079,17.8641287128713,4.25673267326733,1524.70792079208,3821.13663366336,3630.64257425743,20,40,11,32,5305760.62845867,396102.067635317,0,0,0,0,0,0,0,70.1026039603959,15158.2980045654,35.7282574257426,19.1603909812094,19.2147950326463,4.25673267326733,4.27137288219718,3.37769612660907,1.72796813395619,1.37090828880503,1.37372754028953 +42260,2873.81202811881,456.60883980198,45,71.4927623762376,73.6375452475248,18.5901386138614,4.85148514851485,1556.55940594059,3814.65346534653,3558.33366336634,20,40,11,32,5305772.44096277,396117.787483007,0,0,0,0,0,0,0,71.4927623762375,15177.9675910341,37.1802772277228,19.9390818304965,19.9106308374019,4.85148514851485,4.8661253574447,3.86544384485021,1.8545246170625,1.47131368881391,1.49132244927623 +42261,2873.81869613861,456.62150019802,45,72.7844356435643,74.9679687128713,18.1115643564356,5.28366336633663,1586.25247524752,3774.14554455445,3495.37920792079,20,40,11,32,5305784.5085479,396133.780816446,0,0,0,0,0,0,0,72.7844356435643,15198.0111391639,36.2231287128713,19.4257811241926,19.5764918535822,5.28366336633663,5.29830357526649,4.17036417214799,2.18932734080146,1.73693422895512,1.70216044729593 +42262,2873.82550029703,456.634364950495,45,74.0777722772277,76.3001054455445,18.9633762376238,5.35178217821782,1613.26237623762,3721.54554455446,3456.47227722772,20,40,11,32,5305796.82377091,396150.033186214,0,0,0,0,0,0,0,74.0777722772276,15218.412465044,37.9267524752475,20.3394024347156,20.3750480866207,5.35178217821782,5.36642238714768,4.24840841034405,2.05283199403057,1.62864368898832,1.66603115138351 +42263,2873.83242485149,456.647438613861,45,75.2669504950495,77.524959009901,18.7596435643564,5.41168316831683,1637.06435643564,3643.49504950495,3431.32772277228,20,40,11,32,5305809.35737125,396166.549737345,0,0,0,0,0,0,0,75.2669504950494,15239.1564821782,37.5192871287129,20.1208864500744,20.2695923180866,5.41168316831683,5.42632337724669,4.27403638256398,2.21652312265962,1.75851039233293,1.7432733721899 +42264,2873.83945891089,456.660721683168,45,76.4574059405941,78.7511281188119,19.2569405940594,5.19435643564357,1665.68316831683,3561.26732673267,3409.78217821782,20,40,11,32,5305822.08916601,396183.330719972,0,0,0,0,0,0,0,76.457405940594,15260.2327062981,38.5138811881188,20.6542684960758,20.7617069027125,5.19435643564357,5.20899664457342,4.11028337235717,2.16174279560325,1.71504963460871,1.73546364480345 +42265,2873.84659524752,456.674194950495,45,77.6009504950495,79.928979009901,19.2414356435643,4.26386138613861,1687.63861386139,3505.31287128713,3365.29900990099,20,40,11,32,5305835.00619959,396200.351962804,0,0,0,0,0,0,0,77.6009504950494,15281.6286295104,38.4828712871287,20.6376384707102,20.8162313558455,4.26386138613861,4.27850159506847,3.36990877443996,2.07874568562496,1.64920268767712,1.66751833234708 +42266,2873.85381524752,456.687902970297,45,78.7075247524753,81.0687504950495,19.3542574257426,3.64356435643564,1711.27722772277,3476.99603960396,3323.89405940594,20,40,11,32,5305848.07299675,396217.668343128,0,0,0,0,0,0,0,78.7075247524752,15303.342249945,38.7085148514851,20.7586468609024,20.9757279661181,3.64356435643564,3.6582045653655,2.87521028209299,2.14212137124373,1.69948269632783,1.64288473580099 +42267,2873.86112009901,456.701830891089,45,79.8308514851485,82.225777029703,21.1100099009901,2.55554455445545,1734.34653465347,3460.79405940594,3298.64554455445,20,40,11,32,5305861.29209345,396235.261396975,0,0,0,0,0,0,0,79.8308514851484,15325.3611810506,42.2200198019802,22.6418007741258,22.5371965484323,2.55554455445545,2.5701847633853,2.0529473104566,1.79982532301488,1.42791721978876,1.4879522502448 +42268,2873.86851178218,456.715970891089,45,80.8906435643564,83.3173628712871,19.4317623762376,2.41118811881188,1758.55445544554,3398.62475247524,3287.36534653465,20,40,11,32,5305874.6673355,396253.121443559,0,0,0,0,0,0,0,80.8906435643563,15347.6853221397,38.8635247524752,20.841775748873,21.1690692720871,2.41118811881188,2.42582832774174,1.8971014806745,2.34523779682304,1.86062802415376,1.82260881320493 +42269,2873.87597138614,456.730351782178,45,81.9332178217822,84.3912143564357,20.7738217821782,3.33623762376238,1780.12871287129,3211.80297029703,3037.84455445545,20,40,11,32,5305888.16305061,396271.283740052,0,0,0,0,0,0,0,81.9332178217821,15370.3043663916,41.5476435643564,22.2812180721532,22.368484970046,3.33623762376238,3.35087783269223,2.64763796076893,2.02751823008624,1.60856065150043,1.66489926995996 +42270,2873.88352653465,456.744874455445,45,82.7248316831683,85.2065766336634,21.080297029703,2.93712871287129,1795.91584158416,2748.12673267327,2595.71584158416,20,40,11,32,5305901.83262912,396289.625745856,0,0,0,0,0,0,0,82.7248316831682,15393.1841754125,42.1605940594059,22.609931868556,22.6747890912729,2.93712871287129,2.95176892180114,2.34164722248549,2.29742079963605,1.82269172399797,1.73692214381417 +42271,2873.89116247525,456.759484653466,45,83.2741584158416,85.7723831683168,21.4351782178218,3.75009900990099,1807.13366336634,2453.49603960396,2285.46237623762,20,40,11,32,5305915.64996051,396308.079380354,0,0,0,0,0,0,0,83.2741584158414,15416.2480017877,42.8703564356436,22.99056405194,23.0088338643378,3.75009900990099,3.76473921883084,2.98616624975013,1.93468307276291,1.53490854868317,1.54546097511731 +42272,2873.89886227723,456.774151881188,45,83.7027524752475,86.2138350495049,22.3343861386139,3.23643564356436,1815.66831683168,2283.84653465346,2195.01386138614,20,40,11,32,5305929.58436685,396326.606091364,0,0,0,0,0,0,0,83.7027524752475,15439.4410558581,44.6687722772277,23.9550205677153,23.7990573971561,3.23643564356436,3.25107585249421,2.59373580860347,2.08134056425802,1.6512613718372,1.66537975986352 +42273,2873.90659881188,456.78888009901,45,84.0219504950495,86.542609009901,22.4235643564356,3.35118811881188,1821.5,2142.61782178218,2081.41683168317,20,40,11,32,5305943.5855085,396345.209907892,0,0,0,0,0,0,0,84.0219504950494,15462.7365435918,44.8471287128713,24.0506697621393,23.8927911654071,3.35118811881188,3.36582832774174,2.69324124743653,2.05682875897852,1.6318145797518,1.65589750019034 +42274,2873.91437544555,456.803654554455,45,84.3006435643564,86.8296628712871,22.2211584158416,3.84336633663366,1827.9603960396,1982.98910891089,1944.76237623762,20,40,11,32,5305957.65995185,396363.872564192,0,0,0,0,0,0,0,84.3006435643563,15486.1203714521,44.4423168316832,23.8335767809458,23.7366666719257,3.84336633663366,3.85800654556352,3.07480953047435,1.94557304843947,1.54354826698961,1.56093011354487 +42275,2873.92216752476,456.818469009901,45,84.4800198019802,87.0144203960396,22.589495049505,3.22712871287129,1830.60891089109,1858.89405940594,1817.79108910891,20,40,11,32,5305971.76217028,396382.585469205,0,0,0,0,0,0,0,84.4800198019801,15509.5613448845,45.1789900990099,24.2286407679516,24.0602257208342,3.22712871287129,3.24176892180114,2.59214129584342,2.01371284682095,1.59760795279227,1.5921390473135 +42276,2873.92997881188,456.833301881188,45,84.5982475247525,87.1361949504951,22.2139504950495,2.01633663366337,1834.05445544554,1811.54950495049,1766.34257425743,20,40,11,32,5305985.89961617,396401.321861086,0,0,0,0,0,0,0,84.5982475247524,15533.0447083333,44.427900990099,23.8258458368422,23.7472216503854,2.01633663366337,2.03097684259322,1.62362048680746,1.99301006978082,1.58118310786146,1.54097558099538 +42277,2873.93783287129,456.848091485149,45,84.7185148514851,87.2600702970297,21.0748118811881,0.921287128712872,1835.82178217822,1770.32673267327,1725.26930693069,20,40,11,32,5306000.11731825,396420.005687327,0.118811881188119,0.118811881188119,630416.205853101,47100.7221912788,0.153283563570672,0,0,84.718514851485,15556.5612217546,42.1496237623762,22.6040487050487,22.7887710262646,0.921287128712872,0.935927337642729,0.737767182695959,1.79253766282,1.42213545010747,1.50330585090052 +42278,2873.94569821782,456.86289970297,45,84.778297029703,87.3216459405941,20.7266930693069,2.90029702970297,1837.39108910891,1707.65148514852,1679.34356435644,20,40,11,32,5306014.35557134,396438.712982858,1,1,5306011.30799429,396441.195703048,14.3396793654338,0,0,84.7782970297029,15580.1029262651,41.4533861386139,22.2306695914761,22.4913271169186,2.90029702970297,2.91493723863282,2.29479277926555,2.39286641178735,1.89841486857281,1.80295334526414 +42279,2873.95353742574,456.877784356436,45,84.836198019802,87.381283960396,20.6456138613861,2.7860396039604,1839.56930693069,1647.44752475247,1663.59405940594,20,40,11,32,5306028.54375787,396457.51452856,1,1,5306026.17454261,396459.444618752,37.877673827326,0,0,84.8361980198019,15603.6634832508,41.2912277227723,22.1437070897399,22.428744820814,2.7860396039604,2.80067981289025,2.19521997030624,2.1613902173683,1.71476991161195,1.8083542471953 +42280,2873.96135475248,456.892700693069,45,84.8632277227723,87.4091245544555,20.4242277227723,1.73,1837.83663366337,1613.32871287129,1634.28217821782,20,40,11,32,5306042.69076511,396476.354720265,1,1,5306041.04358785,396477.696599463,61.4196216275298,0,0,84.8632277227722,15627.2365765677,40.8484554455446,21.9062566637023,22.2402908360468,1.73,1.74464020892986,1.36467655141521,2.4392643131066,1.93522530867976,1.87528069428943 +42281,2873.9691109901,456.907678316831,45,84.9342871287129,87.4823157425743,20.5069702970297,0.392277227722772,1841.01485148515,1583.15643564356,1622.79900990099,20,40,11,32,5306056.72330536,396495.269131076,1,1,5306055.90331365,396495.937140427,84.9468141006771,0,0,84.9342871287128,15650.8202179318,41.0139405940594,21.9950032294624,22.3160094542645,0.392277227722772,0.40691743665263,0.321318556994438,2.34186247335997,1.85795016290043,1.85496479017935 +42282,2873.97687881188,456.922711089109,45,84.9679603960396,87.5169992079207,20.9699405940594,3.40564356435644,1838.02475247525,1577.58217821782,1605.2603960396,20,40,11,32,5306070.77613244,396514.252529236,1,1,5306070.80491361,396514.229082551,108.540305319969,0,0,84.9679603960395,15674.4132369087,41.9398811881188,22.4915677161135,22.7094773336052,3.40564356435644,3.42028377328629,2.69336531501279,2.2819372925207,1.81040766167813,1.78338346447389 +42283,2873.98462910891,456.937754356435,45,84.9682079207921,87.5172541584158,22.3794455445545,2.97089108910891,1840.63366336634,1552.21386138614,1571.42772277228,20,40,11,32,5306084.79632462,396533.248325602,1,1,5306085.69956608,396532.512496526,132.122796679542,0,0,84.9682079207919,15698.0124565456,44.7588910891089,24.0033495877912,23.9097896888048,2.97089108910891,2.98553129803877,2.38319963095733,1.95066434556423,1.54758752054525,1.53559599909016 +42284,2873.99238207921,456.952785940594,45,84.964702970297,87.513644059406,22.3629108910891,3.17287128712871,1838.57425742574,1582.38118811881,1578.12574257426,20,40,11,32,5306098.82179098,396552.229565335,1,1,5306100.58919447,396550.789743383,155.697333505,0,0,84.9647029702969,15721.6148055005,44.7258217821782,23.9856151418394,23.8954349815899,3.17287128712871,3.18751149605857,2.53779425222746,1.92942297362769,1.53073537363283,1.51901294291861 +42285,2874.00015118812,456.967783168317,45,84.9652277227723,87.5141845544554,21.6782475247525,2.78019801980198,1840.21287128713,1603.23465346535,1552.79108910891,20,40,11,32,5306112.87798006,396571.168453234,1,1,5306115.47034,396569.056577386,179.258439522598,0,0,84.9652277227722,15745.2154217547,43.3564950495049,23.2512710268606,23.3130101288949,2.78019801980198,2.79483822873183,2.21391095268691,1.89009283022507,1.49953224058252,1.52501829686163 +42286,2874.00795920792,456.982739306931,45,84.9688712871287,87.5179374257426,20.8988712871287,3.08,1838.67326732673,1618.68118811881,1559.64752475248,20,40,11,32,5306127.00722391,396590.057358949,1,1,5306130.35615319,396587.329141014,202.826935781593,0,0,84.9688712871286,15768.8184112761,41.7977425742574,22.4153414568068,22.6508905129102,3.08,3.09464020892986,2.42922664394364,2.14672418466122,1.70313440433208,1.74466801575321 +42287,2874.01582069307,456.997635247525,45,85.0136435643565,87.5640528712871,20.6359900990099,3.04722772277228,1839.9504950495,1655.78415841584,1547.72772277228,20,40,11,32,5306141.23690828,396608.872962858,1,1,5306145.24613962,396605.606827354,226.402039467055,0,0,85.0136435643563,15792.4286278053,41.2719801980198,22.1333850050302,22.4289387405963,3.04722772277228,3.06186793170213,2.39968238857121,2.38039408592001,1.88851977006016,1.899664009288 +42288,2874.02373574257,457.012458118812,45,84.9932079207921,87.5430041584159,20.4634851485148,4.6060396039604,1842.0198019802,1598.97623762376,1524.37326732673,20,40,11,32,5306155.56750321,396627.599235235,1.45544554455446,1,5306160.1326467,396623.880056503,135.586917049693,0,0,84.993207920792,15816.0404469747,40.9269702970297,21.948362698552,22.2788385240363,4.6060396039604,4.62067981289025,3.61687047843682,2.63096010232513,2.08730991093862,2.13391222745067 +42289,2874.03165277228,457.027282970297,45,84.9790198019802,87.5283903960396,20.2276127612871,3.54544554455445,1840.79207920792,1580.34653465346,1551.09108910891,20,40,11,32,5306169.90178169,396646.327946761,2,1,5306175.02242418,396642.155997195,22.3963721242628,0,0,84.9790198019801,15839.6475113586,40.4552255225742,21.6953748683816,22.0793185320182,3.54544554455445,3.56008575348431,2.78163805566091,2.67272918271953,2.12044800961255,2.10880838922012 +42290,2874.03956495049,457.042116831683,45,84.9870198019802,87.5366303960396,20.0527821782178,3.34792079207921,1843.57920792079,1571.37722772277,1551.0900990099,20,40,11,32,5306184.2269323,396665.067626988,2,1,5306189.91414961,396660.434070983,45.9728745707844,0,0,84.9870198019801,15863.2560854785,40.1055643564357,21.5078581760804,21.9308673248822,3.34792079207921,3.36256100100906,2.62234703474021,2.79844395317917,2.22018562482757,2.16610591764697 +42291,2874.04747316832,457.056960693069,45,84.9903762376238,87.5400875247525,19.4520330032673,2.39267326732673,1841.0198019802,1526.33069306931,1523.95148514851,20,40,11,32,5306198.54458368,396683.81953875,2,1,5306204.80887272,396678.71582413,69.5541229457568,0,0,84.9903762376237,15886.8652484873,38.9040660065347,20.8635172592241,21.4214618124011,2.39267326732673,2.40731347625659,1.86177261632934,3.22441472633839,2.5581356438338,2.50443071718137 +42292,2874.0553670297,457.07182009901,45,85.0003564356436,87.5503671287129,20.5283564356436,3.93811881188119,1840.06930693069,1537.45742574257,1568.52574257426,20,40,11,32,5306212.83535526,396702.590243572,2,1,5306219.7020745,396696.995709989,93.1329627446582,0,0,85.0003564356435,15910.4721874312,41.0567128712871,22.0179411954839,22.335268076332,3.93811881188119,3.95275902081104,3.09284410184247,2.50842727410188,1.9900967352087,2.03691602789347 +42293,2874.0632470297,457.086701485149,45,85.0021188118811,87.5521823762376,20.7424554455445,3.48029702970297,1840.38613861386,1538.98415841584,1548.50396039604,20,40,11,32,5306227.10002073,396721.387774199,2,1,5306234.59799714,396715.278935418,116.716110185454,0,0,85.002118811881,15934.0816590208,41.4849108910891,22.2475757219883,22.5182978643126,3.48029702970297,3.49493723863282,2.73990625008506,2.33536671297834,1.85279665828754,1.8915831437564 +42294,2874.0711250495,457.101582673267,45,84.9826138613861,87.5320922772277,20.3014059405941,3.75158415841584,1842.72277227723,1518.83663366337,1542.22376237624,20,40,11,32,5306241.36108278,396740.184899462,2,1,5306249.49228365,396733.560152672,140.296667323171,0,0,84.982613861386,15957.6903390263,40.6028118811881,21.7745226505093,22.1425438759252,3.75158415841584,3.7662243673457,2.94340455683922,2.568183032621,2.0375048228047,2.01123679196951 +42295,2874.07898623763,457.116477524752,45,84.9761782178218,87.5254635643564,19.6579411440594,3.62633663366337,1842.27227722772,1555.28514851485,1595.66336633663,20,40,11,32,5306255.59072244,396758.998392782,2,1,5306264.38204901,396751.835820676,163.870066598979,0,0,84.9761782178217,15981.2949180417,39.3158822881188,21.0843665683173,21.5943071474371,3.62633663366337,3.64097684259322,2.82886898856694,3.11488425115823,2.47123807127415,2.49556336818887 +42296,2874.08683366337,457.131391881188,45,84.9996039603961,87.5495920792079,19.335403740396,2.42277227722772,1839.47524752475,1524.34950495049,1565.05247524753,20,40,11,32,5306269.79449508,396777.835632245,2,1,5306279.27312255,396770.113094339,187.445536982167,0,0,84.9996039603959,16004.9012003299,38.6708074807921,20.7384251087822,21.323602036852,2.42277227722772,2.43741248615758,1.88669154831935,3.26469061315558,2.59008909597892,2.5826546228613 +42297,2874.09466346535,457.146329108911,45,84.9989900990099,87.5489598019802,19.4744070407921,2.98772277227723,1841.31683168317,1543.25643564356,1568.82574257426,20,40,11,32,5306283.96517334,396796.700683047,2,1,5306294.16461148,396788.390877857,211.021665015241,0,0,84.9989900990097,16028.5124785478,38.9488140815842,20.8875148083737,21.4398259276063,2.98772277227723,3.00236298120708,2.32797581296849,3.25393015802155,2.58155213465153,2.56992476322639 +42298,2874.10245663366,457.161242376237,45,85.0153762376238,87.5658375247525,19.376397689406,1.82405940594059,1840.39603960396,1542.42673267327,1542.14257425743,20,40,11,32,5306298.06858774,396815.534582866,2,1,5306309.01401055,396806.617000351,234.531156583506,0,0,85.0153762376237,16052.1276926842,38.7527953788119,20.7823936730216,21.3596365901789,1.82405940594059,1.83869961487045,1.42375377247982,3.22871815362295,2.56154982955792,2.55215402217893 +42299,2874.11027524752,457.176219207921,45,85.0147524752476,87.565195049505,19.1121468645545,1.90455445544554,1842.71287128713,1505.84752475248,1518.99405940594,20,40,11,32,5306312.2177809,396834.448407553,0.356435643564356,0.178217821782178,945680.386475268,70719.9162345223,44.2552175273712,0,0,85.0147524752474,16075.7491293453,38.2242937291089,20.4989682005208,21.1322970502232,1.90455445544554,1.9191946643754,1.48319045848507,3.57570386117421,2.83683591454481,2.84436538383563 +42300,2874.11808405941,457.19123,45,85.0139504950495,87.564369009901,19.9224510452475,1.17821782178218,1840.95544554455,1533.34158415841,1510.20099009901,20,40,11,32,5306326.34812215,396853.404114999,0,0,0,0,0,0,0,85.0139504950494,16099.3658768151,39.8449020904951,21.3680699163297,21.822509445832,1.17821782178218,1.19285803071203,0.920231548610667,2.94221735537443,2.33425031439329,2.37783326150328 +42301,2874.12588544555,457.206232475247,45,85.0459900990099,87.5973698019802,20.174602310297,-0.820693069306931,1840.93564356436,1521.57920792079,1508.71683168317,20,40,11,32,5306340.46495473,396872.349124326,0,0,0,0,0,0,0,85.0459900990098,16122.9823458745,40.3492046205941,21.6385178571393,22.0387908760681,-0.820693069306931,-0.806052860377073,-0.624718950992066,2.71944889442675,2.15751376260382,2.0390389882224 +42302,2874.13367118812,457.221231386139,45,84.970702970297,87.5198240594059,20.5959180417822,0.948118811881188,1841.68811881188,1531.79108910891,1503.80594059406,20,40,11,32,5306354.55295052,396891.289083264,0,0,0,0,0,0,0,84.9707029702969,16146.5904715896,41.1918360835643,22.0904052271611,22.3925805031437,0.948118811881188,0.962759020811045,0.74396245379069,2.49907788493279,1.98267926329166,2.0996887092769 +42303,2874.14144891089,457.23623029703,45,84.9546237623762,87.5032624752475,19.3902227722772,1.67306930693069,1839.52475247525,1569.51584158416,1561.50198019802,20,40,11,32,5306368.626152,396910.228684079,0,0,0,0,0,0,0,84.9546237623761,16170.195040869,38.7804455445544,20.7972219357048,21.3677940983195,1.67306930693069,1.68770951586055,1.31243277641131,3.30674299497877,2.6234519559024,2.49895230808521 +42304,2874.14921207921,457.251244158416,45,85.0016732673267,87.5517234653465,20.3653074807921,-0.531881188118812,1840.66831683168,1560.56336633663,1555.20792079208,20,40,11,32,5306382.67212206,396929.186332464,0,0,0,0,0,0,0,85.0016732673266,16193.799140869,40.7306149615842,21.8430610334427,22.1977444319935,-0.531881188118812,-0.517240979188955,-0.396725396097151,2.76813882429374,2.19614261641443,2.37826054875797 +42305,2874.15697465347,457.266266633663,45,85.043900990099,87.595218019802,21.9792893289109,-0.340891089108911,1840.74257425743,1580.54455445545,1565.80693069307,20,40,11,32,5306396.71686132,396948.154597752,0,0,0,0,0,0,0,85.0439009900989,16217.413470407,43.9585786578218,23.574157116749,23.5736147403841,-0.340891089108911,-0.326250880179053,-0.22621035766608,2.45881139515285,1.95073326642074,1.82539089644597 +42306,2874.16473831683,457.281318811881,45,85.1178514851485,87.671387029703,20.8410159517822,-0.0213861386138613,1842.34158415842,1550.40099009901,1494.74554455446,20,40,11,32,5306410.76301866,396967.159803238,0,0,0,0,0,0,0,85.1178514851484,16241.045956298,41.6820319035643,22.3532880052556,22.6100597303716,-0.0213861386138613,-0.00674592968400433,0.0102596275042714,2.45078419591269,1.94436477283688,2.04194401935924 +42307,2874.17254009901,457.296340495049,45,85.1377623762376,87.6918952475248,19.115497800099,-1.82247524752475,1844.03465346535,1468.00792079208,1422.22574257426,20,40,11,32,5306424.88052486,396986.128193411,0,0,0,0,0,0,0,85.1377623762375,16264.6942092683,38.230995600198,20.5025622876558,21.1421092138219,-1.82247524752475,-1.8078350385949,-1.39160352591288,3.6105716103802,2.8644987431926,2.85510408929638 +42308,2874.18038396039,457.311309405941,45,85.1620396039604,87.7169007920792,18.9948575355446,-2.3590099009901,1844.39108910891,1414.66237623762,1380.99702970297,20,40,11,32,5306439.07721103,397005.032151405,0,0,0,0,0,0,0,85.1620396039603,16288.3504327557,37.9897150710891,20.373168088023,21.0397670285239,-2.3590099009901,-2.34436969206025,-1.80589052889712,3.75745353192834,2.98102962114632,2.9543226204199 +42309,2874.18823168317,457.326278514851,45,85.1735940594059,87.7288018811882,18.694595710198,-0.468811881188119,1843.82178217822,1404.44554455446,1367.79405940594,20,40,11,32,5306453.28110631,397023.936390504,0,0,0,0,0,0,0,85.1735940594058,16312.0086213696,37.389191420396,20.051118574003,20.7857419564041,-0.468811881188119,-0.454171672258262,-0.349693370181787,4.01078715530774,3.18201548269035,3.09661465039491 +42310,2874.19610534654,457.34122039604,45,85.1802574257426,87.7356651485149,19.5473547855446,-1.11534653465347,1846.60891089109,1401.71287128713,1358.82871287129,20,40,11,32,5306467.5337186,397042.807480464,0,0,0,0,0,0,0,85.1802574257424,16335.6685814631,39.0947095710891,20.9657558092711,21.5132459907176,-1.11534653465347,-1.10070632572361,-0.851668392112353,3.20769946263046,2.54487434976451,2.59569594605994 +42311,2874.20398841584,457.356148811881,45,85.1605247524753,87.7153404950495,19.6846320131683,-1.81861386138614,1843.5099009901,1362.48316831683,1330.07920792079,20,40,11,32,5306481.80411385,397061.662016253,0,0,0,0,0,0,0,85.1605247524751,16359.3258635038,39.3692640263367,21.1129941882799,21.626293724434,-1.81861386138614,-1.80397365245628,-1.40307799588431,3.2587709858006,2.58539267476136,2.67461277813532 +42312,2874.21187178218,457.371062178218,45,85.0954554455446,87.6483191089109,19.1074246421782,-1.55940594059406,1841.65346534653,1351.97128712871,1340.31188118812,20,40,11,32,5306496.07545425,397080.497723715,0,0,0,0,0,0,0,85.0954554455445,16382.9707564906,38.2148492843564,20.4939033228274,21.132100214563,-1.55940594059406,-1.5447657316642,-1.19728351982845,3.66383514769566,2.90675613403328,2.82294716083248 +42313,2874.21973752475,457.385983861386,45,85.0463267326733,87.5977165346535,18.85099945,-2.41425742574257,1839.82673267327,1390.87920792079,1388.31881188119,20,40,11,32,5306510.31402504,397099.34311452,0,0,0,0,0,0,0,85.0463267326731,16406.6025212871,37.7019989,20.2188713289062,20.9122534473931,-2.41425742574257,-2.39961721681272,-1.84548799592427,3.81082760046743,3.02337470351769,2.92889718783605 +42314,2874.2275939604,457.400906039604,45,85.032198019802,87.5831639603961,19.3298916386139,-1.38188118811881,1840.25247524752,1424.53069306931,1402.95445544554,20,40,11,32,5306524.5354057,397118.188721337,0,0,0,0,0,0,0,85.0321980198019,16430.2247786303,38.6597832772277,20.7325130362164,21.3178728188269,-1.38188118811881,-1.36724097918895,-1.04054649103586,3.57407442463627,2.83554317771012,2.84557835686904 +42315,2874.23544514852,457.415831881188,45,85.0143366336633,87.5647667326733,19.3243140811881,-1.34613861386139,1840.54455445545,1448.03069306931,1422.81287128713,20,40,11,32,5306538.74704528,397137.038624625,0,0,0,0,0,0,0,85.0143366336632,16453.8418182618,38.6486281623762,20.726530758395,21.3123485809985,-1.34613861386139,-1.33149840493153,-1.02711497267128,3.51737130036215,2.79055694125068,2.81209736780865 +42316,2874.24328960396,457.430769504951,45,85.0354356435643,87.5864987128713,19.1658773372277,-2.58108910891089,1842.14356435644,1476.49207920792,1449.00693069307,20,40,11,32,5306552.94601257,397155.902887593,0,0,0,0,0,0,0,85.0354356435643,16477.4626916941,38.3317546744554,20.5565974798756,21.1786273609853,-2.58108910891089,-2.56644889998103,-1.97899039834978,3.58405958366452,2.84346504675843,2.87408678538712 +42317,2874.25112910891,457.445718514852,45,85.0901683168317,87.6428733663367,18.6527689767327,-2.46613861386139,1841.79702970297,1454.36930693069,1416.8198019802,20,40,11,32,5306567.13561771,397174.781075805,0,0,0,0,0,0,0,85.0901683168316,16501.0897791803,37.3055379534654,20.0062567965526,20.7464319095376,-2.46613861386139,-2.45149840493153,-1.88188986576415,3.98889142726011,3.16464419297727,3.16283752763614 +42318,2874.2589740594,457.460664059405,45,85.0496831683168,87.6011736633664,19.1800742575248,-1.45504950495049,1841.52475247525,1450.99504950495,1408.45544554455,20,40,11,32,5306581.33544752,397193.655034576,0,0,0,0,0,0,0,85.0496831683167,16524.71812588,38.3601485150495,20.5718245613634,21.1931251668819,-1.45504950495049,-1.44040929602064,-1.12854317755746,3.57446604103237,2.83585387219163,2.97180033847579 +42319,2874.26681752475,457.475616534653,45,85.0647722772277,87.6167154455446,18.6431881185148,1.28415841584158,1842.27722772277,1453.35247524753,1429.5900990099,20,40,11,32,5306595.53243323,397212.537483559,0,0,0,0,0,0,0,85.0647722772276,16548.3500408965,37.2863762370297,19.9959807292257,20.7358963472148,1.28415841584158,1.29879862477144,0.996369998977998,4.02734255957063,3.1951499499774,3.07739606731681 +42320,2874.27466019802,457.490568613861,45,85.0915841584158,87.6443316831683,18.6365511548515,-1.08237623762376,1842.37623762376,1425.63465346535,1390.63267326733,20,40,11,32,5306609.72802127,397231.419320036,0,0,0,0,0,0,0,85.0915841584157,16571.9809784653,37.273102309703,19.9888621722134,20.733313732215,-1.08237623762376,-1.0677360286939,-0.819644926501125,3.9842106278464,3.16093061366503,3.12679425157524 +42321,2874.28250178218,457.505527623762,45,85.0879405940594,87.6405788118812,19.621094059604,-0.394257425742574,1840.89603960396,1413.2702970297,1383.2702970297,20,40,11,32,5306623.92149892,397250.309659752,0,0,0,0,0,0,0,85.0879405940593,16595.6151227722,39.2421881192079,21.0448457746625,21.5714335406291,-0.394257425742574,-0.379617216812717,-0.296050638197481,3.06856739264405,2.43449192763831,2.57774499782697 +42322,2874.29034930693,457.520475742574,45,85.1130693069307,87.6664613861386,18.8801496153465,-2.08861386138614,1842.67326732673,1449.0198019802,1404.10396039604,20,40,11,32,5306638.12628296,397269.186537356,0,0,0,0,0,0,0,85.1130693069306,16619.2489678217,37.7602992306931,20.250136697298,20.9409471339479,-2.08861386138614,-2.07397365245628,-1.59413241834303,3.79214325622152,3.00855121117761,2.92452613786867 +42323,2874.29821653465,457.535408613862,45,85.1143366336633,87.6677667326733,18.6428712876238,-0.784950495049505,1842.27722772277,1425.17920792079,1372.18415841584,20,40,11,32,5306652.36796254,397288.044980758,0,0,0,0,0,0,0,85.1143366336632,16642.8907528327,37.2857425752475,19.9956409083564,20.7405050431174,-0.784950495049505,-0.770310286119647,-0.591300075556829,3.96632016582197,3.14673695916534,3.12284473466587 +42324,2874.30609485148,457.550326633663,45,85.0711782178218,87.6233135643565,18.6308828382178,-0.576534653465346,1838.84158415842,1118.45544554455,1087.8900990099,20,40,11,32,5306666.63057286,397306.885198995,0,0,0,0,0,0,0,85.0711782178217,16666.53320066,37.2617656764356,19.9827825494872,20.7266906236862,-0.576534653465346,-0.561894444535488,-0.431341256368449,4.00698760962007,3.17900105865407,3.17482506514913 +42325,2874.31395514851,457.565207920792,45,84.5900099009901,87.1277101980198,18.5042618263366,-2.86069306930693,1823.4801980198,51.0485148514852,82.5287128712872,20,40,11,32,5306680.86067894,397325.678979474,0,0,0,0,0,0,0,84.59000990099,16690.1181328932,37.0085236526733,19.8469736257454,20.5900040906704,-2.86069306930693,-2.84605286037708,-2.18373020443966,4.05347430597892,3.21588194557854,3.20154226199866 +42326,2874.32173534653,457.579951188118,45,83.3930792079208,85.8948715841584,18.2642491748515,-3.72287128712871,1787.63861386139,-1972.52376237624,-1725.88514851485,20,40,11,32,5306694.94553281,397344.298124152,0,0,0,0,0,0,0,83.3930792079207,16713.4757874312,36.528498349703,19.5895451042201,20.3170026378208,-3.72287128712871,-3.70823107819886,-2.84701797376814,3.98648860254828,3.16273787754861,3.17871831032984 +42327,2874.32934465347,457.59436009901,45,80.9731683168317,83.4023633663366,17.5367277228713,-2.12465346534654,1731.49504950495,-3436.18811881188,-2907.86831683168,20,40,10.990099009901,32,5306708.72130482,397362.495108109,0,0,0,0,0,0,0,80.9731683168315,16736.319505638,35.0734554457426,18.8092330223264,19.5612922887746,-2.12465346534654,-2.11001325641668,-1.6155035510463,3.99017424536268,3.16566193510763,3.17051067223837 +42328,2874.3367080198,457.608296633663,45,78.2758712871287,80.6241474257426,16.7793481855446,-2.50960396039604,1674.90099009901,-3407.85643564356,-2856.6495049505,20,40,10.990099009901,32,5306722.05203117,397380.095562281,0,0,0,0,0,0,0,78.2758712871286,16758.427420187,33.5586963710891,17.9968962837374,18.7607659580499,-2.50960396039604,-2.49496375146619,-1.90728626943052,4.07899246722381,3.23612714459479,3.21774266843531 +42329,2874.34380326733,457.621813762376,45,75.7556138613861,78.0282822772277,16.0457750275248,-0.127623762376237,1628.69306930693,-2090.09207920792,-1769.35940594059,20,40,11,32,5306734.89545138,397397.164737989,0,0,0,0,0,0,0,75.755613861386,16779.8043765951,32.0915500550495,17.2100933700944,17.9941220821075,-0.127623762376237,-0.11298355344638,-0.085854992490206,4.07803251170672,3.23536555012473,3.24162955567041 +42330,2874.3507360396,457.634998811881,45,74.669396039604,76.9094779207921,15.741498900198,-2.99663366336634,1614.13366336634,274.931683168317,302.891089108911,20,40,11,32,5306747.44531541,397413.814886701,0,0,0,0,0,0,0,74.6693960396039,16800.6580298679,31.482997800396,16.8837382671093,17.6711668617648,-2.99663366336634,-2.98199345443648,-2.27069456004227,4.14766218177232,3.29060724698469,3.2715330197692 +42331,2874.35760633663,457.648059405941,45,74.1223960396039,76.3460679207921,15.7230423544554,0.416435643564356,1601.92574257426,332.885148514851,364.693069306931,20,40,11,32,5306759.88225676,397430.307898473,0,0,0,0,0,0,0,74.1223960396039,16821.3280312431,31.4460847089109,16.8639424719561,17.6254457418633,0.416435643564356,0.431075852494214,0.327670343267514,3.98656496016188,3.16279845695592,3.1823269656238 +42332,2874.36442960396,457.661012673267,45,73.550504950495,75.7570200990099,16.500198020099,0.572574257425742,1587.61386138614,343.087128712871,359.454455445545,20,40,11,32,5306772.23450537,397446.66561736,0,0,0,0,0,0,0,73.550504950495,16841.838320407,33.000396040198,17.6974903402193,18.2529261397438,0.572574257425742,0.5872144663556,0.442546539850417,3.21374590802772,2.5496713838938,2.59756909670192 +42333,2874.37120970297,457.673856237624,45,72.971198019802,75.1603339603961,16.3231859185149,-0.32970297029703,1575.04455445545,288.158415841584,306.243564356435,20,40,11,32,5306784.50926533,397462.885212542,0,0,0,0,0,0,0,72.9711980198019,16862.1899924917,32.6463718370297,17.5076338334021,18.0698711276726,-0.32970297029703,-0.315062761367173,-0.249706560768205,3.14257578161228,2.49320754390687,2.48781391842186 +42334,2874.37793445545,457.686581089109,45,72.1713267326733,74.3364665346534,15.0812271730693,-1.2990099009901,1556.54455445545,-518.384158415842,-408.248514851485,20,40,11,32,5306796.68417662,397478.955063121,0,0,0,0,0,0,0,72.1713267326732,16882.3605071782,30.1624543461386,16.1755557047821,16.9672723955226,-1.2990099009901,-1.28436969206024,-0.97456614093201,4.11268840181443,3.26286029731998,3.19755794478091 +42335,2874.38456267327,457.699121485148,45,70.8515643564357,72.9771112871287,14.8973371831683,-2.01029702970297,1519.4504950495,-1553.4900990099,-1274.09603960396,20,40,11,32,5306808.68439817,397494.791934895,0,0,0,0,0,0,0,70.8515643564356,16902.2386329482,29.7946743663366,15.9783222342521,16.7346956965823,-2.01029702970297,-1.99565682077311,-1.52126108391528,3.96494178317225,3.14564339953162,3.12288251367408 +42336,2874.39102821782,457.711398712871,45,69.1136039603961,71.1870120792079,14.8281573159406,-1.13079207920792,1482.13861386139,-2223.53762376238,-1725.68712871287,20,40,11,32,5306820.38915808,397510.295619947,0,0,0,0,0,0,0,69.113603960396,16921.6747941418,29.6563146318812,15.9041225167391,16.5752591138939,-1.13079207920792,-1.11615187027806,-0.858843219534697,3.63210123075055,2.8815795761319,2.82593444315734 +42337,2874.39729683168,457.723356336634,45,66.9388910891089,68.9470578217822,14.7019257425743,1.20217821782178,1437.15841584158,-2955.32376237624,-2301.63861386139,20,40,11,32,5306831.73624558,397525.394706894,0,0,0,0,0,0,0,66.9388910891088,16940.571860561,29.4038514851485,15.7687312900665,16.3439844853653,1.20217821782178,1.21681842675164,0.948448855774142,3.16096617945127,2.50779782965141,2.7000189894051 +42338,2874.40332782178,457.734929405941,45,64.3130891089109,66.2424817821782,13.7340077007921,-0.932871287128713,1425.89108910891,-3910.37425742574,-3134.99702970297,20,40,11,32,5306842.6517166,397540.006968773,0,0,0,0,0,0,0,64.3130891089108,16958.8187814081,27.4680154015842,14.7305788888834,15.3706886245432,-0.932871287128713,-0.918231078198855,-0.696251648798586,3.44399457281251,2.73234246262318,2.70136629489517 +42339,2874.4090790099,457.746025346535,45,61.3689900990099,63.2100598019802,13.7633366336634,-0.93039603960396,1526.37128712871,-4263.32673267327,-3442.55445544554,20,40,11,32,5306853.05948627,397554.01572664,0,0,0,0,0,0,0,61.3689900990098,16976.2729772827,27.5266732673267,14.7620359965827,15.2269437410983,-0.93039603960396,-0.915755830674103,-0.706027383849648,2.62969117379797,2.08630318830201,1.9610935167112 +42340,2874.41453841584,457.756604752475,45,58.3254653465346,60.0752293069307,13.7056336633663,-2.81772277227723,1453.83168316832,-4248.75247524752,-3411.16732673267,20,40,11,32,5306862.93823024,397567.37151498,0,0,0,0,0,0,0,58.3254653465346,16992.8867060505,27.4112673267327,14.7001459660394,15.0029716128679,-2.81772277227723,-2.80308256334737,-2.18864248689113,2.01193676054888,1.59619886928884,1.63191926075415 +42341,2874.4197049505,457.766677029703,45,55.3036534653465,56.9627630693069,13.4907425742574,-3.27841584158416,1382.5495049505,-4168.35841584158,-3389.51881188119,20,40,11,32,5306872.28571867,397580.086019682,0,0,0,0,0,0,0,55.3036534653465,17008.6652976897,26.9814851485149,14.469661885238,14.6471624819343,-3.27841584158416,-3.2637756326543,-2.56203975682245,1.55272344498015,1.23187540274349,1.25631144846219 +42342,2874.4245809901,457.776178217822,45,52.3650099009901,53.9359601980198,13.1869405940594,-2.05811881188119,1311.23267326733,-3805.9198019802,-3165.10396039604,20,40,11,32,5306881.10776309,397592.079665822,0,0,0,0,0,0,0,52.36500990099,17023.6115376237,26.3738811881188,14.1438153345878,14.2200256244986,-2.05811881188119,-2.04347860295133,-1.61750750939681,1.31039483447013,1.03962052591182,1.06483853774418 +42343,2874.42920762376,457.785135742574,45,50.1917722772277,51.6975254455445,12.3437128712871,-1.70653465346535,1265.75247524752,-1454.89801980198,-1202.15940594059,20,40,10.950495049505,32,5306889.47986419,397603.387968319,0,0,0,0,0,0,0,50.1917722772277,17037.8157331408,24.6874257425743,13.2394010687596,13.3781788578492,-1.70653465346535,-1.69189444453549,-1.32961623031686,1.4083630703418,1.11734503017602,1.10335353968009 +42344,2874.43371306931,457.79388019802,45,48.7552772277228,50.2179355445545,11.1705940594059,-0.947722772277228,1228.46534653465,-1340.23168316832,-1048.38811881188,20,40,11,32,5306897.63221438,397614.42688653,0,0,0,0,0,0,0,48.7552772277227,17051.563605033,22.3411881188119,11.9811580576208,12.2985073326825,-0.947722772277228,-0.93308256334737,-0.744383887680453,1.94866745732162,1.54600326063338,1.47197294314586 +42345,2874.43807821782,457.802425049505,45,47.2233069306931,48.6400061386138,10.0966144114356,-2.19138613861386,1186.84653465347,-1643.71485148515,-1276.52178217822,20,40,11,32,5306905.5291181,397625.212565203,0,0,0,0,0,0,0,47.223306930693,17064.8971796204,20.1932288228713,10.8292479761542,11.2956800828715,-2.19138613861386,-2.176745929684,-1.6197290798947,2.57971794511982,2.04665621098399,1.86579390375083 +42346,2874.44217534653,457.810577722772,45,43.918594059406,45.2361518811881,11.0228014301386,-1.84059405940594,1116.70297029703,-2616.22376237624,-2043.10495049505,20,40,11,32,5306912.93824278,397635.500967764,0,0,0,0,0,0,0,43.9185940594059,17077.5999639988,22.0456028602772,11.8226412552389,11.895469292111,-1.84059405940594,-1.82595385047608,-1.44949729408108,1.11418432494058,0.883954105577515,1.12547629702415 +42347,2874.44582891089,457.818186633663,45,40.2739405940594,41.4821588118812,9.10853575360396,-1.40861386138614,1358.90099009901,-2601.70594059406,-2120.80297029703,20,40,10.6633663366337,32,5306919.53776604,397645.097539385,0,0,0,0,0,0,0,40.2739405940594,17089.278995737,18.2170715072079,9.76947205824994,10.0572798925474,-1.40861386138614,-1.39397365245628,-1.09259135149854,2.01410665870669,1.59792038909696,1.71836420719463 +42348,2874.4488970297,457.825352673267,45,36.1261485148515,37.209932970297,6.63559570956436,-2.87693069306931,1264.48514851485,-3043.23069306931,-2413.70297029703,20,40,10,32,5306925.06264187,397654.123278007,0,0,0,0,0,0,0,36.1261485148514,17099.9113809405,13.2711914191287,7.11708979665392,7.71494337443858,-2.87693069306931,-2.86229048413945,-2.09203856658555,3.02000772118674,2.39596641620422,2.46124642986282 +42349,2874.45127752475,457.832034059406,45,32.5079306930693,33.4831686138614,4.83430693070297,-0.0123762376237626,1298.66831683168,-3141.28712871287,-2446.64950495049,20,40,10,32,5306929.32452121,397662.522795242,0,0,0,0,0,0,0,32.5079306930693,17109.3949584158,9.66861386140594,5.18509536088935,5.97575588717263,-0.0123762376237626,0.00226397130609567,0.0618637848558254,3.89190412456028,3.08769792610624,2.95810177389732 +42350,2874.45289782178,457.838552970297,45,30.2243069306931,31.1310361386139,5.82694059405941,0.906336633663366,1516.16831683168,-2491.14455445544,-1984.33069306931,20,40,10,32,5306932.18185098,397670.694967698,0,0,0,0,0,0,0,30.224306930693,17118.0926031353,11.6538811881188,6.24975680599615,6.68966850363277,0.906336633663366,0.920976842593224,0.621966756431158,2.23428912345364,1.77260530373137,1.7285379542911 +42351,2874.45386059406,457.844862574257,45,27.1890396039604,28.0047107920792,5.65252475247525,3.98920792079208,1358.59405940594,-2822.09207920792,-2209.89207920792,20,40,10,32,5306933.8258513,397678.584848813,0,0,0,0,0,0,0,27.1890396039604,17126.0839380088,11.3050495049505,6.06268494977619,6.36704079122109,3.98920792079208,4.00384812972193,3.03669001195278,1.59650791465226,1.26661243939069,1.30678011401463 +42352,2874.45452435644,457.850599504951,45,24.7014554455446,25.4424991089109,4.7470396039604,4.98316831683168,1456.70792079208,-2982.92277227723,-2279.30792079208,20,40,10,32,5306934.92864182,397685.751670426,0,0,0,0,0,0,0,24.7014554455445,17133.2695116336,9.49407920792079,5.09149571619647,5.45343878424383,4.98316831683168,4.99780852576153,3.72829783423834,1.8532480516222,1.47030090732279,1.47480130318351 +42353,2874.45524079208,457.855806336634,45,22.781,23.46443,3.82508910891089,5.49257425742574,1509.9603960396,-2135.62079207921,-1800.15049504951,20,40,10,32,5306936.14071907,397692.260012001,0,0,0,0,0,0,0,22.781,17139.8512079483,7.65017821782178,4.10264637266592,4.55868433016419,5.49257425742574,5.5072144663556,3.97461216302751,2.28073869433274,1.80945673662429,1.76868345852849 +42354,2874.45637910891,457.860388415842,45,21.1667326732673,21.8017346534653,3.0880396039604,2.38435643564356,1374.5495049505,17.8009900990097,-296.783168316831,20,40,10,32,5306938.14807287,397698.004116593,0,0,0,0,0,0,0,21.1667326732673,17145.9319740649,6.17607920792079,3.3121148603631,3.83991570565103,2.38435643564356,2.39899664457342,1.72135109600666,2.59934408104216,2.06222688725077,2.08825501550549 +42355,2874.45815415842,457.864195742574,45,21.003297029703,21.6333959405941,2.71877227722772,-5.02108910891089,1328.89603960396,2102.30297029703,1883.21584158416,20,40,9.95049504950495,32,5306941.35199348,397702.804224117,0,0,0,0,0,0,0,21.0032970297029,17151.7656817106,5.43754455445545,2.91605264705817,3.51619254905383,-5.02108910891089,-5.00644889998104,-3.37140254191546,2.94378469601597,2.33549378655846,2.30084036990608 +42356,2874.46051544554,457.867323960396,45,21.4706435643564,22.1147628712871,3.63962376237624,-5.5,1331.83168316832,2713.31782178218,2412.24257425742,20,40,10,32,5306945.65683189,397706.77779303,0,0,0,0,0,0,0,21.4706435643564,17157.6561055005,7.27924752475248,3.9037232340015,4.3258903552267,-5.5,-5.48535979107015,-3.96784303781723,2.1137230140967,1.67695245260617,1.65573111078414 +42357,2874.46337217822,457.869566435644,45,22.3338910891089,23.0039078217822,4.76235643564357,-5.5,1100.62871287129,1927.43069306931,1646.75841584158,20,40,10,32,5306950.89897115,397709.664491508,0,0,0,0,0,0,0,22.3338910891089,17163.7282589109,9.52471287128713,5.10792397241651,5.33039741532529,-5.5,-5.48535979107015,-4.17748546097195,1.26817566424436,1.00612534201831,1.03043347896949 +42358,2874.4665850495,457.870627623763,45,22.3382178217822,23.0083643564356,5.79489108910891,-5.5,1014.72277227723,101.810891089109,-113.6,20,40,10,32,5306956.82689151,397711.091663646,0,0,0,0,0,0,0,22.3382178217821,17169.9649713422,11.5897821782178,6.21538171525002,6.20903582435885,-5.5,-5.48535979107015,-4.35165964579886,0.698141301867638,0.553880409412544,0.589298150958797 +42359,2874.46980762376,457.870113366337,45,21.8434851485148,22.4987897029703,6.52047524752475,-5.5,976.69801980198,69.8752475247525,-167.193069306931,20,40,10,32,5306962.80757716,397710.557035705,0,0,0,0,0,0,0,21.8434851485148,17176.1037160341,13.0409504950495,6.9936159291024,6.79801162913717,-5.5,-5.48535979107015,-4.46098372253964,1.15687834290698,0.917826016732794,0.942257888870533 +42360,2874.47259386139,457.86805950495,45,20.5972376237624,21.2151547524752,7.22550495049505,-5.5,1023.45544554455,-739.674257425742,-1112.55346534653,20,40,10,32,5306968.01401661,397708.09060124,0,0,0,0,0,0,0,20.5972376237624,17182.0152488999,14.4510099009901,7.74980420894522,7.32650706000456,-5.5,-5.48535979107015,-4.57844846789147,2.1323269041208,1.6917121154361,1.66348522211959 +42361,2874.4746249505,457.864943564356,45,19.2686237623762,19.8466824752475,7.58542574257426,-5.5,1120.51485148515,450.636633663366,170.512871287129,20,40,10,32,5306971.8451155,397704.276617458,0,0,0,0,0,0,0,19.2686237623762,17187.5458276953,15.1708514851485,8.13584168154445,7.55668972997908,-5.5,-5.48535979107015,-4.65611091394368,2.85604030692109,2.26588051768938,2.22820495134789 +42362,2874.47578534653,457.861087425742,45,19.575603960396,20.1628720792079,7.33383168316831,-5.5,1161.9504950495,4804.98514851485,4213.8603960396,20,40,9.8019801980198,32,5306974.07973862,397699.512170154,0,0,0,0,0,0,0,19.575603960396,17192.877929703,14.6676633663366,7.86599137850146,7.36019656018889,-5.5,-5.48535979107015,-4.62388869910669,2.51011993040722,1.9914396283521,1.98761853039471 +42363,2874.47599960396,457.856511782178,121.633663366337,21.3807722772277,22.0221954455446,7.69408910891089,-5.5,1114.38613861386,5314.97227722772,4557.25742574257,20,40,10.0891089108911,32,5306974.57767973,397693.820549639,0,0,0,0,0,0,0,21.3807722772277,17198.5682823983,15.3881782178218,8.25238991167695,7.77003172910776,-5.5,-5.48535979107015,-4.59594771915599,2.41206186690661,1.91364385805083,1.9444592557371 +42364,2874.47491128713,457.851882475247,225,22.7670891089109,23.4501017821782,8.13273267326733,-5.5,1002.43564356436,5339.79900990099,4579.47524752475,20,40,11.3168316831683,32,5306972.66399099,397688.019302472,0,0,0,0,0,0,0,22.7670891089109,17204.7128254401,16.2654653465347,8.72286246197855,8.22258629490397,-5.5,-5.48535979107015,-4.59096445593598,2.50651567735179,1.98858014252505,1.99183029997627 +42365,2874.47307277228,457.847462376238,225,23.6283168316832,24.3371663366337,7.83714851485148,-4.87643564356436,836.371287128713,5712.12574257426,4911.09504950495,20,40,12,32,5306969.35605885,397682.453958632,0,0,0,0,0,0,0,23.6283168316831,17211.1554620738,15.674297029703,8.40583003716072,8.02099092215434,-4.87643564356436,-4.86179543463451,-4.02793762010338,1.96095094089071,1.55574853840173,1.57039961268737 +42366,2874.47081029703,457.843117524752,225,25.2610594059406,26.0188911881188,8.041,-0.389702970297029,876.544554455446,5744.03366336634,4936.91881188119,20,40,12,32,5306965.26114756,397676.968394462,0,0,0,0,0,0,0,25.2610594059406,17217.9323028878,16.082,8.62447345494642,8.28879635289565,-0.389702970297029,-0.375062761367173,-0.317433799146515,1.73085415104991,1.37319795183624,1.34095623861132 +42367,2874.46830138614,457.83862019802,225,27.3115643564356,28.1309112871287,7.42561386138614,1.93871287128713,964.589108910891,5823.10198019802,4886.21782178218,20,40,12,32,5306960.7131254,397671.284826891,0,0,0,0,0,0,0,27.3115643564356,17225.2241054731,14.8512277227723,7.96443348267715,7.88303389148304,1.93871287128713,1.95335308021699,1.54664516933398,1.05944141490044,0.840523033179481,0.880951994106389 +42368,2874.46562257426,457.83376980198,225,29.1842376237624,30.0597647524752,8.09286138613861,2.5949504950495,1344.36633663366,4450.21584158416,3795.26831683168,20,40,12,32,5306955.85819358,397665.155941726,0,0,0,0,0,0,0,29.1842376237623,17233.0985228823,16.1857227722772,8.68009802254861,8.55777710872207,2.5949504950495,2.60959070397936,2.09131876968714,0.980554266495841,0.777936783177028,0.756322342255733 +42369,2874.46276603961,457.828565643564,225,31.757900990099,32.710638019802,8.0980495049505,-0.626633663366336,1609.84158415842,7509.9,6032.69108910891,20,40,12,32,5306950.68188015,397658.580616615,0,0,0,0,0,0,0,31.757900990099,17241.5199122113,16.196099009901,8.68566260319457,8.70991907365863,-0.626633663366336,-0.611993454436478,-0.491868601277258,0.964865639632756,0.76548998616502,0.767587465207165 +42370,2874.45959782178,457.822824158416,225,35.0131485148515,36.063542970297,8.33036633663367,-2.57227722772277,1768.57920792079,6963.96336633663,5857.60693069307,20,40,12,32,5306944.94010151,397651.325828395,0,0,0,0,0,0,0,35.0131485148514,17250.8056566007,16.6607326732673,8.93483687853206,9.09400713608644,-2.57227722772277,-2.55763701879292,-1.95344488295156,1.70639098237384,1.35378974629735,1.23551200419665 +42371,2874.45614693069,457.816531089109,225,37.9411386138614,39.0793727722772,9.55436633663366,0.181188118811881,1910.43564356436,5682.31089108911,5349.26435643564,20,40,12,32,5306938.68691165,397643.37476963,0,0,0,0,0,0,0,37.9411386138613,17260.9490384764,19.1087326732673,10.2476531338305,10.3041663307788,0.181188118811881,0.195828327741738,0.14610869278931,1.00377574807745,0.796359878460429,1.01167611777665 +42372,2874.45249247525,457.809743663366,225,40.3284851485149,41.5383397029703,8.135880088,-0.494950495049505,1580.56435643564,5414.40297029703,5483.32178217821,20,40,12,32,5306932.06758586,397634.801310066,0,0,0,0,0,0,0,40.3284851485148,17271.8261251651,16.271760176,8.72623826036353,9.23284166378177,-0.494950495049505,-0.480310286119646,-0.354492194037336,2.64784672673771,2.10070715647934,2.03944607319834 +42373,2874.44864920792,457.802479108911,225,42.8302376237624,44.1151447524752,8.57999669966337,-0.41029702970297,1518.0396039604,5405.23465346535,5496.7396039604,20,40,12,32,5306925.10907284,397625.627386976,0,0,0,0,0,0,0,42.8302376237623,17283.3791138889,17.1599933993267,9.2025809948731,9.75390236419197,-0.41029702970297,-0.395656820773114,-0.274728194701782,2.84840790208199,2.25982523990282,2.28378516190175 +42374,2874.44462455446,457.794723762376,225,45.2862277227723,46.6448145544555,10.6464147414752,-1.52811881188119,1608.37623762376,5275.84851485149,5331.4900990099,20,40,12,32,5306917.82543249,397615.836223713,0,0,0,0,0,0,0,45.2862277227722,17295.6253361661,21.2928294829505,11.4189430827265,11.6531018194445,-1.52811881188119,-1.51347860295133,-1.21566500954868,2.09899578009218,1.66526839039968,1.7044458803866 +42375,2874.44040742574,457.786517524752,225,47.6245742574257,49.0533114851485,9.63139548955445,-2.15029702970297,1688.81683168317,5177.04851485149,5003.76435643564,20,40,12,32,5306910.19524493,397605.477146226,0,0,0,0,0,0,0,47.6245742574257,17308.5368575358,19.2627909791089,10.3302716992604,10.9245986339269,-2.15029702970297,-2.13565682077311,-1.59304529542074,3.07123525594396,2.43660851523005,2.10114981061244 +42376,2874.43599693069,457.77790019802,225,49.7921485148515,51.285912970297,13.3155445544554,-2.77792079207921,1765.34653465347,5116.15445544554,4759.07920792079,20,40,11.960396039604,32,5306902.21598261,397594.599692413,0,0,0,0,0,0,0,49.7921485148514,17322.0748163367,26.6310891089109,14.2817510941496,14.1816585439556,-2.77792079207921,-2.76328058314935,-2.19763810198417,1.4642635830176,1.16169450321882,1.39840117811068 +42377,2874.4313919802,457.768920891089,225,51.8528217821782,53.4084064356436,14.0695643564356,-3.39356435643564,1837.40099009901,5034.45940594059,4544.20396039604,20,40,12,32,5306893.88454513,397583.264985064,0,0,0,0,0,0,0,51.8528217821782,17336.198154868,28.1391287128713,15.0904843072677,14.9410689180778,-3.39356435643564,-3.37892414750579,-2.70087102488929,1.46017313874604,1.1584492906211,1.23364758158975 +42378,2874.42660435644,457.759606633663,225,53.7436930693069,55.3560038613861,15.9799702970297,-2.58415841584159,1905.49504950495,4844.6801980198,4399.33762376238,20,40,12,32,5306885.22216212,397571.507071838,0,0,0,0,0,0,0,53.7436930693069,17350.8705561881,31.9599405940594,17.1395136969985,16.6754232523325,-2.58415841584159,-2.56951820691173,-2.09428898889242,2.57614121617608,2.0438185618055,2.02052444047285 +42379,2874.42164267327,457.749972475247,225,55.5382871287128,57.2044357425743,16.9349801980198,-1.7460396039604,1950.13366336634,4397.76237623762,3983.13861386139,20,40,12,32,5306876.24445916,397559.344975616,0,0,0,0,0,0,0,55.5382871287128,17366.0550554456,33.8699603960396,18.163821313004,17.5917650126984,-1.7460396039604,-1.73139939503054,-1.41298749004707,3.01049864233674,2.38842225218974,2.36646365102001 +42380,2874.41652613861,457.740052673267,225,57.0775940594059,58.7899218811882,17.6627128712871,-2.63673267326733,1517.17821782178,4600.60396039604,4100.20297029703,20,40,12,32,5306866.98626075,397546.821990566,0,0,0,0,0,0,0,57.0775940594059,17381.6963512652,35.3254257425743,18.9443599428873,18.2982211613405,-2.63673267326733,-2.62209246433747,-2.14499474564772,3.39005527062194,2.689548944032,2.68819355468621 +42381,2874.41127079208,457.729854356436,225,58.6727722772277,60.4329554455446,18.3630693069307,0.0134653465346535,1504.83663366337,4493.64554455445,3994.28415841584,20,40,12,32,5306857.47712243,397533.947519315,0,0,0,0,0,0,0,58.6727722772276,17397.7819184544,36.7261386138614,19.6955358523772,18.9861554566396,0.0134653465346535,0.028105555464511,0.0228944647092832,3.67745480128922,2.91756148144401,2.67712753943529 +42382,2874.40579386139,457.719420792079,225,60.2410891089109,62.0483217821782,17.3769900990099,-1.46851485148515,1536.28217821782,4336.71287128713,3908.66831683168,20,40,12,32,5306847.56276624,397520.772722586,0,0,0,0,0,0,0,60.2410891089108,17414.2996879264,34.7539801980198,18.6379044690682,18.2361163148069,-1.46851485148515,-1.45387464255529,-1.18135119363437,2.44462510870134,1.93947837270971,2.10989217586253 +42383,2874.40016871287,457.708730297029,225,61.636702970297,63.485804059406,18.8171386138614,-1.11653465346535,1386.48514851485,4059.35841584158,3737.53861386139,20,40,12,32,5306837.37957392,397507.273004977,0,0,0,0,0,0,0,61.6367029702969,17431.233739054,37.6342772277228,20.1825534726147,19.5430154484384,-1.11653465346535,-1.10189444453549,-0.893495499139203,3.3535563655226,2.66059201447425,2.63894240983679 +42384,2874.39442128713,457.697801584158,225,62.960504950495,64.8493200990099,19.5546534653465,-0.27049504950495,1370.82673267327,3995.69108910891,3639.27128712871,20,40,12,32,5306826.97518457,397493.4725229,0,0,0,0,0,0,0,62.960504950495,17448.5408786304,39.1093069306931,20.9735840980671,20.2458151201413,-0.27049504950495,-0.255854840575093,-0.205334854790345,3.7991997221073,3.0141495595397,3.10492312988098 +42385,2874.38851990099,457.686684653466,225,64.2403861386139,66.1675977227723,19.9442079207921,-0.686435643564357,1397.16336633663,4070.38415841584,3527.44257425743,20,40,12,32,5306816.28980542,397479.432503578,0,0,0,0,0,0,0,64.2403861386138,17466.2089723598,39.8884158415842,21.3914055208063,20.6495473771414,-0.686435643564357,-0.671795434634499,-0.546694066943853,3.9098938854504,3.10197036078443,3.03382557853044 +42386,2874.38243752475,457.675418019802,225,65.5005544554456,67.4655710891089,20.3842871287129,0.865445544554455,1426.16831683168,4094.28514851485,3478.43564356436,20,40,12,32,5306805.27251721,397465.200022888,0,0,0,0,0,0,0,65.5005544554455,17484.2329213972,40.7685742574257,21.8634178882714,21.098071499731,0.865445544554455,0.880085753484313,0.713674513774697,3.96657035151451,3.14693544757083,3.20828985672193 +42387,2874.3761849505,457.664005742574,225,66.7640396039604,68.7669607920792,21.4000594059406,0.925940594059406,1450.31683168317,4063.66237623762,3508.29900990099,20,40,12,32,5306793.94322215,397450.780488541,0,0,0,0,0,0,0,66.7640396039603,17502.6039361937,42.8001188118812,22.9528969382926,22.0325841688269,0.925940594059406,0.940580802989263,0.783386955199621,4.72159501991621,3.74594509122344,3.7179050050343 +42388,2874.36977792079,457.652411485149,225,67.998,70.03794,21.4239702970297,1.58237623762376,1477.54455445545,3916.06435643564,3619.30297029703,20,40,12,32,5306782.3318869,397436.1291592,0,0,0,0,0,0,0,67.9979999999999,17521.3192006051,42.8479405940594,22.9785428586361,22.1253150990917,1.58237623762376,1.59701644655362,1.31876216055159,4.37704043535408,3.47258777250915,3.47812127134445 +42389,2874.36327168317,457.640576435643,225,69.2077722772278,71.2840054455446,21.3653465346535,2.74693069306931,1495.35643564356,3788.8198019802,3717.92277227723,20,40,12,32,5306770.54215323,397421.174602094,0,0,0,0,0,0,0,69.2077722772276,17540.3758119363,42.7306930693069,22.9156652212225,22.1428701418917,2.74693069306931,2.76157090199916,2.26460590489135,4.08258352996362,3.23897616569586,3.33286024241019 +42390,2874.35669207921,457.628474257426,225,70.4356336633663,72.5487026732674,22.0851287128713,3.13475247524753,1533.12376237624,3734.80099009901,3711.36435643564,20,40,12,32,5306758.62247437,397405.884863438,0,0,0,0,0,0,0,70.4356336633662,17559.7748224423,44.1702574257426,23.6876764498487,22.8263390646075,3.13475247524753,3.14939268417738,2.58381356799768,4.46207268699477,3.54004932825155,3.4610569355387 +42391,2874.35003029703,457.616121188119,225,71.6224455445544,73.7711189108911,22.1108217821782,1.27346534653465,1560.60396039604,3749.3297029703,3629.63861386139,20,40,12,32,5306746.55617054,397390.279873443,0,0,0,0,0,0,0,71.6224455445544,17579.5114208746,44.2216435643564,23.7152338673607,22.9161468551309,1.27346534653465,1.28810555546451,1.06396812537676,4.19953240034261,3.33175922842624,3.21802286957096 +42392,2874.34328445545,457.603538811881,225,72.7961287128713,74.9800125742574,21.5011485148515,-0.336237623762376,1585.09405940594,3725.27128712871,3579.30198019802,20,40,12,32,5306734.33928148,397374.386449694,0,0,0,0,0,0,0,72.7961287128712,17599.5755169693,43.002297029703,23.0613213054592,22.4650270156082,-0.336237623762376,-0.321597414832519,-0.262452083584554,3.3164177432163,2.63112755610029,2.62575252626597 +42393,2874.33645643564,457.590728019802,225,73.9606336633664,76.1794526732673,20.0186534653465,-1.24683168316832,1608.32178217822,3662.04356435644,3563.45643564357,20,40,12,32,5306721.97527439,397358.205760926,0,0,0,0,0,0,0,73.9606336633662,17619.9589840485,40.0373069306931,21.4712530053044,21.2709156368937,-1.24683168316832,-1.23219147423846,-0.967753791331226,2.08392553296604,1.6533121938162,1.81242936215687 +42394,2874.32955930693,457.577678613861,225,75.082792079208,77.3352758415842,19.2828811881188,0.153069306930693,1634.43564356436,3609.0396039604,3522.3099009901,20,40,12,32,5306709.48858655,397341.725533265,0,0,0,0,0,0,0,75.0827920792078,17640.6558924093,38.5657623762376,20.6820913993056,20.7093967319987,0.153069306930693,0.16770951586055,0.126403444790439,1.98217304784353,1.57258540116315,1.59458199607186 +42395,2874.32257910891,457.564411386139,225,76.1684455445545,78.4534989108911,18.2003943895049,-1.41217821782178,1657.66831683168,3621.42277227723,3426.64752475247,20,40,12,32,5306696.8529001,397324.971199857,0,0,0,0,0,0,0,76.1684455445543,17661.6638599836,36.4007887790099,19.5210568687777,19.8494150511961,-1.41217821782178,-1.39753800889193,-1.08657573685254,2.65068659888158,2.1029602097531,1.96322823244635 +42396,2874.31549138614,457.550958316832,225,77.247801980198,79.565236039604,19.531297029703,0.262772277227723,1678.50495049505,3609.81881188119,3349.48910891089,20,40,12,32,5306684.02220843,397307.981782484,0,0,0,0,0,0,0,77.2478019801979,17682.9751978824,39.0625940594059,20.9485328657315,21.045294644989,0.262772277227723,0.27741248615758,0.217343572904899,2.08167352817171,1.65152553353103,1.61648055117333 +42397,2874.30829673267,457.537335049505,225,78.2785742574258,80.6269314851485,20.7243366336634,-0.282475247524753,1701.32178217822,3527.44752475247,3344.80198019802,20,40,12,32,5306670.99726713,397290.776781508,0,0,0,0,0,0,0,78.2785742574256,17704.5755320133,41.4486732673267,22.2281421674423,22.1199187365871,-0.282475247524753,-0.267835038594895,-0.20988149940587,1.80355792198906,1.43087853069024,1.53017592639865 +42398,2874.3010139604,457.523526336634,225,79.2858415841584,81.6644168316832,18.7467134211881,-1.6819801980198,1724.16336633663,3488.42079207921,3333.51782178218,20,40,12,32,5306657.81326236,397273.337823372,0,0,0,0,0,0,0,79.2858415841583,17726.4609326458,37.4934268423762,20.1070180659775,20.4942312052032,-1.6819801980198,-1.66733998908994,-1.27753287118873,2.78145804374113,2.20670961008869,2.26091646511069 +42399,2874.29365445545,457.509527821782,225,80.259099009901,82.666871980198,19.2202233222772,-0.217425742574257,1744.86633663366,3417.84158415842,3349.95247524752,20,40,12,32,5306644.49138392,397255.659854663,0,0,0,0,0,0,0,80.2590990099009,17748.6219525578,38.4404466445545,20.6148869346004,20.9519366459703,-0.217425742574257,-0.2027855336444,-0.156034483130525,2.83330846560969,2.24784588553314,2.29852442719095 +42400,2874.28622346535,457.495332178218,225,81.2633366336634,83.7012367326732,18.6356149612871,-1.15386138613861,1767.24257425743,3428.90198019802,3293.79702970297,20,40,12,32,5306631.04151673,397237.733920052,0,0,0,0,0,0,0,81.2633366336633,17771.0598474973,37.2712299225743,19.9878580462907,20.512243616647,-1.15386138613861,-1.13922117720876,-0.884100025929013,3.23791826279954,2.56884886805305,2.41083954154285 +42401,2874.27870227723,457.480961584158,225,82.2091782178218,84.6754535643564,19.4919235422772,-1.32178217821782,1788.09405940594,3269.90198019802,3084.24356435644,20,40,12,32,5306617.42850824,397219.587022301,0,0,0,0,0,0,0,82.2091782178217,17793.7681426569,38.9838470845545,20.906302347496,21.2959852191109,-1.32178217821782,-1.30714196928797,-1.03009764774705,2.72692833706194,2.16344768563327,2.13035111351906 +42402,2874.27109069307,457.466456534653,225,82.9289108910891,85.4167782178218,20.6946314634653,-1.72514851485149,1800.61881188119,2851.87920792079,2690.77425742574,20,40,12,32,5306603.651095,397201.269588977,0,0,0,0,0,0,0,82.928910891089,17816.7114286305,41.3892629269307,22.1962815217704,22.3613460203749,-1.72514851485149,-1.71050830592163,-1.3589578767086,2.5113617791789,1.99242486687651,2.02954892182318 +42403,2874.26341425743,457.451861881188,225,83.4275742574257,85.9304014851485,19.7557436745545,-2.53059405940594,1809.08415841584,2521.38514851485,2434.38910891089,20,40,12,32,5306589.75560041,397182.838323879,0,0,0,0,0,0,0,83.4275742574256,17839.8202167218,39.5114873491089,21.1892658753788,21.5889747777999,-2.53059405940594,-2.51595385047609,-1.94266891115985,2.89646873804377,2.29795499304592,2.29568113087925 +42404,2874.25568247525,457.437198712872,225,83.7833267326733,86.2968265346535,20.9184917492079,-1.33386138613861,1815.51485148515,2393.79207920792,2325.80396039604,20,40,12,32,5306575.75916382,397164.319805803,0,0,0,0,0,0,0,83.7833267326732,17863.0488086085,41.8369834984159,22.4363856247431,22.5993113098062,-1.33386138613861,-1.31922117720876,-1.04617127482892,2.47710257859306,1.96524483899982,2.04630866280457 +42405,2874.24791871287,457.422486534653,225,84.1109405940594,86.6342688118812,22.3488811881188,-2.28326732673267,1822.82673267327,2212.49504950495,2230.67524752475,20,40,12,32,5306561.7046355,397145.739098674,0,0,0,0,0,0,0,84.1109405940593,17886.3693430144,44.6977623762376,23.9705674113521,23.8335394293829,-2.28326732673267,-2.26862711780282,-1.80835194347272,2.22935672377836,1.76869211374501,1.75455825734952 +42406,2874.24015475248,457.407705742574,225,84.3310297029703,86.8609605940594,22.0299686468317,-2.48782178217822,1827.97524752475,2105.02574257426,2118.32772277228,20,40,11.8712871287129,32,5306547.65132301,397127.072833908,0,0,0,0,0,0,0,84.3310297029702,17909.7679819033,44.0599372936634,23.6285138425447,23.5752807547602,-2.48782178217822,-2.47318157324836,-1.95971650852713,2.82091799963125,2.23801573173678,2.11764921784623 +42407,2874.23233306931,457.392915148515,225,84.5020198019801,87.0370803960397,21.6419306930693,-3.23168316831683,1830.31188118812,2036.59207920792,2021.60792079208,20,40,11.8910891089109,32,5306533.49136505,397108.392362534,0,0,0,0,0,0,0,84.5020198019801,17933.2193627339,43.2838613861386,23.2123189623388,23.2546815988968,-3.23168316831683,-3.21704295938698,-2.56330320904451,2.73771054220295,2.17200190264047,2.26660010010871 +42408,2874.22449871287,457.378101188119,225,84.6348712871287,87.1739174257426,22.4959405940594,-2.60940594059406,1834.68316831683,1948.63366336634,1958.97623762376,20,40,12,32,5306519.30851041,397089.682277082,0,0,0,0,0,0,0,84.6348712871286,17956.7110930969,44.9918811881188,24.1282977860362,23.9893949921591,-2.60940594059406,-2.59476573166421,-2.08063296191331,2.64510086023273,2.09852868392671,2.1608596610215 +42409,2874.21664920792,457.36326950495,225,84.7161881188119,87.2576737623762,19.6071380638614,-3.48574257425742,1834.30693069307,1877.69405940594,1892.35841584158,20,40,12,32,5306505.0980489,397070.949524536,0,0,0,0,0,0,0,84.7161881188118,17980.2303272003,39.2142761277228,21.0298770997689,21.5361993423047,-3.48574257425742,-3.47110236532757,-2.69075749872886,3.0802448021459,2.44375636785759,2.31524795497821 +42410,2874.20880653465,457.348410990099,225,84.7659504950495,87.308929009901,20.1402563255446,-3.29851485148515,1835.55940594059,1847.20891089109,1903.54752475248,20,40,12,32,5306490.90089816,397052.183485469,0,0,0,0,0,0,0,84.7659504950494,18003.7686624314,40.2805126510891,21.6016796487347,21.9927734458331,-3.29851485148515,-3.28387464255529,-2.55704023378607,2.73533161172054,2.17011454404124,2.18479882185668 +42411,2874.20097673267,457.333531485148,225,84.7937722772277,87.3375854455445,20.1573652365346,-3.30554455445545,1838.40594059406,1842.31089108911,1846.74653465347,20,40,12,32,5306476.72811606,397033.391635331,0,0,0,0,0,0,0,84.7937722772276,18027.317034076,40.3147304730693,21.6200300216581,22.0075902734494,-3.30554455445545,-3.29090434552559,-2.56202627616383,2.84938486079297,2.26060032410048,2.35261373454286 +42412,2874.1931430693,457.318646336634,225,84.8156435643564,87.3601128712871,20.9881182618812,-1.96069306930693,1836.89603960396,1851.29306930693,1866.68712871287,20,40,12,32,5306462.54836698,397014.592535729,0,0,0,0,0,0,0,84.8156435643563,18050.8748246701,41.9762365237624,22.5110643973225,22.717473829675,-1.96069306930693,-1.94605286037707,-1.54789435734996,2.88575095179295,2.28945188368866,2.23888989895912 +42413,2874.18531059406,457.303763465347,225,84.8096831683168,87.3539736633663,20.7313938393069,-1.9160396039604,1836.22277227723,1824.85049504951,1859.99801980198,20,40,12,32,5306448.37082828,396995.796219261,0,0,0,0,0,0,0,84.8096831683167,18074.4336313532,41.4627876786139,22.2357114601595,22.4978153034654,-1.9160396039604,-1.90139939503054,-1.49637212861201,2.75066023075282,2.18227572368011,2.1559345855988 +42414,2874.17748049505,457.288874158416,225,84.8185445544555,87.3631008910891,20.3553569857426,-2.81188118811881,1837.9603960396,1863.05445544554,1896.5900990099,20,40,12,32,5306434.19789451,396976.99187293,0,0,0,0,0,0,0,84.8185445544553,18097.9970262377,40.7107139714851,21.8323885075855,22.1786957045343,-2.81188118811881,-2.79724097918896,-2.18772604057695,2.66066903005021,2.11087991461488,2.15382177178018 +42415,2874.16965009901,457.273985742574,225,84.8366336633663,87.3817326732674,22.4016336633663,-1.49891089108911,1838.41584158416,1850.75148514851,1897.57722772277,20,40,12,32,5306420.02445097,396958.188534123,0,0,0,0,0,0,0,84.8366336633662,18121.559634351,44.8032673267327,24.0271477275385,23.9212074190375,-1.49891089108911,-1.48427068215925,-1.18980899689806,2.45374167804418,1.94671113368022,1.96293789545548 +42416,2874.16182693069,457.259085445545,225,84.843801980198,87.3891160396039,21.0416930693069,-0.931386138613861,1839.90099009901,1869.82277227723,1903.20396039604,20,40,12,32,5306405.86472026,396939.370543213,0,0,0,0,0,0,0,84.8438019801979,18145.1256116062,42.0833861386139,22.5685267160015,22.7652321018079,-0.931386138613861,-0.916745929684004,-0.716410286453679,2.60102656926413,2.06356171339947,2.12145310414572 +42417,2874.154,457.244184257426,225,84.8900792079208,87.4367815841584,21.1363201319802,-2.9539603960396,1838.64851485149,1866.09702970297,1857.42871287129,20,40,12,32,5306391.69810048,396920.551225355,0,0,0,0,0,0,0,84.8900792079207,18168.6984008527,42.2726402639604,22.6700201359921,22.8467666465976,-2.9539603960396,-2.93932018710975,-2.31502979913546,3.18344876612647,2.52563471206905,2.43247543960935 +42418,2874.14616009901,457.229282871287,225,84.9221386138614,87.4698027722772,24.6078811881188,-2.80178217821782,1838.10891089109,1835.84653465347,1875.37920792079,20,40,12,32,5306377.50751997,396901.73113897,0,0,0,0,0,0,0,84.9221386138612,18192.2851666117,49.2157623762376,26.3934856472337,25.8023363679323,-2.80178217821782,-2.78714196928797,-2.24646662289688,3.53487020001969,2.8044399441337,2.78562685770628 +42419,2874.13831465347,457.214365742574,225,85.0044851485148,87.5546197029703,23.6007524752475,-2.75841584158416,1842.83168316832,1778.00099009901,1801.87821782178,20,40,12,32,5306363.30707984,396882.891167856,0,0,0,0,0,0,0,85.0044851485148,18215.8862740925,47.2015049504951,25.3132773584795,24.9492492542339,-2.75841584158416,-2.7437756326543,-2.19378911763849,2.82482510039501,2.24111548613443,2.43101768712912 +42420,2874.13046346535,457.199446732673,225,85.0136237623763,87.5640324752476,24.7500792079208,-3.73039603960396,1840.23762376238,1758.62673267327,1777.90099009901,20,40,12,32,5306349.09610482,396864.04857056,0,0,0,0,0,0,0,85.0136237623761,18239.4988718098,49.5001584158416,26.5460018824194,25.9278950153705,-3.73039603960396,-3.71575583067411,-3.01021985631086,3.70043783894994,2.93579540382479,2.71392473486663 +42421,2874.12260485149,457.18453009901,225,85.0351683168316,87.5862233663366,22.1917365236634,-2.34831683168317,1841.9900990099,1724.17326732673,1762.58217821782,20,40,12,32,5306334.87138233,396845.20859415,0,0,0,0,0,0,0,85.0351683168316,18263.1187451871,44.3834730473267,23.8020199685984,23.7534489582966,-2.34831683168317,-2.33367662275331,-1.83364835560942,2.90350213193937,2.30353503691388,2.35770340784788 +42422,2874.11473831683,457.169617623762,225,85.0260396039604,87.5768207920792,23.6147299229703,-3.19752475247525,1839.71782178218,1666.64851485148,1703.35841584158,20,40,12,32,5306320.63195564,396826.373441968,0.475247524752475,0.475247524752475,1260907.14913941,94293.1813534787,0.645344182222626,0,0,85.0260396039603,18286.7381327008,47.2294598459406,25.3282690419582,24.9613526527673,-3.19752475247525,-3.1828845435454,-2.55621746794152,3.6397413724788,2.88764099209038,2.91509590654478 +42423,2874.10687386138,457.154707029703,225,85.0177128712871,87.5682442574258,24.6078514851485,-3.49277227722772,1832.91584158416,1686.10693069307,1724.18811881188,20,40,12,32,5306306.39639891,396807.540608728,2,2,5306308.42196062,396805.890319466,17.224222354872,0,0,85.017712871287,18310.353339219,49.215702970297,26.3934537889475,25.8067516084277,-3.49277227722772,-3.47813206829787,-2.80994933807703,4.0032877535845,3.1760657248323,3.09444745358937 +42424,2874.0990219802,457.139786336633,225,85.0190297029703,87.5696005940594,24.7976930693069,-3.16336633663366,1839.0099009901,1701.56633663366,1775.48910891089,20,40,12,32,5306292.18441947,396788.695519897,2,2,5306293.52376917,396787.604309292,40.8109617784392,0,0,85.0190297029702,18333.9665796755,49.5953861386139,26.5970707151034,25.9687911537888,-3.16336633663366,-3.14872612770381,-2.55140887233939,3.67354708485582,2.91446123859603,2.89640822131682 +42425,2874.09118267327,457.124847722772,225,85.0079900990099,87.5582298019802,22.5396732673267,-3.70821782178218,1839.0495049505,1647.15940594059,1743.84455445545,20,40,12,32,5306277.99619177,396769.828432891,2,2,5306278.62428158,396769.316708237,64.3997532462279,0,0,85.0079900990098,18357.5843761552,45.0793465346535,24.1752038026644,24.0460851712937,-3.70821782178218,-3.69357761285233,-2.94229341116602,2.73725329954341,2.17163914262214,2.32197276232377 +42426,2874.08336613862,457.109881485148,225,85.0325742574257,87.5835514851485,24.334099009901,-3.76990099009901,1846.15841584158,1637.26138613861,1735.55049504951,20,40,12,32,5306263.85082253,396750.927599876,2,2,5306263.72536796,396751.029811681,87.9876359953966,0,0,85.0325742574256,18381.2039881189,48.668198019802,26.0998372044434,25.5743088183188,-3.76990099009901,-3.75526078116916,-3.03039083601121,3.32048035928076,2.63435069079099,2.55558928161856 +42427,2874.07557118812,457.094895148515,225,85.0320495049505,87.583010990099,25.2362673267327,-3.75594059405941,1837.50495049505,1678.14059405941,1738.00693069307,20,40,12,32,5306249.74594351,396732.002354384,2,2,5306248.83065398,396732.748069749,111.568869904815,0,0,85.0320495049504,18404.825104483,50.4725346534653,27.067468929404,26.3428039113297,-3.75594059405941,-3.74130038512955,-3.03649483493583,4.16968440667866,3.30807889479391,3.31186816011131 +42428,2874.06780019802,457.07988019802,225,85.0323861386138,87.5833577227723,25.4433168316832,-3.8549504950495,1840.59900990099,1623.18811881188,1704.12277227723,20,40,12,32,5306235.68614646,396713.042169341,2,2,5306233.9368166,396714.467403761,135.14871597547,0,0,85.0323861386137,18428.4445450771,50.8866336633663,27.2895424226642,26.5188361279823,-3.8549504950495,-3.84031028611965,-3.12653850928819,4.26396700487326,3.38287934557487,3.41463494873299 +42429,2874.06004653465,457.064847029703,225,85.0104752475247,87.5607895049505,25.8131782178218,-4.55,1837.91584158416,1677.74059405941,1643.31683168317,20,40,12,32,5306221.658912,396694.0597742,2,2,5306219.04509451,396696.189334067,158.725213142018,0,0,85.0104752475246,18452.0627247525,51.6263564356436,27.686241801692,26.8312013768707,-4.55,-4.53535979107015,-3.70059328077763,4.63606424786374,3.67808802716626,3.63535649342427 +42430,2874.05225574258,457.049866930693,225,85.0053960396039,87.5555579207921,25.3204059405941,-4.09584158415842,1840.14851485149,1766.96930693069,1641.72574257426,20,40,12,32,5306207.56178002,396675.142158193,2,2,5306204.15720734,396677.915971349,182.295638879281,0,0,85.0053960396038,18475.6720040705,50.6408118811881,27.1577128346128,26.4124666803558,-4.09584158415842,-4.08120137522856,-3.32029528385608,4.13041603222182,3.27692476702216,3.27947935723987 +42431,2874.04438336634,457.034977722772,225,84.9866336633663,87.5362326732673,20.0198602861386,-3.81564356435644,1841.96534653465,1737.3,1646.57524752475,20,40,12,32,5306193.31155933,396656.334957336,2,2,5306189.26231226,396659.634007135,205.877159504711,0,0,84.9866336633662,18499.2825918593,40.0397205722772,21.4725473957889,21.9018903882567,-3.81564356435644,-3.80100335542658,-2.95515891231325,3.16798476725924,2.51336612689751,2.62453395824571 +42432,2874.03645871287,457.02014980198,225,85.0027524752475,87.552835049505,21.3438762377228,-2.05574257425743,1841.57425742574,1724.85841584158,1704.52277227723,20,40,12,32,5306178.96319597,396637.602268553,2,2,5306174.36474944,396641.34876854,229.462903684542,0,0,85.0027524752474,18522.8923618813,42.6877524754455,22.8926369901631,23.0299956526045,-2.05574257425743,-2.04110236532757,-1.60387087658818,3.0342026107998,2.4072281353568,2.28359359514521 +42433,2874.02851732673,457.005337029703,225,85.0187326732673,87.5692946534653,21.2406534653465,-3.32188118811881,1848.00495049505,1673.8396039604,1726.34257425743,20,40,12,32,5306164.58355964,396618.887800363,1.41584158415842,2,5306159.4636637,396623.058903735,106.330002803605,0,0,85.0187326732672,18546.5045548131,42.4813069306931,22.7819241360026,22.9420771793606,-3.32188118811881,-3.30724097918896,-2.60132115027539,2.74162888953591,2.17511057966502,2.12958552665353 +42434,2874.02057237624,456.990525148515,225,85.0102574257426,87.5605651485149,22.7011903190099,-0.663861386138614,1839.29207920792,1639.26534653465,1704.57128712871,20,40,12,32,5306150.19736065,396600.174230453,1,2,5306144.56105143,396604.765871111,25.4770604549385,0,0,85.0102574257425,18570.1208507427,45.4023806380198,24.3484409031199,24.186448567686,-0.663861386138614,-0.649221177208756,-0.504328080900582,2.77610728614431,2.2024645098483,2.24821387905003 +42435,2874.01262782178,456.975713069307,225,85.0059108910891,87.5560882178218,21.2817128712871,-1.9980198019802,1834.51485148515,1679.87920792079,1720.85346534653,20,40,12,32,5306135.81195933,396581.460333639,1,2,5306129.6587505,396586.473068523,49.071661525754,0,0,85.005910891089,18593.7346678219,42.5634257425743,22.8259629068782,22.9760694905752,-1.9980198019802,-1.98337959305034,-1.54640926391127,2.345424362812,1.86077603895545,1.98259542352467 +42436,2874.00469267327,456.960887821782,225,85.0259405940594,87.5767188118812,21.3416155115842,-2.42673267326733,1834.11386138614,1649.15445544554,1703.09405940594,20,40,12,32,5306121.44433472,396562.730253027,1,2,5306114.75561617,396568.179242937,72.6675820901287,0,0,85.0259405940593,18617.3502852311,42.6832310231683,22.890212220536,23.0307452701758,-2.42673267326733,-2.41209246433747,-1.89013250184904,2.57236466113469,2.04082237772801,2.04264382752104 +42437,2873.99676366337,456.946052871287,225,84.9957524752475,87.545625049505,20.0621644666337,-0.291782178217822,1841.70792079208,1619.83861386139,1666.02376237624,20,40,12,32,5306107.08835739,396543.988196667,1,2,5306099.85126389,396549.883922299,96.2654310179735,0,0,84.9957524752474,18640.9655713973,40.1243289332673,21.5179212649237,21.9396169750407,-0.291782178217822,-0.277141969287964,-0.238136795857883,2.98715762376507,2.36990432052175,2.22871245656911 +42438,2873.98886148515,456.931200693069,225,84.9902673267327,87.5399753465347,20.0941897690099,-1.65514851485149,1842.15346534653,1642.9801980198,1711.33267326733,20,40,12,32,5306092.78252622,396525.2254789,1,2,5306084.95679834,396531.600737762,119.847626440865,0,0,84.9902673267326,18664.5710648241,40.1883795380198,21.5522703969011,21.9672942123016,-1.65514851485149,-1.64050830592163,-1.27625183828687,2.87616509036014,2.28184680311146,2.23060204346437 +42439,2873.9809909901,456.916308316832,225,84.9762079207921,87.5254941584159,21.2022662266337,-1.28435643564356,1839.22277227723,1645.40792079208,1725.1900990099,20,40,12,32,5306078.53634121,396506.413648708,1,2,5306070.06207744,396513.317239789,143.430226142685,0,0,84.976207920792,18688.178833361,42.4045324532673,22.740751430955,22.9092220958851,-1.28435643564356,-1.26971622671371,-1.00299011086392,2.5007528254223,1.98400810133861,2.11965132632176 +42440,2873.97317316832,456.901365940594,225,84.9988613861386,87.5488272277228,20.8794383939604,-1.10108910891089,1841.10891089109,1654.70495049505,1719.0702970297,20,40,11.970297029703,32,5306064.38890276,396487.54119409,1,2,5306055.17706183,396495.045655201,166.997459606883,0,0,84.9988613861385,18711.7879373214,41.7588767879208,22.394498468213,22.636538466639,-1.10108910891089,-1.08644889998103,-0.860724428347702,3.04418047874765,2.41514421992196,2.41703973793878 +42441,2873.96542881188,456.886372376238,225,85.0199207920792,87.5705184158416,22.8178553354455,-3.4870297029703,1846.87128712871,1685.48514851485,1735.25841584158,20,40,12,32,5306050.37875208,396468.607326541,1,2,5306040.3167401,396476.804382726,190.5255956052,0,0,85.0199207920791,18735.4011198847,45.6357106708911,24.4735714014871,24.2854231969335,-3.4870297029703,-3.47238949404044,-2.77184296857234,3.19177681255964,2.53224188708602,2.41287525380598 +42442,2873.95768425743,456.871355049505,225,85.0165544554455,87.5670510891089,23.1243465346535,-3.27920792079208,1836.91089108911,1660.48316831683,1674.80099009901,20,40,11.7920792079208,32,5306036.36882685,396449.643760844,1,2,5306025.44196585,396458.545369562,214.076614071883,0,0,85.0165544554454,18759.0165218374,46.248693069307,24.8023023070639,24.5455493730135,-3.27920792079208,-3.26456771186223,-2.61007557991703,2.32164711594828,1.84191201931881,1.90057909908311 +42443,2873.94992722772,456.856343762376,225,85.0163267326733,87.5668165346535,23.109198019802,-3.7680198019802,1841.69801980198,1654.94455445545,1688.5801980198,20,40,11.950495049505,32,5306022.3357194,396430.687211292,1,2,5306010.56137947,396440.279221925,237.636834793471,0,0,85.0163267326732,18782.6308599012,46.218396039604,24.786054581132,24.532337867194,-3.7680198019802,-3.75337959305035,-2.99909643767398,2.54261478849157,2.01721988981409,1.97273825494708 +42444,2873.94216306931,456.841318118812,225,85.0362574257426,87.5873451485148,23.6771287128713,-3.80029702970297,1836.80198019802,1660.00297029703,1710.6603960396,20,40,11.970297029703,32,5306008.28978937,396411.712449224,0.0495049504950495,0.099009900990099,262673.40658438,19625.2855432161,12.3715211239601,0,0,85.0362574257424,18806.247563119,47.3542574257426,25.3951956315767,25.0160403186287,-3.80029702970297,-3.78565682077312,-3.04477580810317,2.90222973126787,2.30252555960179,2.39757383689276 +42445,2873.93441079208,456.826288019802,225,85.0108118811881,87.5611362376238,22.0830456545545,-1.98475247524752,1835.21287128713,1655.08118811881,1660.99702970297,20,40,11.8316831683168,32,5305994.26602837,396392.732439793,0,0,0,0,0,0,0,85.010811881188,18829.8665074259,44.1660913091089,23.6854422400292,23.6598528780252,-1.98475247524752,-1.97011226631767,-1.55933958817139,2.54475965103653,2.01892154725988,2.12859378610936 +42446,2873.92665108911,456.81126970297,225,85.028198019802,87.579043960396,20.4526897694059,-0.615643564356436,1843.35643564356,1667.55742574257,1654.79306930693,20,40,11.980198019802,32,5305980.22831016,396373.766767349,0,0,0,0,0,0,0,85.0281980198019,18853.4836363863,40.9053795388119,21.9367839819047,22.2741486156656,-0.615643564356436,-0.601003355426578,-0.484456251265577,3.38004776518149,2.68160934613724,2.44719512694754 +42447,2873.91887108911,456.796258514852,225,85.0143564356436,87.5647871287129,20.9999114410891,-2.01069306930693,1837.94059405941,1715.39603960396,1663.85643564356,20,40,11.980198019802,32,5305966.15289666,396354.809207032,0,0,0,0,0,0,0,85.0143564356434,18877.0994442796,41.9998228821782,22.523713316739,22.7387447143781,-2.01069306930693,-1.99605286037707,-1.56624230239492,2.7411568057614,2.17473604523538,2.29963457299392 +42448,2873.91106970297,456.78128990099,225,85.0012574257426,87.5512951485149,19.0478300329703,-0.630594059405941,1840.53465346535,1696.14158415842,1650.46237623762,20,40,12,32,5305952.03697719,396335.903875355,0,0,0,0,0,0,0,85.0012574257425,18900.7124479925,38.0956600659406,20.429984391703,21.0773031682692,-0.630594059405941,-0.615953850476083,-0.480938206597361,3.62616119569024,2.87686696416878,2.9127526906064 +42449,2873.90324811881,456.766347029703,225,84.9917623762376,87.5415152475248,19.0273333336634,-0.0574257425742574,1836.80693069307,1736.74950495049,1683.43861386139,20,40,12,32,5305937.88312879,396317.029845282,0,0,0,0,0,0,0,84.9917623762375,18924.3242609463,38.0546666673267,20.4080004047503,21.0597433481147,-0.0574257425742574,-0.0427855336444001,-0.0399037768375092,3.63712933694155,2.88556869625441,2.88529065023164 +42450,2873.89540306931,456.751414554455,225,85.0353663366337,87.5864273267327,20.2499724975247,-2.34267326732673,1835.15346534653,1699.04851485149,1671.85148514852,20,40,12,32,5305923.68564245,396298.167891305,0,0,0,0,0,0,0,85.0353663366336,18947.9406280531,40.4999449950495,21.7193570785098,22.1011454389383,-2.34267326732673,-2.32803305839688,-1.81005556882285,3.03870393410143,2.41079932472281,2.45864268466766 +42451,2873.88753514852,456.736497326733,225,85.0449504950495,87.596299009901,21.5904702971287,-2.26009900990099,1841.23267326733,1651.96237623762,1644.67425742574,20,40,12,32,5305909.44550985,396279.324076232,0,0,0,0,0,0,0,85.0449504950494,18971.5643480201,43.1809405942574,23.1571244817057,23.2426014962525,-2.26009900990099,-2.24545880097113,-1.76892896321823,2.59121793811339,2.05577989527323,2.07314528554119 +42452,2873.87965831683,456.721601089109,225,85.0085841584158,87.5588416831683,19.1902530256436,-3.45831683168317,1842.28217821782,1664.12871287129,1676.63861386139,20,40,12,32,5305895.18846165,396260.506018033,0,0,0,0,0,0,0,85.0085841584158,18995.1827813534,38.3805060512871,20.5827419243089,21.1968295464302,-3.45831683168317,-3.44367662275331,-2.6525504024281,3.73553924435582,2.96364360696812,2.81841484513606 +42453,2873.87178188119,456.706704356435,225,85.0431485148515,87.594442970297,21.2949724971287,-4.26752475247525,1844.11386138614,1652.35841584158,1696.57821782178,20,40,12,32,5305880.93221846,396241.68726323,0,0,0,0,0,0,0,85.0431485148514,19018.8001077836,42.5899449942574,22.840184681669,22.9891739070485,-4.26752475247525,-4.25288454354539,-3.34748533249354,2.87741130868542,2.28283550828386,2.44309729566263 +42454,2873.86390158416,456.691805742574,225,85.0384851485148,87.5896397029703,20.8030390538614,-2.88,1836.68811881188,1628.12079207921,1667.06930693069,20,40,12,32,5305866.6689251,396222.865943323,0,0,0,0,0,0,0,85.0384851485148,19042.4216656494,41.6060781077228,22.3125554162718,22.5711940337873,-2.88,-2.86535979107015,-2.24995034644184,3.24216805471644,2.57222050138938,2.46594475271062 +42455,2873.85601752475,456.676907920792,225,85.0486831683168,87.6001436633664,22.6630099009901,-3.3229702970297,1843.09405940594,1602.88712871287,1683.75148514851,20,40,12,32,5305852.39870512,396204.045391562,0,0,0,0,0,0,0,85.0486831683167,19066.0445275305,45.3260198019802,24.3074900261506,24.1541202703327,-3.3229702970297,-3.30833008809985,-2.63459110617377,2.37860560747899,1.88710085505186,1.85020593229012 +42456,2873.84815425743,456.661982277227,225,85.0566633663366,87.6083632673267,22.5860099009901,-2.1229702970297,1842.74752475248,1596.81485148515,1688.15643564356,20,40,12,32,5305838.16768302,396185.190782315,0,0,0,0,0,0,0,85.0566633663365,19089.6679132291,45.1720198019802,24.2249027290444,24.09132530287,-2.1229702970297,-2.10833008809985,-1.68819513781609,2.15955038760779,1.71331025629823,1.78929658202341 +42457,2873.84030069307,456.647038910891,225,85.0361485148514,87.587232970297,19.6192794282178,-2.02148514851485,1840.33663366337,1579.67326732673,1636.30198019802,20,40,12,32,5305823.95509191,396166.314326305,0,0,0,0,0,0,0,85.0361485148514,19113.2901714249,39.2385588564356,21.0428994694492,21.5647242070017,-2.02148514851485,-2.006844939585,-1.53860271596969,3.51551295075893,2.78908259295426,2.76526608440114 +42458,2873.83243960396,456.632118613861,225,85.0132277227722,87.5636245544555,18.6882436745545,-2.2850495049505,1840.14356435644,1627.67722772277,1663.41188118812,20,40,12,32,5305809.7281059,396147.466263505,0,0,0,0,0,0,0,85.0132277227721,19136.9110360564,37.3764873491089,20.0443056200429,20.7706090892229,-2.2850495049505,-2.27040929602064,-1.74393120421066,3.99270948392579,3.1676733029633,3.146354497425 +42459,2873.82456574257,456.617214059406,225,85.012,87.56236,19.0979823988119,-0.466732673267327,1845.55445544554,1638.22673267327,1688.50495049505,20,40,12,32,5305795.47716878,396128.637292182,0,0,0,0,0,0,0,85.0119999999999,19160.5286845713,38.1959647976238,20.4837759285645,21.1190906701804,-0.466732673267327,-0.452092464337469,-0.355642115693773,3.66034111709013,2.90398409476686,2.91165000211241 +42460,2873.81668108911,456.602318514851,225,85.006297029703,87.556485940594,20.2429576457426,-2.25722772277228,1840.91089108911,1628.05049504951,1658.2,20,40,12,32,5305781.20609935,396109.819091435,0,0,0,0,0,0,0,85.0062970297028,19184.1472929321,40.4859152914852,21.7118332129476,22.0942828727417,-2.25722772277228,-2.24258751384242,-1.73895142964093,2.83709294756087,2.25084835853814,2.30922851205376 +42461,2873.80879148515,456.587433465347,225,85.0210792079208,87.5717115841584,21.097795929703,-2.7049504950495,1842.0396039604,1624.0297029703,1693.93069306931,20,40,12,32,5305766.92568481,396091.01370604,0,0,0,0,0,0,0,85.0210792079207,19207.7607480201,42.1955918594059,22.6287005289889,22.8220509795486,-2.7049504950495,-2.69031028611965,-2.10405824529436,2.71096447550435,2.15078252723099,2.0981256388931 +42462,2873.80091782178,456.572568415841,225,84.6346732673268,87.1737134653465,19.7785302530693,-2.63287128712871,1822.21287128713,248.024752475248,288.805940594059,20,40,12,32,5305752.67440925,396072.233673285,0,0,0,0,0,0,0,84.6346732673266,19231.3411459299,39.5570605061386,21.2137059004416,21.6775200953694,-2.63287128712871,-2.61823107819886,-2.03980492142888,3.07672996453007,2.44096782105129,2.48457240772344 +42463,2873.79312623762,456.557881386139,225,82.9048712871287,85.3920174257426,19.5687211223762,0.0218811881188119,1772.83168316832,-3041.09801980198,-2536.46237623762,20,40,12,32,5305738.57123814,396053.678046496,0,0,0,0,0,0,0,82.9048712871286,19254.6544001378,39.1374422447525,20.9886725366476,21.4002835287642,0.0218811881188119,0.0365213970486695,0.00128040895728607,3.36959205859762,2.67331416144056,2.53033474924881 +42464,2873.78559485148,456.543633861386,225,79.7101485148515,82.101452970297,19.4792546753465,-1.04881188118812,1704.43564356436,-3674.20396039604,-2821.01188118812,20,40,12,32,5305724.9402383,396035.678506858,0,0,0,0,0,0,0,79.7101485148514,19277.2379875416,38.9585093506931,20.8927141984414,21.1401804317007,-1.04881188118812,-1.03417167225826,-0.781658737265833,2.80018019691484,2.22156309868362,2.23925290529213 +42465,2873.77836960396,456.529925544555,225,76.519702970297,78.815294059406,19.9054554455446,-2.33247524752475,1634.17326732673,-3861.30693069307,-3023.27821782178,20,40,12,32,5305711.86426457,396018.360796964,0,0,0,0,0,0,0,76.5197029702969,19298.941891557,39.8109108910891,21.349841076821,21.3210550130883,-2.33247524752475,-2.3178350385949,-1.840388416181,1.9079322666786,1.5136854132141,1.62389385350238 +42466,2873.77149108911,456.516825742574,225,72.489900990099,74.664598019802,19.5373168316832,-2.25574257425743,1554.44059405941,-4191.32178217822,-3413.15445544554,20,40,12,32,5305699.41694914,396001.812618188,0,0,0,0,0,0,0,72.4899009900989,19319.6482398793,39.0746336633663,20.9549894783894,20.7756590434994,-2.25574257425743,-2.24110236532757,-1.78651603506162,2.06798387653753,1.64066465217139,1.60384300788014 +42467,2873.76500881188,456.504441584159,225,68.2877524752475,70.336385049505,18.0103762376238,-1.11742574257426,1462.27722772277,-4278.66237623762,-3473.66534653465,20,40,12,32,5305687.68758039,395986.169085602,0,0,0,0,0,0,0,68.2877524752474,19339.1951871565,36.0207524752475,19.317250562739,19.2364250239974,-1.11742574257426,-1.1027855336444,-0.880585725329022,1.91832232070907,1.52192851151644,1.54074544351966 +42468,2873.75892465347,456.492796336634,225,64.0773069306931,65.9996261386139,18.1434653465346,-3.67326732673267,1501.26732673267,-4408.02178217822,-3617.62277227723,20,40,12,32,5305676.67911325,395971.459257929,0,0,0,0,0,0,0,64.077306930693,19357.5630409519,36.2869306930693,19.4599969235081,19.1077819696962,-3.67326732673267,-3.65862711780282,-2.94361109675698,2.33499145499284,1.85249894198556,1.8672997885412 +42469,2873.75321049505,456.481828811881,225,60.3731188118812,62.1843123762376,18.2309702970297,-3.85772277227723,1519.11386138614,-4322.08910891089,-3540.24356435643,20,40,12,32,5305666.34082921,395957.605983652,0,0,0,0,0,0,0,60.3731188118811,19374.8412662269,36.4619405940594,19.5538514344795,18.9693378233261,-3.85772277227723,-3.84308256334738,-3.1366634572767,3.19203922446358,2.53245007533158,2.45777494217448 +42470,2873.74783524752,456.471507920792,225,56.7262673267326,58.4280553465347,16.9238316831683,-3.76821782178218,1416.76732673267,-4329.23762376237,-3435.45940594059,20,40,12,32,5305656.61583281,395944.569505485,0,0,0,0,0,0,0,56.7262673267326,19391.0975680696,33.8476633663366,18.1518638362724,17.6486293885003,-3.76821782178218,-3.75357761285232,-3.05624553688141,2.7892712103538,2.21290829781947,2.2132060811156 +42471,2873.74279584158,456.46182970297,225,53.0835148514851,54.6760202970297,15.5259900990099,-3.89287128712871,1326.0495049505,-4400.2,-3457.11287128713,20,40,12,32,5305647.49852217,395932.344795645,0,0,0,0,0,0,0,53.0835148514851,19406.3434668045,31.0519801980198,16.6525916516194,16.2504726446294,-3.89287128712871,-3.87823107819886,-3.14767783666891,2.3328260989573,1.85078102573526,1.83906113451546 +42472,2873.73812138614,456.452823465347,225,48.8235247524753,50.2882304950495,14.1304851485149,-4.33920792079208,1222.69306930693,-5296.90396039604,-4052.32178217822,20,40,12,32,5305639.04215346,395920.96934275,0,0,0,0,0,0,0,48.8235247524752,19420.5162924095,28.2609702970297,15.1558256521429,14.8190695010182,-4.33920792079208,-4.32456771186223,-3.50078821186387,2.01820493795756,1.60117181768783,1.60139711811454 +42473,2873.73392455446,456.444594356436,225,43.7948514851485,45.108697029703,12.1652376237624,-4.68623762376238,1411.08415841584,-6312.75247524752,-4836.08217821782,20,40,12,32,5305631.4530687,395910.577905321,0,0,0,0,0,0,0,43.7948514851484,19433.378636634,24.3304752475247,13.0479752467671,12.8586436553405,-4.68623762376238,-4.67159741483252,-3.75308180360488,1.56524949125304,1.24181312110994,1.25865371292609 +42474,2873.73024247525,456.437122079208,225,39.321603960396,40.5012520792079,9.95234653465346,-4.98861386138614,1359.80693069307,-6011.89702970297,-4694.82376237624,20,40,12,32,5305624.80049389,395901.146447781,0,0,0,0,0,0,0,39.321603960396,19444.8988450223,19.9046930693069,10.674511690405,10.7193269965479,-4.98861386138614,-4.97397365245629,-3.9167886259932,1.45571551204654,1.15491276858076,1.09563593013373 +42475,2873.72710217822,456.430256633664,225,34.9884653465346,36.0381193069307,9.25088118811881,-4.87623762376238,1274.23267326733,-7298.29702970297,-5509.39504950495,20,40,12,32,5305619.13786347,395892.489021522,0,0,0,0,0,0,0,34.9884653465346,19455.2240666395,18.5017623762376,9.92214640489913,9.87432427408165,-4.87623762376238,-4.86159741483252,-3.87177514156725,1.04672131949724,0.830431363153883,0.871649714013059 +42476,2873.72457415842,456.424019207921,225,30.406801980198,31.319006039604,7.47674257425742,-4.56029702970297,1490.69306930693,-6675.88613861386,-5108.39504950495,20,40,12,32,5305614.5952788,395884.634383725,0,0,0,0,0,0,0,30.406801980198,19464.2915756878,14.9534851485148,8.01927221255453,8.1029955659178,-4.56029702970297,-4.54565682077312,-3.57162079915513,1.0166275048659,0.806556003933337,0.810793156035196 +42477,2873.72258247525,456.41831970297,225,27.7232673267327,28.5549653465347,7.46981188118812,-5.29762376237624,1738.36138613861,121.182178217822,484.627722772277,20,40,12,32,5305611.03409374,395877.467763524,0,0,0,0,0,0,0,27.7232673267326,19472.2765208198,14.9396237623762,8.01183861245496,7.94254858337363,-5.29762376237624,-5.28298355344638,-4.21721635936901,0.964748658802435,0.76539717774641,0.777281644515017 +42478,2873.72095584158,456.412555841584,225,28.4366732673267,29.2897734653465,7.21535643564357,-5.32930693069307,1935.74752475248,3168.71089108911,3567.86633663366,20,40,12,32,5305608.15056073,395870.233163902,0,0,0,0,0,0,0,28.4366732673267,19480.0333290707,14.4307128712871,7.73891929451371,7.76691190451926,-5.32930693069307,-5.31466672176322,-4.19825242655147,0.872434464041042,0.692158388045463,0.695205540503392 +42479,2873.71962841584,456.406384257426,223.217821782178,29.3375049504951,30.2176300990099,7.25768316831683,-5.00990099009901,1968.78217821782,740.444554455445,913.569306930693,20,40,12,32,5305605.83043716,395862.500643324,0,0,0,0,0,0,0,29.337504950495,19488.0910020904,14.5153663366337,7.78431735226464,7.85486260516297,-5.00990099009901,-4.99526078116916,-3.92603594442078,0.902365694738734,0.715904758971677,0.716088122944575 +42480,2873.7186729703,456.400084752475,180.445544554455,28.4923861386139,29.3471577227723,7.06085148514851,-5.44336633663366,1917.16336633663,-754.529702970297,-509.939603960396,20,40,12,32,5305604.20223413,395854.621195035,0,0,0,0,0,0,0,28.4923861386138,19496.144112679,14.121702970297,7.57320310943694,7.63852963508444,-5.44336633663366,-5.42872612770381,-4.26311741542005,0.978845257076176,0.776580916055972,0.786950062885596 +42481,2873.71811861386,456.393922574257,110.940594059406,27.4406930693069,28.2639138613861,6.24195049504951,-5.48386138613861,1848.06435643564,-758.706930693069,-495.459405940594,20,40,12,32,5305603.31390871,395846.926222894,0,0,0,0,0,0,0,27.4406930693069,19503.911557591,12.483900990099,6.69488077995823,6.88157389297071,-5.48386138613861,-5.46922117720876,-4.22855582104412,1.19299033295267,0.946475981686457,0.916218453580486 +42482,2873.71793019802,456.387939009901,57.4752475247525,26.4883762376238,27.2830275247525,6.04579207920792,-5.23366336633663,1784.57920792079,-750.935643564356,-477.383168316832,20,40,12,32,5305603.09942484,395839.465987686,0,0,0,0,0,0,0,26.4883762376237,19511.3927545932,12.0915841584158,6.48448865828306,6.66042238834114,-5.23366336633663,-5.21902315740678,-4.03702256457265,1.14833680269219,0.911049463363838,1.04369212521623 +42483,2873.71805425743,456.382123762376,45,25.5667326732673,26.3337346534653,5.15132673267327,-5.28376237623762,1718.29702970297,-740.378217821782,-456.137623762377,20,40,11.3762376237624,32,5305603.45997709,395832.225877158,0,0,0,0,0,0,0,25.5667326732673,19518.6211717549,10.3026534653465,5.52511884886164,5.84668027950161,-5.28376237623762,-5.26912216730777,-3.94804951384374,1.73785153511526,1.37874942678918,1.28550993975334 +42484,2873.71844356435,456.376588514851,45,23.7755940594059,24.4888618811881,5.37254455445544,-5.5,1589.54455445545,-1186.88415841584,-888.208910891089,20,40,11,32,5305604.30557132,395825.343441931,0,0,0,0,0,0,0,23.7755940594059,19525.5274650993,10.7450891089109,5.76238874461111,5.93204761415532,-5.5,-5.48535979107015,-4.23397255647704,1.12887169943263,0.89560654466841,0.893427451464797 +42485,2873.71896475248,456.371628316832,45,21.278,21.91634,5.40088118811881,-5.5,1425.70297029703,-1257.23465346535,-812.763366336634,20,40,11,32,5305605.38253118,395819.181777502,0,0,0,0,0,0,0,21.278,19531.7693368264,10.8017623762376,5.79278154958963,5.81313283178599,-5.5,-5.48535979107015,-4.33098949717622,0.824711233803238,0.654296479242916,0.635122598355181 +42486,2873.71957574257,456.367184950495,45,19.6953762376238,20.2862375247525,4.71774257425743,-5.5,1331.12376237624,-530.911881188119,-301.067326732673,20,40,11,32,5305606.61421855,395813.666953236,0,0,0,0,0,0,0,19.6953762376237,19537.4151115239,9.43548514851485,5.06007282663273,5.14133922059884,-5.5,-5.48535979107015,-4.28086430079583,0.793652944557497,0.629655940261675,0.677193644200585 +42487,2873.72029217822,456.363018910891,45,18.9215940594059,19.4892418811881,3.90612871287129,-5.5,1280.71287128713,-474.385148514852,-233.60099009901,20,40,11.6732673267327,32,5305608.03499533,395808.501132862,0,0,0,0,0,0,0,18.9215940594059,19542.7680988452,7.81225742574257,4.18956639668728,4.40657967986328,-5.5,-5.48535979107015,-4.15438057986264,1.17451862158106,0.931821184685205,0.915014412043058 +42488,2873.72106841584,456.359003366337,45,18.8482178217822,19.4136643564356,3.55010891089109,-5.5,1294.78217821782,2659.76336633663,2875.69603960396,20,40,12,32,5305609.56316568,395803.524791666,0,0,0,0,0,0,0,18.8482178217822,19547.9867009904,7.10021782178218,3.80771297900124,4.09952200392615,-5.5,-5.48535979107015,-4.07137032958441,1.49304534387628,1.18452892577106,1.16573842557582 +42489,2873.72202435644,456.354906435644,45,20.6402772277228,21.2594855445544,3.82385148514851,-5.5,1168.94554455446,4583.47128712871,5403.9099009901,20,40,12,32,5305611.42604236,395798.453077753,0,0,0,0,0,0,0,20.6402772277227,19553.430816997,7.64770297029703,4.10131894407671,4.43503225894333,-5.5,-5.48535979107015,-4.05311371514866,1.70193391627527,1.3502536690178,1.32711637853801 +42490,2873.72329049505,456.350481485149,45,22.5012178217822,23.1762543564356,4.43865346534653,-5.5,1089.82178217822,3646.06336633663,4298.53168316832,20,40,12,32,5305613.87089477,395792.983117013,0,0,0,0,0,0,0,22.5012178217822,19559.453037074,8.87730693069307,4.76073237005188,5.06460848247394,-5.5,-5.48535979107015,-4.11315524124351,1.58520348550927,1.25764390848563,1.29147980303324 +42491,2873.72488207921,456.345875346535,45,24.0343069306931,24.7553361386139,4.52592079207921,-5.5,870.836633663366,3362.4801980198,4020.26237623763,20,40,11.9405940594059,32,5305616.92266473,395787.298334593,0,0,0,0,0,0,0,24.034306930693,19565.9149487076,9.05184158415842,4.85433201473414,5.22665504326953,-5.5,-5.48535979107015,-4.07034819474534,1.90518039499689,1.51150217636844,1.48834138854821 +42492,2873.72683693069,456.341188118812,45,25.2538712871287,26.0114874257426,4.89145544554455,-5.49069306930693,897.420792079208,2768.95544554455,3206.11485148515,20,40,11.4059405940594,32,5305620.64915996,395781.524694299,0,0,0,0,0,0,0,25.2538712871287,19572.7741645767,9.78291089108911,5.24639070341402,5.60746707590138,-5.49069306930693,-5.47605286037708,-4.09044503676671,1.86536212162662,1.47991177841114,1.52718385386062 +42493,2873.72909871287,456.336533465347,45,26.0053069306931,26.7854661386139,4.71633663366336,-5.20049504950495,915.623762376238,1412.96237623762,1597.30099009901,20,40,11.5643564356436,32,5305624.94346894,395775.801907713,0,0,0,0,0,0,0,26.0053069306931,19579.9144509903,9.43267326732673,5.05856486775539,5.50180725718613,-5.20049504950495,-5.1858548405751,-3.81332248452706,2.23954065572794,1.77677168213979,1.76252739741729 +42494,2873.73155059406,456.332066138614,45,25.6587920792079,26.4285558415841,4.07465346534653,-2.3139603960396,902.836633663366,290.433663366337,382.426732673267,20,40,11,32,5305629.58569756,395770.31884768,0,0,0,0,0,0,0,25.6587920792079,19587.1017545382,8.14930693069307,4.37031969282261,4.93648033298259,-2.3139603960396,-2.29932018710975,-1.65417969086989,2.80393873474521,2.22454498854848,2.22985293934961 +42495,2873.73388673267,456.327578118812,45,25.221396039604,25.9780379207921,3.779,-4.60178217821782,921.683168316832,-424.783168316832,-499.324752475248,20,40,11,32,5305634.01400234,395764.80614621,0,0,0,0,0,0,0,25.2213960396039,19594.1802710398,7.558,4.0532129320038,4.65998530640393,-4.60178217821782,-4.58714196928797,-3.20386342075169,2.99293201735865,2.37448551845284,2.33684202900441 +42496,2873.73566831683,456.322785445545,45,24.0253366336634,24.7460967326733,4.31074257425742,-5.5,1064.86633663366,-465.271287128713,-841.764356435644,20,40,11,32,5305637.4219429,395758.895383532,0,0,0,0,0,0,0,24.0253366336633,19601.024217217,8.62148514851485,4.62353997050001,5.04310285642419,-5.5,-5.48535979107015,-4.02439604724706,2.12160844261974,1.68320847035937,1.69719856833649 +42497,2873.73663861386,456.317828910891,45,22.3919900990099,23.0637498019802,4.05107095709901,-5.5,1051.56930693069,-1176.36534653465,-1661.20792079208,20,40,11,32,5305639.33079547,395752.753355395,0,0,0,0,0,0,0,22.3919900990099,19607.4874265404,8.10214191419802,4.34502598353498,4.7286693778506,-5.5,-5.48535979107015,-4.01670182118907,1.94628692781651,1.54411463342656,1.52950425048289 +42498,2873.73656841584,456.312992475247,153.712871287129,21.3143168316832,21.9537463366337,4.21146534653465,-5.48732673267327,974.009900990099,173.822772277228,-35.0811881188119,20,40,11,32,5305639.30959903,395746.726124723,0,0,0,0,0,0,0,21.3143168316831,19613.5393036581,8.4229306930693,4.51705895878807,4.80338767330434,-5.48732673267327,-5.47268652374341,-4.09740401908015,1.50977835282303,1.19780429827995,1.20093841890956 +42499,2873.73549613861,456.308686336634,225,20.4747722772277,21.0890154455446,4.944,-5.5,916.876237623762,991.567326732673,820.178217821782,20,40,11.3861386138614,32,5305637.42028095,395741.325966321,0,0,0,0,0,0,0,20.4747722772277,19619.3278221949,9.888,5.30274801159745,5.37846813720984,-5.5,-5.48535979107015,-4.27414406949526,0.896190429954806,0.711005524135402,0.729039632946501 +42500,2873.73353178218,456.305278910891,225,20.281900990099,20.890358019802,6.05870297029703,-5.5,893.079207920792,2698.15247524752,2405.43168316832,20,40,11.6138613861386,32,5305633.85830561,395737.01550314,0,0,0,0,0,0,0,20.281900990099,19624.9691049507,12.1174059405941,6.49833639332568,6.31575266524057,-5.5,-5.48535979107015,-4.45512746806819,1.15628941011891,0.917358778463265,0.981140459256079 +42501,2873.73090148515,456.303059504951,225,20.6541485148515,21.273772970297,7.22607920792079,-5.5,901.767326732673,3339.79801980198,2951.19207920792,20,40,12,32,5305629.03604543,395734.162699965,0,0,0,0,0,0,0,20.6541485148515,19630.6477266779,14.4521584158416,7.75042013581061,7.33026483209353,-5.5,-5.48535979107015,-4.56609602590249,2.24262096177274,1.77921548709539,1.7485491920151 +42502,2873.72781910891,456.302332673267,225,21.3466435643564,21.9870428712871,7.89287128712871,-5.5,936.480198019802,3438.32772277228,3025.86633663366,20,40,12,32,5305623.34278832,395733.154108883,0,0,0,0,0,0,0,21.3466435643564,19636.4826662543,15.7857425742574,8.46559618196124,7.9372100556721,-5.5,-5.48535979107015,-4.610731831501,2.64443484191938,2.09800028875071,2.07519226954151 +42503,2873.72465237624,456.303090891089,225,21.9729207920792,22.6321084158416,8.34385148514851,-5.49861386138614,993.990099009901,3742.17821782178,3295.56732673267,20,40,11.5841584158416,32,5305617.45985115,395733.992667293,0,0,0,0,0,0,0,21.9729207920792,19642.4973238176,16.687702970297,8.94930054044007,8.35675757270134,-5.49861386138614,-5.48397365245628,-4.63047878129298,2.93634494342687,2.32959135219603,2.30209693678651 +42504,2873.7216190099,456.305062178218,225,22.8283564356436,23.5132071287129,8.08090099009901,-4.92524752475248,981.613861386139,3342.09504950495,2943.88217821782,20,40,12,32,5305611.79665299,395736.346852071,0,0,0,0,0,0,0,22.8283564356435,19648.7121345711,16.161801980198,8.6672697526625,8.18252291658846,-4.92524752475248,-4.91060731582262,-4.09359235279614,2.48165407302067,1.96885583234782,1.98440675233399 +42505,2873.7188239604,456.308240792079,225,24.1077821782178,24.8310156435643,7.99571287128713,-4.30306930693069,794.346534653465,3373.24554455445,2972.17326732673,20,40,12,32,5305606.54772921,395740.213025636,0,0,0,0,0,0,0,24.1077821782178,19655.230027888,15.9914257425743,8.5759001880101,8.1834971344776,-4.30306930693069,-4.28842909800084,-3.54298763533692,2.06246843282344,1.63628889583914,1.58418919381322 +42506,2873.71659534653,456.312582079208,225,25.0123564356436,25.7627271287129,7.50055445544554,-2.95237623762376,826.579207920792,3113.61683168317,2767.78316831683,20,40,12,32,5305602.32187604,395745.546544113,0,0,0,0,0,0,0,25.0123564356435,19662.0568187846,15.0011089108911,8.04481193861089,7.81454847058205,-2.95237623762376,-2.93773602869391,-2.34607441585765,1.62939067143648,1.29270044584659,1.27971252077671 +42507,2873.71513089109,456.317732277228,208.960396039604,25.6304356435644,26.3993487128713,7.671,-1.01069306930693,856.549504950495,2866.04554455446,2538.43564356436,20,40,11.980198019802,32,5305599.49330817,395751.913328789,0,0,0,0,0,0,0,25.6304356435643,19669.0919774204,15.342,8.22762540391668,7.99562878635579,-1.01069306930693,-0.996052860377074,-0.77724418350539,1.45198136876862,1.15195023248377,1.22281862072273 +42508,2873.71443970297,456.323358613861,119.851485148515,25.9320396039604,26.7100007920792,7.54558415841584,-0.0352475247524753,878.193069306931,2506.30891089109,2229.2504950495,20,40,12,32,5305598.08638947,395758.899134623,0,0,0,0,0,0,0,25.9320396039603,19676.2805118264,15.0911683168317,8.09310910040065,7.90650326420212,-0.0352475247524753,-0.0206073158226179,0.00133551030733928,1.3246768326576,1.05095135390057,1.06045169965397 +42509,2873.71425861386,456.329117227723,50.3465346534653,26.0043366336634,26.7844667326733,6.82444554455446,2.49782178217822,893.712871287129,2037.39108910891,1830.46435643564,20,40,12,32,5305597.62138097,395766.066791752,0,0,0,0,0,0,0,26.0043366336633,19683.4847706823,13.6488910891089,7.3196430100407,7.29674396889039,2.49782178217822,2.51246199110807,1.99779786719607,1.17975690942822,0.935977055437506,0.946397654007147 +42510,2873.71440821782,456.334908316832,45,25.9271683168317,26.7049833663366,7.48044554455446,2.5740594059406,894.19801980198,932.666336633663,803.425742574258,20,40,11.970297029703,32,5305597.76820746,395773.285968066,0,0,0,0,0,0,0,25.9271683168317,19690.7234014578,14.9608910891089,8.02324387889343,7.84981072069495,2.5740594059406,2.58869961487045,2.14441729996433,1.44782073957929,1.14864933767547,1.10306092907272 +42511,2873.71475316832,456.340560198019,45,25.3744752475248,26.1357095049505,7.66959405940594,2.70851485148515,885.737623762376,390.522772277228,261.151485148515,20,40,12,32,5305598.28002323,395780.338261831,0,0,0,0,0,0,0,25.3744752475247,19697.8286070409,15.3391881188119,8.22611744503934,7.97944681592439,2.70851485148515,2.723155060415,2.23520205766106,1.4556594094085,1.15486825874866,1.19537830021863 +42512,2873.71510990099,456.346122970297,45,24.7669108910891,25.5099182178218,7.49249504950495,2.8080198019802,917.059405940594,-258.944554455446,-458.538613861386,20,40,12,32,5305598.81567671,395787.279941997,0,0,0,0,0,0,0,24.7669108910891,19704.8139308583,14.9849900990099,8.03616772363797,7.79395291705359,2.8080198019802,2.82266001091005,2.32748084188607,1.4609261632362,1.15904671339467,1.15965563801115 +42513,2873.71533514852,456.351505841584,45,23.7318613861386,24.4438172277228,6.97739603960396,4.53920792079208,1083.40099009901,-586.29603960396,-502.117821782178,20,40,12,32,5305599.1118296,395793.99311377,0,0,0,0,0,0,0,23.7318613861386,19711.5494791257,13.9547920792079,7.48369194480943,7.29544603537071,4.53920792079208,4.55384812972193,3.70119597613822,1.18609706371371,0.94100710772347,0.929436225155698 +42514,2873.71531247525,456.356596237624,69.950495049505,21.5393465346535,22.1855269306931,6.47948514851486,3.66831683168317,1061.45544554455,-3916.06336633664,-3157.36633663366,20,40,12,32,5305598.95533445,395800.333646081,0,0,0,0,0,0,0,21.5393465346534,19717.9011478825,12.9589702970297,6.94965149422782,6.74695950538054,3.66831683168317,3.68295704061302,3.00010441792428,1.11057559916105,0.88109107125068,0.934977698262154 +42515,2873.71510524752,456.36097990099,96.6831683168317,18.4665841584158,19.0205816831683,5.79552475247525,4.43257425742574,1019.0495049505,-2747.23762376238,-2088.46237623762,20,40,12,32,5305598.47288314,395805.787604024,0,0,0,0,0,0,0,18.4665841584158,19723.4007201048,11.5910495049505,6.21606135868769,5.98875361117097,4.43257425742574,4.4472144663556,3.64697314184389,1.20271426490641,0.954190602490622,0.892401297761318 +42516,2873.71476613861,456.364866732673,107.376237623762,17.1874752475247,17.7030995049505,5.17852475247525,4.72544554455445,1164.24257425743,-569.366336633663,-286.315841584158,20,40,11.7722772277228,32,5305597.75732154,395810.618231159,0,0,0,0,0,0,0,17.1874752475247,19728.3336177395,10.3570495049505,5.55429041953809,5.3903316591324,4.72544554455445,4.74008575348431,3.86199846089651,0.914661719646617,0.725659986590937,0.706127700694155 +42517,2873.71440712871,456.368550990099,114.504950495049,16.3644158415841,16.8553483168317,4.56426732673267,2.00148514851485,1116.60396039604,-17.4663366336634,176.542574257426,20,40,12,32,5305597.00945621,395815.195839725,0,0,0,0,0,0,0,16.3644158415841,19732.9835729376,9.12853465346535,4.89546106214217,4.82068698678169,2.00148514851485,2.01612535744471,1.64793902985439,0.608238119607879,0.482554431040666,0.50226235537612 +42518,2873.71398554455,456.372201188119,125.19801980198,16.8888514851485,17.395517029703,4.55233663366337,2.00554455445545,1147.26732673267,3607.29900990099,4086.36336633663,20,40,12,32,5305596.14645154,395819.728927951,0,0,0,0,0,0,0,16.8888514851485,19737.55229758,9.10467326732674,4.8826646505422,4.84092277931195,2.00554455445545,2.0201847633853,1.61535436851964,0.498891869785345,0.395803016309277,0.413967085508536 +42519,2873.71353821782,456.37614970297,125.19801980198,18.808495049505,19.3727499009901,5.29681188118812,2.81514851485149,1007.65346534653,5139.06732673267,5688.84752475248,20,40,12,32,5305595.22905824,395824.632780967,0,0,0,0,0,0,0,18.8084950495049,19742.5009817934,10.5936237623762,5.68116073438027,5.58468839559944,2.81514851485149,2.82978872378134,2.28707025838858,0.677074787635703,0.537166988366596,0.526423390939754 +42520,2873.71312386139,456.380577128713,109.158415841584,21.3108811881188,21.9502076237624,4.84359405940594,-0.845841584158416,1073.57425742574,6222.80693069307,6002.89801980198,20,40,12,32,5305594.36197284,395830.134334823,0,0,0,0,0,0,0,21.3108811881188,19748.0656708473,9.68718811881188,5.19505638501215,5.34218021507743,-0.845841584158416,-0.831201375228559,-0.625133890238322,1.06939225242442,0.848417672770404,0.78578143998847 +42521,2873.71285792079,456.385607128713,75.2970297029703,24.4363861386139,25.1694777227723,5.63313861386139,-0.953069306930693,1228.67326732673,7628.27128712871,6431.09207920792,20,40,12,32,5305593.75626123,395836.391501293,0,0,0,0,0,0,0,24.4363861386138,19754.4094366889,11.2662772277228,6.04189210835483,6.19284524495538,-0.953069306930693,-0.938429098000836,-0.757275992711952,1.08545241029557,0.861159229233409,0.941158130297429 +42522,2873.71278762376,456.391405049505,48.5643564356436,27.891603960396,28.7283520792079,5.71240594059406,2.07287128712871,1400.64851485149,7866.89801980198,6458.08217821782,20,40,12,32,5305593.49569035,395843.611836869,0,0,0,0,0,0,0,27.891603960396,19761.674767437,11.4248118811881,6.12691125463645,6.45850863253355,2.07287128712871,2.08751149605857,1.54840204582391,1.88931545809862,1.49891550126268,1.66019056289628 +42523,2873.71304524752,456.397957722772,45,31.252801980198,32.190386039604,5.54812321235644,-2.50188118811881,1571.65841584158,7716.93762376238,6354.97128712871,20,40,11.960396039604,32,5305593.8255825,395851.783357673,0,0,0,0,0,0,0,31.252801980198,19769.900932316,11.0962464247129,5.95070779377442,6.51084054178554,-2.50188118811881,-2.48724097918896,-1.73840049615701,2.86768856422282,2.27512182959281,2.18721447485753 +42524,2873.71383643564,456.405181980198,45,34.5132376237624,35.5486347524753,6.84886798680198,-3.29247524752475,1722.63861386139,7221.44851485149,5958.99504950495,20,40,11.5841584158416,32,5305595.12873345,395860.809328708,0,0,0,0,0,0,0,34.5132376237623,19779.0447036031,13.697735973604,7.34583760087129,7.80462214775894,-3.29247524752475,-3.2778350385949,-2.41740362145591,2.4286834481552,1.92683082779811,1.9036623553792 +42525,2873.71526079208,456.41287960396,45,37.2397821782178,38.3569756435643,7.1190506050693,-0.925346534653466,1865.19801980198,6720.44356435644,5613.57128712871,20,40,12,32,5305597.59410303,395870.446146551,0,0,0,0,0,0,0,37.2397821782178,19789.0266330586,14.2381012101386,7.63562529136183,8.19068662210749,-0.925346534653466,-0.910706325723608,-0.729800517595448,2.82780334862073,2.24347832205631,2.21336443161413 +42526,2873.71733891089,456.420837029703,45,39.7511188118812,40.9436523762376,7.45764796481188,0.959306930693069,1822.59900990099,5850.94851485148,4891.99108910891,20,40,11.9009900990099,32,5305601.26464127,395880.428448139,0,0,0,0,0,0,0,39.7511188118811,19799.7398210399,14.9152959296238,7.99879205432847,8.62272854419835,0.959306930693069,0.973947139622926,0.743251601210779,3.16357321845949,2.50986616141944,2.496533982798 +42527,2873.72007376238,456.428912871287,45,42.0271683168317,43.2879833663367,8.14148569856436,-0.217821782178218,1474.29702970297,5843.83366336634,4897.51188118812,20,40,11.4257425742574,32,5305606.1490292,395890.580196327,0,0,0,0,0,0,0,42.0271683168316,19811.0963491752,16.2829713971287,8.73225062692379,9.33518937277029,-0.217821782178218,-0.203181573248361,-0.10301067746136,3.08201102493321,2.445157626024,2.46947280684514 +42528,2873.7233509901,456.437160495049,45,44.278099009901,45.606441980198,8.63835093509901,-1.67089108910891,1565.84158415842,5889.86435643565,4919.7504950495,20,40,12,32,5305612.03424124,395900.964043739,0,0,0,0,0,0,0,44.2780990099009,19823.0761542082,17.276701870198,9.26516954785139,9.88642370361816,-1.67089108910891,-1.65625088017906,-1.1993167410382,3.19886897580486,2.53786855645993,2.63348915441648 +42529,2873.72701643564,456.445670693069,45,46.6130594059406,48.0114511881188,8.74310451046534,-0.128811881188119,1646.86633663366,5509.9801980198,4408.9297029703,20,40,12,32,5305618.63268451,395911.68793668,0,0,0,0,0,0,0,46.6130594059405,19835.6964647968,17.4862090209307,9.37752428358795,10.1100620632676,-0.128811881188119,-0.114171672258261,-0.100277498090168,3.69498471128627,2.93146908682441,2.69341526882518 +42530,2873.73098950495,456.454521485148,45,48.4118910891089,49.8642478217822,11.8828910891089,0.95019801980198,1349.06435643564,3541.92871287129,2967.4900990099,20,40,12,32,5305625.79332026,395922.846369417,0,0,0,0,0,0,0,48.4118910891089,19848.932866557,23.7657821782178,12.7451409981394,12.8853828629784,0.95019801980198,0.964838228731838,0.743048945385464,1.37762171451311,1.09295593486431,1.20847296891489 +42531,2873.7351429703,456.463538316832,45,49.2506930693069,50.7282138613861,11.921099009901,0.45990099009901,1134.67821782178,2411.67326732673,2146.67326732673,20,40,12,32,5305633.28440269,395934.217640086,0,0,0,0,0,0,0,49.2506930693069,19862.5155007154,23.842198019802,12.7861213735455,12.9650677251018,0.45990099009901,0.474541199028868,0.366389195153939,1.47421659856492,1.16959087077578,1.2403508083242 +42532,2873.73941,456.472618316832,45,49.8267524752475,51.3215550495049,11.0938118811881,-0.84990099009901,1078.09405940594,2000.41188118812,1811.09306930693,20,40,12,32,5305640.98444843,395945.671364332,0,0,0,0,0,0,0,49.8267524752475,19876.2830685922,22.1876237623762,11.8988043879463,12.2941800599678,-0.84990099009901,-0.835260781169152,-0.647598893872871,2.25275972810627,1.78725922270125,1.65530948931125 +42533,2873.74374782178,456.481707722772,45,49.9348811881188,51.4329276237624,11.6019504950495,-0.780693069306931,1076.40099009901,781.039603960396,718.50099009901,20,40,12,32,5305648.81543646,395957.139139133,0,0,0,0,0,0,0,49.9348811881187,19890.1550043457,23.203900990099,12.4438147083891,12.7327948628896,-0.780693069306931,-0.766052860377072,-0.586474706973598,1.78177099767259,1.41359356197694,1.47954896935692 +42534,2873.7480849505,456.49070970297,45,49.4857326732673,50.9703046534653,11.4486930693069,-1.97277227722772,1069.10396039604,513.969306930693,453.740594059406,20,40,12,32,5305656.64712631,395968.497951238,0,0,0,0,0,0,0,49.4857326732673,19903.96394714,22.8973861386139,12.2794365713303,12.5761251315986,-1.97277227722772,-1.95813206829787,-1.51554560680587,1.85878271047579,1.4746919082614,1.42952548391966 +42535,2873.75246,456.499602772277,45,49.0704455445544,50.5425589108911,11.6757227722772,-0.903465346534653,1058.75247524752,529.586138613862,449.015841584158,20,40,12,32,5305664.55152589,395979.722325751,0,0,0,0,0,0,0,49.0704455445544,19917.6514408144,23.3514455445545,12.5229400717346,12.746622566149,-0.903465346534653,-0.888825137604795,-0.688154969815064,1.51717663162615,1.20367382881977,1.2218577489503 +42536,2873.75682405941,456.508375841584,45,48.2744851485149,49.7227197029703,12.0073267326733,-0.032970297029703,1036.29702970297,-440.29603960396,-469.274257425742,20,40,12,32,5305672.43828359,395990.796816219,0,0,0,0,0,0,0,48.2744851485148,19931.1971452698,24.0146534653465,12.8786059782128,12.9827432937425,-0.032970297029703,-0.0183300880998454,-0.0105361383107579,1.26189049764166,1.00113891499872,1.13191754838916 +42537,2873.76097920792,456.516684752475,45,44.6501485148515,45.989652970297,10.5770396039604,-2.26039603960396,962.430693069307,-2983.04554455446,-2768.66336633663,20,40,12,32,5305679.94850736,396001.28609231,0,0,0,0,0,0,0,44.6501485148514,19944.1653199673,21.1540792079208,11.3445339256651,11.5574533896192,-2.26039603960396,-2.24575583067411,-1.76140269370915,1.66428898481349,1.32038752301759,1.19539083352235 +42538,2873.76481207921,456.524257821782,45,39.9405643564357,41.1387812871287,8.55806160616831,0.0834653465346537,970.460396039604,-3917.88712871287,-3645.18415841584,20,40,12,32,5305686.87829924,396010.8479342,0,0,0,0,0,0,0,39.9405643564356,19955.9196529431,17.1161232123366,9.17905424054157,9.57095889002252,0.0834653465346537,0.0981055554645107,0.0420492137500073,2.19077588257305,1.73808345033387,1.69472710612369 +42539,2873.76824841584,456.530991782178,45,35.961603960396,37.0404520792079,5.92887293730693,1.67861386138614,1130.39108910891,-3724.23267326733,-3535.18811881188,20,40,12,32,5305693.09242233,396019.351228089,0,0,0,0,0,0,0,35.961603960396,19966.4104738727,11.8577458746139,6.3590855945223,7.10436376839179,1.67861386138614,1.69325407031599,1.17772742927562,3.70146278888342,2.93660856254676,2.95737554831545 +42540,2873.7714049505,456.537085544554,45,33.2637821782178,34.2616956435643,5.6310099009901,0.744653465346535,1152.15841584158,-3669.75643564356,-3485.39702970297,20,40,12,32,5305698.80263675,396027.047662315,0,0,0,0,0,0,0,33.2637821782178,19976.0131095163,11.2620198019802,6.03960893118139,6.69678279874091,0.744653465346535,0.759293674276392,0.524668205252329,3.267995053007,2.59271072070287,2.7098025200945 +42541,2873.77423455446,456.542483168317,45,28.361594059406,29.2124418811881,4.74094059405941,1.51316831683168,1074.28217821782,-4745.70396039604,-4122.52871287129,20,40,12,32,5305703.92289614,396033.865982803,0,0,0,0,0,0,0,28.3615940594059,19984.6158412269,9.48188118811881,5.08495414810885,5.65896109591799,1.51316831683168,1.52780852576154,1.14467309432921,2.85737445195217,2.26693898077422,2.13088719965528 +42542,2873.77665108911,456.547288514851,45,26.3512376237624,27.1417747524752,5.21358415841584,1.48980198019802,1304.44059405941,-348.088118811881,-151.815841584159,20,40,12,32,5305708.29130861,396039.932700853,0,0,0,0,0,0,0,26.3512376237623,19992.1136256329,10.4271683168317,5.59189381661318,5.94605621319751,1.48980198019802,1.50444218912788,1.16272624964018,1.83172189972744,1.45322282614832,1.39714288948633 +42543,2873.77894554455,456.551932871287,45,24.2749405940594,25.0031888118812,5.4229900990099,1.23841584158416,1197.79207920792,-1721.91188118812,-1603.10297029703,20,40,12,32,5305712.4372073,396045.794789195,0,0,0,0,0,0,0,24.2749405940594,19999.2334087737,10.8459801980198,5.81649473390725,6.00582684665708,1.23841584158416,1.25305605051402,0.961361135841937,1.0370767977906,0.822779743607564,0.915039145257671 +42544,2873.78095851485,456.555676633663,45,19.1647722772277,19.7397154455445,3.9210198019802,-0.777623762376238,1167.84653465347,-2165.55742574257,-2117.31782178218,20,40,11.8514851485149,32,5305716.0819125,396050.525598281,0,0,0,0,0,0,0,19.1647722772277,20005.2541391092,7.8420396039604,4.20553801747264,4.43469180732536,-0.777623762376238,-0.76298355344638,-0.577875602447753,1.18332916657014,0.938811156847925,0.948222676390692 +42545,2873.78301455446,456.558215940594,45,16.5856633663366,17.0832332673267,2.29825742574257,-4.75673267326733,1051.54455445545,-518.939603960396,-683.536633663366,20,40,11.5247524752475,32,5305719.83342563,396053.757436924,0,0,0,0,0,0,0,16.5856633663366,20010.1512183172,4.59651485148515,2.46502427073129,2.90538077296827,-4.75673267326733,-4.74209246433747,-3.04679110576692,2.16991074716924,1.72152979606791,1.68985877358441 +42546,2873.78513108911,456.559700693069,45,14.147198019802,14.571613960396,1.80965346534653,-5.49782178217822,865.509900990099,-378.604950495049,-502.889108910891,20,40,11.5148514851485,32,5305723.72065923,396055.677622385,0,0,0,0,0,0,0,14.147198019802,20014.4288724151,3.61930693069307,1.94096608314053,2.34986947295233,-5.49782178217822,-5.48318157324836,-3.5774483207936,2.00979086234999,1.59449639019215,1.58909083101854 +42547,2873.78710069307,456.560096039604,45,13.2049108910891,13.6010582178218,2.51238613861386,-5.5,757,101.956435643564,-129.487128712871,20,40,12,32,5305727.36017046,396056.235821956,0,0,0,0,0,0,0,13.2049108910891,20018.1905233501,5.02477227722772,2.69469065552178,2.893539967869,-5.5,-5.48535979107015,-4.07453662984924,1.02723066383483,0.81496817209337,0.828458142254872 +42548,2873.78889584158,456.559533960396,45,12.0120891089109,12.3724517821782,2.77120792079208,-5.5,640.712871287129,-652.646534653465,-696.363366336634,20,40,12,32,5305730.69801238,396055.595528584,0,0,0,0,0,0,0,12.0120891089109,20021.7425479376,5.54241584158416,2.97229314152575,3.04539985815022,-5.5,-5.48535979107015,-4.25145863939326,0.555662942421055,0.440843160575398,0.458865240170476 +42549,2873.79025227723,456.558399405941,45,9.33102970297029,9.61096059405941,2.5580495049505,-5.5,537.871287128713,730.039603960396,585.960396039604,20,40,11.7227722772277,32,5305733.23605268,396054.227462685,0,0,0,0,0,0,0,9.33102970297029,20024.6705178221,5.11609900990099,2.74366746074921,2.7105358977041,-5.5,-5.48535979107015,-4.39134107409553,0.399583794560012,0.317015531287788,0.338251846300667 +42550,2873.79121693069,456.557054752475,45,7.55084158415841,7.77736683168317,2.97323762376238,-5.5,540.816831683168,-342.018811881188,-325.020792079208,20,40,11.6336633663366,32,5305735.0530926,396052.584604718,0,0,0,0,0,0,0,7.5508415841584,20027.0618634217,5.94647524752475,3.18898258442813,2.96187772140698,-5.5,-5.48535979107015,-4.65206402336694,1.13920475010993,0.903804418543386,0.860642557012825 +42551,2873.7917180198,456.55602960396,45,3.84084158415842,3.95606683168317,2.14756435643564,-5.5,569.361386138614,-1420.30495049505,-1621.43465346535,20,40,12,32,5305736.00428375,396051.32428997,0,0,0,0,0,0,0,3.84084158415841,20028.6528129816,4.29512871287129,2.30339656570928,2.04705001108388,-5.5,-5.48535979107015,-4.87222806647238,1.24617253730709,0.988668845856623,0.979558640535225 +42552,2873.79182613862,456.555739603961,46.7821782178218,0.60670297029703,0.624904059405941,1.17372277227723,-5.5,562.826732673267,-179.892079207921,-21.8930693069306,20,40,12,32,5305736.21106394,396050.966642698,0,0,0,0,0,0,0,0.606702970297029,20029.1891896593,2.34744554455445,1.2588907962904,1.03343560108927,-5.5,-5.48535979107015,-5.27548435284714,1.0913310981181,0.865823170486043,0.912394955129781 +42553,2873.79183029703,456.55579851485,45,0.147316831683168,0.151736336633663,1.28834653465347,-5.5,549.178217821782,2540.95247524752,2666.38316831683,20,40,12,32,5305736.2174449,396051.040167082,0,0,0,0,0,0,0,0.147316831683168,20029.2704558034,2.57669306930693,1.38183192250852,1.10471413013496,-5.5,-5.48535979107015,-5.4340135386903,1.34110881008673,1.06398789873979,1.0148706899053 +42554,2873.79186316831,456.555776732674,45,0.490336633663366,0.505046732673267,1.05755445544554,-5.5,550.772277227723,2421.87524752475,1653.42277227723,20,40,12,32,5305736.27882254,396051.014129658,0,0,0,0,0,0,0,0.490336633663366,20029.375101788,2.11510891089109,1.13429303919294,0.927930861435783,-5.5,-5.48535979107015,-5.29649768349176,0.998816144012534,0.792425105481595,0.862990732201092 +42555,2873.79188851485,456.555761089109,48.5643564356436,0.149425742574257,0.153908514851485,0.992782178217822,-4.50108910891089,589.544554455446,1934.51188118812,1320.35247524752,20,40,12,32,5305736.32612402,396050.995488075,0,0,0,0,0,0,0,0.149425742574257,20029.4565592963,1.98556435643564,1.06482073654813,0.853332149987884,-4.50108910891089,-4.48644889998104,-4.40111274309402,1.02351340419259,0.812019030870768,0.756824691471239 +42556,2873.7918691089,456.555747821782,52.1287128712871,0.403316831683168,0.415416336633663,0.322930693069307,0.0765346534653466,566.361386138614,385.072277227723,337.608910891089,20,40,12,32,5305736.29047527,396050.978313405,0,0,0,0,0,0,0,0.403316831683168,20029.5110224426,0.645861386138614,0.346363286924971,0.297852067688238,0.0765346534653466,0.0911748623952037,0.0331613478996756,0.235950572096768,0.187194768629889,0.222118847578353 +42557,2873.79177039604,456.555927128713,77.0792079207921,1.78567326732673,1.83924346534653,0.888950495049505,-5.5,536.163366336634,-1819.46435643564,-1413.31089108911,20,40,12,32,5305736.10360186,396051.1983835,0,0,0,0,0,0,0,1.78567326732673,20029.7867047308,1.77790099009901,0.953454787627898,0.85854994914652,-5.5,-5.48535979107015,-4.78615445435418,0.464509515755563,0.368525282882479,0.343116173369588 +42558,2873.79154168317,456.556460891089,96.6831683168317,3.43245544554456,3.53542910891089,1.30153465346535,-5.5,558.79702970297,-431.403960396039,65.1930693069306,20,40,12,32,5305735.66797057,396051.855663372,0,0,0,0,0,0,0,3.43245544554455,20030.5470245603,2.60306930693069,1.39597700155513,1.30383294041869,-5.5,-5.48535979107015,-4.62012290339988,0.458351259383224,0.363639541913346,0.356473532090687 +42559,2873.79124415842,456.557083564356,98.4653465346535,3.44835643564357,3.55180712871287,1.09016831683168,-5.5,565.004950495049,-318.079207920792,183.738613861386,20,40,12,32,5305735.10288118,396052.621404271,0,0,0,0,0,0,0,3.44835643564356,20031.4944617715,2.18033663366337,1.16927343737576,1.12491643606588,-5.5,-5.48535979107015,-4.47902640726952,0.33246032098106,0.263762161335826,0.280118464230279 +42560,2873.79096891089,456.557692871287,87.7722772277228,3.44123762376238,3.54447475247525,1.45760396039604,-5.5,562.435643564356,121.286138613861,664.623762376238,20,40,11.6039603960396,32,5305734.57935687,396053.37123806,0,0,0,0,0,0,0,3.44123762376237,20032.4883719201,2.91520792079208,1.56337105636866,1.43713300484503,-5.5,-5.48535979107015,-4.66317810084105,0.650433679991267,0.51603088372728,0.524880063006062 +42561,2873.79069326733,456.558242772277,107.376237623762,3.83395049504951,3.94896900990099,1.75935643564356,-5.5,565.079207920792,425.186138613861,807.411881188119,20,40,11.960396039604,32,5305734.05643199,396054.047056426,0,0,0,0,0,0,0,3.8339504950495,20033.4810990928,3.51871287128713,1.8870193852751,1.71634162655552,-5.5,-5.48535979107015,-4.74703423335264,0.833694886839756,0.661423789156505,0.654437270034293 +42562,2873.79034049505,456.558771584159,109.158415841584,3.38872277227723,3.49038445544555,1.544,-5.5,558.019801980198,362.468316831683,856.887128712871,20,40,11.4851485148515,32,5305733.39111155,396054.694030741,0,0,0,0,0,0,0,3.38872277227722,20034.4916081412,3.088,1.65603619132412,1.50762803999379,-5.5,-5.48535979107015,-4.7415320503984,0.725077615489631,0.575250719945816,0.568722039582381 +42563,2873.78993188119,456.559224158416,126.980198019802,3.24334653465346,3.34064693069307,1.36425742574257,-5.5,556.331683168317,576.275247524752,1100.71782178218,20,40,12,32,5305732.62406401,396055.244172411,0,0,0,0,0,0,0,3.24334653465346,20035.4271482952,2.72851485148515,1.46325108245621,1.3463759460026,-5.5,-5.48535979107015,-4.69114963198082,0.573851502625785,0.455273315539544,0.468349159198878 +42564,2873.78953782178,456.559584356436,102.029702970297,2.24829702970297,2.31574594059406,1.18669306930693,-5.5,547.425742574257,499.508910891089,1223.83762376238,20,40,12,32,5305731.88604903,396055.679726119,0,0,0,0,0,0,0,2.24829702970297,20036.1921001379,2.37338613861386,1.2728022479053,1.1383570810996,-5.5,-5.48535979107015,-4.82007352052186,0.65436232139818,0.519147727702954,0.531175855062924 +42565,2873.78931722772,456.559776039604,62.8217821782178,0.885148514851485,0.91170297029703,1.27237623762376,-5.5,549.965346534653,219.370297029703,1255.99207920792,20,40,12,32,5305731.47313236,396055.911147285,0,0,0,0,0,0,0,0.885148514851484,20036.6395586363,2.54475247524752,1.36470278399338,1.1333008871387,-5.5,-5.48535979107015,-5.21744419547719,1.12031870821653,0.888820906483414,0.852363865017208 +42566,2873.78929841584,456.559832079208,46.7821782178218,0.237,0.24411,1.06171287128713,-5.5,570.806930693069,-126.49900990099,1061.74653465347,20,40,12,32,5305731.43702894,396055.980328566,0,0,0,0,0,0,0,0.237,20036.7647080862,2.12342574257426,1.13875319925268,0.916989210277875,-5.5,-5.48535979107015,-5.39210312455409,1.07324363196914,0.851473219940186,0.857193667715842 +42567,2873.78928673267,456.55987009901,46.7821782178218,0.0685742574257426,0.0706314851485149,0.908920792079208,-5.5,586.415841584158,679.50396039604,1334.59900990099,20,40,12,32,5305731.41453466,396056.027300298,0,0,0,0,0,0,0,0.0685742574257425,20036.8031898244,1.81784158415842,0.974874175343366,0.777348674295373,-5.5,-5.48535979107015,-5.45453000527839,0.955915486480939,0.758389253865166,0.754148849997002 +42568,2873.78931881188,456.559894455445,45,0.960514851485149,0.989330297029703,0.632128712871287,-5.5,701.876237623762,5882.26435643564,5191.73267326733,20,40,12,32,5305731.47340986,396056.058711555,0,0,0,0,0,0,0,0.960514851485147,20036.8849259905,1.26425742574257,0.677997426224085,0.592840517836015,-5.5,-5.48535979107015,-4.88655997722078,0.464158537776163,0.368246829471394,0.39796309037852 +42569,2873.78969683168,456.559935445544,45,4.21186138613862,4.33821722772277,0.562653465346535,-5.37782178217822,984.113861386139,8174.50891089109,6960.18811881188,20,40,12,32,5305732.17271241,396056.122385314,0,0,0,0,0,0,0,4.21186138613861,20037.58399626,1.12530693069307,0.603480894940282,0.71991629953744,-5.37782178217822,-5.36318157324836,-3.6225122210982,0.572636287819258,0.454309207453168,0.447823680192677 +42570,2873.79052009901,456.560261485149,45,6.79925742574257,7.00323514851485,0.879207920792079,-0.599207920792079,1123.94059405941,6785.33366336633,5707.30396039604,20,40,12,32,5305733.69037034,396056.556002092,0,0,0,0,0,0,0,6.79925742574256,20039.150161359,1.75841584158416,0.94300526977365,1.13771719070591,-0.599207920792079,-0.584567711862221,-0.403970671307044,0.951919672217002,0.755219117340475,0.752336924274246 +42571,2873.79159128713,456.561041683168,45,9.5329702970297,9.81895940594059,1.46165346534653,5.33841584158416,1090.65346534653,7533.33168316832,6278.21584158416,20,40,12,32,5305735.65707269,396057.563637933,0,0,0,0,0,0,0,9.53297029702969,20041.404926513,2.92330693069307,1.56771440271255,1.78946122217934,5.33841584158416,5.35305605051401,3.77346267191555,1.09809899751332,0.871192580486369,0.858173408597886 +42572,2873.79288178218,456.562484752475,45,12.0736435643564,12.4358528712871,2.08813861386139,5.48683168316832,801.504950495049,4424.74653465346,5188.03960396039,20,40,12,32,5305738.0151343,396059.404332135,0,0,0,0,0,0,0,12.0736435643564,20044.4381221676,4.17627722772277,2.23965875456985,2.4678431694531,5.48683168316832,5.50147189209817,3.99756015716277,1.14659885028268,0.909670633906901,0.8910850087556 +42573,2873.7941560396,456.56460019802,45,13.7545148514851,14.1671502970297,2.82162376237624,5.48287128712871,704.539603960396,3945.6198019802,4711.54851485148,20,40,12,32,5305740.32803341,396062.082065504,0,0,0,0,0,0,0,13.7545148514851,20048.0273177121,5.64324752475248,3.02636727253574,3.18806151554932,5.48287128712871,5.49751149605857,4.15653852028033,0.865487460999341,0.686646883599825,0.70992569799035 +42574,2873.79511970297,456.567477623763,45,15.1299603960396,15.5838592079208,3.35822772277228,5.5,747.752475247525,3032.14554455446,3534.09108910891,20,40,12,32,5305742.04851187,396065.698637176,0,0,0,0,0,0,0,15.1299603960396,20052.053431161,6.71645544554455,3.60190845053036,3.72330302555494,5.5,5.51464020892985,4.24051104115304,0.733404202152516,0.581856736833099,0.585398777308722 +42575,2873.79569792079,456.570832673267,45,16.0882277227723,16.5708745544554,3.74666336633663,5.5,794.638613861386,2401.43762376238,2754.37326732673,20,40,11.6534653465347,32,5305743.0443001,396069.897326324,0,0,0,0,0,0,0,16.0882277227723,20056.3967121566,7.49332673267327,4.01852987782496,4.10862496527718,5.5,5.51464020892985,4.28172150386189,0.677318024948496,0.537359964175411,0.542329656553256 +42576,2873.79606782178,456.574434554455,45,16.7157326732673,17.2172046534653,3.70450495049505,5.5,829.777227722772,1455.67821782178,1643.10891089109,20,40,11.9306930693069,32,5305743.64867991,396074.396544112,0,0,0,0,0,0,0,16.7157326732673,20060.9747836912,7.4090099009901,3.97331235036216,4.10869333919755,5.5,5.51464020892985,4.24120863478423,0.803877153722088,0.637767463162345,0.643051047970544 +42577,2873.79645009901,456.578221386139,45,17.9815049504951,18.5209500990099,3.84164356435644,3.75158415841584,902.717821782178,4012.92178217822,4608.92673267327,20,40,12,32,5305744.27183941,396079.12656719,0,0,0,0,0,0,0,17.981504950495,20065.7317359739,7.68328712871287,4.12040205747517,4.29833550809902,3.75158415841584,3.76622436734569,2.86963461141551,0.982316173262541,0.779334617166617,0.786462805297941 +42578,2873.79726673267,456.582451782178,45,20.7361485148515,21.358232970297,4.27907920792079,1.35752475247525,1029.91584158416,5157.7297029703,5469.65445544555,20,40,11.2673267326733,32,5305745.68963017,396084.423626712,0,0,0,0,0,0,0,20.7361485148515,20071.1101540433,8.55815841584158,4.5895790374737,4.8292536781774,1.35752475247525,1.3721649614051,1.04286450765021,1.25387199560808,0.994777321468363,0.948508962229573 +42579,2873.79857722772,456.586894356436,45,23.3264158415842,24.0262083168317,5.42846534653465,-3.76871287128713,1428.99504950495,5354.80099009901,4575.76831683168,20,40,11.6435643564356,32,5305748.01746721,396090.001466326,0,0,0,0,0,0,0,23.3264158415841,20077.2496820686,10.8569306930693,5.8223672779859,5.9545938111353,-3.76871287128713,-3.75407266235728,-2.90564718223275,0.937410530640288,0.743708081887857,0.763046690169426 +42580,2873.80043673267,456.591563267327,45,26.5602079207921,27.3570141584158,6.41815841584159,-3.4570297029703,1780.20297029703,8369.24356435643,6985.75742574257,20,40,11.5445544554455,32,5305751.35718779,396095.879559479,0,0,0,0,0,0,0,26.560207920792,20084.1438398518,12.8363168316832,6.88387475277537,6.98236281667903,-3.4570297029703,-3.44238949404044,-2.68612660831903,0.828056183942251,0.656950243384222,0.664797997932751 +42581,2873.80288633663,456.596747722772,45,30.019495049505,30.9200799009901,7.13326732673267,-2.01346534653465,1869.63861386139,7128.20297029703,5898.97326732673,20,40,11.980198019802,32,5305755.77841772,396102.419539639,0,0,0,0,0,0,0,30.0194950495049,20092.0340427396,14.2665346534653,7.6508736110487,7.78933429019196,-2.01346534653465,-1.9988251376048,-1.55977071884533,0.96460065448673,0.765279756400964,0.784107297053187 +42582,2873.80581970297,456.602298019802,45,32.9240792079208,33.9118015841584,7.07630583059406,-2.38920792079208,1664.61881188119,7127.83861386139,5848.32871287129,20,40,12,32,5305761.08754448,396109.431370705,0,0,0,0,0,0,0,32.9240792079207,20100.7706247804,14.1526116611881,7.58977885773424,7.90722586376091,-2.38920792079208,-2.37456771186222,-1.82246742474022,1.74458806860031,1.38409395219506,1.3815639656132 +42583,2873.80909108911,456.608333564357,45,36.0568910891089,37.1385978217822,7.33938503850495,-0.361485148514851,1816.44059405941,6879.46534653465,5768.37425742574,20,40,12,32,5305767.01192695,396117.058932311,0,0,0,0,0,0,0,36.0568910891089,20110.3633362765,14.6787700770099,7.87194769807448,8.31018905874092,-0.361485148514851,-0.346844939584994,-0.223262556915719,2.29818745044882,1.82329995740991,1.80115869380715 +42584,2873.81260623762,456.614762871287,45,38.7266336633663,39.8884326732673,7.59090099011881,1.64148514851485,1897.76237623762,5633.38613861386,4831.78316831683,20,40,12,32,5305773.37902173,396125.18511463,0,0,0,0,0,0,0,38.7266336633663,20120.7639871016,15.1818019802376,8.14171422564435,8.67797177409386,1.64148514851485,1.65612535744471,1.23673366210069,2.7264415982944,2.16306152445483,2.03623218071157 +42585,2873.81637376238,456.621601881188,45,41.0299603960396,42.2608592079208,9.27105940594059,0.0562376237623762,1489.4801980198,5703.85643564357,5106.18613861386,20,40,12,32,5305780.20442935,396133.830058412,0,0,0,0,0,0,0,41.0299603960395,20131.8413711225,18.5421188118812,9.94378880061759,10.2394426310391,0.0562376237623762,0.0708778326922333,0.0435037568646886,1.69126290547796,1.34178766963709,1.47254292534031 +42586,2873.82038415842,456.62889059406,45,43.5229207920792,44.8286084158416,9.78404950495049,0.585049504950495,1543.54455445545,5556.44851485149,5359.58811881188,20,40,12,32,5305787.46964892,396143.043270697,0,0,0,0,0,0,0,43.5229207920791,20143.5904804734,19.568099009901,10.4940026411301,10.8190475351084,0.585049504950495,0.599689713880354,0.469013708924989,1.82604268051969,1.44871713618052,1.5198445485388 +42587,2873.82461485149,456.636653069307,45,45.9699900990099,47.3490898019802,9.24336358635643,0.238514851485149,1632.93564356436,5264.68514851485,5270.90792079208,20,40,12,32,5305795.1323285,396152.853965406,0,0,0,0,0,0,0,45.9699900990099,20156.0261515955,18.4867271727129,9.91408330866179,10.4995017043472,0.238514851485149,0.253155060415006,0.186792229535926,2.97879012262861,2.36326584355037,2.34388842976472 +42588,2873.82903356436,456.644843663366,45,48.2809702970297,49.7293994059406,9.59412376239604,-1.98069306930693,1714.03465346535,5044.22079207921,5038.72772277228,20,40,12,32,5305803.13370565,396163.204204536,0,0,0,0,0,0,0,48.2809702970297,20169.1205163095,19.1882475247921,10.2902954498514,10.9301772267652,-1.98069306930693,-1.96605286037707,-1.46512910240074,3.24535925622132,2.57475228684787,2.56810330452946 +42589,2873.83365960396,456.653400792079,45,50.5023069306931,52.0173761386139,9.25362156218812,-3.07029702970297,1792.06930693069,4980.66831683168,4832.87425742574,20,40,12,32,5305811.51092652,396174.017912697,0,0,0,0,0,0,0,50.502306930693,20182.844256766,18.5072431243762,9.92508562681398,10.7668771557047,-3.07029702970297,-3.05565682077312,-2.2550141999882,4.2116047352785,3.34133698839971,3.32384556948961 +42590,2873.83845554456,456.66242069307,45,52.5817920792079,54.1592458415842,10.4690016501782,-0.738019801980198,1865.56930693069,4806.93762376238,4647.32673267327,20,40,12,32,5305820.19251171,396185.413720614,0,0,0,0,0,0,0,52.5817920792078,20197.1664003854,20.9380033003564,11.2286564894606,11.9201924514237,-0.738019801980198,-0.723379593050339,-0.522399269565139,3.5702773711128,2.83253073086803,2.74658652311104 +42591,2873.84341970297,456.67177960396,45,54.5818415841584,56.2192968316832,13.7749108910891,4.62079207920792,1934.5198019802,4691.72178217822,4424.10891089109,20,40,12,32,5305829.17811992,396197.237398784,0,0,0,0,0,0,0,54.5818415841583,20212.053581381,27.5498217821782,14.774450108749,14.8460420119939,4.62079207920792,4.63543228813777,3.65908066025635,1.45574395834152,1.15493533685664,1.26229010672998 +42592,2873.84855049505,456.681478712871,45,56.3264554455446,58.0162491089109,13.6689405940594,3.46673267326733,1726.25742574257,4273.15643564356,4104.0900990099,20,40,12,32,5305838.46479276,396209.490370535,0,0,0,0,0,0,0,56.3264554455445,20227.4668574261,27.3378811881188,14.6607903632266,14.8565987720675,3.46673267326733,3.48137288219718,2.72558649206104,1.67226409656996,1.32671469224962,1.30978977358745 +42593,2873.85384415841,456.69149059406,45,58.0520396039604,59.7936007920792,14.5118712871287,3.01257425742574,1478.54455445545,4292.24653465346,4108.63069306931,20,40,12,32,5305848.04617805,396222.138342835,0,0,0,0,0,0,0,58.0520396039603,20243.3574981852,29.0237425742574,15.5648860461934,15.6740193438701,3.01257425742574,3.0272144663556,2.3865770028152,1.40239038363475,1.11260651356092,1.10400629063247 +42594,2873.8592580198,456.701856534653,45,59.7657524752476,61.558725049505,14.9801089108911,4.05930693069307,1523.78712871287,4349.5801980198,4113.49306930693,20,40,12,32,5305857.84230804,396235.231320929,0,0,0,0,0,0,0,59.7657524752474,20259.72149604,29.9602178217822,16.0671000689201,16.1698281251286,4.05930693069307,4.07394713962292,3.21168940103443,1.54619366916629,1.22669491149985,1.22094431093396 +42595,2873.86483811881,456.712528712871,45,61.4130198019802,63.2554103960396,16.1732079207921,4.81485148514852,1566.00495049505,4323.6801980198,4005.23366336634,20,40,12,32,5305867.93953787,396248.711263814,0,0,0,0,0,0,0,61.4130198019801,20276.557291667,32.3464158415842,17.3467730872031,17.2776428284644,4.81485148514852,4.82949169407837,3.84480454805294,1.66054904455355,1.31742038780181,1.32346686009361 +42596,2873.87057752475,456.723450891089,45,63.0531584158416,64.9447531683168,16.9018217821782,5.22257425742574,1606.86138613861,4258.30495049505,3909.84356435644,20,40,12,32,5305878.3262915,396262.507882832,0,0,0,0,0,0,0,63.0531584158415,20293.8493611115,33.8036435643565,18.1282568462419,17.9902999843767,5.22257425742574,5.2372144663556,4.18228894753121,1.87706162058731,1.48919374361923,1.48959047463482 +42597,2873.87646752475,456.734654653465,45,64.5952079207921,66.5330641584159,16.9651782178218,5.32841584158416,1644.40099009901,4137.73564356436,3869.91386138614,20,40,12,32,5305888.98572481,396276.660227569,0,0,0,0,0,0,0,64.595207920792,20311.5778342138,33.9303564356436,18.1962105705807,18.1321958877977,5.32841584158416,5.34305605051401,4.24923672487991,1.87551342551045,1.48796546086225,1.49285327952754 +42598,2873.88250821782,456.746123663366,45,66.0667722772277,68.0487754455445,16.8711188118812,5.08158415841584,1681.58415841584,4058.52871287129,3783.45940594059,20,40,12,32,5305899.91838945,396291.147947335,0,0,0,0,0,0,0,66.0667722772276,20329.7284091863,33.7422376237624,18.0953259978008,18.137165873612,5.08158415841584,5.09622436734569,4.03051597515995,1.77923517542407,1.41158173104608,1.41667042654495 +42599,2873.88868861386,456.757814356436,45,67.5302277227723,69.5561345544554,17.345900990099,4.94811881188119,1719.9900990099,3975.12079207921,3703.67227722772,20,40,12,32,5305911.10490561,396305.916405656,0,0,0,0,0,0,0,67.5302277227722,20348.2893142468,34.691801980198,18.6045594629073,18.625212910561,4.94811881188119,4.96275902081104,3.93061469901369,1.76247126004122,1.39828183847309,1.39725673172626 +42600,2873.89500732673,456.769754356436,45,68.9302871287129,70.9981957425742,17.8625643564356,4.73455445544554,1754.92079207921,3931.02178217822,3660.55940594059,20,40,12,32,5305922.5420896,396320.999962733,0,0,0,0,0,0,0,68.9302871287128,20367.2410223601,35.7251287128713,19.1587131114726,19.1456894028425,4.73455445544554,4.7491946643754,3.76796269874953,1.74261108992031,1.38252548782008,1.3652279685868 +42601,2873.90145425742,456.781922574258,45,70.2662079207921,72.3741941584159,18.3419405940594,4.44079207920792,1789.55940594059,3858.70099009901,3616.61287128713,20,40,12,32,5305934.21170888,396336.372008816,0,0,0,0,0,0,0,70.266207920792,20386.5766603689,36.6838811881188,19.6728739915022,19.630839293716,4.44079207920792,4.45543228813777,3.54013376328089,1.73691235820704,1.37800431732632,1.39077497196773 +42602,2873.90803405941,456.794321980198,45,71.6054752475247,73.7536395049505,18.2426336633663,4.32980198019802,1822.26237623762,3783.32178217822,3589.63267326733,20,40,12,32,5305946.12231911,396352.03639507,0,0,0,0,0,0,0,71.6054752475247,20406.2832618266,36.4852673267327,19.5663611215042,19.6227748852549,4.32980198019802,4.34444218912787,3.43368636314983,1.77861891537056,1.41109281229879,1.42255017122672 +42603,2873.91473930693,456.806966039604,45,72.888900990099,75.075568019802,18.0636732673267,4.50435643564357,1855.5297029703,3734.82178217822,3527.35544554455,20,40,12,32,5305958.25986634,396368.009643937,0,0,0,0,0,0,0,72.8889009900989,20426.3562136142,36.1273465346535,19.3744149475046,19.5435848256794,4.50435643564357,4.51899664457342,3.55738900835637,1.98490527290836,1.57475305108369,1.57378151630931 +42604,2873.92155336634,456.819821782178,45,74.1568415841584,76.3815468316832,18.3195247524752,4.4049504950495,1886.52475247525,3670.27920792079,3473.75247524752,20,40,12,32,5305970.59427931,396384.250128686,0,0,0,0,0,0,0,74.1568415841583,20446.7828661995,36.6390495049505,19.6488316048945,19.8346153339952,4.4049504950495,4.41959070397936,3.47648217060972,1.99190096725073,1.58030318547068,1.55605929343288 +42605,2873.92847752475,456.832905445544,45,75.357,77.61771,18.4313564356436,3.41019801980198,1918.97524752475,3583.43465346535,3443.04356435644,20,40,12,32,5305983.12758131,396400.778115191,0,0,0,0,0,0,0,75.3569999999999,20467.5515947749,36.8627128712871,19.7687780522154,20.0005849334024,3.41019801980198,3.42483822873184,2.68752011481871,1.94796477866297,1.54544578044692,1.61297872852766 +42606,2873.93549336634,456.846192376238,45,76.5563069306931,78.8529961386139,18.3951386138614,4.02158415841584,1950.67821782178,3527.02673267327,3398.45148514852,20,40,12,32,5305995.82621353,396417.562277966,0,0,0,0,0,0,0,76.556306930693,20488.6550545384,36.7902772277228,19.7299321819808,20.0371380530432,4.02158415841584,4.0362243673457,3.15390599277408,2.26759525715347,1.79902920233221,1.79288238186224 +42607,2873.94262277228,456.859744059406,45,77.7090792079208,80.0403515841584,19.0398514851485,3.58465346534654,1937.37128712871,3468.16534653465,3333.25346534653,20,40,12,32,5306008.72933511,396434.679929983,0.861386138613861,0.861386138613861,4570521.77945344,341485.498267563,7.99772895110108,0,0,77.7090792079207,20510.085280446,38.079702970297,20.4214269020999,20.6510084961662,3.58465346534654,3.59929367427639,2.82524144764757,2.19608677132018,1.74229692005087,1.68053397485471 +42608,2873.94984940594,456.873511584159,45,78.8715346534653,81.2376806930693,19.0598217821782,2.22663366336634,1720.26732673267,3486.90495049505,3357.70792079208,20,40,12,32,5306021.80778114,396452.069598695,1,1,5306020.82120589,396452.873315959,29.5165662898258,0,0,78.8715346534652,20531.8297032733,38.1196435643564,20.4428462898154,20.7371794128614,2.22663366336634,2.24127387229619,1.75526206366353,2.16610681055829,1.7185118884297,1.71355103852821 +42609,2873.95716465347,456.887481287129,45,80.0037623762376,82.4038752475248,20.0068712871287,3.37504950495049,1737.10396039604,3448.69504950495,3281.87821782178,20,40,12,32,5306035.04590358,396469.713974711,1,1,5306034.74212096,396469.961452372,51.5573530840575,0,0,80.0037623762375,20553.892586139,40.0137425742574,21.4586158851351,21.6064105939143,3.37504950495049,3.38968971388035,2.67244232446403,2.02783733565409,1.60881381847693,1.64277667027096 +42610,2873.96456960396,456.901632772277,45,81.052099009901,83.483661980198,19.7655544554455,3.99574257425743,1760.82673267327,3438.0099009901,3232.53465346535,20,40,12,32,5306048.44617789,396487.587684934,1,1,5306048.84002032,396487.266839704,73.8783565793634,0,0,81.0520990099009,20576.2593865241,39.5311089108911,21.1997885490969,21.4597854066429,3.99574257425743,4.01038278318728,3.14842379158872,2.32962077611357,1.84823803691017,1.85631449602498 +42611,2873.97210069307,456.915926435644,45,82.0968910891089,84.5597978217822,19.9310693069307,3.99049504950495,1787.11881188119,3383.2504950495,3234.17524752475,20,40,12,32,5306062.07698232,396505.642604649,1,1,5306063.11861565,396504.794034111,96.4854534383056,0,0,82.0968910891088,20598.9269650994,39.8621386138614,21.3773135389033,21.6605661461809,3.99049504950495,4.0051352584348,3.13715787878053,2.39216568107293,1.89785893381583,1.88191403624123 +42612,2873.97973613862,456.930460396039,45,83.1605643564356,85.6553812871288,20.2033465346535,3.30653465346535,1808.64356435644,3345.85445544554,3213.29504950495,20,40,12,32,5306075.89577877,396524.000226816,1,1,5306077.62042994,396522.595233206,119.445969697266,0,0,83.1605643564355,20621.8862347914,40.4066930693069,21.6693478285291,21.9556507058587,3.30653465346535,3.3211748623952,2.60441483574994,2.2632760613526,1.79560250642965,1.827247157077 +42613,2873.98741544554,456.945183960396,45,83.9900792079208,86.5097815841584,20.406504950495,3.17861386138614,1816.34158415842,2021.47326732673,1931.22178217822,20,40,12,32,5306089.79164448,396542.595393575,1,1,5306092.26930813,396540.576955498,142.63933014683,0,0,83.9900792079206,20645.1230169971,40.8130099009901,21.8872478863048,22.1756007559917,3.17861386138614,3.19325407031599,2.50495802439411,2.26095913648953,1.79376434087734,1.8020994486364 +42614,2873.99513633663,456.959901188119,45,83.8973465346535,86.4142669306931,19.9605544554455,4.14168316831683,1817.68811881188,1519.9900990099,1493.4495049505,20,40,12,32,5306103.76473871,396561.183958457,1,1,5306106.94576123,396558.59252641,165.876349552871,0,0,83.8973465346533,20668.4475091589,39.9211089108911,21.4089381976126,21.7881499114454,4.14168316831683,4.15632337724668,3.24081073987456,2.71897970817179,2.15714152696285,2.12893198050056 +42615,2874.00286396039,456.974597623763,45,83.997603960396,86.5175320792079,20.1166633663366,3.50504950495049,1820.61881188119,1845.49702970297,1801.28712871287,20,40,12,32,5306117.75082727,396579.746757532,1,1,5306121.6147811,396576.59897291,189.101600020973,0,0,83.9976039603959,20691.7600633943,40.2333267326733,21.576374730141,21.9287434965215,3.50504950495049,3.51968971388035,2.74951759968139,2.54903056988711,2.02230994195189,2.04060565197022 +42616,2874.01064673267,456.989356633663,45,84.1595643564357,86.6843512871287,21.0859603960396,3.96683168316832,1822.5099009901,1851.2495049505,1826.02475247525,20,40,12,32,5306131.83773183,396598.389240728,1,1,5306136.36303742,396594.702683381,212.452304454104,0,0,84.1595643564356,20715.1098230753,42.1719207920792,22.6160061817803,22.7611632103284,3.96683168316832,3.98147189209817,3.14235064694911,2.16928334232032,1.72103203543742,1.70634755888404 +42617,2874.0184380198,457.004114257426,45,84.3035247524753,86.8326304950495,20.671396039604,3.36039603960396,1826.57425742574,1840.39603960396,1777.54158415842,20,40,12,32,5306145.94049893,396617.030188799,1,1,5306151.11686985,396612.813238608,235.811837456519,0,0,84.3035247524752,20738.5119371292,41.3427920792079,22.1713600821103,22.4180537357491,3.36039603960396,3.37503624853382,2.65605726467293,2.26032660857963,1.79326251579298,1.85386464473121 +42618,2874.02624960396,457.018885742574,45,84.4646831683168,86.9986236633663,20.0166336633663,3.00891089108911,1828.13861386139,1821.94356435644,1749.65643564356,20,40,12,32,5306160.08061305,396635.688984963,1.84158415841584,1,5306165.89445859,396630.952329302,47.7820479609881,0,0,84.4646831683167,20761.9542675747,40.0332673267327,21.4690866418468,21.870606475495,3.00891089108911,3.02355110001896,2.35997639596088,2.69236571346025,2.1360269327575,2.12426002485166 +42619,2874.03408970297,457.033688910891,45,84.5931881188119,87.1309837623763,19.2704345434653,0.322475247524753,1832.82178217822,1753.43168316832,1717.09405940594,20,40,12,32,5306174.27289897,396654.388100423,2,1,5306180.71326821,396649.140927693,31.4452069395686,0,0,84.5931881188117,20785.4321082788,38.5408690869307,20.6687415974878,21.2429882935313,0.322475247524753,0.33711545645461,0.277180493341646,3.35743103931862,2.66366604247223,2.64780087001652 +42620,2874.0419409901,457.048517128713,45,84.6862673267326,87.2268553465347,18.9083245321782,1.81227722772277,1833.97524752475,1669.54851485149,1649.10891089109,20,40,12,32,5306188.48540994,396673.118696748,2,1,5306195.55560647,396667.358383776,54.9435198849229,0,0,84.6862673267325,20808.9428805561,37.8166490643564,20.2803560508995,20.9398605812081,1.81227722772277,1.82691743665263,1.41119165446407,3.72535763713995,2.95556588293415,2.85535686705915 +42621,2874.04979326733,457.06336029703,45,84.7310693069306,87.2730013861386,21.4683465346535,1.74742574257426,1834.18316831683,1642.48613861386,1616.18514851485,20,40,12,32,5306202.69948128,396691.867855852,2,1,5306210.40765718,396685.587760889,78.4572095165663,0,0,84.7310693069305,20832.4746038784,42.9366930693069,23.0261391381308,23.1208548688634,1.74742574257426,1.76206595150411,1.4027573308416,1.980533260821,1.57128445262314,1.6848542191365 +42622,2874.05764980198,457.078184851485,45,84.7465346534653,87.2889306930693,20.667603960396,1.41633663366337,1837.57425742574,1630.32871287129,1597.47326732673,20,40,12,32,5306216.92191374,396710.593878204,2,1,5306225.25171394,396703.80732625,101.958243174535,0,0,84.7465346534652,20856.0175825913,41.3352079207921,22.167292840913,22.442049571137,1.41633663366337,1.43097684259322,1.13101668076981,2.27961761327109,1.80856731089378,1.78988064668072 +42623,2874.06551861386,457.093017227723,45,84.8018316831683,87.3458866336634,20.0088228824753,0.755841584158415,1836.0495049505,1635.51287128713,1585.36237623762,20,40,12,32,5306231.16697323,396729.329957914,2,1,5306240.10972295,396722.044016575,125.48136596483,0,0,84.8018316831682,20879.5702103416,40.0176457649505,21.4607090927288,21.8837094895071,0.755841584158415,0.770481793088273,0.591955998316104,2.98773864905466,2.37036528526402,2.41869091602049 +42624,2874.07339990099,457.107863168317,45,84.8295544554455,87.3744410891089,18.8625511548515,-1.70613861386139,1837.76237623762,1616.19702970297,1630.24752475248,20,40,12,32,5306245.43489862,396748.083254216,2,1,5306254.98528529,396740.302251819,149.03227909151,0,0,84.8295544554454,20903.1281480203,37.725102309703,20.2312612520315,20.90971282706,-1.70613861386139,-1.69149840493153,-1.29718442040287,3.7465803536107,2.97240322926536,2.97805485887927 +42625,2874.08125752475,457.122676336634,45,84.8467524752475,87.392155049505,19.7576336633663,-1.52970297029703,1838.61386138614,1586.25742574257,1642.34455445545,20,40,12,32,5306259.65978157,396766.794852545,2,1,5306269.82325647,396758.514347752,172.523678093264,0,0,84.8467524752474,20926.6929769807,39.5152673267327,21.191293006126,21.6723597458833,-1.52970297029703,-1.51506276136717,-1.17037645818545,3.01231337705509,2.38986199799203,2.43787418127197 +42626,2874.08911871287,457.137583366337,45,84.8879207920792,87.4345584158416,19.2928525853465,-1.7719801980198,1838.49504950495,1544.84455445545,1628.65247524752,20,40,12,32,5306273.88923522,396785.623389172,2,1,5306284.7203141,396776.798966275,196.108622455352,0,0,84.8879207920791,20950.2685668322,38.5857051706931,20.6927863440512,21.2788777777467,-1.7719801980198,-1.75733998908995,-1.35465474193751,3.41762867894703,2.71142470278047,2.69338498515745 +42627,2874.09692425743,457.152483465346,45,84.9168415841584,87.4643468316832,18.7396815181188,-1.24524752475248,1839.9504950495,1526.16336633663,1585.59405940594,20,40,12,32,5306288.01583254,396804.441356619,2,1,5306299.57116042,396795.026865129,219.620405311745,0,0,84.9168415841583,20973.8512924098,37.4793630362376,20.0994759118475,20.810000968922,-1.24524752475248,-1.23060731582262,-0.945911430066414,3.88411487364393,3.08151821223596,2.95204294161234 +42628,2874.1047270297,457.167441584158,45,84.9570693069307,87.5057813861386,19.0464675467327,-0.26960396039604,1838.72277227723,1533.73663366337,1560.65940594059,20,40,12,32,5306302.13606272,396823.331408217,1.6039603960396,0.801980198019802,4255557.92016327,318234.935652589,193.133670284995,0,0,84.9570693069306,20997.4402761557,38.0929350934653,20.4285230403301,21.0741892296972,-0.26960396039604,-0.254963751466183,-0.191559800172593,3.59772227367698,2.85430453772901,2.90245533659827 +42629,2874.11252089109,457.182444455446,45,84.9341188118811,87.4821423762376,18.6183080305941,-1.55950495049505,1840.83663366337,1513.9495049505,1558.55148514851,20,40,12,32,5306316.23885102,396842.276814825,0,0,0,0,0,0,0,84.9341188118811,21021.0330020083,37.2366160611881,19.9692952848992,20.7089792603518,-1.55950495049505,-1.54486474156519,-1.18646860277941,3.95483520523851,3.13762520105414,3.08415748837819 +42630,2874.12028,457.197427623762,45,84.9370495049505,87.485160990099,19.2926375136634,-2.54435643564357,1839.33663366337,1516.39207920792,1565.62673267327,20,40,12,32,5306330.27776556,396861.1964364,0,0,0,0,0,0,0,84.9370495049504,21044.6291912822,38.5852750273267,20.692555666272,21.2814439658947,-2.54435643564357,-2.52971622671371,-1.95461211858515,3.42626263400737,2.71827457479188,2.82503892877872 +42631,2874.12802910891,457.212457425743,45,84.9248415841583,87.4725868316831,19.3668168315842,-3.9570297029703,1839.32673267327,1500.80594059406,1531.32871287129,20,40,12,32,5306344.29717957,396880.173720143,0,0,0,0,0,0,0,84.9248415841582,21068.2303587189,38.7336336631683,20.7721176061195,21.3429616094749,-3.9570297029703,-3.94238949404044,-3.04426778160169,3.37943771547168,2.68112535445514,2.56753842504331 +42632,2874.13576039604,457.227481683168,45,84.988198019802,87.537843960396,19.4014895489109,-3.13029702970297,1840.62871287129,1527.88712871287,1542.38514851485,20,40,12,32,5306358.28376621,396899.143415475,0,0,0,0,0,0,0,84.9881980198019,21091.8295253306,38.8029790978218,20.8093062555655,21.3759259730858,-3.13029702970297,-3.11565682077312,-2.40788237214123,3.34892421676469,2.65691703285717,2.74929119438237 +42633,2874.14349405941,457.242539009901,45,84.9738811881189,87.5230976237623,18.6038558855445,-1.29940594059406,1842.36138613861,1512.60792079208,1532.97425742574,20,40,12,32,5306372.27407994,396918.154287177,0,0,0,0,0,0,0,84.9738811881187,21115.4314084439,37.2077117710891,19.9537944589638,20.6988471589009,-1.29940594059406,-1.2847657316642,-0.986178469043243,3.98226319896756,3.15938559304839,3.13285114655063 +42634,2874.15124722772,457.257587128713,45,85.005504950495,87.5556700990099,18.6206270640594,-2.47752475247525,1839.0495049505,1601.93465346535,1486.8900990099,20,40,12,32,5306386.30078997,396937.154242811,0,0,0,0,0,0,0,85.005504950495,21139.0392653746,37.2412541281188,19.9717825927667,20.714259201816,-2.47752475247525,-2.46288454354539,-1.89062840236959,3.99797908331125,3.17185401517335,3.16157599092253 +42635,2874.15903475248,457.272553960396,45,85.040504950495,87.5917200990099,18.8042090218812,-2.86217821782178,1839.77722772277,1531.71287128713,1466.46633663366,20,40,12,32,5306400.39300977,396956.053994425,0,0,0,0,0,0,0,85.0405049504949,21162.6568124318,37.6084180437624,20.1686856797013,20.8709735962428,-2.86217821782178,-2.84753800889193,-2.1899535959974,3.8936251330092,3.08906331282916,3.10917353202973 +42636,2874.16682435644,457.287533465346,45,85.0589207920792,87.6106884158416,19.4324086910891,-1.65326732673267,1840.79207920792,1438.42574257426,1473.05049504951,20,40,12,32,5306414.48886,396974.969507572,0,0,0,0,0,0,0,85.0589207920791,21186.2836827564,38.8648173821782,20.8424689618167,21.4075833360375,-1.65326732673267,-1.63862711780282,-1.26362288519587,3.33269929994868,2.64404476252351,2.75617031293365 +42637,2874.17462029703,457.30253039604,45,85.1095148514852,87.6628002970297,19.0226358630693,-3.26207920792079,1841.78712871287,1462.26930693069,1415.08613861386,20,40,12,32,5306428.59612134,396993.906842326,0,0,0,0,0,0,0,85.109514851485,21209.9178753856,38.0452717261386,20.4029620748854,21.0603322216608,-3.26207920792079,-3.24743899899094,-2.50163538182873,3.72606202088455,2.95612471587498,2.80813824235615 +42638,2874.18244554455,457.317543663367,45,85.1163168316832,87.6698063366337,18.8366699666337,-2.2049504950495,1842.17821782178,1412.49702970297,1361.25445544554,20,40,12,32,5306442.75736715,397012.865401364,0,0,0,0,0,0,0,85.1163168316831,21233.5614945275,37.6733399332673,20.2035020652678,20.904175616226,-2.2049504950495,-2.19031028611965,-1.68917980302743,3.84617531250671,3.05141831755934,3.01358587458216 +42639,2874.19029257426,457.332546930693,45,85.1083069306931,87.6615561386139,19.248608360495,-2.71940594059406,1839.0495049505,1412.70297029703,1341.5801980198,20,40,12,32,5306456.95924459,397031.812131782,0,0,0,0,0,0,0,85.108306930693,21257.2019974153,38.4972167209901,20.6453316564792,21.252473101537,-2.71940594059406,-2.7047657316642,-2.08585502830606,3.56097691689005,2.82515208219212,2.81619674098095 +42640,2874.19814514852,457.347501485149,45,85.0972772277228,87.6501955445544,19.4642920787129,-2.12168316831683,1840.64356435644,1397.22178217822,1387.30693069307,20,40,12,32,5306471.17253627,397050.698277995,0,0,0,0,0,0,0,85.0972772277227,21280.8403077564,38.9285841574257,20.8766658813808,21.4379830143105,-2.12168316831683,-2.10704295938698,-1.62975265458982,3.23838594796513,2.56921991278324,2.64196349026038 +42641,2874.20597128713,457.362432574257,45,85.0879108910891,87.6405482178218,18.8029136418812,-1.74267326732673,1841.0297029703,1369.39504950495,1375.70693069307,20,40,12,32,5306485.3374422,397069.554230324,0,0,0,0,0,0,0,85.087910891089,21304.4763752482,37.6058272837624,20.167296303949,20.8747523632257,-1.74267326732673,-1.72803305839688,-1.32807960058688,3.82702722986036,3.03622691171177,3.02576449816691 +42642,2874.21380207921,457.377391188119,45,85.0551089108911,87.6067621782178,18.6520115509901,-1.74108910891089,1841.36633663366,1379.20594059406,1364.42376237624,20,40,12,32,5306499.51041703,397088.444526774,0,0,0,0,0,0,0,85.0551089108909,21328.1062866343,37.3040231019802,20.005444410256,20.744111685813,-1.74108910891089,-1.72644889998103,-1.32606126072071,3.97063688216795,3.15016168795682,3.13690150635966 +42643,2874.22163831683,457.392360594059,45,85.0298415841584,87.5807368316832,18.6853146317822,-1.59277227722772,1839.4603960396,1427.87128712871,1407.98910891089,20,40,12,32,5306513.69329997,397107.348352037,0,0,0,0,0,0,0,85.0298415841583,21351.7308824264,37.3706292635644,20.0411640391901,20.76955923217,-1.59277227722772,-1.57813206829787,-1.21355534341096,3.98413295623237,3.16086899177664,3.1682766860195 +42644,2874.22945811881,457.407288415842,45,85.0448712871287,87.5962174257425,18.6426226632673,-0.688514851485149,1841.22277227723,1433.91584158416,1401.32277227723,20,40,12,32,5306527.84672282,397126.199746973,0,0,0,0,0,0,0,85.0448712871287,21375.3548722504,37.2852453265347,19.9953742432448,20.7352609730671,-0.688514851485149,-0.673874642555291,-0.517496046783376,3.98657249909117,3.16280443807354,3.16886223090316 +42645,2874.23730881188,457.422224257426,45,85.0617326732673,87.6135846534654,18.6461254129703,-0.842079207920792,1838.5495049505,1423,1410.3504950495,20,40,12,32,5306542.05724915,397145.062058194,0,0,0,0,0,0,0,85.0617326732672,21398.9794350667,37.2922508259406,19.9991311605229,20.7392702744878,-0.842079207920792,-0.827438998990935,-0.635870246479946,3.98546364444532,3.16192471234527,3.15059155312437 +42646,2874.24517306931,457.43716960396,45,85.0718613861387,87.6240172277228,19.0897711770297,-3.18722772277228,1839.5297029703,1432.22079207921,1405.12376237624,20,40,12,32,5306556.29275099,397163.936562891,0,0,0,0,0,0,0,85.0718613861385,21422.607643455,38.1795423540594,20.4749688816433,21.115586872448,-3.18722772277228,-3.17258751384242,-2.4480850383591,3.649955912237,2.89574484362887,2.95601834369923 +42647,2874.25301524753,457.452151089109,45,85.0815346534653,87.6339806930694,19.0058938393069,-1.86059405940594,1840.92079207921,1394.13861386139,1363.54257425743,20,40,12,32,5306570.48661301,397182.85525688,0,0,0,0,0,0,0,85.0815346534652,21446.2422190876,38.0117876786138,20.3850052113708,21.0469156415011,-1.86059405940594,-1.84595385047609,-1.42201137098924,3.63955346965815,2.8874919166941,2.786589997257 +42648,2874.2608580198,457.467082970297,45,85.074405940594,87.6266381188119,19.3626870185149,-3.0309900990099,1841.43069306931,1408.7900990099,1358.22475247525,20,40,12,32,5306584.68273726,397201.712094527,0,0,0,0,0,0,0,85.0744059405939,21469.8735213704,38.7253740370297,20.767688124315,21.348491755744,-3.0309900990099,-3.01634989008005,-2.33337581718623,3.40972669572836,2.70515555112217,2.76677996913043 +42649,2874.26871871287,457.482009108911,45,85.0700495049505,87.622150990099,18.6316903204951,-2.63910891089109,1838.63861386139,1427.1603960396,1370.89900990099,20,40,12,32,5306598.91224504,397220.562278105,0,0,0,0,0,0,0,85.0700495049504,21493.5053758258,37.2633806409901,19.9836486245357,20.7255601895198,-2.63910891089109,-2.62446870196123,-2.01462264297738,4.0687351271614,3.22798933682141,3.22248491164496 +42650,2874.27660712871,457.496935346535,45,85.0592574257425,87.6110351485149,18.6282216718812,-1.57990099009901,1841.07425742574,1385.14257425743,1351.07722772277,20,40,12,32,5306613.19316334,397239.413406546,0,0,0,0,0,0,0,85.0592574257424,21517.13554263,37.2564433437624,19.9799282828003,20.7223899917284,-1.57990099009901,-1.56526078116915,-1.20149453296533,4.05468868786296,3.21684539285391,3.21753682672136 +42651,2874.28448425743,457.511824752475,45,85.0190594059406,87.5696311881188,18.822698570495,-2.71445544554455,1842.60891089109,1391.58316831683,1386.1801980198,20,40,12,32,5306627.45405147,397258.218194962,0,0,0,0,0,0,0,85.0190594059404,21540.7570843242,37.6453971409901,20.1885168724901,20.8846263081439,-2.71445544554455,-2.6998152366147,-2.0802742980336,3.92575924511933,3.11455737130135,3.05349270683561 +42652,2874.29237653465,457.526707821782,45,84.8337722772278,87.3787854455445,19.4513410341584,-2.08227722772277,1828.19801980198,442.994059405941,439.4,20,40,12,32,5306641.74320066,397277.015497643,0,0,0,0,0,0,0,84.8337722772276,21564.362872223,38.9026820683168,20.862775079245,21.4105698668489,-2.08227722772277,-2.06763701879292,-1.59115822213535,3.24596884657063,2.57523591408973,2.64344006972824 +42653,2874.30016356436,457.541513663367,45,84.053405940594,86.5750081188119,18.7460242023762,-2.32653465346535,1808.82673267327,-351.685148514851,-289.248514851485,20,40,12,32,5306655.83916746,397295.71304911,0,0,0,0,0,0,0,84.053405940594,21587.8230144673,37.4920484047525,20.1062788358633,20.7660553478569,-2.32653465346535,-2.31189444453549,-1.78716355379502,3.67450082097789,2.9152178988199,2.85833152156808 +42654,2874.30785811881,457.55613,45,82.2531980198019,84.720793960396,18.4118118811881,-1.27663366336634,1760.15346534653,-3116.35742574258,-2826.42079207921,20,40,12,32,5306669.76809856,397314.171431836,0,0,0,0,0,0,0,82.2531980198019,21610.9596732131,36.8236237623762,19.7478152999346,20.378725805875,-1.27663366336634,-1.26199345443648,-0.979716221542543,3.52124709793751,2.79363186081509,2.86003660061532 +42655,2874.31535059406,457.570287425742,45,79.535396039604,81.9214579207921,17.9093817379208,-2.32306930693069,1702.81188118812,-3316.33168316832,-2905.2099009901,20,40,12,32,5306683.33293849,397332.051491799,0,0,0,0,0,0,0,79.5353960396039,21633.4251721405,35.8187634758416,19.2089276698421,19.7939229162553,-2.32306930693069,-2.30842909800084,-1.78642475845852,3.37649535361652,2.67879098949977,2.74055620066391 +42656,2874.32262069307,457.583971782178,45,76.9164752475247,79.2239695049505,16.7319768973267,-1.17722772277228,1650.00495049505,-2907.34158415842,-2568.36831683168,20,40,12,32,5306696.49639866,397349.334933186,0,0,0,0,0,0,0,76.9164752475246,21655.1482580041,33.4639537946535,17.9460876258887,18.6424968002061,-1.17722772277228,-1.16258751384242,-0.896448868285855,3.78315101002583,3.00141708375801,2.98195414838738 +42657,2874.32967940594,457.597229603961,45,75.3179603960396,77.5774992079207,16.3190654558416,-2.97534653465346,1630.27722772277,98.9613861386138,161.562376237624,20,40,12,32,5306709.27780022,397366.080084341,0,0,0,0,0,0,0,75.3179603960395,21676.2439693352,32.6381309116832,17.5032143804799,18.1997417985133,-2.97534653465346,-2.96070632572361,-2.26049133618281,3.76036938361248,2.9833429538775,2.95098402086265 +42658,2874.33666059406,457.61036029703,45,74.7577821782178,77.0005156435644,16.9628217821782,-2.52722772277228,1614.77227722772,316.523762376238,394.052475247525,20,40,12,32,5306721.91846328,397382.664269437,0,0,0,0,0,0,0,74.7577821782177,21697.0873370195,33.9256435643564,18.1936831465468,18.7158412501442,-2.52722772277228,-2.51258751384242,-1.94968063278889,3.03425489723003,2.40726961754573,2.42592854272223 +42659,2874.34357445545,457.623382574257,45,74.202792079208,76.4288758415842,16.1738305829703,-3.03267326732673,1603.28217821782,329.840594059406,378.588118811881,20,40,12,32,5306734.43686215,397399.111133413,0,0,0,0,0,0,0,74.2027920792078,21717.7757626245,32.3476611659406,17.3474409311812,18.0119759211121,-3.03267326732673,-3.01803305839688,-2.3096179325345,3.64117041055401,2.88877473993203,2.90385595045689 +42660,2874.35044623762,457.636295742574,45,73.579702970297,75.7870940594059,15.8580275029703,-2.80148514851485,1586.74257425743,50.0891089108911,146.336633663366,20,40,12,32,5306746.87977826,397415.420646596,0,0,0,0,0,0,0,73.5797029702969,21738.3034665849,31.7160550059406,17.0087224533239,17.7085732251924,-2.80148514851485,-2.786844939585,-2.12882185835256,3.72713283506376,2.95697426165376,2.94154739897458 +42661,2874.35724960396,457.649124950495,45,72.6185643564356,74.7971212871287,15.4663371841584,-1.61287128712871,1561.59900990099,-1164.3801980198,-894.453465346535,20,40,12,32,5306759.19786896,397431.623265172,0,0,0,0,0,0,0,72.6185643564355,21758.6266985981,30.9326743683168,16.5886101840598,17.3205814271822,-1.61287128712871,-1.59823107819886,-1.22125949849348,3.85901542460411,3.06160520454968,3.04268735966007 +42662,2874.3638990099,457.661694653465,45,70.6335742574258,72.7525814851485,14.6204372941584,-0.875346534653465,1505.32178217822,-3226.45148514851,-2679.66435643564,20,40,12,32,5306771.23656166,397447.497537326,0,0,0,0,0,0,0,70.6335742574257,21778.5493136697,29.2408745883168,15.6813298524037,16.4869870007475,-0.875346534653465,-0.860706325723609,-0.654288488483475,4.16710402176312,3.30603170943238,3.29748242509707 +42663,2874.37029554455,457.673834158416,45,67.9555742574257,69.9942414851485,14.3829779975247,-0.855148514851485,1456.28217821782,-3454.11089108911,-2883.94257425743,20,40,12,32,5306782.81641504,397462.827616827,0,0,0,0,0,0,0,67.9555742574256,21797.7968955728,28.7659559950495,15.4266399630308,16.1308990925317,-0.855148514851485,-0.840508305921627,-0.638542781584876,3.72478793962035,2.95511390524059,2.90776484323913 +42664,2874.37645217822,457.685548811881,45,65.2926138613862,67.2513922772277,14.3667524752475,-1.12009900990099,1412.38613861386,-3706.96435643564,-3063.20396039604,20,40,12,32,5306793.96133202,397477.620596508,0,0,0,0,0,0,0,65.2926138613861,21816.3037645222,28.733504950495,15.4092370795371,15.9659399345044,-1.12009900990099,-1.10545880097113,-0.847532202666876,2.99002588550105,2.37217989708538,2.42649269662421 +42665,2874.38233495049,457.696776732673,45,62.4231386138614,64.2958327722772,13.5960495049505,-0.0523762376237626,1548.94554455446,-4123.99702970297,-3394.19405940594,20,40,12,32,5306804.60977153,397491.798293897,0,0,0,0,0,0,0,62.4231386138613,21834.0425189502,27.192099009901,14.5826101290366,15.1463892428767,-0.0523762376237626,-0.0377360286939049,-0.0338382765017871,2.97848104159264,2.36302062967993,2.36798407195065 +42666,2874.3879349505,457.707491287129,45,59.4111584158416,61.1934931683168,12.4641600659406,-1.71207920792079,1484.35643564356,-4161.32673267327,-3457.11584158416,20,40,12,32,5306814.7458124,397505.327251391,0,0,0,0,0,0,0,59.4111584158415,21850.9539287686,24.9283201318812,13.3685881888954,14.0088559586339,-1.71207920792079,-1.69743899899093,-1.29445619818797,3.35853338072922,2.66454060083195,2.654867251289 +42667,2874.39325881188,457.717702079208,45,56.4656930693069,58.1596638613861,11.3495478549505,-0.655742574257426,1415.5099009901,-3421.04554455446,-2878.69207920792,20,40,12,32,5306824.38152552,397518.219655701,0,0,0,0,0,0,0,56.4656930693068,21867.042142245,22.699095709901,12.1730971521782,12.8922368926661,-0.655742574257426,-0.641102365327569,-0.47530024347511,3.67661905430057,2.91689842959047,2.87570203256191 +42668,2874.39835435644,457.727479504951,45,54.6265049504951,56.2653000990099,11.0697513753465,-1.05158415841584,1379.0396039604,-770.861386138614,-591.265346534653,20,40,12,32,5306833.60393196,397530.564762516,0,0,0,0,0,0,0,54.626504950495,21882.4278930151,22.1395027506931,11.8729979964597,12.5489002360936,-1.05158415841584,-1.03694394948598,-0.780198077384941,3.46518704303719,2.7491558126615,2.83827153020091 +42669,2874.4033339604,457.737033960396,45,53.934900990099,55.552948019802,10.1818080307327,-1.50049504950495,1362.55940594059,325.074257425743,360.778217821782,20,40,12,32,5306842.6165342,397542.628314395,0,0,0,0,0,0,0,53.9349009900989,21897.4925566839,20.3636160614654,10.9206234404196,11.7547155548076,-1.50049504950495,-1.48585484057509,-1.10275493718343,4.16295829525168,3.3027426378772,3.21194154130828 +42670,2874.40827425742,457.74649019802,45,53.5164158415841,55.1219083168317,11.0376633663366,-2.51564356435644,1351.0099009901,349.540594059406,386.993069306931,20,40,12,32,5306851.55852345,397554.568209123,0,0,0,0,0,0,0,53.5164158415841,21912.4171990107,22.0753267326733,11.8385816077111,12.4573683410215,-2.51564356435644,-2.50100335542658,-1.88964632083972,3.21376134896548,2.54968363418311,2.63829775690387 +42671,2874.41317069307,457.755860792079,45,53.0084455445544,54.5986989108911,10.3340940594158,-2.15574257425743,1340.4900990099,346.712871287129,395.675247524752,20,40,12,32,5306860.42118446,397566.39995865,0,0,0,0,0,0,0,53.0084455445544,21927.2051544287,20.6681881188317,11.0839596936142,11.8302543207242,-2.15574257425743,-2.14110236532757,-1.59360920507746,3.77899750703165,2.99812184261877,2.96162780563074 +42672,2874.41801356436,457.765164455445,45,52.5228415841584,54.0985268316832,9.71530583057426,-2.08633663366337,1326.80198019802,351.219801980198,395.590099009901,20,40,12,32,5306869.1861295,397578.146550924,0,0,0,0,0,0,0,52.5228415841584,21941.8618633396,19.4306116611485,10.4202707676251,11.2752968191636,-2.08633663366337,-2.07169642473351,-1.52820162249965,4.28890263662004,3.40266238646347,3.39476038623372 +42673,2874.42280920792,457.774388811881,45,52.0622871287129,53.6241557425743,9.66809020904951,0.811089108910891,1316.69306930693,387.133663366337,420.540594059406,20,40,12,32,5306877.86536934,397589.792781252,0,0,0,0,0,0,0,52.0622871287128,21956.3842267335,19.336180418099,10.3696290720028,11.2098377901293,0.811089108910891,0.825729317840749,0.607083626870747,4.19332448818702,3.32683409232967,3.2815311780935 +42674,2874.42755574257,457.783535148515,45,51.5531485148515,53.0997429702971,10.1055572057228,1.18267326732673,1302.9801980198,349.470297029703,399.109900990099,20,40,12,32,5306886.45539032,397601.340191816,0,0,0,0,0,0,0,51.5531485148514,21970.7796889997,20.2111144114455,10.838839680164,11.5526319349256,1.18267326732673,1.19731347625659,0.893472795363885,3.61059477116067,2.86451711812978,2.94085778407817 +42675,2874.43224415842,457.792608910891,45,51.0435445544554,52.5748508910891,9.77920242024753,2.76267326732673,1286.24752475248,-205.576237623762,-83.4762376237624,20,40,12,32,5306894.93938204,397612.795269526,0,0,0,0,0,0,0,51.0435445544554,21985.038442575,19.5584048404951,10.4888038408124,11.2456253772666,2.76267326732673,2.77731347625659,2.0731416642809,3.81192133564912,3.02424243400234,2.99097719464963 +42676,2874.43680306931,457.801502079208,45,48.7324059405941,50.1943781188119,9.66405610561386,2.6919801980198,1214.45544554455,-4228.24455445544,-3418.08316831683,20,40,12,32,5306903.1874994,397624.021135734,0,0,0,0,0,0,0,48.732405940594,21998.971842135,19.3281122112277,10.3653022447431,11.0155936924741,2.6919801980198,2.70662040694966,2.03561042998677,3.29334593698395,2.61282320790075,2.6254286803539 +42677,2874.4410019802,457.809834752475,45,44.8768613861386,46.2231672277228,8.69626732673268,2.66742574257426,1210.10891089109,-4898.43762376238,-3694.92277227723,20,40,12,32,5306910.78117998,397634.537069944,0,0,0,0,0,0,0,44.8768613861386,22011.947161607,17.3925346534654,9.32728848607434,9.97100602821592,2.66742574257426,2.68206595150411,2.00907077696684,3.24448957916374,2.57406231608777,2.45713960773248 +42678,2874.44475168317,457.817658514851,45,41.3451287128713,42.5854825742574,8.57104950495049,2.83178217821782,1436.07920792079,-4239.58118811881,-3131.38514851485,20,40,11.9108910891089,32,5306917.55403603,397644.404391773,0,0,0,0,0,0,0,41.3451287128712,22023.9196732681,17.142099009901,9.1929845711326,9.6617596476549,2.83178217821782,2.84642238714768,2.15011052277745,2.43460356279436,1.93152763560956,2.03242824375639 +42679,2874.44796752475,457.825132277228,45,37.9347722772277,39.0728154455445,8.04230693069307,5.23821782178218,1320.74752475248,-4787.26633663366,-3713.88910891089,20,40,12,32,5306923.34574535,397653.818240357,0,0,0,0,0,0,0,37.9347722772277,22034.9430654849,16.0846138613861,8.62587521953662,9.01448930432587,5.23821782178218,5.25285803071203,4.00222243342531,2.12778598103407,1.68810950901293,1.68560579052097 +42680,2874.45040405941,457.832335742574,45,34.0884356435644,35.1110887128713,7.69771287128713,5.46207920792079,1192.11386138614,-4321.97623762376,-3332.28118811881,20,40,12,32,5306927.69989423,397662.869821937,0,0,0,0,0,0,0,34.0884356435643,22044.9167709304,15.3954257425743,8.25627662258615,8.50068980538008,5.46207920792079,5.47671941685065,4.22832025536371,1.5226180962406,1.20799089277286,1.21161031953465 +42681,2874.45208990099,457.839141881188,45,30.8672475247525,31.7932649504951,7.34921782178218,5.5,1277.12871287129,-3702.61485148515,-2849.33168316832,20,40,11.9306930693069,32,5306930.67229026,397671.401875824,0,0,0,0,0,0,0,30.8672475247524,22053.9286393573,14.6984356435644,7.88249397072249,8.01968119397674,5.5,5.51464020892985,4.30314718285875,1.15468787447709,0.916088177204461,0.918732620591363 +42682,2874.45304346535,457.845549405941,45,28.663900990099,29.523818019802,6.96264356435643,5.5,1440.9603960396,-2360.82871287129,-1810.73465346535,20,40,11.5148514851485,32,5306932.29707221,397679.413410987,0,0,0,0,0,0,0,28.663900990099,22062.1655093793,13.9252871287129,7.46786899602607,7.56464253453972,5.5,5.51464020892985,4.32117263835527,0.95379533048022,0.756707197710409,0.757492567480955 +42683,2874.45334059406,457.851615148515,45,26.3740594059406,27.1652811881188,6.91354455445544,5.5,1323.89603960396,-2894.87821782178,-2213.08712871287,20,40,11.7722772277228,32,5306932.71346761,397686.977705573,0,0,0,0,0,0,0,26.3740594059406,22069.8256550889,13.8270891089109,7.41520724903499,7.39175905955407,5.5,5.51464020892985,4.38380624965562,0.82640176207561,0.655637684080848,0.663057473159116 +42684,2874.45353,457.857286336634,45,24.0853069306931,24.8078661386139,6.16340594059406,5.5,1288.13861386139,-2726.77623762376,-2084.96930693069,20,40,12,32,5306932.9390475,397694.047065129,0,0,0,0,0,0,0,24.085306930693,22076.8240273111,12.3268118811881,6.61063685197271,6.62253760642463,5.5,5.51464020892985,4.361634971425,0.803548059208448,0.637506371312511,0.663124115873744 +42685,2874.45412019802,457.862422376238,45,22.3148514851485,22.984297029703,4.64982178217822,5.5,1437.57425742574,-475.887128712871,-634.531683168317,20,40,11.7920792079208,32,5306933.91886161,397700.463092683,0,0,0,0,0,0,0,22.3148514851485,22083.2359350119,9.29964356435644,4.98722354565697,5.23353111983897,5.5,5.51464020892985,4.18074922251195,1.3507285698737,1.07161987306218,1.09671035776544 +42686,2874.45536039604,457.866822574257,45,21.233603960396,21.8706120792079,3.01886138613861,5.5,1359.31683168317,1171.98316831683,904.022772277228,20,40,11.8811881188119,32,5306936.11895977,397705.984020414,0,0,0,0,0,0,0,21.233603960396,22089.2806975806,6.03772277227723,3.23791691194071,3.78427743135956,5.5,5.51464020892985,3.80203080320278,2.69587747568214,2.13881303965594,2.1087299867951 +42687,2874.45726336634,457.870582376238,45,21.956900990099,22.615608019802,2.43373267326733,4.45782178217822,1360.63861386139,2919.09702970297,2598.34059405941,20,40,11.8811881188119,32,5306939.56089032,397710.729137222,0,0,0,0,0,0,0,21.956900990099,22095.2370447203,4.86746534653465,2.6103299138204,3.32852946964325,4.45782178217822,4.47246199110807,2.8839310823089,3.5073667487715,2.78261968683499,2.77481274023985 +42688,2874.45988683168,457.873612079208,45,22.6671188118812,23.3471323762376,1.81697579757426,-2.08891089108911,1155.54455445545,2412.37227722772,2147.53564356436,20,40,11.960396039604,32,5306944.35355486,397714.588617926,0,0,0,0,0,0,0,22.6671188118811,22101.4396973056,3.63395159514852,1.94881974063665,2.84476716272457,-2.08891089108911,-2.07427068215925,-1.0327906268359,4.35900977658125,3.45828289090946,3.32476177619471 +42689,2874.46305465347,457.875426633663,45,23.1958415841584,23.8917168316832,3.05422772277228,-5.5,1057.48514851485,903.736633663366,699.275247524753,20,40,12,32,5306950.18139271,397716.952577997,0,0,0,0,0,0,0,23.1958415841584,22107.8263429327,6.10845544554455,3.27584951130593,3.92684000717676,-5.5,-5.48535979107015,-3.69437766057748,3.19956499349467,2.53842075207128,2.5743774280389 +42690,2874.46649653465,457.875745346535,45,22.9471287128713,23.6355425742574,4.33564356435643,-5.5,1048.18811881188,515.780198019802,346.769306930693,20,40,12,32,5306956.54991634,397717.462557933,0,0,0,0,0,0,0,22.9471287128713,22114.2428483232,8.67128712871287,4.65024783371488,5.00254443953459,-5.5,-5.48535979107015,-4.05513489082068,1.84585244624684,1.46443349778521,1.52924235651709 +42691,2874.46978514852,457.874584059406,45,22.5196336633663,23.1952226732673,5.74202970297029,-5.5,1024.41584158416,238.471287128713,38.4356435643564,20,40,12,32,5306962.66721773,397716.124258413,0,0,0,0,0,0,0,22.5196336633663,22120.5648127897,11.4840594059406,6.15868458534774,6.17445783485007,-5.5,-5.48535979107015,-4.33323037411302,0.858551943548235,0.681144491412125,0.695706578741541 +42692,2874.47256990099,457.871951782178,45,22.1982178217822,22.8641643564356,6.29175247524752,-5.5,1009.86633663366,1371.27425742574,1181.73366336634,20,40,11.7920792079208,32,5306967.88367705,397712.937391046,0,0,0,0,0,0,0,22.1982178217821,22126.7664814915,12.583504950495,6.74829650638797,6.62373108267152,-5.5,-5.48535979107015,-4.41979928070527,0.953633081515784,0.756578475168699,0.775867067900281 +42693,2874.47458891089,457.868075841584,45,22.771297029703,23.4544359405941,7.43446534653466,-5.5,1024.77722772277,3291.50891089109,2916.8603960396,20,40,12,32,5306971.7091819,397708.176477613,0,0,0,0,0,0,0,22.7712970297029,22132.9857683177,14.8689306930693,7.97392725194717,7.6287451577032,-5.5,-5.48535979107015,-4.52076491394111,1.85721200749215,1.47344576853393,1.39577985884134 +42694,2874.47565811881,457.863267326732,45,23.5440099009901,24.2503301980198,7.47810891089109,-5.5,1059.72277227723,3715.33267326733,3276.89702970297,20,40,12,32,5306973.79592342,397702.222912237,0,0,0,0,0,0,0,23.5440099009901,22139.4218165025,14.9562178217822,8.02073769371701,7.71011822064134,-5.5,-5.48535979107015,-4.49575108672152,1.88957445633807,1.49912098122859,1.64042932058253 +42695,2874.47558039604,457.857991881188,162.623762376238,24.2709900990099,24.9991198019802,8.83811881188119,-5.5,907.752475247525,4062.83168316832,3581.72772277228,20,40,11.980198019802,32,5306973.76846945,397695.650142901,0,0,0,0,0,0,0,24.2709900990099,22146.0734583342,17.6762376237624,9.47943304125505,8.90882276969974,-5.5,-5.48535979107015,-4.60113812377,2.88424669315137,2.28825845853242,2.24707201012651 +42696,2874.47444514852,457.85281990099,225,24.9230792079208,25.6707715841584,9.06541584158416,-5.5,819.886138613861,4545.17920792079,3979.9603960396,20,40,12,32,5306971.77983367,397689.171490214,0,0,0,0,0,0,0,24.9230792079208,22152.9072899624,18.1308316831683,9.72322326623472,9.13953990321657,-5.5,-5.48535979107015,-4.59691715806057,2.98083580162024,2.36488881230237,2.36913698923209 +42697,2874.4725619802,457.847946930693,225,25.9496138613862,26.7281022772277,9.58221782178218,-5.35643564356436,884.678217821782,5156.59306930693,4452.60396039604,20,40,11.7425742574257,32,5306968.39919049,397683.040657585,0,0,0,0,0,0,0,25.9496138613861,22159.9495971681,19.1644356435644,10.277525586802,9.63812092031004,-5.35643564356436,-5.3417954346345,-4.48992858681146,3.18300927508734,2.52528603555323,2.45522974058134 +42698,2874.47025564356,457.843076831683,225,27.5037227722772,28.3288344554455,10.2081782178218,-5.28851485148515,964.69801980198,5728.97821782178,4865.13465346535,20,40,11.5940594059406,32,5306964.23463537,397676.899489941,0,0,0,0,0,0,0,27.5037227722772,22167.3724497809,20.4163564356436,10.9489071089375,10.2596965397459,-5.28851485148515,-5.2738746425553,-4.43110398778883,3.46559930932605,2.74948289003144,2.69565590864652 +42699,2874.4677550495,457.838013564356,225,29.6658613861386,30.5558372277228,10.5763564356436,-3.57623762376238,1051.92574257426,5855.22277227723,4916.35148514852,20,40,11,32,5306959.71452194,397670.511351541,0,0,0,0,0,0,0,29.6658613861386,22175.2947614695,21.1527128712871,11.3438011850839,10.6985599938576,-3.57623762376238,-3.56159741483252,-2.967829615628,3.21875690598842,2.55364693095658,2.66760246507217 +42700,2874.46501613861,457.832637029703,225,31.8987128712871,32.8556742574257,11.7904829483168,-3.5960396039604,1047.26237623762,5039.8297029703,4324.98613861386,20,40,11,32,5306954.7598911,397663.72521697,0,0,0,0,0,0,0,31.8987128712871,22183.8649676302,23.5809658966337,12.6460275101053,11.8587046659088,-3.5960396039604,-3.58139939503054,-3.00558023942375,3.89608112081395,3.09101180595966,3.09371744851982 +42701,2874.46202336634,457.826852574258,225,33.8541683168317,34.8697933663366,12.5941386138614,-2.48613861386139,876.633663366337,4797.29306930693,4137.11584158416,20,40,10.5643564356436,32,5306949.3440417,397656.422687783,0,0,0,0,0,0,0,33.8541683168316,22193.0021790163,25.1882772277228,13.5079982792144,12.6547683150593,-2.48613861386139,-2.47149840493153,-2.0943377441064,4.20784079966841,3.33835081612893,3.3159662110635 +42702,2874.45881722772,457.820733762376,225,35.6891386138614,36.7598127722772,12.9092178217822,-2.42633663366337,909.311881188119,4589.19504950495,3997.33861386139,20,40,10.6039603960396,32,5306943.54036103,397648.696711663,0,0,0,0,0,0,0,35.6891386138613,22202.6661953254,25.8184356435644,13.8459403591695,13.0284320075199,-2.42633663366337,-2.41169642473351,-2.01439035247196,4.04421576111568,3.20853654629375,3.190569622009 +42703,2874.45542118812,457.814288910891,225,37.4910198019802,38.6157503960396,13.2175544554455,-3.70811881188119,966.638613861386,4285.16534653465,3837.00495049505,20,40,11,32,5306937.39213295,397640.558415153,0,0,0,0,0,0,0,37.4910198019801,22212.8333832792,26.4351089108911,14.1766506081705,13.3934811315837,-3.70811881188119,-3.69347860295133,-3.08889608023274,3.89817809273927,3.09267546869586,3.12108377432547 +42704,2874.45188712871,457.807610693069,225,38.8057326732673,39.9699046534653,13.4452079207921,-2.78069306930693,1335.67326732673,4002.33168316832,3642.74158415841,20,40,11.3960396039604,32,5306930.99341301,397632.124920119,0,0,0,0,0,0,0,38.8057326732673,22223.4419824266,26.8904158415841,14.4208231325838,13.6632146115471,-2.78069306930693,-2.76605286037707,-2.30129015848981,3.77113710697694,2.99188568155969,2.94728407497461 +42705,2874.44819,457.800681089109,225,41.0092772277228,42.2395555445545,13.048396039604,-2.71871287128713,1453.33168316832,5762.51386138614,5283.97623762376,20,40,12,32,5306924.29820043,397623.37295827,0,0,0,0,0,0,0,41.0092772277227,22234.5002384497,26.0967920792079,13.9952176685975,13.452215818785,-2.71871287128713,-2.70407266235727,-2.21829823585996,2.80090113206746,2.22213506292127,2.20497137149749 +42706,2874.44424326733,457.793318811881,225,43.5303069306931,44.8362161386139,13.6980693069307,-2.18089108910891,1542.29702970297,5673.75742574257,5188.86237623762,20,40,11.8217821782178,32,5306917.1502116,397614.073898993,0,0,0,0,0,0,0,43.530306930693,22246.2476033287,27.3961386138614,14.6920327225022,14.1485438796169,-2.18089108910891,-2.16625088017906,-1.77035106321075,2.90564449283105,2.30523470963717,2.37320019470403 +42707,2874.44008108911,457.785474257426,225,45.9304158415842,47.3083283168317,15.005297029703,-1.23049504950495,1631.79702970297,5513.82475247525,5002.1099009901,20,40,11.6435643564356,32,5306909.61381896,397604.167082039,0,0,0,0,0,0,0,45.9304158415841,22258.67856631,30.0105940594059,16.0941158955677,15.3988371243002,-1.23049504950495,-1.21585484057509,-1.00454419470178,3.52418276413303,2.79596091367291,2.72219803266692 +42708,2874.43570772277,457.777209405941,225,48.1550396039604,49.5996907920792,15.660603960396,-2.87564356435644,1708.5297029703,5263.68712871287,4849.2801980198,20,40,11.019801980198,32,5306901.69554149,397593.729836217,0,0,0,0,0,0,0,48.1550396039603,22271.7535916125,31.3212079207921,16.7969734044105,16.0839973142355,-2.87564356435644,-2.86100335542658,-2.36167512016652,3.6111265329548,2.86493899897175,2.91781676998612 +42709,2874.43112435644,457.768610693069,225,50.2624356435644,51.7703087128713,16.3435049504951,-3.48138613861386,1782.66336633663,5107.92079207921,4735.31089108911,20,40,11,32,5306893.39567165,397582.869847676,0,0,0,0,0,0,0,50.2624356435643,22285.4284088843,32.6870099009901,17.5294272610782,16.7853395609366,-3.48138613861386,-3.46674592968401,-2.85623664274934,3.78824839714922,3.00546116890135,2.97939153719286 +42710,2874.42637108911,457.759649009901,225,52.2213564356436,53.7879971287128,16.0567128712871,-2.01168316831683,1853.08910891089,4952.26930693069,4580.08613861386,20,40,11,32,5306884.78913278,397571.552177505,0,0,0,0,0,0,0,52.2213564356435,22299.6681411175,32.1134257425742,17.2218248889581,16.6537468914378,-2.01168316831683,-1.99704295938698,-1.63164581019482,2.99114978108456,2.37307155575715,2.38808710627996 +42711,2874.42145465346,457.750333366337,225,54.1295544554456,55.7534410891089,16.2325445544554,-3.28405940594059,1919.20297029703,4773.90693069307,4417.50396039604,20,40,11,32,5306875.88819953,397559.78826471,0,0,0,0,0,0,0,54.1295544554454,22314.4444957655,32.4650891089109,17.4104153234842,16.9109991559148,-3.28405940594059,-3.26941919701074,-2.66478029883046,2.78644968335688,2.210669798931,2.25338343696102 +42712,2874.41638178218,457.740678217822,225,55.8192673267327,57.4938453465347,16.4049801980198,-2.87445544554455,1920.5396039604,4340.3396039604,4076.78514851485,20,40,11,32,5306866.70502609,397547.59633054,0,0,0,0,0,0,0,55.8192673267326,22329.7241441428,32.8099603960396,17.5953632939614,17.1562944438591,-2.87445544554455,-2.8598152366147,-2.31975576705673,2.47921818073256,1.9669232822835,1.97141278761403 +42713,2874.41117861386,457.730726237624,225,57.4175247524753,59.1400504950495,16.4055148514852,-2.62118811881188,1480.72277227723,4419.01683168317,4185.58712871287,20,40,11,32,5306857.28708893,397535.030378936,0,0,0,0,0,0,0,57.4175247524752,22345.454496618,32.8110297029703,17.5959367431119,17.2478733373285,-2.62118811881188,-2.60654790988203,-2.10252187309877,2.2698870851822,1.80084745695124,1.84946871887712 +42714,2874.40585584158,457.720478514851,225,59.0172376237624,60.7877547524752,17.4712673267327,-1.56158415841584,1501.36138613861,4337.85445544554,4146.78316831683,20,40,11,32,5306847.65417365,397522.092114789,0,0,0,0,0,0,0,59.0172376237623,22361.6278003309,34.9425346534653,18.7390226692798,18.2463248312989,-1.56158415841584,-1.54694394948599,-1.24721285062905,2.82439881513282,2.24077728661105,2.19097114021845 +42715,2874.40040435644,457.709916435643,225,60.607297029703,62.4255159405941,18.9959900990099,0.367920792079208,1543.4702970297,4385.51485148515,4035.46435643564,20,40,11,32,5306837.78982171,397508.758052117,0,0,0,0,0,0,0,60.6072970297029,22378.245381464,37.9919801980198,20.3743828328984,19.636326372816,0.367920792079208,0.382561001009065,0.31261725462353,3.78505993465164,3.00293155647356,2.92751610141322 +42716,2874.3947880198,457.699078217822,225,62.1294653465346,63.9933493069307,18.9260297029703,2.25653465346535,1584.08415841584,4359.74455445544,3935.02871287129,20,40,11,32,5306827.62624878,397495.074596808,0,0,0,0,0,0,0,62.1294653465346,22395.2952470856,37.8520594059406,20.2993459496076,19.6628885191711,2.25653465346535,2.2711748623952,1.85761081413161,3.37715522968973,2.67931451164151,2.75887765346183 +42717,2874.38901247525,457.688014554455,225,63.6059108910891,65.5140882178218,20.3162178217822,2.58950495049505,1621.55445544554,4334.15742574257,3819.79504950495,20,40,11,32,5306817.17278916,397481.105067251,0,0,0,0,0,0,0,63.605910891089,22412.7621447479,40.6324356435644,21.7904093158649,20.9303615525265,2.58950495049505,2.60414515942491,2.14466961690137,4.39659576140894,3.48810227075254,3.44304745081578 +42718,2874.38304623762,457.676754356436,225,65.0244356435643,66.9751687128712,20.5981287128713,3.30485148514851,1655.22772277228,4283.95148514851,3734.42673267327,20,40,11,32,5306806.37048348,397466.884430899,0,0,0,0,0,0,0,65.0244356435643,22430.6320083892,41.1962574257426,22.0927763096292,21.2506343556588,3.30485148514851,3.31949169407837,2.73321923362454,4.34823787260966,3.44973684648267,3.41955422695645 +42719,2874.37692148515,457.665311386139,225,66.4132079207921,68.4056041584158,20.9953762376238,3.32722772277228,1690.17821782178,4171.36435643564,3696.58910891089,20,40,11,32,5306795.27863412,397452.430883985,0,0,0,0,0,0,0,66.413207920792,22448.8888107269,41.9907524752475,22.5188490284789,21.6687780805271,3.32722772277228,3.34186793170213,2.74932574694798,4.36935830167572,3.46649304163511,3.48458800909832 +42720,2874.37061108911,457.65367970297,225,67.7410891089109,69.7733217821782,20.7479306930693,2.35693069306931,1722.92079207921,4052.33465346535,3715.45544554455,20,40,10.6732673267327,32,5306783.84712254,397437.73613077,0,0,0,0,0,0,0,67.7410891089108,22467.5196814365,41.4958613861386,22.2534482660669,21.535527048359,2.35693069306931,2.37157090199916,1.93684400168363,3.78050897718897,2.9993209891344,3.00757386346809 +42721,2874.36417792079,457.641821188119,225,69.002603960396,71.0726820792079,20.8342079207921,3.5909900990099,1758.38613861386,3972.03168316832,3703.81881188119,20,40,10.9306930693069,32,5306772.19325415,397422.754761887,0,0,0,0,0,0,0,69.002603960396,22486.5124491208,41.6684158415842,22.3459859678778,21.6792235449107,3.5909900990099,3.60563030793976,2.94603803904049,3.60563168393507,2.86057958173549,2.82014169125147 +42722,2874.35763683168,457.629736633663,225,70.2501188118812,72.3576223762376,20.7214851485149,3.29425742574257,1788.56435643564,3850.12871287129,3724.88712871287,20,40,10.7524752475248,32,5306760.34452369,397407.488249584,0,0,0,0,0,0,0,70.2501188118811,22505.8599683177,41.4429702970297,22.2250837719727,21.6552437010309,3.29425742574257,3.30889763467243,2.68735986046558,3.1952990615284,2.53503631379541,2.62152227472871 +42723,2874.35101623763,457.617412475248,225,71.4779108910891,73.6222482178218,21.9140198019802,3.40059405940594,1820.25247524752,3777.16138613861,3676.78316831683,20,40,10.8316831683168,32,5306748.35386988,397391.920632547,0,0,0,0,0,0,0,71.477910891089,22525.5498764035,43.8280396039604,23.5041514828191,22.7397303321515,3.40059405940594,3.4152342683358,2.79516535988697,4.071321037712,3.23004090602472,3.19083286041547 +42724,2874.34432594059,457.604842772277,225,72.6730792079208,74.8532715841584,21.9589504950495,1.42693069306931,1849.60396039604,3711.77623762376,3623.05940594059,20,40,11,32,5306736.2395834,397376.044831775,0,0,0,0,0,0,0,72.6730792079207,22545.5752468656,43.917900990099,23.5523424503217,22.848126773426,1.42693069306931,1.44157090199917,1.1794439305058,3.75093111409934,2.97585496746543,2.94197917141503 +42725,2874.33755148515,457.592039207921,225,73.841801980198,76.057056039604,21.3401782178218,1.53306930693069,1878.62871287129,3677.64554455445,3537.62871287129,20,40,11,32,5306723.97463135,397359.874919113,0,0,0,0,0,0,0,73.8418019801979,22565.9253233507,42.6803564356436,22.8886706334324,22.3892448374629,1.53306930693069,1.54770951586055,1.25509257304134,2.87382992578705,2.27999416682375,2.39764949394708 +42726,2874.33068594059,457.579001485148,225,74.920198019802,77.167803960396,21.4338712871287,-0.0111881188118814,1907.12871287129,3608.31584158416,3493.12079207921,20,40,11,32,5306711.54618473,397343.410293022,0,0,0,0,0,0,0,74.9201980198019,22586.5849449954,42.8677425742574,22.9891622873498,22.5307688828027,-0.0111881188118814,0.00345209011797636,-5.31227128345088E-05,2.87741302444843,2.28283686950904,2.19076647499281 +42727,2874.32373376238,457.565752574257,225,75.9744851485148,78.2537197029703,20.9738811881188,-0.335049504950495,1934.19306930693,3576.15643564356,3423.78910891089,20,40,11,32,5306698.96198987,397326.679706412,0,0,0,0,0,0,0,75.9744851485147,22607.5457223331,41.9477623762376,22.4957942487416,22.1999660665037,-0.335049504950495,-0.320409296020637,-0.255888508722791,2.58695648338456,2.05239900907787,2.07791323262659 +42728,2874.3166850495,457.552314950495,225,77.0355445544554,79.3466108910891,22.946,0.136633663366337,1960.48514851485,3565.31188118812,3335.23069306931,20,40,11,32,5306686.20321073,397309.710822552,0,0,0,0,0,0,0,77.0355445544553,22628.8007332792,45.892,24.6110145376446,23.9386967246866,0.136633663366337,0.151273872296194,0.120848258584898,3.71612654738899,2.94824226555625,2.84840727758442 +42729,2874.30953851485,457.538703366337,225,78.0152376237624,80.3556947524753,21.7001881188119,0.441485148514852,1945.88118811881,3500.61584158416,3303.75445544554,20,40,11,32,5306673.26713804,397292.521970078,0,0,0,0,0,0,0,78.0152376237623,22650.3356518436,43.4003762376237,23.27480368089,22.9339916497358,0.441485148514852,0.456125357444709,0.380156244072883,2.58723604395655,2.05262080246505,2.25180894163906 +42730,2874.30229881188,457.524919504951,225,79.0128514851486,81.383237029703,22.5637326732673,-0.862475247524752,1809.85148514851,3493.69108910891,3317.36831683168,20,40,11,32,5306660.16235626,397275.1153958,0,0,0,0,0,0,0,79.0128514851484,22672.1448670251,45.1274653465347,24.2010090144387,23.7257580745395,-0.862475247524752,-0.847835038594895,-0.681795976973867,3.00781641484593,2.38629426856125,2.32367223215631 +42731,2874.29495564357,457.510958019802,225,79.9721188118812,82.3712823762376,21.6856952694059,-0.692475247524753,1738.09405940594,3489.92079207921,3235.94554455446,20,40,10.990099009901,32,5306646.86991224,397257.484097875,0,0,0,0,0,0,0,79.9721188118811,22694.2297171351,43.3713905388119,23.2592591969965,23.0328835438863,-0.692475247524753,-0.677835038594896,-0.551346299402739,3.11689724676398,2.47283511019346,2.32051198118048 +42732,2874.28750287129,457.496854356435,225,80.9180099009901,83.3455501980198,20.2524884488119,0.158811881188119,1761.25247524752,3445.6900990099,3221.25841584158,20,40,10.9405940594059,32,5306633.37765081,397239.672018238,0,0,0,0,0,0,0,80.91800990099,22716.5806877072,40.5049768976238,21.7220555930092,21.8692591845621,0.158811881188119,0.173452090117977,0.116174850746851,2.4562841802589,1.94872826425801,1.96738924947322 +42733,2874.27994980198,457.482606534653,225,81.8426534653465,84.297933069307,19.854801429901,-0.479108910891089,1778.11386138614,3405.61386138614,3209.31386138614,20,40,10.6039603960396,32,5306619.70285723,397221.676994543,0,0,0,0,0,0,0,81.8426534653464,22739.1875079767,39.709602859802,21.295511489294,21.5831527569669,-0.479108910891089,-0.464468701961232,-0.36125401915373,2.97852379294785,2.36305454708041,2.43286822953996 +42734,2874.27231693069,457.468208415841,225,82.7237722772277,85.2054854455446,19.3595753576238,-1.54445544554455,1795.4801980198,3369.51188118812,3207.00495049505,20,40,10.6435643564356,32,5306605.88363333,397203.492054488,0,0,0,0,0,0,0,82.7237722772276,22762.0452171626,38.7191507152475,20.7643506741526,21.2114557078793,-1.54445544554455,-1.5298152366147,-1.20067937243476,3.05657411699172,2.42497689048073,2.45313878758297 +42735,2874.26461079208,457.453648910891,225,83.6047029702971,86.1128440594059,19.94109901,-2.34891089108911,1815.51485148515,3047.41386138614,2987.75346534654,20,40,10.7227722772277,32,5306591.93233145,397185.103599383,0,0,0,0,0,0,0,83.6047029702969,22785.1467669151,39.88219802,21.3880710202964,21.7567518876243,-2.34891089108911,-2.33427068215925,-1.80416844613505,3.17372792288522,2.51792254173921,2.56325191079581 +42736,2874.25686019802,457.438949108911,225,83.9268415841584,86.4446468316832,18.5885709566337,-2.48188118811881,1818.33168316832,1818.5504950495,1939.32079207921,20,40,10.7128712871287,32,5306577.90185488,397166.538844684,0,0,0,0,0,0,0,83.9268415841583,22808.4360181802,37.1771419132673,19.9374004204546,20.624322757094,-2.48188118811881,-2.46724097918896,-1.90069443778189,3.79342030840651,3.0095643788346,2.89295655364458 +42737,2874.24911861386,457.424218613862,225,83.9862277227722,86.5058145544555,18.8103520348515,-1.16455445544554,1820.42574257426,1918.98118811881,2032.56732673267,20,40,11,32,5306563.88880799,397147.936068163,0,0,0,0,0,0,0,83.9862277227721,22831.7543479932,37.620704069703,20.1752744438222,20.8165410583353,-1.16455445544554,-1.14991424651569,-0.885828632293237,3.61780319794185,2.87023602684654,2.88891038130404 +42738,2874.24137287129,457.409445346535,225,84.1472970297029,86.6717159405941,18.6324273929703,0.034158415841584,1823.44554455446,2048.32277227723,2026.19702970297,20,40,10.1485148514851,32,5306549.86906713,397129.279789736,0,0,0,0,0,0,0,84.1472970297028,22855.1108884498,37.2648547859406,19.9844391806851,20.6754222424722,0.034158415841584,0.0487986247714414,0.0390892904253602,3.76588833189712,2.98772149061102,2.87117508438275 +42739,2874.23359188119,457.394661287129,225,84.3077128712871,86.8369442574257,19.5807876789109,-3.12207920792079,1825.41089108911,2040.20495049505,1977.04356435644,20,40,10,32,5306535.78433466,397110.608814273,0,0,0,0,0,0,0,84.307712871287,22878.508386387,39.1615753578218,21.0016146702784,21.4892323218151,-3.12207920792079,-3.10743899899094,-2.39533885948576,3.05804615518527,2.42614475308267,2.52742210373368 +42740,2874.22577584158,457.37988,225,84.4562673267327,86.9899553465346,19.4785770077228,-2.2870297029703,1828.82673267327,1997.45841584158,1942.8396039604,20,40,10,32,5306521.63467619,397091.940042433,0,0,0,0,0,0,0,84.4562673267326,22901.9458328392,38.9571540154456,20.8919873576962,21.4110719580381,-2.2870297029703,-2.27238949404044,-1.76794612497207,3.39688305381723,2.69496586370352,2.7282439192787 +42741,2874.21792673267,457.365103960396,225,84.5565445544554,87.0932408910892,18.5751221120792,-1.95435643564356,1832.21782178218,1916.21782178218,1928.77920792079,20,40,10,32,5306507.42370469,397073.276622096,0,0,0,0,0,0,0,84.5565445544553,22925.4164902649,37.1502442241584,19.9229756968058,20.6507871487751,-1.95435643564356,-1.93971622671371,-1.48874612192717,3.8946735003066,3.08989505005247,3.054931498056 +42742,2874.21006772277,457.350315148515,225,84.6402574257425,87.1794651485149,20.2752458744554,-0.393663366336634,1832.15346534653,1879.40693069307,1909.46732673267,20,40,10,32,5306493.19473634,397054.596874093,0,0,0,0,0,0,0,84.6402574257424,22948.9151866896,40.5504917489109,21.7464643498014,22.1003692061702,-0.393663366336634,-0.379023157406775,-0.301297420298702,3.01098013471527,2.38880425107025,2.41896592638115 +42743,2874.2022029703,457.335515346535,225,84.6980396039604,87.2389807920792,20.1585093507921,-0.0495049504950496,1835.90594059406,1831.27128712871,1879.1198019802,20,40,10,32,5306478.95543448,397035.903155371,0,0,0,0,0,0,0,84.6980396039603,22972.4330485708,40.3170187015841,21.6212571554776,22.0076512130836,-0.0495049504950496,-0.0348647415651923,-0.0298217268947828,3.27810199764053,2.60072921010689,2.62155161197314 +42744,2874.19433326733,457.320702871287,225,84.7498118811881,87.2923062376237,21.201004400396,-3.51247524752475,1835.58910891089,1806.80891089109,1891.05445544554,20,40,10,32,5306464.70730388,397017.193395457,0,0,0,0,0,0,0,84.749811881188,22995.9693576742,42.4020088007921,22.7393980437033,22.893428317797,-3.51247524752475,-3.4978350385949,-2.75716033648742,2.65965604683941,2.11007624986389,2.13289046841199 +42745,2874.18647970297,457.305864158416,225,84.7595940594059,87.3023818811881,19.1265357538614,-2.00138613861386,1838.17326732673,1762.76732673267,1920.11287128713,20,40,10,32,5306450.48971063,396998.451396471,0,0,0,0,0,0,0,84.7595940594058,23019.5141436753,38.2530715077228,20.5144011807314,21.130874240078,-2.00138613861386,-1.98674592968401,-1.52730368764281,3.56393937173381,2.82750238820802,2.76837244541534 +42746,2874.17864950495,457.290980792079,225,84.8097623762376,87.3540552475248,21.6694625962376,-4.15653465346535,1837.92079207921,1740.11881188119,1896.11287128713,20,40,10,32,5306436.31645286,396979.654459617,0,0,0,0,0,0,0,84.8097623762375,23043.0720503309,43.3389251924752,23.2418486437266,23.2943098326009,-4.15653465346535,-4.14189444453549,-3.29175954941319,3.18908668411686,2.53010763512403,2.53777537835998 +42747,2874.17083465347,457.276072871287,225,84.8789702970297,87.4253394059406,21.7038448846535,-3.88415841584158,1839.22772277228,1795.6603960396,1858.79306930693,20,40,10,32,5306422.17222856,396960.827353998,0,0,0,0,0,0,0,84.8789702970296,23066.6381409525,43.4076897693069,23.278725790072,23.3278700821862,-3.88415841584158,-3.86951820691173,-3.07340136494847,2.97120275633499,2.35724629773947,2.41426498304211 +42748,2874.16301940594,457.261158415842,225,84.882099009901,87.428561980198,19.4499504948515,-3.44534653465346,1838.67821782178,1815.74851485148,1830.28712871287,20,40,10,32,5306408.02747642,396941.992003513,0,0,0,0,0,0,0,84.8820990099009,23090.2123335267,38.899900989703,20.8612836392076,21.4110564564048,-3.44534653465346,-3.43070632572361,-2.66285135430907,3.46506962434169,2.74906265685627,2.80230725574899 +42749,2874.15518861386,457.246250396039,225,84.9338217821782,87.4818364356435,20.1947882288119,-1.45445544554455,1839.18316831683,1841.95841584158,1815.69405940594,20,40,10,32,5306393.85384764,396923.164062082,0,0,0,0,0,0,0,84.9338217821781,23113.7967303364,40.3895764576237,21.6601685123309,22.0500918641747,-1.45445544554455,-1.4398152366147,-1.11802373637226,3.25020345170462,2.57859549877415,2.36730846643243 +42750,2874.14733425743,457.231351485149,225,84.976594059406,87.5258918811881,21.067300880198,-2.28039603960396,1841.80693069307,1785.77128712871,1799.61782178218,20,40,10,32,5306379.63642719,396904.34659378,0,0,0,0,0,0,0,84.9765940594058,23137.3981843518,42.134601760396,22.5959926885508,22.7934971316365,-2.28039603960396,-2.2657558306741,-1.77962455522546,2.71633394116001,2.15504246977804,2.20662815367206 +42751,2874.13945881188,457.216462673267,225,85.061603960396,87.6134520792079,21.1793366336634,-0.532277227722772,1841.75742574257,1762.83069306931,1778.61188118812,20,40,10,32,5306365.37977796,396885.540913451,0,0,0,0,0,0,0,85.0616039603959,23161.0129413375,42.3586732673267,22.7161580139788,22.8942749809641,-0.532277227722772,-0.517637018792915,-0.412292296446637,2.57130842589195,2.03998439835748,2.10084083269484 +42752,2874.13156435644,457.201585841584,225,85.0608910891089,87.6127178217822,22.2292277227723,-1.68554455445545,1843.39603960396,1722.28910891089,1734.12277227723,20,40,10,32,5306351.08770933,396866.749432821,0,0,0,0,0,0,0,85.0608910891088,23184.6409680427,44.4584554455446,23.8422316153474,23.7879156090844,-1.68554455445545,-1.67090434552559,-1.31441427548325,2.69634692808168,2.13918548644653,2.32948100358823 +42753,2874.12367366337,457.18671039604,225,85.0273960396039,87.5782179207921,26.3354356435644,-5.22386138613861,1840.01485148515,1602.82574257426,1729.65445544555,20,40,10,32,5306336.80263922,396847.959710113,0,0,0,0,0,0,0,85.0273960396039,23208.2664284113,52.6708712871287,28.2463954274805,27.2744474166723,-5.22386138613861,-5.20922117720876,-4.26446238012686,5.22157778535628,4.14261358523794,3.84603918643722 +42754,2874.11580663366,457.171823663366,225,84.9874158415841,87.5370383168316,25.3828316831683,-2.07069306930693,1841.9702970297,1669.47128712871,1756.05742574257,20,40,10,32,5306322.56171337,396829.156619026,0.198019801980198,0.198019801980198,525378.087520148,39288.9589969149,0.105719317585702,0,0,84.987415841584,23231.8774010735,50.7656633663366,27.2246683326524,26.4663030502738,-2.07069306930693,-2.05605286037708,-1.66919195371299,4.16127737169149,3.30140905307536,3.36858717701582 +42755,2874.10795821782,457.156922475248,225,85.0054158415841,87.5555783168317,22.9504845985149,-2.0860396039604,1841.68811881188,1694.13168316832,1789.35544554455,20,40,10,32,5306308.35564906,396810.336046212,2,2,5306310.57250999,396808.529899424,13.9097603880735,0,0,85.0054158415841,23255.4858410351,45.9009691970297,24.6158245489427,24.398352740666,-2.0860396039604,-2.07139939503054,-1.65348695472817,3.38108414402542,2.68243157214915,2.84884960826731 +42756,2874.10015564356,457.141980495049,225,85.0071584158416,87.5573731683168,23.961702970297,-4.39227722772277,1839.16336633663,1674.6396039604,1780.50198019802,20,40,10,32,5306294.23546839,396791.466089531,2,2,5306295.69876532,396790.273895186,37.4577957872576,0,0,85.0071584158414,23279.0974350395,47.9234059405941,25.7004192516649,25.2553591708689,-4.39227722772277,-4.37763701879292,-3.52039036461711,3.21102006588052,2.54750879795247,2.40025186465674 +42757,2874.09232653465,457.127032574258,225,85.0233366336633,87.5740367326732,24.0744059405941,-3.15049504950495,1841.5495049505,1663.26138613861,1788.79702970297,20,40,10,32,5306280.06632942,396772.587761432,2,2,5306280.80138881,396771.988885272,61.0432449971989,0,0,85.0233366336633,23302.715129594,48.1488118811881,25.8213002087126,25.3543443809896,-3.15049504950495,-3.1358548405751,-2.52665142706111,3.07175805434658,2.43702328483687,2.38109694120177 +42758,2874.08453366337,457.112042673267,225,85.037603960396,87.5887320792079,22.3589801980198,-3.8609900990099,1842.77722772277,1620.47623762376,1738.22376237624,20,40,10,32,5306265.96531144,396753.658251497,2,2,5306265.906127,396753.706470932,84.6253462295661,0,0,85.0376039603959,23326.3390507986,44.7179603960396,23.98139922864,23.8941905428681,-3.8609900990099,-3.84634989008005,-3.05289020697331,2.50519122435402,1.98752936875376,2.07530198296929 +42759,2874.0767539604,457.097029306931,225,85.0386633663366,87.5898232673268,21.9023855884158,-2.24831683168317,1841.09900990099,1605.88217821782,1701.04752475248,20,40,10,32,5306251.88926985,396734.699857106,2,2,5306251.00668553,396735.418926493,108.214064670845,0,0,85.0386633663365,23349.9624043464,43.8047711768317,23.4916730639589,23.5085913498829,-2.24831683168317,-2.23367662275331,-1.75437053976427,2.98374893725,2.36719999021287,2.42033906409288 +42760,2874.06899514851,457.082003663366,225,85.0388712871287,87.5900374257426,24.2828910891089,-4.39712871287129,1841.35643564356,1655.94455445545,1710.05049504951,20,40,10,32,5306237.85226076,396715.726770268,2,2,5306236.11562187,396717.141664954,131.789519413698,0,0,85.0388712871286,23373.5816439504,48.5657821782178,26.0449135191363,25.531043046462,-4.39712871287129,-4.38248850394143,-3.53614518219882,3.25527357911615,2.58261795703434,2.43829089690831 +42761,2874.0612670297,457.066956732674,225,85.0601881188119,87.6119937623762,22.8885643564356,-4.60524752475248,1843.23762376238,1679.82871287129,1668.09207920792,20,40,9.88118811881188,32,5306223.87264185,396696.728093535,2,2,5306221.23492371,396698.877126017,155.348563542054,0,0,85.0601881188118,23397.2067619097,45.7771287128713,24.5494112316767,24.345187837657,-4.60524752475248,-4.59060731582262,-3.66535236982031,2.47651765575887,1.96478078208468,2.15828141926407 +42762,2874.05351881188,457.051954257426,225,85.0391683168317,87.5903433663367,23.9407722772277,-4.36544554455446,1841.25742574257,1669.33861386139,1630.15940594059,20,40,10,32,5306209.85486258,396677.784031581,2,2,5306206.36574506,396680.626726094,178.889370053029,0,0,85.0391683168316,23420.8285938954,47.8815445544554,25.6779697793642,25.2399221881889,-4.36544554455446,-4.3508053356246,-3.50183358960538,3.2047919016359,2.54256759457076,2.3774810283406 +42763,2874.04566465347,457.037025742574,225,85.0297425742574,87.5806348514851,21.6428542353465,-3.53178217821782,1839.21782178218,1734.90693069307,1628.60198019802,20,40,10,32,5306195.639256,396658.928488167,2,2,5306191.46098706,396662.33265616,202.486505592032,0,0,85.0297425742573,23444.4510583894,43.2857084706931,23.2133095189679,23.2854438957947,-3.53178217821782,-3.51714196928797,-2.76291293442967,2.67148412288137,2.11946022354251,2.19136944501699 +42764,2874.03773633663,457.022174257426,225,85.040702970297,87.5919240594059,22.5576435643564,-4.30554455445545,1839.18316831683,1726.44257425742,1641.7396039604,20,40,10,32,5306181.28462432,396640.166339862,2,2,5306176.54649754,396644.026641769,226.099048034908,0,0,85.0407029702969,23468.071259407,45.1152871287129,24.1944780657797,24.063732551848,-4.30554455445545,-4.29090434552559,-3.40761790927479,3.03169726243136,2.40524048131553,2.36906677787851 +42765,2874.02979673267,457.007348712871,225,85.0251683168316,87.5759233663367,23.8518316831683,-4.00039603960396,1842.5099009901,1640.43762376238,1680.36435643564,20,40,10,32,5306166.90856607,396621.436035425,1.56435643564356,2,5306161.63904681,396625.729095468,140.203588260413,0,0,85.0251683168315,23491.6890921353,47.7036633663366,25.5825754512293,25.1651926815935,-4.00039603960396,-3.98575583067411,-3.20841292652312,2.80823757833174,2.22795553773006,2.26157508147173 +42766,2874.02189336634,456.992506138614,225,85.0081287128713,87.5583725742574,21.6697920791089,-3.55990099009901,1838.88613861386,1660.5198019802,1710.29702970297,20,40,10,32,5306152.60007224,396602.685627952,1,2,5306146.74930098,396607.451980933,21.9297216364896,0,0,85.0081287128712,23515.3044081969,43.3395841582178,23.2422020346329,23.3068133498644,-3.55990099009901,-3.54526078116916,-2.81031832363376,2.88434317710994,2.28833500546401,2.24565970572428 +42767,2874.01394980198,456.977693465346,225,85.0147722772277,87.5652154455446,22.5966732673267,-3.20891089108911,1842.4504950495,1666.14158415842,1680.30693069307,20,40,10,32,5306138.21651018,396583.971038019,1,2,5306131.84739435,396589.159662364,45.5236984051738,0,0,85.0147722772276,23538.9193407327,45.1933465346534,24.236339853769,24.0964766932679,-3.20891089108911,-3.19427068215925,-2.54311163665075,2.53951529115459,2.01476085917174,2.01460140693693 +42768,2874.00599326733,456.962892871287,225,85.0190099009901,87.5695801980199,22.2818811881188,-3.3619801980198,1839.4900990099,1635.10891089109,1684.32871287129,20,40,10,32,5306123.80871261,396565.270970167,1,2,5306116.9429309,396570.864205254,69.1217233588694,0,0,85.01900990099,23562.5356010187,44.5637623762376,23.8987057372467,23.8279862266713,-3.3619801980198,-3.34733998908995,-2.65102733547193,2.22126572131355,1.76227300095827,1.77642019634163 +42769,2873.9980439604,456.948086435643,225,85.030801980198,87.581726039604,21.5582535757426,-1.74188118811881,1842.28217821782,1636.75544554455,1724.13366336634,20,40,10,32,5306109.41449328,396546.563772465,1,2,5306102.04039271,396552.571111434,92.7167000687204,0,0,85.0308019801979,23586.1541155402,43.1165071514851,23.1225700409148,23.2152295656023,-1.74188118811881,-1.72724097918895,-1.37475527880501,2.66274270539548,2.11252509467536,2.19129895363433 +42770,2873.9901060396,456.933262475248,225,85.0466138613861,87.5980122772277,23.3893366336634,-3.15138613861386,1843.51485148515,1591.3801980198,1682.43762376238,20,40,10,32,5306095.04181604,396527.835030256,1,2,5306087.13589819,396534.27561619,116.314774209131,0,0,85.046613861386,23609.7743360848,46.7786732673268,25.0865206971565,24.7727035542433,-3.15138613861386,-3.13674592968401,-2.51207063210332,2.52881437478016,2.00627113377274,1.95123143037637 +42771,2873.98219158416,456.918408118812,225,85.0109306930693,87.5612586138614,21.1012673267327,-1.64861386138614,1841.62871287129,1562.64752475248,1684.49801980198,20,40,10,32,5306080.71334351,396509.06911201,1,2,5306072.23083344,396515.979420977,139.913751188447,0,0,85.0109306930692,23633.3963494511,42.2025346534654,22.6324238185716,22.8242289956056,-1.64861386138614,-1.63397365245628,-1.29069150396197,2.6011540295054,2.06366283580898,2.09380890199314 +42772,2873.97430940594,456.903527623762,225,85.0102772277228,87.5605855445544,19.2978608360396,-1.8939603960396,1839.18316831683,1611.04059405941,1716.92475247525,20,40,10,32,5306066.44530354,396490.271613836,1,2,5306057.33441229,396497.693835915,163.499042879343,0,0,85.0102772277227,23657.010798736,38.5957216720792,20.6981580049339,21.2899643833666,-1.8939603960396,-1.87932018710975,-1.46056249447895,3.53341855054012,2.80328825721027,2.67306974869396 +42773,2873.96645683168,456.888611485149,225,85.036099009901,87.5871819801981,19.9231237623762,-2.72663366336634,1841.33168316832,1583.13267326733,1691.99603960396,20,40,10,32,5306052.23295706,396471.430607506,1,2,5306042.43890328,396479.409370526,187.082890384488,0,0,85.0360990099008,23680.6303348746,39.8462475247525,21.3687914473605,21.8232420884713,-2.72663366336634,-2.71199345443648,-2.10878521363938,3.14911272752663,2.49839372365252,2.74266685359001 +42774,2873.95863237624,456.873657029703,225,85.0248118811881,87.5755562376237,19.2378844884158,-3.28514851485148,1839.82673267327,1600.15247524752,1657.37425742574,20,40,10,32,5306038.07361325,396452.542713905,1,2,5306027.54157834,396461.122676047,210.669613034829,0,0,85.024811881188,23704.2465910078,38.4757689768317,20.6338296355762,21.2391085124374,-3.28514851485148,-3.27050830592163,-2.51509994482492,3.54009124190697,2.80858213255652,2.66391749071402 +42775,2873.95083138614,456.85868980198,225,85.0171188118812,87.5676323762376,19.4031633666337,-1.83178217821782,1841.90594059406,1618.56633663366,1721.87524752475,20,40,10,32,5306023.95808162,396433.639597881,1,2,5306012.65427673,396442.848285365,234.240465882263,0,0,85.017118811881,23727.8599323719,38.8063267332673,20.8111015293522,21.3807161190004,-1.83178217821782,-1.81714196928797,-1.40953148543854,3.31416608792133,2.62934117309544,2.6481200419645 +42776,2873.94305178218,456.843695643564,225,85.029198019802,87.580073960396,19.7621430145545,-2.14257425742574,1841.47524752475,1573.91683168317,1676.72079207921,20,40,10,32,5306009.88282756,396414.703554189,0.188118811881188,0.376237623762376,998159.144009643,74576.3293262674,46.6811636727511,0,0,85.0291980198018,23751.47613823,39.5242860291089,21.1961295662082,21.6865005300022,-2.14257425742574,-2.12793404849589,-1.64880887407386,3.32630198575884,2.63896936160806,2.65730405923805 +42777,2873.9352860396,456.828677623762,225,85.0065643564356,87.5567612871287,18.8140770079208,-2.72732673267327,1839.56435643564,1607.86435643564,1670.06732673267,20,40,10,32,5305995.83384428,396395.738156004,0,0,0,0,0,0,0,85.0065643564355,23775.0943027239,37.6281540158416,20.1792697095051,20.87792229344,-2.72732673267327,-2.71268652374341,-2.08576805430473,3.84490192543166,3.05040805766986,3.0341785801883 +42778,2873.92753188119,456.813648217822,225,85.0192277227723,87.5698045544554,19.3047772277228,-3.35980198019802,1837.33663366337,1617.29306930693,1693.49801980198,20,40,10,32,5305981.80663482,396376.758867416,0,0,0,0,0,0,0,85.0192277227722,23798.7093482135,38.6095544554455,20.7055762659059,21.2955899147456,-3.35980198019802,-3.34516177126817,-2.57838641479409,3.48781018528945,2.76710420686101,2.80233914082111 +42779,2873.91978920792,456.798600990099,225,85.0193168316832,87.5698963366337,21.6770198019802,-3.50425742574257,1840.72277227723,1587.21584158416,1643.15148514852,20,40,10,32,5305967.80115989,396357.757668639,0,0,0,0,0,0,0,85.019316831683,23822.3275759637,43.3540396039604,23.2499542177,23.3152839709177,-3.50425742574257,-3.48961721681272,-2.75523265987071,2.75735278996702,2.18758536146785,2.25042431844899 +42780,2873.91205811881,456.783538316831,225,84.9972277227723,87.5471445544554,24.6388118811881,-4.51584158415842,1841.22277227723,1603.68910891089,1661.61881188119,20,40,10,32,5305953.81754995,396338.737522977,0,0,0,0,0,0,0,84.9972277227721,23845.9393791816,49.2776237623762,26.4266607425352,25.8311527310506,-4.51584158415842,-4.50120137522856,-3.64427888632823,3.56254486672658,2.82639603767087,2.65860387843281 +42781,2873.90434118812,456.768462475247,225,84.9911584158416,87.5408931683168,24.4136732673267,-5.04287128712871,1837.96534653465,1633.24257425743,1679.93861386139,20,40,10,32,5305939.86052261,396319.701352856,0,0,0,0,0,0,0,84.9911584158415,23869.5513247811,48.8273465346535,26.1851855530151,25.6382251058911,-5.04287128712871,-5.02823107819886,-4.06497027645245,3.45784199207304,2.74332851119072,2.80478508573369 +42782,2873.89662326733,456.753378019802,225,84.9948811881188,87.5447276237623,24.6813465346535,-4.93465346534654,1841.18811881188,1659.62475247525,1630.92574257426,20,40,10,32,5305925.90191582,396300.654327423,0,0,0,0,0,0,0,84.9948811881187,23893.1618750287,49.3626930693069,26.4722818082891,25.8657759446116,-4.93465346534654,-4.92001325641668,-3.98463410018398,3.67940140205187,2.9191058450628,2.9203947544511 +42783,2873.88887881188,456.738332475247,225,84.9900693069307,87.5397713861386,24.1395742574257,-5.35465346534653,1840.10891089109,1713.00693069307,1654.78811881188,20,40,10,32,5305911.89334836,396281.654796199,0,0,0,0,0,0,0,84.9900693069306,23916.7711221134,48.2791485148515,25.8911972885059,25.4038099203853,-5.35465346534653,-5.34001325641668,-4.30784135273945,3.30357556534636,2.62093903019969,2.53870422124941 +42784,2873.88110613861,456.723341782178,225,84.9826237623763,87.5321024752475,20.2848729373267,-3.61118811881188,1837.68811881188,1765.10891089109,1634.13366336634,20,40,10,32,5305897.83134501,396262.722559712,0,0,0,0,0,0,0,84.9826237623761,23940.3767224984,40.5697458746535,21.7567899744976,22.1264811792804,-3.61118811881188,-3.59654790988203,-2.79617395765734,2.92675736869823,2.32198491235103,2.34635320290749 +42785,2873.87330108911,456.708404653465,225,85.0195544554455,87.5701410891089,20.1770913093069,-2.27732673267327,1840.30693069307,1733.76534653465,1673.36930693069,20,40,10,32,5305883.70823113,396243.855876136,0,0,0,0,0,0,0,85.0195544554454,23963.9868710957,40.3541826186139,21.6411874636423,22.0400322385435,-2.27732673267327,-2.26268652374341,-1.75419459611618,2.8195002587793,2.23689094670914,2.23302615855779 +42786,2873.86546871287,456.693489306931,225,85.0551485148515,87.606802970297,21.5714383938614,-2.79306930693069,1840.62871287129,1655.45940594059,1690.10891089109,20,40,10,32,5305869.53407144,396225.01532329,0,0,0,0,0,0,0,85.0551485148514,23987.6076712057,43.1428767877228,23.1367115797624,23.2265576000347,-2.79306930693069,-2.77842909800084,-2.18756541900921,2.4135536490531,1.91482738480085,2.01050703379571 +42787,2873.85760514851,456.678593168317,225,85.064603960396,87.6165420792079,20.4909350934654,-1.55970297029703,1840.75247524752,1580.42475247525,1592.48316831683,20,40,9.86138613861386,32,5305855.30177075,396206.197565564,0,0,0,0,0,0,0,85.0646039603959,24011.2357357272,40.9818701869307,21.9778044746452,22.3071644237273,-1.55970297029703,-1.54506276136717,-1.20883058359431,2.77709687053409,2.20324961080922,2.26058570280209 +42788,2873.84972821782,456.663726732673,225,84.905495049505,87.4526599009901,20.6262315732673,-1.51792079207921,1830.5198019802,815.654455445545,829.368316831683,20,40,9.98019801980198,32,5305841.0441057,396187.41626995,0,0,0,0,0,0,0,84.9054950495049,24034.8488713433,41.2524631465347,22.1229183782144,22.4160577528745,-1.51792079207921,-1.50328058314935,-1.18813304427399,3.02175477154885,2.39735246365227,2.34258574080548 +42789,2873.84186118812,456.648971881188,225,84.0389009900991,86.560068019802,19.7087106709901,-1.26415841584158,1811.30198019802,-74.829702970297,3.40099009900992,20,40,10,32,5305826.80233974,396168.774210248,0,0,0,0,0,0,0,84.0389009900989,24058.3241038515,39.4174213419802,21.1388200488961,21.5840858244733,-1.26415841584158,-1.24951820691173,-0.973730612972185,2.97546784985159,2.36063007081927,2.29430883643904 +42790,2873.83401990099,456.634428118811,225,82.8154455445545,85.2999089108911,20.5479884488119,-1.91792079207921,1780.67326732673,-1066.77128712871,-834.021782178218,20,40,10,32,5305812.60358504,396150.395867955,0,0,0,0,0,0,0,82.8154455445544,24081.5117179605,41.0959768976238,22.038997752683,22.2267645032616,-1.91792079207921,-1.90328058314935,-1.47260123604757,2.82221336816228,2.23904343092947,2.37235385947951 +42791,2873.82638772277,456.620123168317,225,80.5875049504951,83.0051300990099,18.2857447745545,-3.39435643564356,1723.97524752475,-3505.34455445545,-2687.95148514851,20,40,10,32,5305798.78687486,396132.321893021,0,0,0,0,0,0,0,80.5875049504949,24104.2395663653,36.5714895491089,19.6126004740791,20.1743472414484,-3.39435643564356,-3.37971622671371,-2.61657154770732,3.31886277021405,2.63306735331743,2.51331884694008 +42792,2873.81910148515,456.606219108911,225,77.7271089108911,80.0589221782178,21.1870445544554,-3.89544554455446,1665.16831683168,-3502.6900990099,-2706.3,20,40,10,32,5305785.60203104,396114.758755067,0,0,0,0,0,0,0,77.727108910891,24126.2226934005,42.3740891089109,22.7244252392324,22.4780983858997,-3.89544554455446,-3.8808053356246,-3.097131876819,3.17595309151209,2.51968791116624,2.42128023478779 +42793,2873.81212564356,456.592771287129,225,74.9163366336633,77.1638267326733,19.7979702970297,-1.70287128712871,1603.80693069307,-3490.61287128713,-2775.15742574257,20,40,10,32,5305772.98196701,396097.77422279,0,0,0,0,0,0,0,74.9163366336632,24147.4178128999,39.5959405940594,21.2345565587054,21.1371585389695,-1.70287128712871,-1.68823107819886,-1.34860656198883,2.16864362385032,1.72052450561914,1.81934514210607 +42794,2873.80539722772,456.579818613861,225,72.0710891089109,74.2332217821782,18.6570792079208,-3.17277227722772,1537.98514851485,-3524.01683168317,-2837.72079207921,20,40,10,32,5305760.80916233,396081.41467588,0,0,0,0,0,0,0,72.0710891089108,24167.829883527,37.3141584158416,20.0108797880296,20.0025850832924,-3.17277227722772,-3.15813206829787,-2.50939596061947,1.80224329808782,1.42983555497358,1.39537945317367 +42795,2873.79891653465,456.567374059406,225,69.2377227722772,71.3148544554456,18.4024158415842,-3.61851485148515,1476.65346534653,-3510.90396039604,-2831.12475247525,20,40,10,32,5305749.083871,396065.696289157,0,0,0,0,0,0,0,69.2377227722771,24187.4513675479,36.8048316831683,19.7377374620853,19.6230353769123,-3.61851485148515,-3.6038746425553,-2.87170608964428,1.80378254650257,1.43105673976793,1.4230238158474 +42796,2873.79265039604,456.55544980198,225,66.4035544554455,68.3956610891089,17.9009702970297,-4.18653465346535,1418.60396039604,-3582.91584158416,-2886.03663366337,20,40,10,32,5305737.74437551,396050.633134017,0,0,0,0,0,0,0,66.4035544554454,24206.2878705457,35.8019405940594,19.1999058754529,19.0333073260566,-4.18653465346535,-4.17189444453549,-3.33462127961746,1.89765006619594,1.50552788206996,1.50048559955536 +42797,2873.78669178218,456.544007425743,225,63.4414851485148,65.3447297029703,17.3504059405941,-4.4950495049505,1503.77227722772,-4110.30099009901,-3305.65247524752,20,40,10,32,5305726.96374578,396036.180464895,0,0,0,0,0,0,0,63.4414851485148,24224.323353549,34.7008118811881,18.609391302972,18.3953639817917,-4.4950495049505,-4.48040929602064,-3.59170200294803,1.93195160730734,1.53274150140953,1.59164569940736 +42798,2873.78099,456.533128415842,225,60.2321287128713,62.0390925742575,17.0065841584158,-4.5960396039604,1496.52475247525,-4331.7603960396,-3339.08217821782,20,40,10,32,5305716.64624746,396022.438104434,0,0,0,0,0,0,0,60.2321287128712,24241.499558857,34.0131683168317,18.2406210214612,17.9185877659037,-4.5960396039604,-4.58139939503054,-3.69034535408248,2.23463971838783,1.77288345324805,1.71332682794855 +42799,2873.77558831683,456.52281970297,225,57.0599306930693,58.7717286138614,15.5910594059406,-5.29326732673267,1426.75247524752,-4312.62871287128,-3283.04455445545,20,40,10,32,5305706.87186593,396009.416137597,0,0,0,0,0,0,0,57.0599306930692,24257.7833044291,31.1821188118812,16.7223825371257,16.5317110303049,-5.29326732673267,-5.27862711780282,-4.22780379260537,1.81967458320141,1.44366491488894,1.46162990319082 +42800,2873.77049871287,456.513058217822,225,53.8972871287129,55.5142057425743,13.7051089108911,-2.63752475247525,1347.29207920792,-4227.77524752475,-3292.65445544554,20,40,10,32,5305697.66330573,395997.086233914,0,0,0,0,0,0,0,53.8972871287128,24273.186893153,27.4102178217822,14.6995831363176,14.7481822387436,-2.63752475247525,-2.62288454354539,-2.06980081898418,1.49658451095389,1.18733677470463,1.22706712222319 +42801,2873.76571524752,456.503846138614,225,50.7979702970297,52.3219094059406,13.9609405940594,-3.45009900990099,1268.80198019802,-4194.99603960396,-3202.91584158416,20,40,10,32,5305689.00950956,395985.4509154,0,0,0,0,0,0,0,50.7979702970296,24287.7223217284,27.9218811881188,14.9739785548501,14.7883289320231,-3.45009900990099,-3.43545880097114,-2.7605299369888,1.53050581773308,1.21424872968624,1.20095294540832 +42802,2873.7611890099,456.495195940594,225,47.647603960396,49.0770320792079,13.0641188118812,-1.12,1232.52475247525,-4818.40693069307,-3662.97920792079,20,40,10,32,5305680.81959345,395974.52409611,0,0,0,0,0,0,0,47.6476039603959,24301.3964508538,26.1282376237624,14.0120813213948,13.8458239283842,-1.12,-1.10535979107014,-0.892014937701832,1.37471595606045,1.09065060974301,1.1398637157685 +42803,2873.75696257426,456.487141782178,225,43.8916732673267,45.2084234653465,12.9728613861386,-2.5370297029703,1499.42574257426,-6080.85643564356,-4688.93069306931,20,40,10,32,5305673.17164846,395964.349755212,0,0,0,0,0,0,0,43.8916732673267,24314.1244345997,25.9457227722772,13.9142020469409,13.5519714573868,-2.5370297029703,-2.52238949404044,-2.04411883047497,2.0764016122862,1.64734298349246,1.55708632742971 +42804,2873.75310069307,456.479797227723,225,39.7828415841584,40.9763268316832,11.1452475247525,-2.0239603960396,1374.24752475248,-6083.27128712872,-4660.70297029703,20,40,10,32,5305666.18306391,395955.071530536,0,0,0,0,0,0,0,39.7828415841584,24325.733322856,22.290495049505,11.9539723201138,11.7622530302667,-2.0239603960396,-2.00932018710975,-1.60831030482729,1.40025015437846,1.11090853200111,1.13951413228374 +42805,2873.74960356436,456.473161485149,225,35.6047821782178,36.6729256435644,7.86087128712871,-2.77752475247525,1268.9900990099,-6583.2099009901,-5115.33861386139,20,40,10,32,5305659.85422016,395946.688448412,0,0,0,0,0,0,0,35.6047821782178,24336.2145950507,15.7217425742574,8.43127418835867,8.72783012410807,-2.77752475247525,-2.76288454354539,-2.07907360245679,1.94210483281909,1.5407967084117,1.32403999202786 +42806,2873.74654158416,456.467178019802,225,32.4732277227723,33.4474245544555,6.81279537954455,-2.38316831683168,1579.57920792079,-1269.90495049505,-861.79702970297,20,40,10,32,5305654.31678088,395939.132439325,0,0,0,0,0,0,0,32.4732277227722,24345.5925528615,13.6255907590891,7.30714748226137,7.65678899216157,-2.38316831683168,-2.36852810790183,-1.696711333298,2.11334845400105,1.67665528998511,1.62239035661157 +42807,2873.74366267327,456.461520594059,225,31.1050099009901,32.0381601980198,8.12188118811881,-2.37138613861386,1549.53465346535,-482.324752475248,-281.880198019802,20,40,10,32,5305649.11113434,395931.988686293,0,0,0,0,0,0,0,31.1050099009901,24354.43341257,16.2437623762376,8.71122356810837,8.69222228411145,-2.37138613861386,-2.35674592968401,-1.88176052746125,1.13336669253814,0.899172711882586,1.18646877260087 +42808,2873.74087396039,456.456117524752,225,29.9838811881188,30.8833976237624,7.4060297029703,-1.59574257425743,1508.78217821782,-195.608910891089,-32.739603960396,20,40,10,32,5305644.06685996,395925.164791826,0,0,0,0,0,0,0,29.9838811881188,24362.8921318219,14.8120594059406,7.94342825268151,8.01866080253895,-1.59574257425743,-1.58110236532757,-1.19691772028041,1.23310666308559,0.97830284724893,0.982029751190437 +42809,2873.73819069307,456.450815643564,225,29.6986930693069,30.5896538613861,6.50619801980198,-1.38722772277228,1494.5396039604,1898.1702970297,1912.69603960396,20,40,10,32,5305639.21564144,395918.47046077,0,0,0,0,0,0,0,29.6986930693069,24371.1491660628,13.012396039604,6.97830271289729,7.23759853134823,-1.38722772277228,-1.37258751384242,-1.0348275743526,2.33009022548662,1.84861048129965,1.67300462749376 +42810,2873.73554168317,456.445444455446,225,30.1445148514851,31.0488502970297,6.73351485148515,0.466336633663366,1323.4504950495,2139.85742574257,2184.59108910891,20,40,10,32,5305634.42944423,395911.690925298,0,0,0,0,0,0,0,30.1445148514851,24379.4636036591,13.4670297029703,7.22211417673438,7.45666380890758,0.466336633663366,0.480976842593224,0.367503501202194,1.4759492266247,1.17096547608354,1.3262958679784 +42811,2873.73285732673,456.439964554456,225,30.7909603960396,31.7146892079208,10.0242574257426,-4.47207920792079,1046.29702970297,2055.59702970297,2189.18118811881,20,40,9.97029702970297,32,5305629.5802237,395904.774770759,0,0,0,0,0,0,0,30.7909603960396,24387.9257633951,20.0485148514851,10.7516406011524,10.292454157422,-4.47207920792079,-4.45743899899094,-3.65847427185305,2.4310755678798,1.9287286502717,1.87470900404641 +42812,2873.73014722772,456.434353168317,225,31.0990495049505,32.032020990099,10.8224356435644,-4.5839603960396,805.589108910891,1091.60198019802,1181.36633663366,20,40,10.0594059405941,32,5305624.68628187,395897.693949361,0,0,0,0,0,0,0,31.0990495049504,24396.5378184005,21.6448712871287,11.6077364663334,10.988917990429,-4.5839603960396,-4.56932018710975,-3.81323753499212,3.09897424423258,2.45861563921611,2.53008795744132 +42813,2873.72751742574,456.428691089109,225,30.6657821782178,31.5857556435643,11.2025148514851,-5.29851485148515,778.80198019802,478.430693069307,544.850495049505,20,40,11,32,5305619.94222535,395890.552649161,0,0,0,0,0,0,0,30.6657821782178,24405.1268073719,22.4050297029703,12.0153950957936,11.2868506877707,-5.29851485148515,-5.2838746425553,-4.43912356817436,3.62301014178452,2.87436703038357,2.88340318853568 +42814,2873.72511821782,456.422946237624,225,30.24,31.1472,11.0295544554455,-5.5,772.445544554455,12.5821782178217,111.635643564356,20,40,11,32,5305615.62717693,395883.315931011,0,0,0,0,0,0,0,30.24,24413.5853341046,22.0591089108911,11.8298842955946,11.1149754167949,-5.5,-5.48535979107015,-4.60620442196026,3.56267765405338,2.82650138640004,2.73708953627814 +42815,2873.72314405941,456.417064752475,225,28.6983762376238,29.5593275247525,9.16864356435644,-5.5,945.574257425743,-753.613861386139,-456.948514851485,20,40,11,32,5305612.10254551,395875.923198089,0,0,0,0,0,0,0,28.6983762376237,24421.7911905128,18.3372871287129,9.83394143000341,9.44345903447891,-5.5,-5.48535979107015,-4.51211163509298,2.06050021308844,1.63472738049873,1.76030847492259 +42816,2873.72154346535,456.411277128713,221.435643564356,26.9090099009901,27.7162801980198,8.74569306930693,-5.5,940.20297029703,-1895.06930693069,-1518.32376237624,20,40,11,32,5305609.26778273,395868.659867686,0,0,0,0,0,0,0,26.9090099009901,24429.5284866074,17.4913861386139,9.38030067421297,8.98119118482904,-5.5,-5.48535979107015,-4.51962483675861,2.13752779794619,1.6958383191052,1.71671760827639 +42817,2873.72012326733,456.405972772277,219.653465346535,23.7984158415842,24.5123683168317,8.81666336633664,-5.5,986.638613861386,-4442.43564356436,-3469.1099009901,20,40,11.5643564356436,32,5305606.75632091,395862.004582309,0,0,0,0,0,0,0,23.7984158415841,24436.5953313819,17.6333267326733,9.45642073923254,8.86351499086244,-5.5,-5.48535979107015,-4.61637599819658,2.94713439849354,2.33815132103569,2.24398103576128 +42818,2873.71870455445,456.401457227723,225,20.924198019802,21.551923960396,7.46022772277228,-5.5,1078.91584158416,-2529.2099009901,-2709.95940594059,20,40,12,32,5305604.22988521,395856.331991037,0,0,0,0,0,0,0,20.924198019802,24442.7669202158,14.9204554455446,8.00155900546013,7.5449262842102,-5.5,-5.48535979107015,-4.58874849673018,2.28942376991466,1.81634716583428,1.8514890084921 +42819,2873.71706841584,456.397723168317,225,19.2451485148515,19.822502970297,7.01654455445544,-5.5,1214.74752475248,-1412.69702970297,-2110.60495049505,20,40,12,32,5305601.28313959,395851.625650328,0,0,0,0,0,0,0,19.2451485148515,24448.3373880926,14.0330891089109,7.52568116594327,7.07132861325164,-5.5,-5.48535979107015,-4.60565129091472,2.26568868677263,1.79751659739065,1.77704409373418 +42820,2873.7151080198,456.39489990099,225,18.0188316831683,18.5593966336634,7.34740594059406,-5.5,1128.38118811881,-395.177227722772,-751.440594059406,20,40,12,32,5305597.71528581,395848.043071845,0,0,0,0,0,0,0,18.0188316831683,24453.4844360849,14.6948118811881,7.88055061526789,7.2826492311785,-5.5,-5.48535979107015,-4.67731290684424,2.93949348032745,2.33208928907912,2.31015085754848 +42821,2873.7127890099,456.393131287129,225,17.4263861386139,17.9491777227723,7.34480198019802,-5.5,1035.84158415842,-215.849504950495,-471.924752475248,20,40,12,32,5305593.45944763,395845.762321621,0,0,0,0,0,0,0,17.4263861386138,24458.4111104523,14.689603960396,7.8777577055162,7.24652641516188,-5.5,-5.48535979107015,-4.69977921844373,3.09481995971824,2.45531977804666,2.47866623668979 +42822,2873.71034891089,456.392736930693,225,16.0486831683168,16.5301436633663,7.05166336633663,-5.5,907.143564356436,-696.976237623762,-899.272277227723,20,40,11.8316831683168,32,5305588.94841525,395845.189485135,0,0,0,0,0,0,0,16.0486831683168,24463.0842343247,14.1033267326733,7.56334827959065,6.9182705546225,-5.5,-5.48535979107015,-4.72569408895087,3.15548354656632,2.50344810426079,2.51269346141694 +42823,2873.70821861386,456.393523762376,225,14.4397326732673,14.8729246534654,6.79573267326733,-5.5,758.960396039604,53.6584158415842,-211.006930693069,20,40,11.9009900990099,32,5305584.98468656,395846.098456744,0,0,0,0,0,0,0,14.4397326732673,24467.2988787417,13.5914653465347,7.28884666677107,6.60844169703822,-5.5,-5.48535979107015,-4.76604758547432,3.31884445873169,2.63305282564041,2.60971408313727 +42824,2873.70655960396,456.395194851486,217.871287128713,13.2177623762376,13.6142952475248,5.93375247524752,-5.38158415841584,603.985148514852,562.638613861386,355.416831683168,20,40,11.8811881188119,32,5305581.87406348,395848.124739024,0,0,0,0,0,0,0,13.2177623762376,24471.1329037417,11.867504950495,6.3643192029592,5.80519295891587,-5.38158415841584,-5.36694394948599,-4.63372926416657,2.73181059077102,2.16732109159851,2.18337448206056 +42825,2873.7053219802,456.397281485149,194.70297029703,11.8910396039604,12.2477707920792,5.15050495049505,-3.24683168316832,603.940594059406,842.841584158416,640.219801980198,20,40,11.990099009901,32,5305579.53465055,395850.682770233,0,0,0,0,0,0,0,11.8910396039604,24474.6237346823,10.3010099009901,5.52423743627841,5.063387883829,-3.24683168316832,-3.23219147423846,-2.77043398895125,2.24999635468046,1.78506686078203,1.76537148795785 +42826,2873.70441019802,456.39953940594,166.188118811881,11.8190693069307,12.1736413861386,4.24787128712871,2.80217821782178,1030.89108910891,4739.70198019802,4129.12475247525,20,40,12,32,5305577.7949583,395853.465074803,0,0,0,0,0,0,0,11.8190693069307,24477.8629182081,8.49574257425743,4.55610659816822,4.29133717873536,2.80217821782178,2.81681842675164,2.29910125727929,1.51232680111214,1.1998261462611,1.2209024134716 +42827,2873.70375752475,456.40219970297,135.891089108911,13.6948712871287,14.1057174257426,3.11886138613861,5.5,1063.70297029703,5890.77227722772,4984.44158415841,20,40,12,32,5305576.52618048,395856.757298567,0,0,0,0,0,0,0,13.6948712871287,24481.3873863324,6.23772277227723,3.34517314194875,3.43755371106038,5.5,5.51464020892985,4.18878589943478,1.09662443450978,0.870022714790242,0.844410123999808 +42828,2873.70346633664,456.405371782178,61.039603960396,15.1197722772277,15.5733654455446,3.97594059405941,5.5,844.153465346535,3562.41188118812,3047.71782178218,20,40,11.6930693069307,32,5305575.91549442,395860.699154331,0,0,0,0,0,0,0,15.1197722772277,24485.4273603698,7.95188118811881,4.26444398854735,4.24827620334883,5.5,5.51464020892985,4.31484638108999,1.17911553700081,0.935468213428409,0.97196416818088 +42829,2873.70371782178,456.408694059406,45,15.7418514851485,16.214107029703,4.96507920792079,5.5,798.509900990099,3110.76633663366,2685.54752475248,20,40,11.8712871287129,32,5305576.30665148,395864.846256654,0,0,0,0,0,0,0,15.7418514851485,24489.7155851223,9.93015841584158,5.32535677532885,5.12536547691632,5.5,5.51464020892985,4.52690829738145,1.07029602112771,0.849134690626316,0.78882466274386 +42830,2873.70448613861,456.411982079208,45,16.2273069306931,16.7141261386139,3.82240594059406,5.5,992.970297029703,3235.94554455446,2838.19306930693,20,40,11.8712871287129,32,5305577.65593063,395868.967956031,0,0,0,0,0,0,0,16.227306930693,24494.1540687031,7.64481188118812,4.09976850748451,4.18102610919397,5.5,5.51464020892985,4.29098293058137,0.683208168536993,0.542032994024193,0.581987200251796 +42831,2873.70574584159,456.415085841584,45,16.8729207920792,17.3791084158416,3.71726732673267,5.5,973.074257425743,3471.35445544554,3024.29108910891,20,40,12,32,5305579.91956938,395872.876539063,0,0,0,0,0,0,0,16.8729207920792,24498.7556361674,7.43453465346535,3.98700079397408,4.1285529336476,5.5,5.51464020892985,4.23513729012118,0.834115312854422,0.661757340161879,0.682526054281924 +42832,2873.70731247525,456.418093168317,45,17.4270198019802,17.9498303960396,3.41393069306931,5.5,828.410891089109,2949.07227722772,2590.53267326733,20,40,12,32,5305582.75391886,395876.675242824,0,0,0,0,0,0,0,17.4270198019802,24503.526022636,6.82786138613861,3.66165335647346,3.90224641270944,5.5,5.51464020892985,4.12763060619253,1.25378388345025,0.994707416424895,0.953019758889643 +42833,2873.70904257426,456.421031386139,45,17.9379603960396,18.4760992079208,3.63218811881188,5.5,881.09900990099,3022.94356435644,2660.44455445545,20,40,11.2772277227723,32,5305585.89261775,395880.393313969,0,0,0,0,0,0,0,17.9379603960396,24508.4283606723,7.26437623762376,3.89574804303754,4.11717353987667,5.5,5.51464020892985,4.15907707628038,1.17354775596434,0.931050934531213,1.0083204580325 +42834,2873.71091346535,456.424005544554,45,18.7560396039604,19.3187207920792,3.39551485148515,5.5,933.579207920792,2989.00792079208,2631.60198019802,20,40,11.3168316831683,32,5305589.29130641,395884.160858525,0,0,0,0,0,0,0,18.7560396039604,24513.5265048693,6.7910297029703,3.64190121906604,3.96270435010499,5.5,5.51464020892985,4.05421221796761,1.62541265973369,1.28954443323898,1.24146789116408 +42835,2873.7128629703,456.427202871287,45,19.6471188118812,20.2365323762376,3.76079207920792,5.5,983.084158415842,2799.73564356436,2446.67227722772,20,40,11.1980198019802,32,5305592.830602,395888.20903473,0,0,0,0,0,0,0,19.6471188118812,24518.854801569,7.52158415841584,4.03368380259936,4.32446632416387,5.5,5.51464020892985,4.1057328811091,1.49972723392095,1.18983009902022,1.20262184873165 +42836,2873.71482158416,456.430652673267,45,20.5631089108911,21.1800021782178,3.94450495049505,5.5,843.742574257426,2781.1297029703,2638.37425742574,20,40,11.960396039604,32,5305596.38109955,395892.572027986,0,0,0,0,0,0,0,20.5631089108911,24524.440281877,7.8890099009901,4.23072730238146,4.53320658137949,5.5,5.51464020892985,4.10862654167723,1.55999474116879,1.23764418980586,1.22788309624366 +42837,2873.71680128713,456.434311584158,45,21.5304851485149,22.1763997029703,4.07031683168317,5.5,761.361386138614,2376.87623762376,2695.72178217822,20,40,12,32,5305599.96596568,395897.196214974,0,0,0,0,0,0,0,21.5304851485148,24530.2899979386,8.14063366336634,4.36566838304603,4.69563748029602,5.5,5.51464020892985,4.09620130980107,1.6931514971391,1.34328601090365,1.30656769596464 +42838,2873.71879049505,456.43817950495,45,22.489198019802,23.163873960396,4.55615841584158,5.5,792.70297029703,2175.11287128713,2594.58316831683,20,40,11.0891089108911,32,5305603.56374542,395902.081084711,0,0,0,0,0,0,0,22.4891980198019,24536.4050811069,9.11231683168317,4.88676375002568,5.16383529169638,5.5,5.51464020892985,4.15938024256133,1.46963031882179,1.16595227999908,1.17718989310413 +42839,2873.7208239604,456.442213663366,45,23.1229504950495,23.816639009901,4.85706930693069,5.47227722772277,809.5,1143.84851485149,1291.28712871287,20,40,10.9306930693069,32,5305607.23977394,395907.174514862,0,0,0,0,0,0,0,23.1229504950495,24542.7569558869,9.71413861386139,5.20950942749145,5.45613910659205,5.47227722772277,5.48691743665263,4.17291660249634,1.34149320268883,1.06429286212078,1.10426472143529 +42840,2873.72286910891,456.446360792079,45,22.9157623762376,23.6032352475248,4.61807920792079,5.5,807.024752475248,299.390099009901,405.236633663366,20,40,11,32,5305610.9349099,395912.409059694,0,0,0,0,0,0,0,22.9157623762376,24549.1652091872,9.23615841584158,4.95317765720095,5.24094055497495,5.5,5.51464020892985,4.15461562048228,1.52087645425256,1.20660913613591,1.23470834244495 +42841,2873.72478633663,456.450581188119,45,22.4817227722772,23.1561744554456,4.51688118811881,5.5,795.316831683168,296.99702970297,393.573267326732,20,40,11,32,5305614.39145136,395917.730595876,0,0,0,0,0,0,0,22.4817227722772,24555.469846811,9.03376237623762,4.84463647631856,5.13000067259248,5.5,5.51464020892985,4.14750882250531,1.5250930811555,1.20995445753301,1.1819892291497 +42842,2873.7264839604,456.454911584158,45,22.1714653465347,22.8366093069307,4.91068316831683,5.4250495049505,783.29702970297,295.730693069307,412.146534653465,20,40,11,32,5305617.43874473,395923.181820227,0,0,0,0,0,0,0,22.1714653465346,24561.6677445008,9.82136633663366,5.26701363397596,5.44726074991791,5.4250495049505,5.43968971388035,4.18320908065801,1.07315651970458,0.851404108176378,0.836175547906522 +42843,2873.72803029703,456.459318910891,45,21.8119405940594,22.4662988118812,5.16380198019802,5.5,801.90099009901,-390.422772277228,-170.590099009901,20,40,11.5445544554455,32,5305620.20407941,395928.723820205,0,0,0,0,0,0,0,21.8119405940594,24567.7850011564,10.327603960396,5.53849932904086,5.64197006140244,5.5,5.51464020892985,4.29734654977139,0.850554727097144,0.674799785103759,0.680650327935164 +42844,2873.72957029703,456.463507227723,45,21.1884158415842,21.8240683168317,5.07429702970297,5.5,960.831683168317,-528.846534653466,-401.149504950495,20,40,12,32,5305622.96260136,395933.992775767,0,0,0,0,0,0,0,21.1884158415841,24573.7583936482,10.1485940594059,5.44249969346931,5.53012021431285,5.5,5.51464020892985,4.30782892370031,0.763638694598625,0.605843704814556,0.586869346045622 +42845,2873.73119920792,456.467354752475,45,20.163099009901,20.767991980198,4.81450495049505,5.5,988.10396039604,-1385.91287128713,-1876.00198019802,20,40,12,32,5305625.89347637,395938.840160938,0,0,0,0,0,0,0,20.163099009901,24579.5166697208,9.6290099009901,5.1638565034514,5.25039950436453,5.5,5.51464020892985,4.30210487539237,0.769495101879302,0.610489969479933,0.638653985058145 +42846,2873.73286,456.470754356436,45,18.012099009901,18.552461980198,3.62610891089109,5.5,992.435643564356,-2277.16336633663,-3177.24653465347,20,40,12,32,5305628.89347108,395943.130617904,0,0,0,0,0,0,0,18.012099009901,24584.8411034392,7.25221782178218,3.88922771380734,4.11624874755426,5.5,5.51464020892985,4.15259776536057,1.19953017331135,0.951664457781009,0.93957321059653 +42847,2873.73438475248,456.473617029703,45,15.7490891089109,16.2215617821782,2.98337623762376,5.5,1043.33663366337,-1537.07623762376,-2129.79504950495,20,40,12,32,5305631.65353668,395946.747657044,0,0,0,0,0,0,0,15.7490891089109,24589.5145939782,5.96675247524752,3.19985687943092,3.43988526768855,5.5,5.51464020892985,4.09671379868885,1.23177939728558,0.977249841900664,0.984777913239528 +42848,2873.73571257426,456.47603950495,45,12.1052178217822,12.4683743564356,2.15158415841584,5.5,794.673267326733,-3532.96435643565,-4189.65346534653,20,40,12,32,5305634.05870816,395949.809748871,0,0,0,0,0,0,0,12.1052178217822,24593.4658361399,4.30316831683168,2.30770805376703,2.52361125888329,5.5,5.51464020892985,4.04298817962259,1.09735591330345,0.870603043976656,0.816245326275395 +42849,2873.73657386139,456.477623762376,45,6.9459900990099,7.1543698019802,1.84042574257426,5.5,565.821782178218,-1601.0702970297,-1618.6198019802,20,40,12,32,5305635.61852505,395951.812066618,0,0,0,0,0,0,0,6.94599009900989,24596.0661055844,3.68085148514851,1.97397126758261,1.96344482124153,5.5,5.51464020892985,4.39386993363447,0.356433142186816,0.2827813426802,0.357974451880235 +42850,2873.73706574257,456.478537524753,45,4.57744554455446,4.71476891089109,1.94585148514851,5.5,542.846534653465,651.7,630.79702970297,20,40,12,32,5305636.50913503,395952.966792563,0,0,0,0,0,0,0,4.57744554455445,24597.5637500838,3.89170297029703,2.08704694452574,1.91755607383254,5.5,5.51464020892985,4.72958631092959,0.830973196831223,0.659264497373899,0.660698637757356 +42851,2873.73743326733,456.479211980198,45,2.72839603960396,2.81024792079208,2.43038613861386,5.5,566.084158415842,-1604.17524752475,-1575.93267326733,20,40,12,32,5305637.1747691,395953.819254,0,0,0,0,0,0,0,2.72839603960396,24598.661966723,4.86077227722772,2.60674054691518,2.22407187147423,5.5,5.51464020892985,5.0801546067288,1.85473502666242,1.47148062028614,1.52349114450583 +42852,2873.73754841584,456.479408712871,46.7821782178218,0.313138613861386,0.322532772277228,3.48692079207921,5.5,544.094059405941,988.859405940593,688.517821782178,20,40,12,32,5305637.38364518,395954.068174727,0,0,0,0,0,0,0,0.313138613861386,24599.0141575646,6.97384158415841,3.73993978495061,2.98502686616225,5.5,5.51464020892985,5.47639942935794,3.65337635298871,2.89845849932989,2.79470478189991 +42853,2873.73755,456.47941,45,0.0407352941176471,0.0419573529411765,3.49841176470588,5.5,552.926470588235,1569.31470588235,1266.28235294118,20,40,12,32,5305637.38655067,395954.069831042,0,0,0,0,0,0,0,0.040735294117647,24599.0441821909,6.99682352941177,3.75226456898124,2.97924023646574,5.5,5.51464020892985,5.50969605511949,3.74100178051172,2.96797738833067,3.00331858919323 diff --git a/DemoData/Results/DataDemo_HS_1Hz.csv b/DemoData/Results/DataDemo_HS_1Hz.csv new file mode 100644 index 0000000000000000000000000000000000000000..264f40932684b793eab375a6d312f5ca3c6cc3f0 --- /dev/null +++ b/DemoData/Results/DataDemo_HS_1Hz.csv @@ -0,0 +1,1742 @@ +# Resultfile Programm VECTO_CSE 2.0.1-beta0 Comp 23/06/2014 +# Datafile: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_HS.csdat +# +Time [s],Lat [mm.mm],Long [mm.mm],Heading [°],v_veh_GPS [km/h],v_veh_CAN [km/h],vair_ar [m/s],beta_ar [°],n_eng [rpm],tq_l [Nm],tq_r [Nm],t_amb_veh [°C],t_tire [°C],Satelites [#],Zone (UTM) [-],Lat (UTM) [m],Long (UTM) [m],Sec_ID [-],Dir_ID [-],Lat (root) [m],Long (root) [m],dist (root) [m],slope_deg [°],altitude [m],v_veh [km/h],dist [m],vair_ic [m/s],vair_uf [m/s],vair [m/s],beta_ic [°],beta_uf [°],beta [°],vwind_ha [m/s],vwind [m/s],vwind 1s [m/s],omega_wh [rad/s],omega_p_wh [rad/s2],tq_sum [Nm],tq_sum_1s [Nm],tq_sum_float [Nm],t_float [s],F_trac [N],F_acc [N],F_grd [N],F_res [N],v_veh_1s [km/h],v_veh_avg [km/h],a_veh_avg [m/s2],v_veh_float [km/h],t_amp_stat [°C],p_amp_stat [mbar],rh_stat [%],vair_sq [m/s] +45054,2873.71717268657,456.325925074627,104.10447761194,24.5675074626866,25.3045326865672,5.03730845771642,3.30686567164179,841.417910447761,425.677611940298,329.15671641791,20,40,10,32,5305603.09106311,395762.187704792,0,0,0,0,0,0,0,24.5675074626865,2.32180509950248,10.0746169154328,5.40282714562273,5.69483134365934,3.30686567164179,3.32150588057165,2.50733031847341,1.48843034729198,1.18086755207678,1.12801365316887,24.4758548709404,-0.00835760898032111,754.834328358209,400.328815523677,-587.761800284163,3.66338429888574,2706.30418838264,-1679.12029945493,0,2706.30418838264,24.5257306033679,24.5257306033679,-0.067058094370029,24.167456338324,24.8,1015.1583,38.7081,32.803776031771 +45055,2873.71695485148,456.330449603961,82.4257425742574,24.1148811881188,24.8383276237624,5.00240594059406,2.46623762376238,831.826732673267,-537.932673267327,-638.478217821782,20,40,10,32,5305602.58575811,395767.816783677,0,0,0,0,0,0,0,24.1148811881188,7.93636171617161,10.0048118811881,5.36539202157938,5.63941008273663,2.46623762376238,2.48087783269223,1.91288869051428,1.40738819420366,1.11657159821737,1.12029608592828,24.1968588187587,-0.00374410565609344,-1176.41089108911,-989.300254876973,-772.237158537462,3.7323925546452,-4245.63771993959,-3994.16328114104,0,-4245.63771993959,24.1238480541123,24.1238480541123,-0.159717456894202,23.9371038443802,24.8,1015.15,38.65,32.1840544923462 +45056,2873.71682782178,456.335789009901,53.9108910891089,23.5807425742574,24.2881648514851,5.41725742574257,3.49435643564356,822.722772277228,-554.369306930693,-666.90297029703,20,40,10,32,5305602.23032822,395774.464021812,0,0,0,0,0,0,0,23.5807425742574,14.5592345434543,10.8345148514851,5.81034608468203,5.96146934043104,3.49435643564356,3.50899664457342,2.7119282145964,1.04061699977125,0.825588413596289,0.946251824334941,23.9320353456219,0.000216006095543854,-1221.27227722772,-1225.23693755514,-1049.3534216466,3.81691524080994,-4461.67608028195,-3628.4834696478,0,-4461.67608028195,23.5785050485246,23.5785050485246,-0.14514236077073,23.6397686232298,24.8,1015.14,38.58,35.9687190721796 +45057,2873.71679138614,456.340962079208,50.3465346534653,23.1946534653465,23.8904930693069,4.2870297029703,2.49257425742574,811.628712871287,-570.946534653465,-674.372277227723,20,40,10,32,5305602.04645915,395780.9070795,0,0,0,0,0,0,0,23.1946534653465,21.0441193344334,8.5740594059406,4.59810643873077,4.97783901391069,2.49257425742574,2.5072144663556,1.89233496855055,1.92910195559996,1.53048068937887,1.49057477517941,23.6093222388794,-0.00604817067522787,-1245.31881188119,-1247.67268895206,-1606.35999177252,3.88022803010446,-4563.03120227525,-2160.25041140237,0,-4563.03120227525,23.1831729242231,23.1831729242231,-0.0863300438954807,23.1551759728288,24.8,1015.13,38.51,25.4205339318708 +45058,2873.71675584158,456.346074257426,53.9108910891089,22.7514158415841,23.4339583168317,4.1500297029703,1.86891089108911,798.613861386139,-733.942574257426,-847.317821782178,20,40,10,32,5305601.8656176,395787.274312976,0,0,0,0,0,0,0,22.7514158415841,27.4314228272827,8.30005940594059,4.45116540361976,4.83594423669657,1.86891089108911,1.88355110001896,1.4467242627458,1.90411064330832,1.51065347353185,1.44159098005828,23.2307355554229,-0.00288008127391803,-1581.2603960396,-1688.89587295363,-2458.05223987437,3.95593452362345,-5811.1659543536,-3890.85233274172,0,-5811.1659543536,22.7422549750024,22.7422549750024,-0.155596128919823,22.4833089381689,24.8,1015.12,38.44,23.7233094931432 +45059,2873.71666762376,456.351084455446,69.950495049505,21.9324356435644,22.5904087128713,4.6810297029703,3.44237623762376,774.485148514852,-2253.33168316832,-2191.86732673267,20,40,10,32,5305601.58950804,395793.512744524,0,0,0,0,0,0,0,21.9324356435643,33.6577095709571,9.3620594059406,5.02069598496244,5.24056940070498,3.44237623762376,3.45701644655361,2.63743919078072,1.13340286397674,0.899201409011908,0.900411053232725,22.528859748969,0.0111603149364324,-4445.19900990099,-4264.63517302225,-2870.97911572896,4.105002232078,-16456.1894968751,-9013.08732864404,0,-16456.1894968751,21.8927240466621,21.8927240466621,-0.360689039200947,21.6516716377112,24.8,1015.11,38.37,27.570150071135 +45060,2873.71646673267,456.355844851485,89.5544554455445,20.4256534653465,21.0384230693069,4.87749504950495,3.5,972.079207920792,-1783.38217821782,-1478.32277227723,20,40,10,32,5305601.11031435,395799.436220889,0,0,0,0,0,0,0,20.4256534653465,39.5305500550055,9.7549900990099,5.23141730892775,5.3212801605216,3.5,3.51464020892985,2.74410401957977,0.615690737526766,0.488467072296907,0.524918015334764,28.2766379473273,0.0589696640834717,-3261.70495049505,-3350.63980001961,-3510.19914399205,4.40724937279269,-15822.5919541738,-7577.22926594189,0,-15822.5919541738,20.4892543868248,20.4892543868248,-0.304075580825408,20.6613764468466,24.8,1015.10252475248,38.3138861386139,28.3738497969976 +45061,2873.71617633663,456.360327128713,103.811881188119,19.6787227722772,20.2690844554455,5.04258415841584,3.5,1001.18811881188,-2049.16435643564,-1716.37128712871,20,40,10,32,5305600.47158811,395805.010242172,0,0,0,0,0,0,0,19.6787227722772,45.1018294829482,10.0851683168317,5.40848566329944,5.41891567730644,3.5,3.51464020892985,2.78116054052043,0.485261399301925,0.384989087163922,0.384127932451167,29.1233818418592,0.00619217473892378,-3765.53564356436,-3734.09056955201,-3215.38319037106,4.57474560643035,-20139.5672597972,-6843.06039215941,0,-20139.5672597972,19.6388123713361,19.6388123713361,-0.27385659358015,19.564967458833,24.8,1015.11,38.34,29.4624729005354 +45062,2873.71584425743,456.364535742574,103.811881188119,18.4083366336634,18.9605867326733,4.95059405940594,3.5,1154.68811881188,-2086.22871287129,-1703.11188118812,20,40,9.96039603960396,32,5305599.76181041,395810.241958263,0,0,0,0,0,0,0,18.4083366336633,50.3967906765676,9.90118811881188,5.30982055112075,5.26779992428148,3.5,3.51464020892985,2.80679383141737,0.468980864726388,0.372072691683479,0.377582608387801,33.588515844878,0.0516974588668287,-3789.34059405941,-3760.1162042937,-740.140168275483,4.89158442024775,-24577.1999186422,-8998.08079385138,0,-24577.1999186422,18.407400745025,18.407400745025,-0.361097495888204,18.9444971818974,24.8,1015.12,38.38,27.8051071146608 +45063,2873.71553564357,456.368384455446,102.029702970297,17.4426534653465,17.9659330693069,4.86542574257426,3.5,1198.75742574257,2.81287128712892,206.476237623762,20,40,10,32,5305599.10359705,395815.026118494,0,0,0,0,0,0,0,17.4426534653465,55.3448563256325,9.73085148514852,5.21847222532579,5.13996129090995,3.5,3.51464020892985,2.82506973880837,0.527592313846085,0.418572925014231,0.406669522879616,34.8704400198989,0.00036001015923975,209.289108910892,517.53312420351,1925.00217451003,5.15990196772575,1642.82961694355,613.127778215396,0,1642.82961694355,17.5785755318106,17.5785755318106,0.0245142088466296,19.1178142073425,24.8,1015.13,38.42,26.4893440254439 +45064,2873.71516108911,456.372308019802,121.633663366337,18.7329900990099,19.2949798019802,4.79307920792079,3.5,1236.84158415842,3275.70396039604,3894.82475247525,20,40,10,32,5305598.32155993,395819.90132,0,0,0,0,0,0,0,18.7329900990099,60.3263470572056,9.58615841584158,5.14087605971502,5.15239294031828,3.5,3.51464020892985,2.78101547292153,0.417240689109286,0.331023881682964,0.343099993781059,35.9782632819115,-0.0216726115862332,7170.52871287129,6876.77500245074,4765.45015277531,4.80842693654775,49415.2949809112,12886.7929140589,0,49415.2949809112,18.750318596216,18.750318596216,0.515954318204097,19.7683536198328,24.8,1015.14,38.46,26.6232068282907 +45065,2873.71476762376,456.376664455445,114.504950495049,20.8503267326733,21.4758365346535,5.35384158415841,3.5,1082.05940594059,4426.98712871287,4918.32574257426,20,40,10,32,5305597.49476372,395825.315133896,0,0,0,0,0,0,0,20.8503267326732,65.8143892464245,10.7076831683168,5.74232864377099,5.75093211010237,3.5,3.51464020892985,2.78214306893303,0.512481519527578,0.406584559734462,0.410665146359896,31.4758322263954,-0.00828023366251435,9345.31287128713,9391.37919811783,7922.04028741427,4.32124076370259,50763.8483737218,17061.6387427758,0,50763.8483737218,20.8837753161454,20.8837753161454,0.68266727662865,21.2784664276189,24.8,1015.15,38.5,33.2193764889344 +45066,2873.71439970297,456.381591683168,103.811881188119,23.6485742574258,24.3580314851485,6.33949504950495,3.5,1224.74257425743,5643.14356435644,4856.69900990099,20,40,10,32,5305596.70245546,395831.440859826,0,0,0,0,0,0,0,23.6485742574257,71.9851977447743,12.6789900990099,6.79950339164528,6.7500364560657,3.5,3.51464020892985,2.80533497852456,0.60667003602393,0.48131036945149,0.471653585570783,35.6263173502387,0.108795070122254,10499.8425742574,10180.2491716498,9999.68900924259,3.81078123260244,56656.5788263876,19493.9753933099,0,56656.5788263876,23.6166262131163,23.6166262131163,0.777559934211245,23.6775876603193,24.8,1015.16,38.54,45.6629584446284 +45067,2873.71417178218,456.38719019802,62.8217821782178,26.2680792079208,27.0561215841584,6.7060198019802,3.49831683168317,1750.9603960396,5831.39603960396,4760.7702970297,20,40,10,32,5305596.15438854,395838.407514716,0,0,0,0,0,0,0,26.2680792079207,78.92714370187,13.4120396039604,7.19262402319653,7.21210310491497,3.49831683168317,3.51295704061302,2.77892122203186,0.584549672957385,0.463760862326104,0.474862434426262,50.9333733048583,0.113043190001283,10592.1663366337,10675.5991863543,10540.5955845128,3.42934213818233,74364.1241313794,20010.8603297774,0,74364.1241313794,26.3218402117439,26.3218402117439,0.79767097996928,26.455728113852,24.8,1015.17,38.58,52.107466635745 +45068,2873.71424693069,456.393408217822,45,29.4496138613861,30.3331022772277,7.37959405940594,3.48425742574257,1949.73762376238,5691.66039603961,4608.91287128713,20,40,10,32,5305596.15379034,395846.156042225,0,0,0,0,0,0,0,29.4496138613861,86.6674224697468,14.7591881188119,7.91507437801602,7.96766625604702,3.48425742574257,3.49889763467243,2.75735459915671,0.702219859513567,0.557116191585431,0.571643957649778,56.7155684744398,-0.00302408533761395,10300.5732673267,10845.6230467601,11050.0758604503,3.05851204370077,71549.4778212934,20840.1393119087,0,71549.4778212934,29.4045261248896,29.4045261248896,0.83361925301441,29.3806209675731,24.8,1015.18,38.62,63.7187383630124 +45069,2873.71466633663,456.40024990099,45,32.3734752475247,33.3446795049505,7.67476787679208,2.84257425742574,1677.32178217822,6678.13564356435,5405.28910891089,20,40,10,32,5305596.77686495,395854.692997067,0,0,0,0,0,0,0,32.3734752475247,95.2442682343233,15.3495357535842,8.23166668651521,8.38669996296925,2.84257425742574,2.8572144663556,2.2429357070482,1.05612598149287,0.837892686560177,0.791821864520874,48.7913128573818,-0.044065243490946,12083.4247524752,11610.4314282913,11122.3540851226,2.78274922691005,65666.3740736627,22060.0203777875,0,65666.3740736627,32.4049632388981,32.4049632388981,0.88338697731159,32.437064069567,24.8,1015.19,38.66,70.8149968132524 +45070,2873.71566188119,456.407659405941,45,35.5237326732673,36.5894446534654,8.16377227722772,2.84386138613861,1771.67821782178,6046.54158415841,4861.73267326733,20,40,10,32,5305598.45439439,395863.956562635,0,0,0,0,0,0,0,35.5237326732673,104.693767409241,16.3275445544554,8.75615437099589,8.98344614661065,2.84386138613861,2.85850159506847,2.22764803891828,1.32871037660673,1.05415142381185,1.17454598021573,51.5360303114256,0.0346329773188644,10908.2742574257,10854.2809136359,10747.4408079219,2.53485700543542,56967.2423292508,19415.7642611732,0,56967.2423292508,35.4833648661895,35.4833648661895,0.775980568353869,35.3693915540162,24.8,1015.19873762376,38.7088366336634,81.01565428355 +45071,2873.7173209901,456.415469009901,45,38.1222475247525,39.2659149504951,7.5911001100297,2.48425742574257,1904.91089108911,5201.8702970297,4241.49405940594,20,40,10,32,5305601.35209418,395873.740716808,0,0,0,0,0,0,0,38.1222475247524,114.927274449945,15.1822002200594,8.14192779415396,8.64515263591309,2.48425742574257,2.49889763467243,1.899132481782,2.53096242362762,2.00797531911729,1.90600291687116,55.4116116776734,0.0458652942871447,9443.36435643564,9377.67778649152,9541.07893755559,2.36186389099669,49419.2157357051,17043.4932436644,0,49419.2157357051,38.0946113126164,38.0946113126164,0.680874151771607,38.0180639719237,24.8,1015.2,38.81,75.4561440200544 +45072,2873.71959752475,456.423514158416,45,40.3336237623762,41.5436324752475,7.92259515952476,1.75594059405941,1681.10891089109,4794.61683168317,3922.94851485148,20,40,10,32,5305605.38820058,395883.838919644,0,0,0,0,0,0,0,40.3336237623762,125.83476050605,15.8451903190495,8.49747688690564,9.05423997746881,1.75594059405941,1.77058080298926,1.35146731018566,2.78308406196629,2.20799963495595,2.28264990556206,48.9014759661091,-0.14335604540927,8717.56534653465,8845.12846779727,8966.11675011021,2.23206628352583,37614.7261002921,15869.3280202153,0,37614.7261002921,40.3681407705127,40.3681407705127,0.637097125554134,40.4033812338828,24.8,1015.2,38.92,82.4906015451637 +45073,2873.72245316832,456.431702376238,45,42.7346336633663,44.0166726732673,7.31107315731683,0.608415841584159,1499.69306930693,4951.00297029703,4039.59801980198,20,40,10,32,5305610.49381738,395894.134684714,0,0,0,0,0,0,0,42.7346336633663,137.379520654565,14.6221463146337,7.84158144166774,8.6715324404311,0.608415841584159,0.623056050514016,0.454354737185873,4.06932831335132,3.22845994958828,3.18540863326863,43.6243030479091,0.0294488310258119,8990.60099009901,9023.27682580139,8951.54003740271,2.10649561869152,33037.0190306022,16861.2242526499,0,33037.0190306022,42.7534517204195,42.7534517204195,0.674058371183653,42.7667814925555,24.8,1015.2,39.03,75.4560763127852 +45074,2873.72586950495,456.440067029703,45,45.1958811881188,46.5517576237624,7.73014136410891,1.45970297029703,1597.20792079208,4791.67821782178,3861.73366336634,20,40,10,32,5305616.63408341,395904.668956111,0,0,0,0,0,0,0,45.1958811881188,149.600072194719,15.4602827282178,8.29105820143522,9.16949433887942,1.45970297029703,1.47434317922689,1.07225153906451,4.30167397589142,3.41279471154644,3.37219857533776,46.460895094591,0.0270727639748295,8653.41188118812,8651.08410940104,8642.14004141499,1.99167612994991,32022.5475497845,16268.0212858928,0,32022.5475497845,45.1841634153514,45.1841634153514,0.65035971418924,45.1670534048965,24.8,1015.2,39.14,84.2220277060434 +45075,2873.72981811881,456.44855029703,45,47.5485742574257,48.9750314851485,9.04036743676238,0.059009900990099,1682.53465346535,4612.22772277228,3665.18217821782,20,40,9.99009900990099,32,5305623.75766311,395915.368747898,0,0,0,0,0,0,0,47.5485742574257,162.478617079208,18.0807348735248,9.69635729154572,10.4194359623569,0.059009900990099,0.0736501099199562,0.0663792020301575,3.56742820228602,2.83027030193761,2.82740978786047,48.9429491364535,0.0158404470065492,8277.4099009901,8276.2241446917,8282.69020585505,1.89319115750074,30672.7713691861,15648.1083311821,0,30672.7713691861,47.5116704244681,47.5116704244681,0.625714799202697,47.4785018926158,24.8,1015.2,39.25,109.214742760054 +45076,2873.73413712871,456.457286930693,45,49.7068514851485,51.198057029703,10.2835841584158,1.23891089108911,1761.78217821782,4372.16039603961,3581.49801980198,20,40,10,32,5305631.56167081,395926.396511688,0,0,0,0,0,0,0,49.7068514851485,175.982517684268,20.5671683168317,11.0297846780208,11.60115283568,1.23891089108911,1.25355110001897,0.951199320361978,2.85588126357,2.26575433836697,2.30500800057659,51.2481661880975,0.0244086887964553,7953.65841584159,7949.3492304676,7946.06274423283,1.81103568341257,29523.6240715303,15574.1919857035,0,29523.6240715303,49.7068269777472,49.7068269777472,0.622641843392251,49.7092247111726,24.8,1015.2,39.36,134.867325278491 +45077,2873.73868415842,456.466380495049,45,51.8797623762376,53.4361552475247,10.3548014301386,2.02910891089109,1842.38118811881,4094.04356435644,3384.25247524753,20,40,10,32,5305639.78005248,395937.876499744,0,0,0,0,0,0,0,51.8797623762375,190.10125390539,20.7096028602772,11.1061696387852,11.7861760436739,2.02910891089109,2.04374911982094,1.53783087075475,3.3826422433764,2.68366771260398,2.6845974383419,53.5926963491305,0.0254167172423267,7478.29603960396,7498.11592000784,7482.29556719259,1.73507368213785,27810.0798201499,14646.1691707112,0,27810.0798201499,51.8796720909714,51.8796720909714,0.585506322909526,51.8744896241267,24.8,1015.2,39.47,139.437852830387 +45078,2873.74349247525,456.475755742574,45,53.8962277227723,55.5131145544555,11.7786138613861,1.38792079207921,1906.40594059406,3833.38118811881,3192.32673267327,20,40,10,32,5305648.47612323,395949.716080955,0,0,0,0,0,0,0,53.8962277227722,204.803741611661,23.5572277227723,12.6332971749271,13.1131279437836,1.38792079207921,1.40256100100907,1.07877912798863,2.4935356280797,1.97828223437123,1.9985198299027,55.4551009049096,0.00770421740773075,7025.70792079208,7008.68628565827,6960.00737261771,1.67005789965087,26024.2108566603,13099.1689035576,0,26024.2108566603,53.892275169101,53.892275169101,0.523864762713893,53.8764270465305,24.8,1015.2,39.58,172.705329359691 +45079,2873.74852980198,456.485396435644,45,55.6813366336634,57.3517767326733,12.5673069306931,1.77257425742574,1911.74257425743,3393.36633663366,2864.95841584159,20,40,10,32,5305657.59046147,395961.893945406,0,0,0,0,0,0,0,55.6813366336633,220.03124889989,25.1346138613861,13.4792196274004,13.886896114378,1.77257425742574,1.7872144663556,1.38217109746745,2.14963832492964,1.70544637928707,1.6271372513576,55.6103372855738,-0.0983547755043009,6258.32475247525,6361.09944123125,6516.99001572473,1.6164657153241,22440.466478054,11693.8680763452,0,22440.466478054,55.6759160866581,55.6759160866581,0.468916446100058,55.6677429044996,24.8,1015.2,39.69,193.121481249648 +45080,2873.75372584159,456.495334851485,45,57.4048514851485,59.126997029703,13.0881782178218,1.63306930693069,1478.63366336634,3453.04554455446,3271.98316831683,20,40,10,32,5305666.99213032,395974.447950124,0,0,0,0,0,0,0,57.4048514851484,235.733395709571,26.1763564356436,14.037886533169,14.4286609889588,1.63306930693069,1.64770951586055,1.2739290394933,2.11494227270408,1.67791976889991,1.66942020270371,43.0117097609467,-0.0396731195482209,6725.02871287129,6612.32992843839,6526.56844962526,1.56796949002693,18161.8658970815,12375.6436529445,0,18161.8658970815,57.4046209195177,57.4046209195177,0.495438900325675,57.401954451939,24.8,1015.2,39.7608663366337,208.439850425924 +45081,2873.75904732673,456.505627227723,45,59.1371089108911,60.9112221782178,13.6469900990099,1.23782178217822,1498.83663366337,3238.10792079208,3135.63267326733,20,40,10,32,5305676.61824708,395987.44703703,0,0,0,0,0,0,0,59.137108910891,251.925790511551,27.2939801980198,14.6372470897684,15.0035565196198,1.23782178217822,1.25246199110808,0.976157787997218,2.00950738860875,1.59427149223606,1.69398474596643,43.5993903448897,0.0252727131786308,6373.7405940594,6387.59340260758,6395.44083152749,1.52200911808377,16915.4551217894,11945.4352379351,0,16915.4551217894,59.1414301539064,59.1414301539064,0.477574366347519,59.1454308155263,24.8,1015.2,39.6,225.413663031004 +45082,2873.76450821782,456.516229207921,45,60.813,62.63739,13.4387909791089,0.842673267326733,1551.31188118812,3208.43663366336,3055.0702970297,20,40,10,32,5305686.49566987,396000.836412777,0,0,0,0,0,0,0,60.8129999999999,268.594184433443,26.8775819582178,14.4139405628527,14.9228675066702,0.842673267326733,0.857313476256589,0.6681586465875,2.64344827854623,2.09721758455663,2.06950160684788,45.1258334200663,0.0035280995605496,6263.50693069307,6258.02070385256,6257.57317923886,1.48002677305373,16732.6604814688,11453.363100213,0,16732.6604814688,60.8271035192627,60.8271035192627,0.458100513021595,60.8290535300503,24.8,1015.2,39.4,223.445987387958 +45083,2873.77011237624,456.527128415842,45,62.4877425742574,64.3623748514852,14.0711188118812,1.53415841584158,1592.11386138614,3163.06237623762,2945.7702970297,20,40,10,32,5305696.6318318,396014.600785232,0,0,0,0,0,0,0,62.4877425742574,285.723206518151,28.1422376237624,15.0921515575757,15.5567349053313,1.53415841584158,1.54879862477144,1.19447024544574,2.4438073557148,1.93882959665567,1.86312982622064,46.3127149130479,0.0109443088408885,6108.83267326732,6107.42738947162,6104.72884117555,1.44035067311735,16299.149065971,11093.898611927,0,16299.149065971,62.4765724928928,62.4765724928928,0.443650676948897,62.4699733147398,24.8,1015.2,39.2,242.444350776969 +45084,2873.77585188119,456.538327524753,45,64.0672475247524,65.9892649504951,15.5013861386139,1.45485148514851,1631.29702970297,3074.25940594059,2855.92574257426,20,40,10,32,5305707.0120035,396028.743216338,0,0,0,0,0,0,0,64.0672475247524,303.30045360286,31.0027722772277,16.626202371266,16.8642463885576,1.45485148514851,1.46949169407837,1.14578453503527,1.58670760113095,1.25883722017499,1.32057137474716,47.4525070772009,0.0133203758918709,5930.18514851485,5935.87296343496,5939.00159388815,1.40484475854691,15812.613170019,10951.9117322387,0,15812.613170019,64.0586425840603,64.0586425840603,0.437948621594824,64.0547376917088,24.8,1015.2,39,284.842493070898 +45085,2873.78171336634,456.549838316832,45,65.5976633663366,67.5655932673267,15.9349702970297,-0.0363366336633663,1668.52475247525,3028.45841584158,2771.65643564356,20,40,10,32,5305717.61116424,396043.277933403,0,0,0,0,0,0,0,65.5976633663365,321.31203910891,31.8699405940594,17.0912483934949,17.3213128939172,-0.0363366336633663,-0.0216964247335088,-0.0138534085350831,1.59362053538964,1.26432169566327,1.21171725851892,48.5354176361941,0.00122403454141516,5800.11485148515,5801.88830506813,5800.60997040049,1.37206511362855,15449.6571975277,10590.0780147676,0,15449.6571975277,65.5943659445151,65.5943659445151,0.423591369037888,65.5959503146344,24.8,1015.2,38.8,300.513682680986 +45086,2873.78773653465,456.561596039604,45,67.1118415841584,69.1251968316832,16.4311386138614,1.04445544554455,1706.85643564356,2976.68415841584,2694.16732673267,20,40,10,32,5305728.50431329,396058.125594556,0,0,0,0,0,0,0,67.1118415841583,339.747285643564,32.8622772277228,17.6234198246229,17.8297980289794,1.04445544554455,1.05909565447441,0.829374293328762,1.56845876179391,1.24435924189715,1.3178098314512,49.6504411013915,0.013176371828175,5670.85148514852,5673.30808744241,5675.09118014536,1.34110395542215,15103.378241341,10253.487851089,0,15103.378241341,67.1082676208214,67.1082676208214,0.410012907231317,67.1038655697846,24.8,1015.2,38.6,318.368859769657 +45087,2873.7939380198,456.573556732673,45,68.5492871287129,70.6057657425743,16.4831287128713,-0.248019801980198,1745.31683168317,2922.21089108911,2652.18118811881,20,40,10,32,5305739.72325046,396073.231988952,0,0,0,0,0,0,0,68.5492871287128,358.591680280527,32.9662574257426,17.6791824447984,17.9563991961908,-0.248019801980198,-0.233379593050341,-0.188057459667558,1.79439649918311,1.42361018458181,1.41558298761253,50.769208672245,0.0168484754524205,5574.39207920792,5571.49784334869,5571.88481047187,1.31297946484267,14862.8005869786,9980.28787712971,0,14862.8005869786,68.5528604058425,68.5528604058425,0.399049929745468,68.552214431489,24.8,1015.2,38.4,322.92633011474 +45088,2873.80028118812,456.585755049505,45,69.977702970297,72.0770340594059,16.6199405940594,1.24920792079208,1781.56435643564,2874.87722772277,2610.41584158416,20,40,10,32,5305751.19934238,396088.639058605,0,0,0,0,0,0,0,69.9777029702969,377.833639548954,33.2398811881188,17.8259217107638,18.1549053619489,1.24920792079208,1.26384812972194,0.980423398269721,2.00152593889231,1.58793929469264,1.5172175630686,51.8236064266263,0.0151924287199176,5485.29306930693,5488.09975492599,5487.73997230889,1.28617579565879,14623.8889806892,9701.90241497917,0,14623.8889806892,69.974965003431,69.974965003431,0.387930377196127,69.9736236928764,24.8,1015.2,38.2,330.052358797575 +45089,2873.80675316832,456.598201287129,45,71.3499405940594,73.4904388118812,16.8935742574258,0.355148514851485,1816.07920792079,2827.49405940594,2567.2396039604,20,40,10,32,5305762.90851841,396104.359197435,0,0,0,0,0,0,0,71.3499405940593,397.46623061056,33.7871485148515,18.1194108621234,18.467094417996,0.355148514851485,0.369788723781342,0.28814209465169,1.99764689003866,1.58486179567999,1.64265984379325,52.8276027587142,0.00439212394272501,5394.73366336634,5394.03542789923,5394.19243073144,1.26143204763256,14379.6065180053,9572.20269059845,0,14379.6065180053,71.3538167826683,71.3538167826683,0.382846452962122,71.3550119141756,24.8,1015.2,38,341.525674633781 +45090,2873.81336247525,456.610872673267,45,72.7118415841584,74.8931968316832,17.5443465346535,1.17584158415842,1851.84653465347,2775.71188118812,2514.89504950495,20,40,10,32,5305774.86706414,396120.36431817,0,0,0,0,0,0,0,72.7118415841583,417.479103327831,35.0886930693069,18.8174046726154,19.0983483179539,1.17584158415842,1.19048179308827,0.932879354770352,1.82629480423766,1.44891716214626,1.5063081860967,53.8680321189171,0.0159844510702451,5290.60693069307,5293.07847269876,5293.43543594945,1.23779802794376,14110.4486578314,9163.24238225645,0,14110.4486578314,72.7117278698166,72.7117278698166,0.366376117809801,72.7101403210174,24.8,1015.2,37.8265099009901,365.182425302086 +45091,2873.8200890099,456.623789306931,45,74.010297029703,76.2306059405941,16.8854240923762,-0.0856435643564355,1884.28217821782,2723.27326732673,2477.78316831683,20,40,10,32,5305787.037301,396136.678784126,0,0,0,0,0,0,0,74.0102970297029,437.860126375136,33.7708481847525,18.1106693023519,18.6124674035039,-0.0856435643564355,-0.0710033554265784,-0.0585054243476849,2.6731603467759,2.12079007979723,2.06059060144313,54.8115467442526,0.00691219505740329,5201.05643564357,5196.82670326439,5196.16718862574,1.21607791378449,13867.3474936008,9016.90618311869,0,13867.3474936008,74.0120081364571,74.0120081364571,0.360610070908087,74.0126391197877,24.8,1015.2,37.81,346.852143476367 +45092,2873.82697792079,456.636879207921,45,75.2872574257426,77.5458751485148,17.2303300328713,-0.166831683168317,1914.70297029703,2685.30792079208,2401.56435643564,20,40,10,32,5305799.50447567,396153.214431346,0,0,0,0,0,0,0,75.2872574257425,458.600074092408,34.4606600657426,18.4806024112007,18.979049788317,-0.166831683168317,-0.15219147423846,-0.115655507686277,2.66773970243322,2.11648953390521,2.1554308293713,55.6964517156639,0.0188645323441631,5086.87227722772,5085.14411332222,5085.2705693946,1.19544652428607,13547.5823059039,8533.75290912298,0,13547.5823059039,75.2845498480541,75.2845498480541,0.341168894117135,75.2831127622311,24.8,1015.2,37.82,360.698871218773 +45093,2873.83397752475,456.650192178218,45,76.4991287128713,78.7941025742574,17.1657304729703,0.844752475247525,1946.18811881188,2631.36237623762,2359.34356435644,20,40,10,32,5305812.17173882,396170.031571151,0,0,0,0,0,0,0,76.4991287128711,479.683162513751,34.3314609459406,18.4113153586491,18.9937736219331,0.844752475247525,0.859392684177382,0.66306401174711,3.04531188377254,2.4160418363167,2.33337290582573,56.6123175607699,0.00972027429947337,4990.70594059406,4988.84911283208,4986.1161598836,1.1765079100974,13295.8689692353,8292.77929162187,0,13295.8689692353,76.4945857268894,76.4945857268894,0.331617815246873,76.4939542227654,24.8,1015.2,37.83,361.259478479607 +45094,2873.84113693069,456.663655841584,45,77.6437128712871,79.9730242574257,18.0460275026733,-0.74990099009901,1924.4603960396,2552.19405940594,2363.69900990099,20,40,10,32,5305825.13168135,396187.041678315,0,0,0,0,0,0,0,77.643712871287,501.096999064906,36.0920550053465,19.3554887655812,19.8083000525988,-0.74990099009901,-0.735260781169153,-0.576541866451156,2.52870689763525,2.00618586523918,2.07634228536857,55.9802837252086,-0.0764661578225238,4915.89306930693,4902.23339868641,4910.41086687933,1.15915827847026,12732.558678044,7984.7236987465,0,12732.558678044,77.6532619351043,77.6532619351043,0.320069383175931,77.6545754841035,24.8,1015.2,37.84,393.142781854644 +45095,2873.84838693069,456.67734049505,45,78.8282178217822,81.1930643564356,18.7862178217822,1.13821782178218,1713.34158415842,2520.40792079208,2401.12673267327,20,40,10,32,5305838.25453305,396204.330010983,0,0,0,0,0,0,0,78.8282178217821,522.830622194718,37.5724356435644,20.1493889967419,20.5059171612122,1.13821782178218,1.15285803071204,0.899727468174525,2.13925700972273,1.69721021405567,1.74058116417498,49.8390864248331,0.00633617880261968,4921.53465346535,4939.82434075091,4934.59430603545,1.14174098808851,11202.3978246839,8075.7037833152,0,11202.3978246839,78.8281768454072,78.8281768454072,0.32297623326689,78.8269162259665,24.8,1015.2,37.85,420.86902357945 +45096,2873.85573871287,456.69122950495,45,79.9536534653465,82.3522630693069,18.4444103410891,-0.622079207920792,1738.58910891089,2490.46435643564,2348.13069306931,20,40,10,32,5305851.56139324,396221.876218262,0,0,0,0,0,0,0,79.9536534653464,544.886897882286,36.8888206821782,19.7827791790651,20.2797554776212,-0.622079207920792,-0.607438998990935,-0.468547408073237,2.77569392112145,2.20213656078198,2.17130086900605,50.5735071496822,0.0103682925861049,4838.59504950495,4836.05629840212,4836.06528520109,1.12566720100957,11017.7825029089,7565.14506193435,0,11017.7825029089,79.9490410744044,79.9490410744044,0.302520722369268,79.9490125295714,24.8,1015.2,37.86,412.30480213434 +45097,2873.86317811881,456.705334554456,45,81.0700495049505,83.502150990099,19.3656166116832,-0.688811881188119,1762.63861386139,2466.77227722772,2313.90495049505,20,40,10,32,5305865.0257763,396239.694378558,0,0,0,0,0,0,0,81.0700495049504,567.250622964795,38.7312332233664,20.7708302955019,21.1273514423663,-0.688811881188119,-0.674171672258261,-0.52436364465851,2.31812762567337,1.83911978125873,1.78088260683365,51.2730788911169,0.00576016254783607,4780.67722772277,4777.87788452113,4777.56719253721,1.11016841678971,10884.9575700386,7627.30571794117,0,10884.9575700386,81.0541454759336,81.0541454759336,0.305044984696486,81.0528065068951,24.8,1015.2,37.87,447.775922274577 +45098,2873.87070950495,456.719642772277,45,82.1257623762376,84.5895352475248,20.2323179316832,-0.381782178217822,1785.75247524752,2465.6099009901,2244.83168316832,20,40,10,32,5305878.65604258,396257.768600135,0,0,0,0,0,0,0,82.1257623762375,589.916369196918,40.4646358633663,21.7004214567638,21.9261180556509,-0.381782178217822,-0.367141969287964,-0.285305329459219,1.83848264902275,1.45858656351439,1.50672032163019,51.9454338645131,0.0153364327836135,4710.44158415842,4712.71105773944,4712.91623217368,1.09589989421609,10726.1168499874,7370.2761443452,0,10726.1168499874,82.125751592981,82.125751592981,0.294685161585481,82.1251866654554,24.8,1015.2,37.88,481.872789578936 +45099,2873.87835445545,456.73411990099,45,83.1757425742574,85.6710148514852,19.6478707370297,1.29336633663366,1805.87128712871,2133.78415841584,1928.87326732673,20,40,10,32,5305892.49294271,396276.056924731,0,0,0,0,0,0,0,83.1757425742573,612.877382535752,39.2957414740594,21.0735654293908,21.4881450578654,1.29336633663366,1.30800654556352,1.02313246482864,2.42429264098721,1.92334731799092,1.88833972632445,52.5306663793732,0.00864024382175411,4062.65742574258,3926.25160278404,3900.91300753929,1.08206409697068,9245.03179945751,5994.03688633017,0,9245.03179945751,83.1418115870992,83.1418115870992,0.239690553213727,83.1368122445271,24.8,1015.2,37.89,462.243211185818 +45100,2873.8860890099,456.748717722772,45,83.5747623762376,86.0820052475247,20.2942717272277,-0.0468316831683168,1811.0297029703,848.848514851485,810.448514851485,20,40,10,32,5305906.49317525,396294.498487917,0,0,0,0,0,0,0,83.5747623762375,636.062090841583,40.5885434544555,21.7668707622118,22.0615497433354,-0.0468316831683168,-0.0321914742384593,-0.0214987453321626,2.3691566158731,1.87960436211382,1.87691603713896,52.6807186137444,-0.0039601117516373,1659.29702970297,1822.67956082737,1851.3441366155,1.07688029551412,3765.39151960868,1013.73366086286,0,3765.39151960868,83.5866696402312,83.5866696402312,0.0405815334008705,83.5863766917975,24.8,1015.2,37.9126237623762,488.576499051192 +45101,2873.89385970297,456.763324851485,45,83.7124059405941,86.2237781188119,21.6155396039604,-0.247326732673267,1814.94059405941,999.127722772278,950.483168316832,20,40,10,32,5305920.56019847,396312.952757628,0,0,0,0,0,0,0,83.7124059405939,659.29733231573,43.2310792079208,23.1840128751025,23.1936083047952,-0.247326732673267,-0.23268652374341,-0.189184719781125,1.91840884738766,1.52199715869722,1.54707895983734,52.7944818240641,0.00662418693001148,1949.61089108911,1952.84355455347,1952.15209374148,1.07511028722165,4426.24982381864,1316.45030472102,0,4426.24982381864,83.7281985099499,83.7281985099499,0.0526037752290094,83.7303475550589,24.8,1015.2,38.01,539.731948884668 +45102,2873.90166485149,456.777947425742,45,83.9765742574258,86.4958714851485,20.1575693067327,-0.138019801980198,1821.73267326733,1081.04554455446,1068.79405940594,20,40,10,32,5305934.69075743,396331.427323774,0,0,0,0,0,0,0,83.9765742574257,682.589026127612,40.3151386134653,21.6202488996591,21.968296860477,-0.138019801980198,-0.123379593050341,-0.0871081305175419,2.57864748959035,2.04580694974514,2.00810487275796,52.9920553994549,0.00244806908283033,2149.8396039604,2122.27402215469,2120.14460072176,1.07172796057451,4883.70875223673,1633.91840229431,0,4883.70875223673,83.9734569159886,83.9734569159886,0.0653367316929764,83.9729814009437,24.8,1015.2,38.12,484.725422062433 +45103,2873.90946019802,456.792654059406,45,84.2268217821782,86.7536264356436,21.7852079207921,-0.862178217821782,1825.26732673267,985.087128712871,998.493069306931,20,40,10,32,5305948.80133707,396350.006182563,0,0,0,0,0,0,0,84.2268217821781,705.947188118811,43.5704158415842,23.3659927152543,23.3676119199233,-0.862178217821782,-0.847538008891925,-0.672873068967598,1.81594510765523,1.44070608200384,1.60523645906802,53.0948743009338,0.00280807924207008,1983.5801980198,1984.58789334379,1984.64067733876,1.0685443500078,4501.53712735143,1346.16742252723,0,4501.53712735143,84.2037971767473,84.2037971767473,0.0538236992015968,84.202513648561,24.8,1015.2,38.23,547.450623436309 +45104,2873.91729257426,456.80737019802,45,84.3782871287128,86.9096357425743,21.8718910891089,-0.558316831683168,1823.93069306931,885.820792079208,925.532673267327,20,40,10,32,5305962.9803546,396368.59802209,0,0,0,0,0,0,0,84.3782871287127,729.363904097909,43.7437821782178,23.4589658136424,23.4504746780329,-0.558316831683168,-0.543676622753311,-0.428694684297561,2.54089200634695,2.01585309590426,1.7941283177834,53.0559932037359,-0.00324009143315779,1811.35346534653,1810.77135574944,1811.13746901259,1.06662618580908,4100.53755171267,1235.42679016726,0,4100.53755171267,84.3729364768158,84.3729364768158,0.049443681991958,84.3726597654958,24.8,1015.2,38.34,553.932494103822 +45105,2873.9251129703,456.822145544554,45,84.5189306930693,87.0544986138614,21.0482211221782,-0.0934653465346535,1831.55445544554,832.211881188119,868.982178217822,20,40,10,32,5305977.13591529,396387.263124188,0,0,0,0,0,0,0,84.5189306930692,752.822054675466,42.0964422443564,22.5755284594041,22.757216677855,-0.0934653465346535,-0.0788251376047959,-0.0586159779258618,2.30178134444793,1.82615122473113,1.88397563486595,53.2777594618276,-0.000432012191087707,1701.19405940594,1700.72440937163,1700.73832604088,1.0648507082914,3860.78134643031,716.544206607571,0,3860.78134643031,84.5136641505734,84.5136641505734,0.028665490311404,84.51346638995,24.8,1015.2,38.45,520.401229024703 +45106,2873.93291336634,456.836980990099,45,84.6157920792079,87.1542658415841,19.4951870192079,-0.447128712871287,1834.32178217822,784.747524752475,842.654455445545,20,40,10,32,5305991.25314448,396406.002331812,0,0,0,0,0,0,0,84.6157920792078,776.312357040701,38.9903740384158,20.909802629819,21.4411148818554,-0.447128712871287,-0.43248850394143,-0.332590441743145,2.94804929613273,2.33887716819243,2.28044033073507,53.3582577334336,0.00302408533761393,1627.40198019802,1628.70288207038,1628.76102896271,1.06363197049689,3694.29718520818,674.43635999929,0,3694.29718520818,84.6121652779138,84.6121652779138,0.0269526952695208,84.611995239417,24.8,1015.2,38.56,460.891160997614 +45107,2873.94068574258,456.851875742574,45,84.7018217821782,87.2428764356436,20.8696529152475,-3.25306930693069,1832.68316831683,724.545820307921,765.877077382178,20,40,10,32,5306005.31720515,396424.814391447,0.415841584158416,0.415841584158416,2206457.63800633,164853.653939911,2.00774148554879,0,0,84.7018217821781,799.829170022,41.739305830495,22.3840029326573,22.6143516278034,-3.25306930693069,-3.23842909800084,-2.539565980212,2.76904954592648,2.1968651504766,2.19249208738255,53.3105923883502,-0.00993628039501722,1490.4228976901,1496.4883926548,1496.44270200942,1.0625518378409,3377.15006012943,570.469683338724,0,3377.15006012943,84.7006221939024,84.7006221939024,0.0229008049319942,84.7004725129654,24.8,1015.2,38.67,514.795437290186 +45108,2873.94842534654,456.866831584158,45,84.7579405940594,87.3006788118812,19.6090324531683,-2.36891089108911,1834.33168316832,691.253201408911,685.147343089109,20,40,10,32,5306019.31925499,396443.701365023,1,1,5306015.73077487,396446.624733942,21.3868178372759,0,0,84.7579405940593,823.365395489548,39.2180649063366,21.0319089503212,21.545867578401,-2.36891089108911,-2.35427068215925,-1.82337321789908,2.85595996033747,2.26581677357553,2.37450308712669,53.358545741561,-0.000576016254783601,1376.40054449802,1376.0967898175,1376.37779650215,1.06184800215109,3119.41358657304,588.300237692938,0,3119.41358657304,84.7688768748161,84.7688768748161,0.0235366358417851,84.7693494578028,24.8,1015.2,38.78,465.072128157484 +45109,2873.95613455446,456.881852574257,45,84.8032376237624,87.3473347524752,19.6386518152475,-0.542970297029703,1839.4504950495,692.320336977228,666.806035472278,20,40,10,32,5306033.26360555,396462.668388077,1,1,5306030.58108333,396464.853714965,44.8990999554218,0,0,84.8032376237623,846.922506023103,39.2773036304951,21.0636775614398,21.5739771186937,-0.542970297029703,-0.528330088099846,-0.412889471565159,2.8868291759388,2.29030730827068,2.1520372065162,53.5074459434225,0.00122403454141516,1359.12637244951,1358.74341641856,1358.71290593549,1.06128072990175,3087.19396940836,230.582616529802,0,3087.19396940836,84.829781099892,84.829781099892,0.00921342134214694,84.8301015558698,24.8,1015.2,38.89,466.291967917509 +45110,2873.9638490099,456.896865742574,45,84.8688118811881,87.4148762376238,23.3629108910891,-2.20653465346535,1834.22277227723,677.463234608911,655.998221050495,20,40,10,32,5306047.2179124,396481.625750488,1,1,5306045.43063293,396483.081764482,68.410180589023,0,0,84.868811881188,870.489319829484,46.7258217821782,25.0581774419197,24.7461227791137,-2.20653465346535,-2.19189444453549,-1.75309420459922,2.59759684618541,2.06084069343126,2.10228194026606,53.3553776521597,0.00208805892359058,1333.46145565941,1334.15543733711,1334.21072753908,1.06046343228389,3017.96159892005,67.8865269914645,0,3017.96159892005,84.8553048720712,84.8553048720712,0.0026985371804532,84.8556297029702,24.8,1015.2,38.9987376237624,614.715501969804 +45111,2873.9715909901,456.911863069307,45,84.9004455445545,87.4474589108911,21.669401540495,-0.356237623762376,1840.74257425743,660.341445695049,662.660554572278,20,40,10,32,5306061.22361974,396500.564202635,1,1,5306060.29142711,396501.323616891,91.9390646032183,0,0,84.9004455445544,894.068278327833,43.3388030809901,23.2417831576389,23.3076427992753,-0.356237623762376,-0.341597414832519,-0.257376136033921,2.7660972972722,2.19452294168743,2.15072347162327,53.5450310040471,0.00763221537588279,1323.00200026733,1324.13487610202,1324.22513343216,1.06006595450966,3003.80456631689,235.704081301459,0,3003.80456631689,84.8916501323398,84.8916501323398,0.00936591183869815,84.8913340876944,24.8,1015.2,39.1,547.79820941732 +45112,2873.9793809901,456.926812178218,45,84.9164257425742,87.4639185148515,19.4397442238614,-1.7939603960396,1839.40594059406,656.696664012872,680.667717306931,20,40,10,32,5306075.31941448,396519.444096145,1,1,5306075.15948387,396519.574384223,115.479447351403,0,0,84.9164257425741,917.652341556657,38.8794884477228,20.8503367777193,21.4111451889545,-1.7939603960396,-1.77932018710975,-1.37460260234866,3.10490701792923,2.46332249027228,2.54759550149918,53.5061499068493,-0.0144004063695902,1337.3643813198,1337.89459049033,1337.93683277559,1.05986594327285,3033.66131499401,241.176675792233,0,3033.66131499401,84.9202376237623,84.9202376237623,0.00976483786993435,84.9200758132955,24.8,1015.2,39.2,459.581371235164 +45113,2873.98722267327,456.941703465347,45,84.9535742574257,87.5021814851485,19.6334389440594,-2.06782178217822,1838.15841584158,669.879885022772,693.464006889109,20,40,10,32,5306089.51229638,396538.253589338,1,1,5306090.03179694,396537.830376246,139.026569059776,0,0,84.9535742574256,941.245083250826,39.2668778881188,21.0580864323283,21.577436224669,-2.06782178217822,-2.05318157324836,-1.59762476580982,2.94437960567611,2.33596576666512,2.28804293213691,53.4698608827979,0.00295208330576599,1363.34389191188,1362.78396255211,1362.73935243028,1.05940271753677,3089.13670136022,125.896921222579,0,3089.13670136022,84.9478283501616,84.9478283501616,0.00501176355258872,84.9476567656764,24.8,1015.2,39.3,466.368993846175 +45114,2873.99507039604,456.956595643564,45,84.9583069306931,87.5070561386138,19.4926721669307,-1.99227722772277,1838.78712871287,687.770516132673,689.284573686139,20,40,10,32,5306103.71640609,396557.064300376,1,1,5306104.9091853,396556.092598273,162.581726414277,0,0,84.9583069306929,964.843448542355,38.9853443338614,20.9071052940762,21.4583374468669,-1.99227722772277,-1.97763701879292,-1.52941094369258,3.08873031077296,2.45048846776324,2.5172046138687,53.4881493988873,0.00727220521664303,1377.05508981881,1375.91981840355,1375.82937021494,1.05934406693826,3121.08560038366,83.960589414537,0,3121.08560038366,84.9653172238015,84.9653172238015,0.0032989685107231,84.9650051862328,24.8,1015.2,39.4,461.609520175441 +45115,2874.00291970297,456.971494158416,45,85.0067326732674,87.5569346534654,19.1522612762376,-1.11772277227723,1838.88118811881,693.919993603961,671.971969320792,20,40,10,32,5306117.92336901,396575.882864293,1,1,5306119.79155722,396574.360937685,186.144774153812,0,0,85.0067326732672,988.447353602861,38.3045225524752,20.541993406182,21.1713485570618,-1.11772277227723,-1.10308256334737,-0.848669117757535,3.36201154639675,2.6673000534224,2.76438813243206,53.4908854760975,-0.00345609752870165,1365.89196292475,1365.2251127539,1365.17198414596,1.05874007898651,3094.18812644574,-34.1001081523913,0,3094.18812644574,84.9749208901087,84.9749208901087,-0.00133565336733347,84.9744730787363,24.8,1015.2,39.5,448.935773895475 +45116,2874.01077019802,456.986391782178,45,84.973198019802,87.5223939603961,19.0042574255446,-1.34158415841584,1840.40594059406,682.674516212871,657.443322392079,20,40,10,32,5306132.13261294,396594.70026488,1,1,5306134.67426942,396592.629694797,209.708360654651,0,0,84.9731980198019,1012.05119163916,38.0085148510891,20.3832500556619,21.0438888425896,-1.34158415841584,-1.32694394948598,-1.02124278636099,3.43248766167243,2.72321328972323,2.67462849329217,53.5352387277158,-0.00619217473892377,1340.11783860495,1340.53250865155,1340.56554582138,1.05915906860194,3039.51869677179,480.610669289875,0,3039.51869677179,84.9858812861483,84.9858812861483,0.0192750710714627,84.9862122583686,24.8,1015.2,39.6,443.122421482105 +45117,2874.0186340594,457.001282475247,45,84.9766534653465,87.5259530693069,19.4388091307921,-1.14267326732673,1840.44059405941,664.373124007921,659.056203889109,20,40,10,32,5306146.36683092,396613.509383274,1,1,5306149.56288857,396610.905702794,233.281299562744,0,0,84.9766534653464,1035.66337931793,38.8776182615842,20.8493338321461,21.414060984984,-1.14267326732673,-1.12803305839687,-0.870901031428259,3.02777489111459,2.40212861180575,2.37530426813046,53.5362467561617,0.00151204266880697,1323.42932789703,1324.54427243298,1324.63310115916,1.05911510970453,3001.5908015967,-295.760893097577,0,3001.5908015967,84.9975637682579,84.9975637682579,-0.0118425208857408,84.9979018387551,24.8,1015.2,39.7,459.324419702889 +45118,2874.02650752475,457.01615970297,45,84.9789702970297,87.5283394059406,20.2104614962376,-0.113069306930693,1839.51485148515,655.842032586139,675.32773800198,20,40,10,32,5306160.61919948,396632.30195482,1.74257425742574,1,5306164.45077565,396629.180320446,70.3118776837793,0,0,84.9789702970296,1059.26935371287,40.4209229924752,21.6769790680908,22.0705800786329,-0.113069306930693,-0.0984290980008355,-0.0762726245921278,2.69979472375945,2.14192084457025,2.09032041370826,53.5093179962505,-7.20020318479538E-05,1331.16977058812,1331.95991475147,1332.02286631269,1.05908586290455,3017.55400255249,-355.748484286249,0,3017.55400255249,84.9697077737476,84.9697077737476,-0.0142292694616001,84.9693841584157,24.8,1015.2,39.8,489.105543053305 +45119,2874.03438465347,457.031023366337,45,84.9614059405941,87.5102481188119,21.7467524752475,-1.17,1838.79207920792,664.924688053465,691.297951312871,20,40,10,32,5306174.87871664,396651.07765905,2,1,5306179.33389323,396647.44788562,29.2073117082586,0,0,84.961405940594,1082.86753014302,43.4935049504951,23.3247468541304,23.3765633865564,-1.17,-1.15535979107014,-0.909391141301894,1.5198049637739,1.20575905380527,1.34757573090556,53.488293402951,-0.00129603657326312,1356.22263936634,1355.96152824971,1355.94072527095,1.0593048285056,3073.75022868139,124.654256128275,0,3073.75022868139,84.9521225370061,84.9521225370061,0.00499678680738791,84.951853842527,24.8,1015.2,39.9,547.005674144142 +45120,2874.04226059406,457.045887425743,45,84.9460792079208,87.4944615841584,20.58490209,-1.65138613861386,1838.64851485149,683.270538857426,692.283903343564,20,40,10,32,5306189.1360842,396669.853724251,2,1,5306194.21639298,396665.714635835,52.7692081168112,0,0,84.9460792079207,1106.46568162816,41.16980418,22.07858993258,22.3868617766064,-1.65138613861386,-1.63674592968401,-1.26913072707652,2.23470845231865,1.77293798429733,1.72448133841334,53.4841172851038,-0.00475213410196476,1375.55444220099,1374.48214017171,1374.39670881571,1.05949612028309,3117.89293519937,42.4014224240461,0,3117.89293519937,84.9493474169198,84.9493474169198,0.0017345793985384,84.9496769448372,24.8,1015.2,39.9747524752475,502.676439815862 +45121,2874.05012821782,457.060762574258,45,84.9655841584158,87.5145516831683,20.7093465346535,-0.315445544554455,1838.97524752475,694.012494389109,677.379114350495,20,40,10,32,5306203.37785887,396688.643233325,2,1,5306209.09925503,396683.981830727,76.3316781049222,0,0,84.9655841584157,1130.06525726073,41.4186930693069,22.2120643523698,22.4943769218409,-0.315445544554455,-0.300805335624598,-0.233117780735328,2.12018253614941,1.68207720702134,1.63466382092197,53.4936215533077,0.00921626007653771,1371.3916087396,1370.49398532812,1370.42247078965,1.05925270252372,3108.29222774849,59.6044312348301,0,3108.29222774849,84.9637498284481,84.9637498284481,0.0023091418052672,84.9637680339461,24.8,1015.2,39.9,506.986740518125 +45122,2874.05798188119,457.075659504951,45,84.966603960396,87.5156020792079,20.3908063807921,-0.955643564356436,1839.85148514851,687.274450250495,660.28697859703,20,40,10,32,5306217.59334852,396707.459318466,2,1,5306223.98464426,396702.252127472,99.8981491073797,0,0,84.9666039603959,1153.66830871837,40.7816127615841,21.8704101922763,22.2229712710529,-0.955643564356436,-0.941003355426578,-0.730148637482032,2.51614612983513,1.99622060005138,2.03759403728019,53.5191102725819,0.00554415645229222,1347.56142884752,1347.66375488478,1347.67190730061,1.05924006893583,3055.71602685031,165.678700919968,0,3055.71602685031,84.9761613567296,84.9761613567296,0.00658159875392598,84.9762783592644,24.8,1015.2,39.8,495.629139024894 +45123,2874.06581623762,457.090579504951,45,84.9624455445545,87.5113189108911,19.098200770099,-1.36485148514851,1840.73267326733,669.251333161386,656.721926871287,20,40,10,32,5306231.77262107,396726.303405693,2,1,5306238.86929644,396720.521519575,123.463453231154,0,0,84.9624455445544,1177.27236377888,38.196401540198,20.4840101453745,21.1228476580186,-1.36485148514851,-1.35021127621866,-1.03860037560019,3.35890735376798,2.664837297703,2.56536571105648,53.5447429959198,-0.0110883129045844,1325.97326003267,1326.98145742931,1327.06178150594,1.05929205274425,3008.33798651021,-172.08844164044,0,3008.33798651021,84.9700002940887,84.9700002940887,-0.00679263470901966,84.9703236209334,24.8,1015.2,39.7,446.488690959602 +45124,2874.07363148515,457.10551990099,45,84.9737128712871,87.5229242574257,19.4712090208911,-0.784257425742574,1840.90594059406,656.513513853465,669.961651288119,20,40,10,32,5306245.9161032,396745.172171901,2,1,5306253.75175454,396738.788218662,147.025283691362,0,0,84.973712871287,1200.87359045655,38.9424180417822,20.884084732793,21.4412057175064,-0.784257425742574,-0.769617216812716,-0.593405904688057,3.06732926383467,2.43350964039931,2.39314495289499,53.5497831381491,-0.00439212394272501,1326.47516514158,1327.46230186143,1327.54094801328,1.05915149073287,3009.36278161796,-10.1208974798771,0,3009.36278161796,84.9677475737672,84.9677475737672,-0.000368972540815035,84.9677045733144,24.8,1015.2,39.6,460.69754495231 +45125,2874.08142376238,457.120491485148,45,84.9686237623762,87.5176824752475,19.7620132011881,-1.09940594059406,1838.04455445545,660.772084651485,687.833610272277,20,40,10,32,5306260.016402,396764.078931767,2,1,5306268.63558906,396757.056607169,170.589293297558,0,0,84.9686237623761,1224.47727321233,39.5240264023762,21.1959903332854,21.6883019206939,-1.09940594059406,-1.0847657316642,-0.841443642752711,2.81180368098235,2.23078475638657,2.27590781823208,53.4665487893329,0.0141844002740463,1348.60569492376,1348.66420201855,1348.66886333626,1.05921514120113,3055.01610063027,-43.8632109328731,0,3055.01610063027,84.9667534555435,84.9667534555435,-0.00187073162760847,84.9665700141441,24.8,1015.2,39.5,471.55829142029 +45126,2874.08920128713,457.135478910891,45,84.9659405940594,87.5149188118811,19.2213322333663,-1.81485148514851,1837.58415841584,678.11173519802,693.906407163366,20,40,10,32,5306274.08908205,396783.004842265,2,1,5306283.51778254,396775.322981453,194.150704801819,0,0,84.9659405940593,1248.07731155116,38.4426644667327,20.6160763108287,21.2277780310215,-1.81485148514851,-1.80021127621866,-1.38848132422563,3.28942299066282,2.60971088220301,2.64261803524393,53.4531564114092,-0.0101522864905611,1372.01814236139,1371.09422867803,1371.02061956762,1.05924897390293,3107.34247531913,27.6681561066593,0,3107.34247531913,84.9639861778256,84.9639861778256,0.00118997048218193,84.9638197076849,24.8,1015.2,39.4,451.366626321769 +45127,2874.09696871287,457.150474455446,45,84.9819801980198,87.5314396039604,19.6049939492079,-0.48049504950495,1841.13366336634,692.590470760396,682.59674049604,20,40,10,32,5306288.14293541,396801.940438317,2,1,5306298.39720774,396793.585957977,217.707733605406,0,0,84.9819801980197,1271.67893105061,39.2099878984158,21.0275774032246,21.5557810722216,-0.48049504950495,-0.465854840575093,-0.368216149759986,3.01140484496747,2.38914120103688,2.38654115689894,53.5564073250791,-0.00417611784718116,1375.18721125644,1374.13031877376,1374.04611511186,1.05904877819524,3119.94856254655,-82.8189027745015,0,3119.94856254655,84.9722139005979,84.9722139005979,-0.00327854567634041,84.9715933050447,24.8,1015.2,39.3,466.076975455277 +45128,2874.10474168317,457.165468019802,45,84.987801980198,87.537436039604,20.292096259604,-1.03633663366337,1840.49504950495,685.751332728713,651.971264453465,20,40,10,32,5306302.20716439,396820.873659076,1.76237623762376,0.881188118811881,4675859.42914747,349664.92328148,211.356968395224,0,0,84.9878019801979,1295.28152332234,40.5841925192079,21.7645374376535,22.1402353646146,-1.03633663366337,-1.02169642473351,-0.793131797766629,2.32391831389011,1.84371390676268,1.85950740331565,53.5378308008623,0.00928826210838567,1337.72259718218,1323.25995739665,1322.36026618002,1.0589776471194,3033.57165013102,260.314438427085,0,3033.57165013102,84.9740050975394,84.9740050975394,0.0103366772320693,84.9739060820366,24.8,1015.2,39.2,490.884845317555 +45129,2874.11249534653,457.180491782178,45,84.9703663366337,87.5194773267327,18.9069383936634,-1.11435643564356,1842.14851485149,588,550.560396039604,20,40,10,32,5306316.23501886,396839.843761903,0,0,0,0,0,0,0,84.9703663366335,1318.88780904841,37.8138767873267,20.2788693309858,20.9607952261391,-1.11435643564356,-1.09971622671371,-0.846410210844932,3.54222185739342,2.81027248689421,2.80670903473497,53.5859281581368,-0.00338409549685369,1138.5603960396,1154.41084960696,1155.45035342511,1.05919419186962,2585.07670170022,109.251343153362,0,2585.07670170022,84.9882217429663,84.9882217429663,0.0043977169994335,84.9885621876472,24.8,1015.2,39.1,439.590858896755 +45130,2874.12026346535,457.195502871287,45,84.9749504950495,87.524199009901,18.7135467541584,-0.264257425742574,1836.25247524752,598.341584158415,538.716831683168,20,40,10,32,5306330.28999328,396858.798465399,0,0,0,0,0,0,0,84.9749504950494,1342.49724488449,37.4270935083168,20.0714447493021,20.7964378703373,-0.264257425742574,-0.249617216812717,-0.193746953385888,3.73157435984764,2.96049800900853,2.83430178161545,53.414419318275,-0.00770421740773075,1137.05841584158,1136.2060288207,1136.28412069778,1.05913684802112,2572.86988147884,66.0309129819513,0,2572.86988147884,84.9827960984215,84.9827960984215,0.00270398326960967,84.9839488920319,24.8,1015.2,39.010099009901,432.592054871979 +45131,2874.12807237624,457.210463366337,45,84.9561089108911,87.5047921782178,19.5113217819802,-0.205445544554455,1834.47524752475,605.885148514851,548.813861386139,20,40,10,32,5306344.42171625,396877.691408273,0,0,0,0,0,0,0,84.9561089108909,1366.10612956546,39.0226435639604,20.9271081680893,21.4744147906474,-0.205445544554455,-0.190805335624598,-0.150374867334176,2.96932679715602,2.35575797863371,2.3565787035703,53.3627218594081,0.00914425804468976,1154.69900990099,1152.10928340359,1151.94998585573,1.05937285252276,2610.94828128076,-244.162333940054,0,2610.94828128076,84.9864532888931,84.9864532888931,-0.00984108311820311,84.9867323903818,24.8,1015.2,38.98,461.820516016948 +45132,2874.13593227723,457.225351386138,45,84.975099009901,87.524351980198,20.4765412539604,-0.254950495049505,1839.81683168317,615.937623762376,551.005940594059,20,40,10,32,5306358.64956445,396896.49567331,0,0,0,0,0,0,0,84.9750990099009,1389.70736152366,40.9530825079208,21.9623661850388,22.2963791518171,-0.254950495049505,-0.240310286119647,-0.181658161811637,2.33121987632335,1.84950670598405,1.92606173592596,53.518102244136,-0.000360010159239758,1166.94356435644,1175.77991373395,1176.23498349835,1.05913677782097,2645.67005112034,-199.097369889509,0,2645.67005112034,84.9700730320556,84.9700730320556,-0.00796082083456203,84.9698137670909,24.8,1015.2,38.96,498.437624172165 +45133,2874.14380643564,457.240221881188,45,84.9784059405941,87.5277581188119,20.6597645765346,-0.47039603960396,1843.17326732673,646.338613861386,621.859405940594,20,40,10,32,5306372.90427258,396915.278489093,0,0,0,0,0,0,0,84.9784059405939,1413.30907736524,41.3195291530693,22.1588846133274,22.4529483681083,-0.47039603960396,-0.455755830674103,-0.36342171947947,2.09489304241899,1.66201342465555,1.75529464226786,53.6157369993219,0.000648018286631559,1268.19801980198,1256.69959807862,1255.92138613861,1.05909344592871,2880.48698818586,159.668733914754,0,2880.48698818586,84.9636386628761,84.9636386628761,0.00638145497716674,84.9636494106553,24.8,1015.2,38.94,505.097592772904 +45134,2874.15167257426,457.255112871287,45,85.0029702970297,87.5530594059406,19.8844779977228,-0.326831683168317,1840.62376237624,615.70099009901,595.772277227723,20,40,10,32,5306387.14372936,396934.086474429,0,0,0,0,0,0,0,85.0029702970296,1436.915984901,39.7689559954456,21.3273414571355,21.7946197741781,-0.326831683168317,-0.31219147423846,-0.243179627633641,2.70743119771822,2.14797935065124,2.02600697064555,53.5415749065185,-0.00165604673250286,1211.47326732673,1211.65069110871,1211.80846770391,1.05878681929889,2746.88350155139,315.806511081273,0,2746.88350155139,84.999517106166,84.999517106166,0.012645819037356,84.9993514380008,24.8,1015.2,38.92,475.932086882115 +45135,2874.15952861386,457.270021881188,45,85.0464653465347,87.5978593069307,22.5373564356436,0.28019801980198,1841.08415841584,577.283168316832,565.473267326733,20,40,10,32,5306401.36413869,396952.916477418,0,0,0,0,0,0,0,85.0464653465345,1460.53171980199,45.0747128712871,24.1727188563455,24.0543849544911,0.28019801980198,0.294838228731837,0.237971082451676,1.51521318877987,1.20211610329251,1.24696959117189,53.5549672844422,0.000864024382175411,1142.75643564356,1145.11303793746,1145.10276284771,1.05824570194113,2590.4144998729,346.581992494811,0,2590.4144998729,85.0458142338985,85.0458142338985,0.0138562123539128,85.0456952380951,24.8,1015.2,38.9,579.008244764151 +45136,2874.1673560396,457.284985148515,45,85.0921584158416,87.6449231683169,22.5464257425743,1.90316831683168,1843.43069306931,549.830693069307,527.941584158416,20,40,10,32,5306415.53039889,396971.81302165,0,0,0,0,0,0,0,85.0921584158415,1484.16302863038,45.0928514851485,24.1824462530472,24.0641281107389,1.90316831683168,1.91780852576154,1.5327272418906,1.64580048914681,1.30571940995525,1.28342005577342,53.623225210634,0.00338409549685369,1077.77227722772,1071.98592294873,1071.68278170674,1.05767760165158,2445.12246335089,367.151003545965,0,2445.12246335089,85.0953772179197,85.0953772179197,0.0146581489832066,85.0953311645449,24.8,1015.2,38.88,579.613240187882 +45137,2874.17518881188,457.299950990099,45,85.1145148514851,87.6679502970298,21.4915148514852,2.22594059405941,1841.9900990099,487.122772277228,459.064356435644,20,40,10,32,5306429.7065663,396990.712856099,0,0,0,0,0,0,0,85.114514851485,1507.80415173269,42.9830297029703,23.0509886013208,23.1681126408306,2.22594059405941,2.24058080298926,1.7696639395975,1.58899186299808,1.26064947207126,1.30659737185156,53.5813200280985,-0.00216006095543853,946.187128712871,949.706450348005,950.046930693069,1.05739982347739,2143.96239079712,-3.5750522236798,0,2143.96239079712,85.1182651700812,85.1182651700812,-0.00012526005076103,85.1183542668552,24.8,1015.2,38.86,537.242375635227 +45138,2874.18304752475,457.314889009901,45,85.1129801980198,87.6663696039605,20.8719900990099,2.28594059405941,1842.00495049505,460.969306930693,424.734653465347,20,40,10,32,5306443.93146409,397009.578801805,0,0,0,0,0,0,0,85.1129801980197,1531.44882736525,41.7439801980198,22.3865097078492,22.6409411128702,2.28594059405941,2.30058080298926,1.80375522769469,1.87029339392694,1.48382407397841,1.50534816910566,53.5817520402896,0.000576016254783607,885.70396039604,889.687383589844,890.040075436115,1.05741850830263,2007.25292615572,-57.9173910113441,0,2007.25292615572,85.1124661307714,85.1124661307714,-0.00232139550586241,85.1126150872229,24.8,1015.2,38.84,513.070223467906 +45139,2874.1909339604,457.329784554456,45,85.1089405940594,87.6622088118813,19.444002200198,1.05643564356436,1841.4504950495,469.848514851485,448.708910891089,20,40,10,32,5306458.20871891,397028.39266592,0,0,0,0,0,0,0,85.1089405940592,1555.08988327834,38.888004400396,20.8549037226126,21.4258809910346,1.05643564356436,1.07107585249422,0.834599479433792,3.07562676758332,2.44009258393969,2.29894828242837,53.5656235851557,-0.00288008127391804,918.557425742574,918.035408293305,917.60342291372,1.05746891226373,2081.0344056925,-133.096995286994,0,2081.0344056925,85.1061253798646,85.1061253798646,-0.00530040627826275,85.105954832626,24.8,1015.2,38.82,459.673118969006 +45140,2874.19878980198,457.344721980198,45,85.1238514851485,87.677567029703,19.8127117713861,-0.00316831683168307,1841.91584158416,438.39603960396,431.30198019802,20,40,10,32,5306472.42843243,397047.25759041,0,0,0,0,0,0,0,85.1238514851484,1578.73049942246,39.6254235427723,21.2503677083477,21.7401937857677,-0.00316831683168307,0.0114718920981739,0.0182683226992835,2.80091773316262,2.22214823363809,2.27422650892419,53.5791599671431,0.00115203250956722,869.69801980198,871.672855602392,871.912927864215,1.0572830606034,1970.90543673279,-29.7213304412863,0,1970.90543673279,85.1073628075677,85.1073628075677,-0.00119813961592641,85.1067762376236,24.8,1015.2,38.8063118811881,473.612733628157 +45141,2874.20661881188,457.359693861386,45,85.1066237623762,87.6598224752475,19.4740836083168,-0.369207920792079,1842.33168316832,415.768316831683,428.357425742574,20,40,10,32,5306486.59773936,397066.164450678,0,0,0,0,0,0,0,85.1066237623761,1602.3712368262,38.9481672166337,20.8871679068941,21.4517649042095,-0.369207920792079,-0.354567711862222,-0.274406395642362,2.99787937447357,2.37841057513835,2.43679837054468,53.5912563084935,-0.00194405485989467,844.125742574258,844.920586217038,845.110834512023,1.05749784673285,1913.67709676159,2.26096785619845,0,1913.67709676159,85.0975244583863,85.0975244583863,0.000106198738678209,85.0971904761904,24.8,1015.2,38.83,460.592171711843 +45142,2874.21444366337,457.374662772277,45,85.0843168316832,87.6368463366336,19.2269554455446,0.596633663366337,1842.05445544554,432.464356435644,449.917821782178,20,40,10,32,5306500.75947037,397085.067380894,0,0,0,0,0,0,0,85.0843168316831,1626.00734606712,38.4539108910891,20.6221075562165,21.2401726400872,0.596633663366337,0.611273872296194,0.4728461797397,3.22154955220836,2.55586251686663,2.50151527491428,53.5831920809266,-0.0035280995605496,882.382178217822,883.205421037153,882.977199434229,1.05777563555989,2000.73862991176,72.6017628543271,0,2000.73862991176,85.0894872071365,85.0894872071365,0.00293271901447067,85.0896413955681,24.8,1015.2,38.86,451.369138679097 +45143,2874.22223108911,457.389683465347,45,85.0757227722773,87.6279944554455,19.8440583060396,0.722970297029703,1840.77722772277,437.658415841584,445.025742574258,20,40,9.9009900990099,32,5306514.8507866,397104.033478236,0,0,0,0,0,0,0,85.0757227722771,1649.64231647416,39.6881166120792,21.2839888196552,21.7646860421574,0.722970297029703,0.73761050595956,0.576741358478573,2.65435128736124,2.10586764289028,2.1795555294533,53.546039032493,0.00518414629305246,882.684158415842,883.23194784825,883.14411126827,1.05788161259659,2000.08076619976,-116.413420173711,0,2000.08076619976,85.0826581707674,85.0826581707674,-0.00469861342571252,85.0829860443186,24.8,1015.2,38.89,474.312081267839 +45144,2874.23001653465,457.40469990099,45,85.0697326732674,87.6218246534654,19.4474218921782,-0.483069306930693,1840.96534653465,441.878217821782,442.429702970297,20,40,9.75247524752475,32,5306528.93859064,397122.99411455,0,0,0,0,0,0,0,85.0697326732673,1673.27576130365,38.8948437843564,20.8585715553084,21.4267785396772,-0.483069306930693,-0.468429098000836,-0.360212788738086,3.0167948657712,2.39341745130531,2.37221812691269,53.5515111869135,-0.00352809956054959,884.307920792079,882.288608959906,882.591362564828,1.05795591507194,2004.02733593579,-51.024496325892,0,2004.02733593579,85.0764817174786,85.0764817174786,-0.0020123299458565,85.0765979255067,24.8,1015.2,38.92,459.5398514731 +45145,2874.23778594059,457.41973019802,45,85.0719405940595,87.6240988118812,19.4767541251485,-0.75019801980198,1839.29207920792,462.005940594059,467.847524752475,20,40,9.99009900990099,32,5306542.99643726,397141.971393119,0,0,0,0,0,0,0,85.0719405940593,1696.90641190871,38.953508250297,20.8900322025695,21.4509003964097,-0.75019801980198,-0.735557810872122,-0.565153793112401,3.03429815786374,2.40730393898961,2.38665534785737,53.5028378133842,-0.00136803860511107,929.853465346534,929.699715714145,929.333776520509,1.05792841800103,2105.56884640247,202.725354737481,0,2105.56884640247,85.079649348103,85.079649348103,0.00812011894258324,85.0800110325317,24.8,1015.2,38.95,460.388557326054 +45146,2874.24557643564,457.434759900991,45,85.1191287128713,87.6727025742575,19.7369147415842,-0.129405940594059,1841.08415841584,458.394059405941,439.451485148515,20,40,9.96039603960396,32,5306557.09342277,397160.948535372,0,0,0,0,0,0,0,85.1191287128712,1720.54622766778,39.4738294831683,21.1690706717241,21.6759857366096,-0.129405940594059,-0.114765731664202,-0.0895728927785116,2.73727134557691,2.1716534597015,2.17739559758214,53.5549672844421,0.00244806908283033,897.845544554455,893.505911185178,893.132060348892,1.05734186324821,2033.38906233922,148.502146228798,0,2033.38906233922,85.1113811391039,85.1113811391039,0.00591989892059204,85.1115944365864,24.8,1015.2,38.98,470.101268262393 +45147,2874.25337712871,457.449772475248,45,85.1273366336634,87.6811567326733,19.0698173816832,0.163267326732673,1840.5297029703,404.121782178218,393.045544554455,20,40,9.3960396039604,32,5306571.20974013,397179.90458716,0,0,0,0,0,0,0,85.1273366336633,1744.19175888341,38.1396347633663,20.4535671930111,21.1082848297647,0.163267326732673,0.17790753566253,0.139413158962505,3.42198438160988,2.7148803619253,2.68897578154626,53.5388388293082,-0.00532815035674837,797.167326732673,801.225311243996,801.734153701084,1.05724071246226,1804.96683123144,-131.142321685799,0,1804.96683123144,85.1298178609939,85.1298178609939,-0.00520237667332121,85.1292257425741,24.8,1015.2,39.01,445.818290549703 +45148,2874.2611749505,457.464775346535,45,85.0974356435644,87.6503587128712,18.9350731575248,0.271980198019802,1843.50495049505,405.562376237624,396.669306930693,20,40,9.44554455445545,32,5306585.32101545,397198.848365977,0,0,0,0,0,0,0,85.0974356435643,1767.83232172719,37.8701463150495,20.3090456180252,20.9918179757123,0.271980198019802,0.286620406949659,0.216500013583323,3.56661175782999,2.82962256402501,2.81050485133972,53.6253852715895,-0.00223206298728648,802.231683168317,805.277306146456,805.35102310231,1.05761151179393,1819.80537621664,41.9964063253412,0,1819.80537621664,85.1029584354474,85.1029584354474,0.0016978182966863,85.1032470532766,24.8,1015.2,39.04,441.007118000703 +45149,2874.26897534654,457.479778019802,45,85.1087722772277,87.6620354455445,19.3611083609901,0.267623762376238,1840.53465346535,417.987128712871,414.270297029703,20,40,9.83168316831683,32,5306599.43712474,397217.791890242,0,0,0,0,0,0,0,85.1087722772276,1791.47409436195,38.7222167219802,20.7659949157692,21.3549856852996,0.267623762376238,0.282263971306095,0.221785816945945,3.15635413295463,2.50413879645146,2.49941711546242,53.5389828333719,0.00540015238859631,832.257425742575,830.683629055975,830.382564827912,1.05747061703355,1884.53005731204,-266.609030997171,0,1884.53005731204,85.0981358690323,85.0981358690323,-0.0107083728174704,85.0980052805279,24.8,1015.2,39.07,456.546585936915 +45150,2874.27677940594,457.494782673267,45,85.097792079208,87.6507258415842,19.743196369604,0.597524752475248,1839.16336633663,413.452475247525,385.716831683168,20,40,9.77227722772277,32,5306613.56003707,397236.737908832,0,0,0,0,0,0,0,85.0977920792078,1815.11151331135,39.4863927392079,21.1758081091212,21.6795085175967,0.597524752475248,0.612164961405105,0.475879507330021,2.80228235285238,2.22323087423024,2.27778591202905,53.4990937077281,0.00136803860511107,799.169306930693,802.336996372905,802.728024516737,1.05760726039669,1808.69340176084,100.793128153635,0,1808.69340176084,85.0914531908635,85.0914531908635,0.00402057532485835,85.0911088165958,24.8,1015.2,39.0760148514852,470.524487996605 +45151,2874.28459089109,457.509767227723,45,85.0604158415841,87.6122283168317,19.4396501649505,0.200891089108911,1837.59405940594,436.287128712871,401.489108910891,20,40,9.89108910891089,32,5306627.69721143,397255.659045921,0,0,0,0,0,0,0,85.060415841584,1838.74575412543,38.879300329901,20.8502358936774,21.4196049277845,0.200891089108911,0.215531298038769,0.174106922678871,3.03994307704813,2.41178241654219,2.42042538056854,53.4534444195366,-0.00921626007653771,837.776237623763,833.578747181649,833.614945780292,1.0580727067765,1895.31102591129,-210.317705435416,0,1895.31102591129,85.0673629055973,85.0673629055973,-0.00833796250912154,85.067605374823,24.8,1015.2,38.94,459.269126852216 +45152,2874.29242049505,457.524727722772,45,85.0814851485148,87.6339297029702,18.7665660067327,-0.659108910891089,1838.64851485149,459.541584158416,434.071287128713,20,40,10,32,5306641.86854269,397274.550721534,0,0,0,0,0,0,0,85.0814851485147,1862.37465959848,37.5331320134654,20.1283112007917,20.8480351200787,-0.659108910891089,-0.644468701961232,-0.492396911776636,3.69461396676415,2.93117495134331,2.91444406469755,53.4841172851038,0.00576016254783607,893.612871287129,885.774531908636,885.432277227722,1.05781238218312,2021.90248273422,9.71850662422061,0,2021.90248273422,85.067526517008,85.067526517008,0.000341742094991639,85.0671613389909,24.8,1015.2,38.78,434.759165754214 +45153,2874.30025891089,457.539678316832,45,85.0568712871287,87.6085774257426,18.6269086910891,0.121881188118812,1843.9603960396,441.244554455446,419.865346534653,20,40,9.95049504950495,32,5306656.05647699,397293.430263045,0,0,0,0,0,0,0,85.0568712871286,1886.00182040706,37.2538173821782,19.9785200291019,20.7275202183239,0.121881188118812,0.136521397048669,0.104880737204595,3.83178507284721,3.04000161464716,3.04342085244732,53.6386336454495,0.00475213410196476,861.109900990099,867.498529555926,867.639566242339,1.05812020470186,1955.0451016819,-30.1054421563959,0,1955.0451016819,85.0597929614742,85.0597929614742,-0.00124306985153471,85.0596260254596,24.8,1015.2,38.62,429.632777283457 +45154,2874.30809653465,457.554640990099,45,85.0150693069307,87.5655213861386,18.9719570955446,-0.497821782178218,1835.64356435644,443.712871287129,430.191089108911,20,40,9.21782178217822,32,5306670.24273699,397312.324730059,0,0,0,0,0,0,0,85.0150693069306,1909.62551669419,37.9439141910891,20.3486059394238,21.0185735744712,-0.497821782178218,-0.48318157324836,-0.377955355190353,3.49490482645839,2.77273284213122,2.81509108225593,53.3967068184404,-0.00921626007653772,873.903960396039,876.244613273208,876.597152286657,1.05863783930607,1976.18602038477,-117.753329309801,0,1976.18602038477,85.0364248603076,85.0364248603076,-0.00463462187802334,85.0368017916076,24.8,1015.2,38.46,442.107716006788 +45155,2874.31595326733,457.569566435643,45,85.032405940594,87.5833781188119,18.80390099,-0.473069306930693,1838.35643564356,480.69900990099,461.471287128713,20,40,9,32,5306684.46527934,397331.173366893,0,0,0,0,0,0,0,85.0324059405939,1933.24412164468,37.60780198,20.1683552963183,20.8767963078999,-0.473069306930693,-0.458429098000836,-0.351726181391894,3.64434613462795,2.89129424614883,2.83058897399955,53.4756210453457,0.00338409549685369,942.170297029703,935.773306538575,935.371221122112,1.05842116668793,2132.77628174355,-225.357689949992,0,2132.77628174355,85.0208367807077,85.0208367807077,-0.00904186953349532,85.0209859500235,24.8,1015.2,38.3,435.935618803163 +45156,2874.32379217822,457.584512475247,45,85.0231188118812,87.5738123762376,18.748195819802,-1.72029702970297,1840.70792079208,478.354455445545,445.686138613861,20,40,9,32,5306698.65441373,397350.046973034,0,0,0,0,0,0,0,85.023118811881,1956.86238699122,37.496391639604,20.1086080308444,20.828832994089,-1.72029702970297,-1.70565682077311,-1.30850278684578,3.70176992632452,2.93685223443834,2.89383504609712,53.5440229756013,0.00144004063695901,924.040594059406,926.09783354573,926.429768976898,1.05853740616096,2094.88036079946,206.187784417522,0,2094.88036079946,85.0204566218997,85.0204566218997,0.0082358483373097,85.0205572842998,24.8,1015.2,38.14,433.94353345748 +45157,2874.33162930693,457.599466831683,45,85.003306930693,87.5534061386139,18.9542552256436,-0.415049504950495,1839.83168316832,486.405940594059,466.351485148515,20,40,9,32,5306712.8401233,397368.930785962,0,0,0,0,0,0,0,85.0033069306929,1980.48154925745,37.9085104512871,20.329619581127,21.0034878806596,-0.415049504950495,-0.400409296020638,-0.30316920259229,3.48777861148201,2.76707915732828,2.73038112543988,53.5185342563271,0.00172804876435082,952.757425742574,909.631771394961,903.895954738331,1.05878283033752,2159.38818640708,-42.0892959387044,0,2159.38818640708,85.0251876286637,85.0251876286637,-0.00169781829668825,85.0254208392266,24.8,1015.2,37.98,441.520224995568 +45158,2874.33951168317,457.614353762376,45,84.8990891089109,87.4460617821782,19.3814532451485,-1.23049504950495,1833.15841584158,-255.245544554455,-265.395049504951,20,40,9,32,5306727.11120143,397387.732018694,0,0,0,0,0,0,0,84.8990891089108,2004.09048690871,38.762906490297,20.787816071517,21.3602945583854,-1.23049504950495,-1.21585484057509,-0.932813425024759,3.12748786735768,2.48123733085377,2.53422162626287,53.3244167784651,-0.00720020318479509,-520.640594059406,-538.050259778453,-538.007373880245,1.06008646109496,-1172.49564373091,-3055.56543604429,0,-1172.49564373091,84.8666337613958,84.8666337613958,-0.122163949068166,84.864328618576,24.8,1015.2,37.82,457.202419006675 +45159,2874.34736237624,457.629156039604,45,84.0705841584158,86.5927016831683,19.3207678768317,-2.18257425742574,1805.76732673267,-1996.33267326733,-1845.05148514851,20,40,9,32,5306741.32552651,397406.426680098,0,0,0,0,0,0,0,84.0705841584157,2027.57814312433,38.6415357536634,20.7227272332939,21.2609744082905,-2.18257425742574,-2.16793404849589,-1.67512867931121,3.09132526361823,2.45254721080064,2.51802505975636,52.5276422940356,-0.0177845018664439,-3841.38415841584,-4020.41769434369,-4031.3151466832,1.07055710661907,-8627.31048649376,-10206.8508532345,0,-8627.31048649376,83.9974614253503,83.9974614253503,-0.408129921903082,83.9881639335101,24.8,1015.2,37.66,453.302455045443 +45160,2874.35507445545,457.643696633663,45,81.8289108910891,84.2837782178218,19.2746303631683,-0.726039603960396,1748.67326732673,-4389.19801980198,-3860.49306930693,20,40,9,32,5306755.28894502,397424.790762628,0,0,0,0,0,0,0,81.828910891089,2050.6498147965,38.5492607263366,20.6732418755191,21.0932748653891,-0.726039603960396,-0.711399395030538,-0.537357204945733,2.79247072667689,2.21544667995818,2.19719513188643,50.8668434274308,-0.0182165140575316,-8249.69108910891,-8005.30728359964,-7968.2201360223,1.09997301405105,-18461.3958959293,-18910.3450881338,0,-18461.3958959293,81.7984247622781,81.7984247622781,-0.756267087104747,81.7957594016685,24.8,1015.2,37.5277722772277,446.761389442252 +45161,2874.36250465347,457.657814554455,45,79.0389702970297,81.4101394059406,17.5081655661386,-1.43326732673267,1691.81683168317,-4407.36336633663,-3768.47128712871,20,40,9,32,5306768.73963759,397442.619043564,0,0,0,0,0,0,0,79.0389702970296,2072.98253116064,35.0163311322772,18.7785983298059,19.4302631833726,-1.43326732673267,-1.41862711780282,-1.08819487205946,3.39097578386854,2.69027924641138,2.65405049908058,49.2129567558833,-0.00828023366251436,-8175.83465346535,-8175.38914812273,-8176.46312317283,1.13878692387616,-18325.5382791502,-18733.6568775633,0,-18325.5382791502,79.0442917361042,79.0442917361042,-0.74927975470814,79.0449430281133,24.8,1015.2,37.56,378.26497671795 +45162,2874.36969207921,457.671448415842,45,76.3548118811881,78.6454562376238,16.919103410198,-1.09069306930693,1635.55445544554,-4401.85742574258,-3744.33663366336,20,40,9,32,5306781.75140157,397459.836364009,0,0,0,0,0,0,0,76.354811881188,2094.5615617162,33.838206820396,18.14679246894,18.7753094782142,-1.09069306930693,-1.07605286037707,-0.830792666196577,3.28730409151754,2.60802982319253,2.72843807578719,47.5763505719794,-0.0221766258091689,-8146.19405940594,-8152.18732477208,-8154.41179009069,1.17882835001763,-18273.054672862,-18556.1654231854,0,-18273.054672862,76.3569494167237,76.3569494167237,-0.742067771133562,76.3583206635289,24.8,1015.2,37.62,353.100390106171 +45163,2874.37660306931,457.68464980198,45,73.6507326732673,75.8602546534653,16.6353421343564,-0.711188118811881,1573.94059405941,-4444.79207920792,-3787.52871287129,20,40,9,32,5306794.26073359,397476.505870579,0,0,0,0,0,0,0,73.6507326732672,2115.39521421894,33.2706842687129,17.8424408222496,18.3786347105751,-0.711188118811881,-0.696547909882024,-0.544841198254452,2.87802609552792,2.28332325823808,2.12081689112273,45.7840759952202,-0.0141123982421984,-8232.32079207921,-8227.03954514264,-8225.28838524544,1.22213356291684,-18422.919903939,-18741.2327136995,0,-18422.919903939,73.6666730712674,73.6666730712674,-0.749535720898816,73.6691116128534,24.8,1015.2,37.68,338.315480276488 +45164,2874.3832649505,457.697378811881,45,70.9863465346535,73.1159369306931,17.757298679901,-0.389405940594059,1513.87128712871,-4449.70297029703,-3798.3603960396,20,40,9,32,5306806.31913061,397492.578775094,0,0,0,0,0,0,0,70.9863465346534,2135.48106641917,35.514597359802,19.0458091153291,19.1806801116006,-0.389405940594059,-0.374765731664202,-0.293204856980976,1.53410857538689,1.21710702911498,1.30123311778224,44.0367306863341,-0.0257767274015664,-8248.06336633663,-8245.60784236839,-8245.15697443631,1.26802117387998,-18419.3480471222,-18793.8566030293,0,-18419.3480471222,70.9867648269776,70.9867648269776,-0.751546689322389,70.9842845329479,24.8,1015.2,37.74,368.882476438642 +45165,2874.38967732673,457.709637029703,45,68.3389405940594,70.3891088118812,16.8680533553465,-1.22405940594059,1460.55445544554,-4413.54752475248,-3819.05841584159,20,40,9,32,5306817.92581907,397508.057045073,0,0,0,0,0,0,0,68.3389405940593,2154.82206113864,33.7361067106931,18.0920381046892,18.2720887671738,-1.22405940594059,-1.20941919701074,-0.947521875325144,1.60865252117346,1.27624753706235,1.20490080795375,42.4858069203293,-0.00748821131218689,-8232.60594059406,-8231.52080188217,-8230.77278211735,1.31711633363965,-18425.2024683429,-18286.7172316936,0,-18425.2024683429,68.3217008136456,68.3217008136456,-0.731408413118543,68.3181585671118,24.8,1015.2,37.8,334.597977322251 +45166,2874.39584732673,457.72143019802,45,65.6324455445545,67.6014189108911,16.6785544554456,-0.668118811881188,1411.72277227723,-4597.28415841584,-3977.11188118812,20,40,9,32,5306829.09387207,397522.948074492,0,0,0,0,0,0,0,65.6324455445544,2173.42816243126,33.3571089108911,17.8887887287487,17.9558124785043,-0.668118811881188,-0.653478602951331,-0.520369609371047,1.19999228739718,0.952031082615221,0.964517479559086,41.0653508360329,0.00583216457968403,-8574.39603960396,-8599.89601019508,-8635.21045085971,1.37145915533853,-19320.7895882906,-18980.6589909,0,-19320.7895882906,65.6307247328692,65.6307247328692,-0.75927877441209,65.6279438574741,24.8,1015.2,37.86,322.86394659056 +45167,2874.40175841584,457.732742178218,45,62.7664851485148,64.6494797029703,15.790900990099,-1.04960396039604,1541.4504950495,-5092.67920792079,-4377.32079207921,20,40,9,32,5306839.79301422,397537.231226148,0,0,0,0,0,0,0,62.7664851485148,2191.26763864139,31.581801980198,16.9367250862823,17.0358705075493,-1.04960396039604,-1.03496375146618,-0.820601612581547,1.23434020283245,0.979281493689398,0.979763815517441,44.838977325184,0.0158404470065492,-9470,-9444.90919517694,-9397.5857701219,1.43417673045519,-24370.0165945442,-21084.3084785372,0,-24370.0165945442,62.7560593079109,62.7560593079109,-0.84350935093509,62.7491881140847,24.8,1015.2,37.92,290.618746444648 +45168,2874.40741455446,457.743498712871,45,59.7415346534653,61.5337806930693,14.9815742574257,-0.330693069306931,1482.83663366337,-5125.1801980198,-4422.53465346534,20,40,9,32,5306850.03221951,397550.814152495,0,0,0,0,0,0,0,59.7415346534653,2208.27265602312,29.9631485148515,16.0686717443697,16.1740880203247,-0.330693069306931,-0.316052860377073,-0.249128293820254,1.15171645068037,0.913730755541163,0.921149306732137,43.1339692110246,-0.0156244409110053,-9547.71485148515,-9545.83835898442,-9546.68012152486,1.50677332926481,-24817.2786866948,-20875.6126584901,0,-24817.2786866948,59.7336993432016,59.7336993432016,-0.83487866113344,59.7269369541011,24.8,1015.2,37.98,261.907116695561 +45169,2874.4127609901,457.753765049505,45,56.6991089108911,58.4000821782178,13.7428514851485,-1.01851485148515,1417.82178217822,-5125.74752475247,-4363.08811881188,20,40,9,32,5306859.70861957,397563.776322734,0,0,0,0,0,0,0,56.699108910891,2224.4404517327,27.485702970297,14.7400643985741,14.9452975752574,-1.01851485148515,-1.00387464255529,-0.790367418347613,1.42657226261517,1.13179155388757,1.09553625535213,41.2427638425063,-0.0196565546944906,-9488.83564356435,-9486.74860307813,-9482.1599727601,1.58765433988556,-24846.967128136,-20645.8574494984,0,-24846.967128136,56.7128878541319,56.7128878541319,-0.825648901523806,56.7222476950776,24.8,1015.2,38.04,223.910951940036 +45170,2874.41779772277,457.763545841584,45,53.7528613861386,55.3654472277228,13.8579504950495,-0.72049504950495,1343.87623762376,-5074.95346534653,-4331.70198019802,20,40,9,32,5306868.82210731,397576.123539425,0,0,0,0,0,0,0,53.7528613861385,2239.77952629265,27.715900990099,14.8635152573705,14.8743156024295,-0.72049504950495,-0.705854840575094,-0.562855077194773,1.01098368284447,0.802078396830702,0.840606659525458,39.0917751430806,-0.0168484754524205,-9406.65544554456,-9405.12926183708,-9404.43575560411,1.6747477482203,-24626.8684134598,-20775.0795979404,0,-24626.8684134598,53.7501174394666,53.7501174394666,-0.830844470585678,53.7491466982815,24.8,1015.2,38.0873762376238,221.535527797337 +45171,2874.42256009901,457.772805346535,45,50.7820891089109,52.3055517821782,13.2321287128713,-2.17821782178218,1269.70297029703,-5023.18316831683,-4274.3900990099,20,40,9,32,5306877.43894324,397587.812455685,0,0,0,0,0,0,0,50.7820891089108,2254.29193303082,26.4642574257426,14.192282407237,14.1711286650058,-2.17821782178218,-2.16357761285232,-1.71452999222901,1.00555701292111,0.797773070457871,0.782495586293739,36.9341622567249,-0.0175684957709,-9297.57326732673,-9303.2356337614,-9398.99730301436,1.77274594679721,-24344.1032783178,-20095.1058622404,0,-24344.1032783178,50.7923808450151,50.7923808450151,-0.803638532170055,50.7991122283244,24.8,1015.2,38.06,201.14646547278 +45172,2874.4270550495,457.781555346535,45,47.8122277227723,49.2465945544554,12.1383663366337,-1.76782178217822,1218.38118811881,-5522.70594059406,-4714.28118811881,20,40,9,32,5306885.57170099,397598.857979529,0,0,0,0,0,0,0,47.8122277227722,2267.99288927395,24.2767326732673,13.0191541172382,13.0703504986862,-1.76782178217822,-1.75318157324836,-1.38619915893894,0.949771381494843,0.753514740101163,0.836233268761821,35.4412721283895,0.0273607721022213,-10236.9871287129,-10410.1817959024,-10584.0025896721,1.88313878317984,-27406.616383912,-22487.2618952239,0,-27406.616383912,47.7910415645524,47.7910415645524,-0.89978106721563,47.7212122472046,24.8,1015.2,38.02,171.187784442467 +45173,2874.43125465347,457.789724851485,45,44.2077722772277,45.5340054455446,10.0084059405941,-2.18178217821782,1469.58910891089,-6905.32178217822,-5894.98316831683,20,40,9,32,5306893.17022715,397609.170783844,0,0,0,0,0,0,0,44.2077722772277,2280.78843330585,20.0168118811881,10.7346388957818,11.0511850172248,-2.18178217821782,-2.16714196928797,-1.66025428353691,1.87905903512881,1.49077842107787,1.50798549517375,42.7486143365743,0.0345609752870165,-12800.3049504951,-12622.0648171748,-12263.1639096095,2.03740389677304,-44653.0611810862,-27443.0980170932,0,-44653.0611810862,44.1859428487403,44.1859428487403,-1.09810993475585,44.1276472439039,24.8,1015.2,37.98,123.137225091641 +45174,2874.4351190099,457.797173465347,45,40.1666138613861,41.3716122772277,7.48876292628713,-0.765445544554455,1389.09405940594,-6822.84158415842,-5917.43663366337,20,40,9,32,5306900.16371064,397618.574706495,0,0,0,0,0,0,0,40.1666138613861,2292.49864372939,14.9775258525743,8.03216478897528,8.67571821616164,-0.765445544554455,-0.750805335624598,-0.546699537969663,3.20610213100751,2.54360708382434,2.24988856375024,40.4071082608789,-0.0422651926947472,-12740.2782178218,-12774.2938437408,-13150.1616155319,2.24262998078241,-46138.9754140241,-27566.633064271,0,-46138.9754140241,40.1718291343985,40.1718291343985,-1.10211417181322,40.1660028735743,24.8,1015.2,37.94,76.767687810694 +45175,2874.4385990099,457.803935148515,45,36.0854356435644,37.1679987128713,8.81407920792079,-2.76564356435644,1270.11386138614,-7802.41089108911,-6776.98910891089,20,40,9,32,5306906.46042971,397627.110435366,0,0,0,0,0,0,0,36.0854356435643,2303.09658652367,17.6281584158416,9.45364906833827,9.56919203931308,-2.76564356435644,-2.75100335542658,-2.1569340843012,0.877657235138596,0.696301948362039,0.951753465357968,36.9461145940116,0.0209525912677537,-14579.4,-14616.6995980786,-14348.3391452156,2.4976515150174,-53909.3520236558,-31666.4384668599,0,-53909.3520236558,36.0255371042054,36.0255371042054,-1.26699724427888,35.8440970405489,24.8,1015.2,37.9,91.9472896879912 +45176,2874.44163990099,457.809924851485,45,31.1417920792079,32.0760458415842,7.24744554455445,-3.20831683168317,1473.62871287129,-8629.83663366337,-7364.39405940594,20,40,9,32,5306911.96083954,397634.670252108,0,0,0,0,0,0,0,31.1417920792079,2312.43131493401,14.4948910891089,7.77333686297471,7.95241639853102,-3.20831683168317,-3.19367662275332,-2.48279131785099,1.14147282279724,0.905603826521778,0.893922075249971,42.8661216525502,0.0168484754524205,-15994.2306930693,-15153.4866777767,-12699.9426522769,2.89587391613022,-79373.959845754,-33158.1217722004,0,-79373.959845754,31.1717126752279,31.1717126752279,-1.3265733751593,31.5020736324788,24.8,1015.2,37.86,63.5705215550732 +45177,2874.44422316832,457.815143366337,45,27.2160891089109,28.0325717821782,6.59312871287129,-3.38326732673267,1549.5,-4029.27821782178,-3389.72475247525,20,40,9,32,5306916.63062294,397641.254540532,0,0,0,0,0,0,0,27.2160891089109,2320.47444045656,13.1862574257426,7.0715412970033,7.17054725602371,-3.38326732673267,-3.36862711780282,-2.63600625077902,0.763316945987918,0.605588440942114,0.595982832142257,45.0731279327536,0.0809302837970968,-7419.00297029703,-7902.90266640525,-8109.6045695338,3.30898024591663,-43552.1301192686,-18276.7471828116,0,-43552.1301192686,27.3333301637094,27.3333301637094,-0.732855711313703,28.2479061051237,24.8,1015.2,37.82,51.5993856882709 +45178,2874.4465339604,457.819916633663,45,25.6937425742574,26.4645548514852,6.31614851485149,-2.73742574257426,1732.19801980198,-598.359405940594,-453.780198019802,20,40,9,32,5306920.80553367,397647.275331921,0,0,0,0,0,0,0,25.6937425742574,2327.77597959298,12.632297029703,6.77446277873845,6.84771638458634,-2.73742574257426,-2.7227855336444,-2.13486811889724,0.682939953329912,0.541820201644898,0.520815953915938,50.3875979034508,0.0100802844587131,-1052.1396039604,-1352.97670816587,-3179.59594320281,3.50289973615024,-7304.17538317663,-4521.0286954165,0,-7304.17538317663,25.7636887560043,25.7636887560043,-0.181093356860434,26.4150676439111,24.8,1015.2,37.78,47.0604217283874 +45179,2874.44861118812,457.82473,45,25.5655544554455,26.3325210891089,6.24626732673267,-3.26811881188119,1733.5396039604,499.037623762376,584.19603960396,20,40,9,32,5306924.54692217,397653.338379858,0,0,0,0,0,0,0,25.5655544554455,2334.8845727448,12.4925346534653,6.69951085087739,6.78077693304773,-3.26811881188119,-3.25347860295134,-2.5490095433933,0.689688712266446,0.547174426287952,0.591731646701129,50.4266230047124,0.00252007111467828,1083.23366336634,1097.31051857661,-106.696498067036,3.52037462040078,7695.80167535211,636.892209845946,0,7695.80167535211,25.5868995196549,25.5868995196549,0.0254114520362858,25.7792540608459,24.8,1015.2,37.74,46.1272104212484 +45180,2874.4503819802,457.829818712871,45,25.8008217821782,26.5748464356436,5.11586138613861,-0.799108910891089,1552.06930693069,818.357425742574,956.924752475247,20,40,9,32,5306927.71460784,397659.73427844,0,0,0,0,0,0,0,25.8008217821782,2342.01424961498,10.2317227722772,5.48708005520929,5.83278692755876,-0.799108910891089,-0.784468701961231,-0.607839955400034,1.75120281494096,1.38934185602415,1.2771334256097,45.1478660418117,-0.11736331191216,1775.28217821782,1379.92192922262,255.190087624343,3.48830195742934,11026.486155518,1442.81213395944,0,11026.486155518,25.7902693853543,25.7902693853543,0.060309991395182,25.6602499597148,24.8012623762376,1015.2,37.710099009901,34.7359059750623 +45181,2874.45178465347,457.835206633663,45,25.7219603960396,26.4936192079208,5.26631683168317,-1.71475247524752,1283.69801980198,-925.046534653465,-791.016831683168,20,40,9.99009900990099,32,5306930.19380593,397666.490720078,0,0,0,0,0,0,0,25.7219603960396,2349.19211149617,10.5326336633663,5.64845289394217,5.95621195264147,-1.71475247524752,-1.70011226631767,-1.24204132873657,1.56310192686216,1.24010932011596,1.38625103753342,37.3412617447932,-0.0159844510702451,-1716.06336633663,-1313.84217233605,-580.26374929002,3.49916669991311,-8962.13910919178,-3219.27418194063,0,-8962.13910919178,25.6984892657582,25.6984892657582,-0.128467797274774,25.4629181748683,24.81,1015.2,37.74,36.0479755952468 +45182,2874.45274772277,457.840700594059,45,25.0728712871287,25.8250574257426,4.33275247524753,-2.24990099009901,1260.51485148515,-1016.42673267327,-863.5,20,40,10,32,5306931.85636978,397673.364777811,0,0,0,0,0,0,0,25.0728712871287,2356.25003490101,8.66550495049505,4.64714696053049,5.12460767405381,-2.24990099009901,-2.23526078116916,-1.60361480721046,2.34761953321057,1.86251760885805,1.87367569179205,36.6668907145053,-0.0105842986816488,-1879.92673267327,-1878.57382609548,-1548.11003080412,3.58988931180467,-9899.42176805577,-5046.63059064253,0,-9899.42176805577,25.0666687579649,25.0666687579649,-0.201664597152782,25.0406724119838,24.82,1015.2,37.78,27.0148381681835 +45183,2874.45325940594,457.846174455446,45,24.4424356435644,25.1757087128713,4.59992079207921,-1.67940594059406,1229.03465346535,-1088.57722772277,-923.669306930693,20,40,10,32,5306932.6832616,397680.198968916,0,0,0,0,0,0,0,24.4424356435643,2363.11547898792,9.19984158415842,4.93370162494009,5.31594104559329,-1.67940594059406,-1.6647657316642,-1.22255790195352,1.88413095591553,1.49480230213796,1.48270441495732,35.7511688734631,-0.00734420724849099,-2012.24653465346,-2009.88420743064,-1931.7792036921,3.68220171526423,-10595.3224397463,-4059.81694767301,0,-10595.3224397463,24.4223700617586,24.4223700617586,-0.162252611399757,24.4051374708944,24.83,1015.2,37.82,28.5792061572773 +45184,2874.45352415842,457.851518613861,45,23.6604356435644,24.3702487128713,4.07778217821782,-0.617623762376238,1193.41089108911,-1065.62475247525,-898.067326732674,20,40,10,32,5306933.05562491,397686.863507829,0,0,0,0,0,0,0,23.6604356435643,2369.8047618537,8.15556435643564,4.37367543229613,4.82653768304257,-0.617623762376238,-0.602983553446381,-0.442655412248042,2.2231447233855,1.76376373418679,1.81692347815161,34.7149156311073,-0.0128163616689353,-1963.69207920792,-1966.62496814038,-2013.87722884872,3.8042280492363,-10371.9027872192,-4800.27642468861,0,-10371.9027872192,23.7023617292422,23.7023617292422,-0.19176769162065,23.7454277566384,24.84,1015.2,37.86,23.5623468982307 +45185,2874.45389693069,457.856677920792,45,23.1891287128713,23.8848025742574,3.70714851485149,-3.05277227722772,1142.57920792079,-983.149504950495,-932.384158415841,20,40,10,32,5306933.63216908,397693.301372274,0,0,0,0,0,0,0,23.1891287128713,2376.31010973599,7.41429702970297,3.97614773782871,4.48417162839472,-3.05277227722772,-3.03813206829787,-2.16011319890632,2.48781504495686,1.97374372774846,1.81990263310719,33.2362819050778,-0.0168484754524205,-1915.53366336634,-1969.25451426331,-2084.39564285938,3.88148930350348,-9883.08844588821,-4574.83075588786,0,-9883.08844588821,23.1522872267425,23.1522872267425,-0.18268089185156,22.9686043049422,24.85,1015.2,37.9,20.5901861958244 +45186,2874.45475316832,457.861542970297,45,22.2008910891089,22.8669178217822,4.65204950495049,-3.48643564356436,1065.63366336634,-1101.36831683168,-1347.32574257426,20,40,10,32,5306935.1107654,397699.388635904,0,0,0,0,0,0,0,22.2008910891089,2382.6257108636,9.30409900990099,4.98961291711754,5.2313010729863,-3.48643564356436,-3.4717954346345,-2.63808872293913,1.23054275235904,0.976268731921386,0.979745015655305,30.9980267430524,-0.0237606705098238,-2448.69405940594,-2352.8860797961,-2029.73376082314,4.05510713503933,-12305.0137532617,-8157.17274878655,0,-12305.0137532617,22.195223801588,22.195223801588,-0.325857214434312,22.0924974529256,24.86,1015.2,37.94,27.4490669053057 +45187,2874.45622366337,457.865804653465,45,21.0450693069307,21.6764213861386,4.94119801980198,-3.5,987.613861386139,-854.146534653465,-1050.80792079208,20,40,10,32,5306937.74051186,397704.744615457,0,0,0,0,0,0,0,21.0450693069307,2388.62391848187,9.88239603960396,5.29974271327148,5.41102779784496,-3.5,-3.48535979107015,-2.71168451807517,0.709144438640057,0.5626099056965,0.607223553902393,28.728522699205,-0.0180725099938357,-1904.95445544554,-1946.92117439467,-1517.5600091577,4.27738840177179,-9364.26607774251,-6843.04120484939,0,-9364.26607774251,21.0617984511322,21.0617984511322,-0.27340184513501,21.2640896161724,24.87,1015.2,37.98,29.362430321371 +45188,2874.45826465346,457.869212475248,45,20.2381782178218,20.8453235643564,4.75485148514851,-3.5,929.584158415842,-730.268316831683,-911.171287128713,20,40,9.9009900990099,32,5306941.44587521,397709.055894839,0,0,0,0,0,0,0,20.2381782178217,2394.34870335535,9.50970297029703,5.09987444545155,5.20620397187686,-3.5,-3.48535979107015,-2.71259523128457,0.644791714040872,0.511554749165213,0.523673264559869,27.0405070645617,-0.0171364835798123,-1641.4396039604,-1416.71313596706,-843.169242894924,4.44746884246347,-7897.81174022061,-4579.37605914975,0,-7897.81174022061,20.2452995784727,20.2452995784727,-0.182876951061443,20.6729800025472,24.88,1015.2,38.02,27.156915657194 +45189,2874.46079415842,457.871580891089,45,19.9376633663366,20.5357932673267,4.40751485148515,-3.5,918.029702970297,763.70495049505,610.845544554455,20,40,9.68316831683168,32,5306946.07909477,397712.08869673,0,0,0,0,0,0,0,19.9376633663366,2399.90298050057,8.8150297029703,4.72733426674739,4.89344206022005,-3.5,-3.48535979107015,-2.67876903583125,0.885194379106773,0.702281649571131,0.65168237511789,26.7044015798954,0.00561615848414017,1374.55049504951,1043.32301735124,-614.749416253442,4.51439948766211,6630.53754287576,1688.80903810559,0,6630.53754287576,19.9799586315067,19.9799586315067,0.0674552603775282,20.3199543262287,24.89,1015.2,38.06,24.0075928747664 +45190,2874.4636260396,457.872896039604,45,20.3833960396039,20.9948979207921,5.2879900990099,-3.5,923.094059405941,56.6594059405939,-81.340594059406,20,40,10,32,5306951.2956812,397713.819645794,0,0,0,0,0,0,0,20.3833960396039,2405.50796729925,10.5759801980198,5.67169882339639,5.6681548931878,-3.5,-3.48535979107015,-2.7626644688324,0.612327238306063,0.485798591975748,0.507354186133457,26.8517177370563,0.00619217473892378,-24.6811881188117,102.686550338202,-503.30240311689,4.41543596865293,-84.9005127130626,1035.74986238002,0,-84.9005127130626,20.3373402607587,20.3373402607587,0.0413235630493665,20.113054717384,24.8987376237624,1015.2,38.0936881188119,32.3181472337098 +45191,2874.46662594059,457.873068514851,45,20.1760099009901,20.7812901980198,5.24249504950495,-3.5,913.410891089109,-626.893069306931,-811.89702970297,20,40,10,32,5306956.84873287,397714.132982846,0,0,0,0,0,0,0,20.1760099009901,2411.15249037406,10.4849900990099,5.62290254845709,5.61755235395914,-3.5,-3.48535979107015,-2.76466726957362,0.535854002397645,0.425127454054608,0.451350429954808,26.5700457884671,-0.0156964429428533,-1438.7900990099,-1442.41783158514,-355.956494019628,4.46086946996502,-6809.31131353229,-2486.72601174601,0,-6809.31131353229,20.173671208705,20.173671208705,-0.0991991525885168,20.0112672965141,24.9,1015.2,38.09,31.6829345741545 +45192,2874.46938950495,457.872013366337,45,19.8190693069307,20.4136413861386,5.90957425742574,-3.5,888,-632.131683168317,-815.185148514851,20,40,10,32,5306961.99111678,397712.909630552,0,0,0,0,0,0,0,19.8190693069307,2416.70357703522,11.8191485148515,6.33838655804042,6.164679454879,-3.5,-3.48535979107015,-2.83274917066183,0.96667903289907,0.766928667707115,0.772797698408841,25.8308729295161,-0.0039601117516373,-1447.31683168317,-1375.76173904519,-193.472924709671,4.54114401172533,-6789.83481863313,-1899.9751011388,0,-6789.83481863313,19.8258235467111,19.8258235467111,-0.0759320981603146,19.9259359205275,24.9,1015.2,38.08,38.1962227569353 +45193,2874.47186514851,457.869669108911,45,19.5503762376238,20.1368875247525,6.20567326732673,-3.5,875.757425742574,348.921782178218,191.040594059406,20,40,10,32,5306966.62864,397710.071322597,0,0,0,0,0,0,0,19.5503762376237,2422.17173949397,12.4113465346535,6.65597119315135,6.40121477065511,-3.5,-3.48535979107015,-2.8638750512567,1.28427775572442,1.01890016711106,0.984466831254079,25.4747508799961,0.00201605689174262,539.962376237624,536.507077737477,727.488138183525,4.60356599816526,2537.62605412678,-721.865347963036,0,2537.62605412678,19.5942021370454,19.5942021370454,-0.0289092028014727,19.8509400833985,24.9,1015.2,38.07,41.0825889686941 +45194,2874.47373910891,457.866306336634,45,19.7707722772277,20.3638954455445,6.13357425742574,-3.5,877.886138613861,1183.13267326733,954.970297029703,20,40,10,32,5306970.17413174,397705.944762779,0,0,0,0,0,0,0,19.7707722772277,2427.62356694171,12.2671485148515,6.57864051325843,6.35250455432307,-3.5,-3.48535979107015,-2.85300564126376,1.15462652627136,0.916039505726038,0.948480493380094,25.5366726273854,-0.00295208330576598,2138.10297029703,2172.43814331928,2362.38115296224,4.55227816655124,9942.17503815995,2000.78315596174,0,9942.17503815995,19.7603481031271,19.7603481031271,0.080080656580502,19.9951200010651,24.9,1015.2,38.06,40.4702045349853 +45195,2874.47479940594,457.862286732673,45,20.0550297029703,20.6566805940594,6.44589108910891,-3.5,897.257425742574,2319.69801980198,1967.79900990099,20,40,10,32,5306972.22694549,397700.973440062,0,0,0,0,0,0,0,20.0550297029703,2433.15075635315,12.8917821782178,6.91361977260235,6.6345454057356,-3.5,-3.48535979107015,-2.86995632280653,1.39797823813886,1.10910607468541,1.07433374965131,26.1001605286274,0.00864024382175411,4287.49702970297,4272.67049308891,4221.69446586523,4.48800012889234,20102.411305188,3861.74679659479,0,20102.411305188,20.0907600235271,20.0907600235271,0.154324467100183,20.4830084900323,24.9,1015.2,38.05,44.1115878202133 +45196,2874.47501138614,457.857840792079,89.5544554455445,21.0256138613861,21.6563822772277,6.55354455445545,-3.5,945.524752475248,3466.56534653465,2935.77227722772,20,40,10,32,5306972.71780215,397695.443279316,0,0,0,0,0,0,0,21.0256138613861,2438.84136694171,13.1070891089109,7.02908482100605,6.78179556132234,-3.5,-3.48535979107015,-2.85556811408795,1.25694527638165,0.997215552824329,1.00501812721309,27.5042001496625,0.0254887192741746,6402.33762376238,6389.67493383002,5663.73742770405,4.28172329879738,30159.6600256787,8364.17476760705,0,30159.6600256787,21.0292157631604,21.0292157631604,0.334133908440349,21.2446726536713,24.9,1015.2,38.04,46.1015330102371 +45197,2874.47432891089,457.853164950495,208.960396039604,22.3301386138614,23.0000427722772,6.7969504950495,-3.5,1013.34158415842,3956.49603960396,3309.51386138614,20,40,10,32,5306971.55689949,397689.597407937,0,0,0,0,0,0,0,22.3301386138614,2444.85993514853,13.593900990099,7.29015285650285,7.06370151020099,-3.5,-3.48535979107015,-2.84440265366072,1.17009835275032,0.928314301045558,0.920508041772139,29.4769118182326,-0.00244806908283033,7266.0099009901,7313.52766395452,6752.28586954059,4.03187886688642,34549.0689781985,8345.67187988989,0,34549.0689781985,22.2984536810116,22.2984536810116,0.333864327026765,22.2401376053054,24.9,1015.2,38.03,50.0154351012241 +45198,2874.47281633663,457.848614158416,225,23.3413465346535,24.0415869306931,6.93722772277228,-3.43376237623762,837.589108910891,4116.65940594059,3488.5,20,40,10,32,5306968.85560819,397683.880002827,0,0,0,0,0,0,0,23.3413465346534,2451.2065838009,13.8744554455446,7.44060892251809,7.24107645802656,-3.43376237623762,-3.41912216730777,-2.77940641237688,1.06019553164833,0.841121322511381,0.854972977571241,24.3644795489007,-0.052777489344548,7605.1594059406,7462.51308695226,7316.00436708131,3.85691345835708,28626.3077717026,7871.24238827857,0,28626.3077717026,23.3752221350848,23.3752221350848,0.315645797252994,23.3968728558169,24.9,1015.2,38.02,52.5617342192888 +45199,2874.47081871287,457.844205049505,225,24.5100792079208,25.2453815841584,7.15057425742574,-1.98475247524752,984.772277227723,3484.88316831683,2912.25643564356,20,40,10,32,5306965.25271214,397678.323112711,0,0,0,0,0,0,0,24.5100792079207,2457.86493325084,14.3011485148515,7.66943637244018,7.4899064949124,-1.98475247524752,-1.97011226631767,-1.59607575609676,1.00744199546936,0.799268548382995,0.773889843850871,28.6458643666436,0.122259450077821,6397.1396039604,6731.81096951279,8490.8082004494,3.67237171876595,26508.3069676447,7577.82214049884,0,26508.3069676447,24.5124107440447,24.5124107440447,0.301187792046527,24.8662151062821,24.9,1015.2,38.01,56.2859621532088 +45200,2874.46851930693,457.839791584158,225,26.1626633663366,26.9475432673268,5.69862376237624,0.875841584158416,1324.0198019802,5862.39900990099,4873.83366336633,20,40,9.81188118811881,32,5306961.09091205,397672.7508741,0,0,0,0,0,0,0,26.1626633663366,2464.85549235425,11.3972475247525,6.11212900986703,6.34931711044051,0.875841584158416,0.890481793088273,0.650538487560728,1.50764087705684,1.19610850124098,1.08349744729835,38.5141748435963,0.0470893288285599,10736.2326732673,10396.8401431232,9777.02220581832,3.44394000645596,56928.4367845015,19093.5153784425,0,56928.4367845015,26.2639279482403,26.2639279482403,0.762841878247227,26.8964021221318,24.9,1015.2,38.0025247524752,41.142813173012 +45201,2874.46598425743,457.834898118812,225,29.5485544554455,30.4350110891089,7.83582178217822,1.28178217821782,1497.23762376238,6791.43564356435,5420.78514851485,20,40,10,32,5306956.50322821,397666.573074404,0,0,0,0,0,0,0,29.5485544554455,2472.58980409793,15.6716435643564,8.40440703371309,8.36213141808531,1.28178217821782,1.29642238714768,1.05242483986824,0.956113900209533,0.758546668240927,0.867093092130163,43.5528770323159,0.0478813511788874,12212.2207920792,12177.3602293893,11315.4473391726,3.04922593681742,64800.3883334717,23845.0818237008,0,64800.3883334717,29.5412907558082,29.5412907558082,0.952888605692251,29.5841829739488,24.9,1015.2,38.01,70.9106444296427 +45202,2874.46313029703,457.829386534653,225,32.9182871287129,33.9058357425743,8.67528712871287,0.330891089108911,1666.69801980198,6418.93861386138,5111.90594059406,20,40,10,32,5306951.33847413,397659.614956082,0,0,0,0,0,0,0,32.9182871287128,2481.27310167768,17.3505742574257,9.30478591663008,9.26951045732557,0.330891089108911,0.345531298038768,0.275205414966776,0.877697556643587,0.696333938006017,0.821898042304541,48.4822801366903,0.0520574690260685,11530.8445544554,11514.8547397314,11444.3172917211,2.73633493320222,61140.5899592424,22849.2681183267,0,61140.5899592424,32.9093810410744,32.9093810410744,0.912978302780777,32.8488633621918,24.9,1015.2,38.02,86.2695406298593 +45203,2874.45996653465,457.823313069307,225,36.0686534653465,37.1507130693069,7.35616886689109,0.598712871287129,1819.0396039604,5802.74752475248,4778.56336633663,20,40,10,32,5306945.61228282,397651.946854865,0,0,0,0,0,0,0,36.0686534653465,2490.86647802532,14.7123377337822,7.88994939965247,8.32797824015839,0.598712871287129,0.613353080216986,0.438043882756526,2.28582672854948,1.81349340150507,1.60747658297196,52.9137171888043,0.042553200822139,10581.3108910891,10559.406460151,10317.273121847,2.49666078680037,55884.5092387569,20613.6504337394,0,55884.5092387569,36.0483794726007,36.0483794726007,0.823737324227467,35.958878246179,24.9,1015.2,38.03,70.8355137410679 +45204,2874.45652811881,457.816734950495,225,38.7888514851485,39.952517029703,8.63192079207921,1.42861386138614,1879.62871287129,4664.68910891089,4026.22376237624,20,40,10,32,5306939.38849969,397643.641195379,0,0,0,0,0,0,0,38.7888514851485,2501.27992134215,17.2638415841584,9.25827281886422,9.56938905852837,1.42861386138614,1.443254070316,1.07111658640908,1.92910279263058,1.53048135344912,1.57896822462415,54.6761829243785,-0.0851784036761259,8690.91287128713,8860.42848740319,9302.45898007537,2.32102340335087,44106.2726947467,17257.8526832297,0,44106.2726947467,38.7759193216351,38.7759193216351,0.691726845951919,38.7166993713177,24.9,1015.2,38.04,93.2205681292566 +45205,2874.45286980198,457.809702673268,225,41.2134158415842,42.4498183168317,9.27516831683169,0.38990099009901,1485.24257425743,4705.32178217822,4292.95742574257,20,40,10,32,5306932.76743213,397634.762661771,0,0,0,0,0,0,0,41.2134158415841,2512.39178435095,18.5503366336634,9.94819586353376,10.2557506774424,0.38990099009901,0.404541199028867,0.313153703503689,1.67048101766316,1.32530006103918,1.32819117410494,43.2039551859808,-0.0272887700703734,8998.27920792079,8878.22796784629,8839.53963946915,2.18446338405739,34018.5408223107,17041.8426911593,0,34018.5408223107,41.2126435643564,41.2126435643564,0.682083183565881,41.22333764226,24.9,1015.2,38.05,105.541327241643 +45206,2874.44898336634,457.802232376237,225,43.6994059405941,45.0103881188119,10.5688415841584,0.344851485148515,1553.35643564356,4700.98514851485,4217.97425742574,20,40,10,32,5306925.73350379,397625.331079804,0,0,0,0,0,0,0,43.699405940594,2524.18775220024,21.1376831683168,11.3357410386902,11.4991937210205,0.344851485148515,0.359491694078372,0.287058708910794,1.310717154003,1.03987624273355,1.027244662362,45.1853070983726,0.0175684957709,8918.95940594059,8894.32089010881,8822.94555518944,2.0601364136278,33204.689450247,17278.8495739769,0,33204.689450247,43.6939368689344,43.6939368689344,0.690918101711158,43.6855908093599,24.9,1015.2,38.06,132.905373300513 +45207,2874.44486792079,457.79433,225,46.1109504950495,47.494279009901,11.5632871287129,0.476237623762376,1638.42079207921,4527.71881188119,3982.71089108911,20,40,10,32,5306918.28493541,397615.35381482,0,0,0,0,0,0,0,46.1109504950495,2536.6688808031,23.1265742574257,12.4023458392623,12.4835905157179,0.476237623762376,0.490877832692233,0.385963650900154,0.90420638604304,0.717365097803522,0.827086130415633,47.6597289248593,0.0317528960449463,8510.4297029703,8514.78450151946,8515.48062652568,1.95226516718839,31666.8274150085,16188.0106510781,0,31666.8274150085,46.108220076463,46.108220076463,0.647096145258087,46.0889262339167,24.9,1015.2,38.07,156.050678861192 +45208,2874.44051940594,457.786035445545,225,48.3670792079208,49.8180915841584,12.221801980198,0.415247524752475,1714.93564356436,4349.67524752475,3768.0801980198,20,40,10,32,5306910.41332827,397604.880423664,0,0,0,0,0,0,0,48.3670792079207,2549.79862070959,24.443603960396,13.1086440430083,13.173145717722,0.415247524752475,0.429887733682334,0.324792885227212,1.07467042167502,0.852605184005809,0.858439233270445,49.8854557333432,0.0165604673250287,8117.75544554456,8116.99350063719,8129.74556166834,1.86109713236741,30140.7493920717,15166.4264878952,0,30140.7493920717,48.3651001862562,48.3651001862562,0.606435643564358,48.3508960554145,24.9,1015.2,38.08,174.09418896741 +45209,2874.43596425743,457.777362475248,225,50.4887722772277,52.0034354455445,13.160504950495,0.0650495049504951,1791.98514851485,4139.37920792079,3678.26336633663,20,40,10,32,5306902.16734876,397593.928911616,0,0,0,0,0,0,0,50.4887722772276,2563.53484950497,26.3210099009901,14.1154614599223,14.0936928509746,0.0650495049504951,0.0796897138803528,0.0708291954535416,1.01318425648087,0.803824253469483,0.799790085743544,52.1267349807062,0.0324009143315779,7817.64257425743,7827.11997843348,7825.26319784885,1.78282655473486,29056.1768507656,14330.6238311795,0,29056.1768507656,50.4818949122634,50.4818949122634,0.572791066235339,50.4739531004125,24.9,1015.2,38.09,198.953153856656 +45210,2874.43122089109,457.768328415841,225,52.487702970297,54.0623340594059,13.720495049505,-0.162574257425743,1859.72277227723,3964.02772277228,3577.89306930693,20,40,10,32,5306893.58072898,397582.521459705,0,0,0,0,0,0,0,52.4877029702969,2577.84310759078,27.4409900990099,14.7160857285386,14.6850387574141,-0.162574257425743,-0.147934048495885,-0.121645056586825,1.09783206143204,0.870980802919863,0.934861983958128,54.0971425842572,0.0228246440958004,7541.92079207921,7534.04854426037,7532.63520631085,1.71488316960796,27982.8834276243,13371.8516345278,0,27982.8834276243,52.4836234682873,52.4836234682873,0.534569050964493,52.4696317086905,24.9,1015.2,38.1025247524753,216.231962679891 +45211,2874.42630534653,457.758949603961,225,54.3367524752475,55.9668550495049,13.6940099009901,-0.246831683168317,1930.71782178218,3786.40495049505,3425.83861386139,20,40,10,32,5306884.68282124,397570.678937916,0,0,0,0,0,0,0,54.3367524752474,2592.68613102312,27.3880198019802,14.6876787567296,14.7685058897794,-0.246831683168317,-0.232191474238459,-0.198150727444659,1.65582373397578,1.31367149491951,1.21707851607184,56.1623048617202,0.0115923271275201,7212.24356435644,7143.20675423978,7075.85786655503,1.65648541174825,26838.2724579868,12527.1126877022,0,26838.2724579868,54.3379287324771,54.3379287324771,0.500928558202359,54.3292687422831,24.9,1015.2,38.13,219.980965396321 +45212,2874.42122752475,457.749253168317,225,56.0449108910891,57.7262582178218,13.7551881188119,-0.0832673267326732,1802.9900990099,3392.62871287129,3101.67227722772,20,40,10,32,5306875.49136826,397558.435455578,0,0,0,0,0,0,0,56.044910891089,2608.02631718923,27.5103762376238,14.7532962067513,14.9186075715967,-0.0832673267326732,-0.0686271178028157,-0.0570332256099654,1.43029941913038,1.13474854693621,1.12176105484604,52.4468560143022,-0.139971949912417,6494.30099009901,6525.13121262621,6628.9422295739,1.60594780049635,21738.7913533332,11010.0600835623,0,21738.7913533332,56.0392375257327,56.0392375257327,0.441993704320923,56.0321594282419,24.9,1015.2,38.16,223.186945851814 +45213,2874.41600227723,457.739265643564,225,57.652297029703,59.381865940594,13.9970693069307,-0.926930693069307,1469.97524752475,3418.13168316832,3095.45049504951,20,40,10,32,5306866.03329575,397545.824545242,0,0,0,0,0,0,0,57.6522970297029,2623.81637769529,27.9941386138614,15.0127288502262,15.2166962207056,-0.926930693069307,-0.912290484139449,-0.702415835337597,1.64610936718196,1.30596446277208,1.22586347358974,42.7598466535426,0.0138243901148066,6513.58217821782,6583.08433486913,6569.94299757541,1.56118527284735,17392.3902725288,11454.170461413,0,17392.3902725288,57.6512558572688,57.6512558572688,0.458033798429343,57.6513658024316,24.9,1015.2,38.19,232.795655788008 +45214,2874.41062623762,457.728988811881,225,59.2541782178218,61.0318035643564,14.0293635863366,-0.748316831683168,1516.28217821782,3457.95148514852,3083.00495049505,20,40,10,32,5306856.30233101,397532.848312214,0,0,0,0,0,0,0,59.2541782178217,2640.05909309683,28.0587271726733,15.0473664768253,15.335581253281,-0.748316831683168,-0.733676622753309,-0.585044688519887,1.95074717336239,1.54765323316622,1.56782404535954,44.1068606653541,0.00669618896185943,6540.95643564356,6528.55153416331,6519.1833263658,1.51895832103898,17529.031379261,11046.9048978016,0,17529.031379261,59.2627591412606,59.2627591412606,0.441811260333958,59.26554839745,24.9,1015.2,38.22,236.51361496597 +45215,2874.40508881188,457.718446831683,225,60.8792178217821,62.7055943564356,15.9201188118812,0.0167326732673266,1552.24257425743,3447.32673267327,3007.01386138614,20,40,10,32,5306846.2783181,397519.536492563,0,0,0,0,0,0,0,60.8792178217821,2656.74639947747,31.8402376237624,17.0753192504244,17.0377244556757,0.0167326732673266,0.0313728821971835,0.0219138901425551,1.11763680980004,0.88669318393075,1.04936706689387,45.1529061840411,0.0172804876435082,6454.34059405941,6449.96931673365,6447.44948371873,1.4784096826668,17232.5267587009,10956.2648364481,0,17232.5267587009,60.8682620331339,60.8682620331339,0.438084773823912,60.8617248170387,24.9,1015.2,38.25,290.644215286717 +45216,2874.39938722772,457.707647722772,225,62.406603960396,64.2788020792079,17.3235940594059,0.55990099009901,1590.28217821782,3370.11584158416,2945.97425742574,20,40,10,32,5306835.95594662,397505.89897966,0,0,0,0,0,0,0,62.4066039603959,2673.87195770079,34.6471881188119,18.5806338900154,18.3195510979687,0.55990099009901,0.574541199028867,0.462939209698137,1.64910604762599,1.30834192215856,1.24980664141022,46.2594334094804,0.0116643291593681,6316.0900990099,6319.53065385747,6321.45566178425,1.44222024540143,16854.9168935499,10630.8816667473,0,16854.9168935499,62.4074794627977,62.4074794627977,0.425123081615104,62.4073032530861,24.9,1015.2,38.28,335.907076614014 +45217,2874.39351980198,457.696608712871,225,63.9138712871287,65.8312874257426,17.416297029703,0.430594059405941,1628.27722772277,3298.22079207921,2881.23564356436,20,40,10,32,5306825.33171977,397491.957170795,0,0,0,0,0,0,0,63.9138712871286,2691.42031966449,34.8325940594059,18.6800636010615,18.4848164729124,0.430594059405941,0.445234268335798,0.356059462380754,1.42107034580406,1.12742652931771,1.1046412006085,47.3646645983465,0.00266407517837418,6179.45643564356,6180.64505440643,6178.80950351579,1.40819939590407,16486.0559300528,10028.0524925934,0,16486.0559300528,63.9068815802372,63.9068815802372,0.401096297748579,63.9020161308492,24.9,1015.2,38.31,342.03283539063 +45218,2874.38749851485,457.685334356436,225,65.3481881188118,67.3086337623762,17.832396039604,-0.0725742574257427,1666.39603960396,3181.63465346535,2858.71089108911,20,40,10,32,5306814.42773038,397477.717128922,0,0,0,0,0,0,0,65.3481881188118,2709.37395431795,35.6647920792079,19.1263557121821,18.9217850509987,-0.0725742574257427,-0.0579340484958851,-0.0455390314893695,1.42286033854806,1.12884664571999,1.14510772237289,48.4734958888049,0.0210245932996017,6040.34554455446,6034.02049799039,6034.85478222033,1.37729270538438,16129.5820920676,9927.65949419265,0,16129.5820920676,65.3392094892656,65.3392094892656,0.396904170615086,65.3378044072221,24.9,1015.2,38.34,358.466396590664 +45219,2874.38134386139,457.673815742574,225,66.7357623762376,68.7378352475247,17.9777326732673,0.420693069306931,1700.53465346535,3097.23168316832,2796.73564356436,20,40,10,32,5306803.28214184,397463.168426794,0,0,0,0,0,0,0,66.7357623762375,2727.72213787131,35.9554653465347,19.28223830627,19.1241663900985,0.420693069306931,0.435333278236788,0.346994453893502,1.36458948672868,1.08261663013977,1.12364569078828,49.4665479120518,0.00136803860511106,5893.96732673267,5900.79367709048,5901.94740842655,1.3486493303157,15728.3139460661,9577.60305331699,0,15728.3139460661,66.7352386040583,66.7352386040583,0.383090165452184,66.7353176724663,24.9,1015.2,38.37,365.977172288194 +45220,2874.3750529703,457.662069405941,225,68.0813168316832,70.1237563366337,18.8674653465347,0.539405940594059,1734.61386138614,3035.05643564356,2757.46138613861,20,40,10,32,5306791.88927174,397448.331559714,0,0,0,0,0,0,0,68.0813168316831,2746.45131652917,37.7349306930693,20.2365320287663,19.9589568527297,0.539405940594059,0.554046149523917,0.449537595380095,1.69640902063804,1.34587041386684,1.3494375433388,50.4578718865344,0.0111603149364324,5792.51782178218,5792.33252622292,5792.54453513423,1.32198539898413,15454.7391788151,9210.01060884935,0,15454.7391788151,68.0850785217134,68.0850785217134,0.368293141195313,68.0852241523239,24.9,1015.2,38.3949504950495,398.664510044889 +45221,2874.36863990099,457.650088910891,225,69.4014851485149,71.4835297029703,19.3718712871287,1.02405940594059,1767.9504950495,2961.98712871287,2732.10792079208,20,40,10,32,5306780.27530768,397433.198971652,0,0,0,0,0,0,0,69.4014851485147,2765.54914620464,38.7437425742574,20.7775388245841,20.4641262497157,1.02405940594059,1.03869961487045,0.837120313703561,1.82875755452096,1.45087102038606,1.40834492967633,51.4275952514626,0.0101522864905611,5694.09504950495,5693.81425350456,5693.25536041444,1.29683560083211,15189.7543339137,8977.11274552959,0,15189.7543339137,69.4052031173414,69.4052031173414,0.358987136337403,69.401521398243,24.9,1015.2,38.39,419.130429355509 +45222,2874.36211613862,457.637867227723,225,70.7019405940594,72.8229988118812,19.282198019802,1.40534653465347,1797.19801980198,2880.23366336634,2711.2504950495,20,40,10,32,5306768.4616821,397417.762282025,0,0,0,0,0,0,0,70.7019405940593,2785.00809854238,38.564396039604,20.6813586587244,20.4621925830527,1.40534653465347,1.41998674358332,1.1401656590532,1.49070116068547,1.18266913443371,1.20408559718059,52.278371259778,0.00640818083446762,5591.48415841584,5592.452357612,5592.25917318786,1.272983992151,14884.1048817908,8715.54483867583,0,14884.1048817908,70.6822437996274,70.6822437996274,0.348560598634117,70.6803041483691,24.9,1015.2,38.38,418.975684195444 +45223,2874.35549108911,457.625405445544,225,71.9169900990099,74.0744998019802,19.5907722772277,0.0901980198019802,1828.82673267327,2836.93267326733,2648.89504950495,20,40,10,32,5306756.46579635,397402.023153668,0,0,0,0,0,0,0,71.9169900990098,2804.81671969199,39.1815445544554,21.0123237740145,20.794410701994,0.0901980198019802,0.104838228731838,0.0852525221892093,1.55834306368398,1.23633380779716,1.22865364497374,53.1984132227311,0.0045361280064209,5485.82772277228,5487.09985295559,5487.19769504951,1.25147821081285,14608.7908218046,8562.53810219915,0,14608.7908218046,71.9194464268208,71.9194464268208,0.342458255726572,71.917902891089,24.9,1015.2,38.37,432.742795883776 +45224,2874.34876405941,457.612718118812,225,73.1207722772277,75.3143954455445,17.90509956,0.369405940594059,1862.21782178218,2761.93465346535,2617.23861386138,20,40,10,32,5306744.28604663,397385.999687683,0,0,0,0,0,0,0,73.1207722772276,2824.96396958199,35.81019912,19.204334767242,19.4292043766156,0.369405940594059,0.384046149523916,0.308151988541323,2.22424227387129,1.76463449159765,1.63387453324999,54.16972063236,0.0123123474459996,5379.17326732673,5380.77339476522,5380.13713668609,1.23087130479538,14346.2533887335,8158.37464372903,0,14346.2533887335,73.121218606019,73.121218606019,0.326216656319094,73.1208812451125,24.9,1015.2,38.36,379.743268665324 +45225,2874.34195039604,457.599798019802,225,74.2650594059406,76.4930111881188,20.1256930693069,-0.507920792079208,1889.26237623762,2676.8900990099,2567.69504950495,20,40,10,32,5306731.95102252,397369.683384402,0,0,0,0,0,0,0,74.2650594059405,2845.43901105613,40.2513861386138,21.5860596491278,21.3840009131496,-0.507920792079208,-0.493280583149351,-0.40341620967384,2.08009556106423,1.65027363070679,1.86657461827146,54.9564148323307,0.00842423772621026,5244.58514851485,5247.12604646603,5247.91197937976,1.21189967695574,13971.837581208,7939.5948911566,0,13971.837581208,74.2697043427114,74.2697043427114,0.317502913657705,74.2712499795433,24.9,1015.2,38.35,459.165893943243 +45226,2874.33504722772,457.58665980198,225,75.3736633663366,77.6348732673267,21.7880891089109,-1.39663366336634,1917.9504950495,2633.76435643564,2493.83366336634,20,40,10,32,5306719.45508313,397353.092396702,0,0,0,0,0,0,0,75.3736633663365,2866.22832717275,43.5761782178218,23.36908296901,22.8618950129087,-1.39663366336634,-1.38199345443648,-1.11688387721824,2.80711764986883,2.22706702643028,2.10943467251842,55.7909183814484,0.00950426820392952,5127.59801980198,5125.0371728262,5125.9588257433,1.19406633513942,13663.2918656227,7302.21826003959,0,13663.2918656227,75.3740869522595,75.3740869522595,0.291997516583321,75.3740252064402,24.9,1015.2,38.34,523.683387639738 +45227,2874.32805534653,457.57332009901,225,76.4451287128713,78.7384825742575,20.145697469703,-1.12287128712871,1943.92574257426,2646.67326732673,2386.61188118812,20,40,10,32,5306706.79932931,397336.247464592,0,0,0,0,0,0,0,76.4451287128712,2887.31566958199,40.2913949394059,21.6075156148283,21.5259812881083,-1.12287128712871,-1.10823107819885,-0.894481069501069,2.84964647653553,2.2608078807,2.29665943342032,56.5465077036608,0.00619217473892377,5033.28514851485,5032.80750906774,5032.75268680714,1.17732849884998,13403.2684926674,7183.78505060364,0,13403.2684926674,76.4340671502793,76.4340671502793,0.287292095546203,76.4312575103663,24.9,1015.2,38.33,468.524976428864 +45228,2874.32095069307,457.559821287129,225,77.4377623762376,79.7608952475248,18.4410698571287,-1.26722772277228,1969.02475247525,2547.4396039604,2322.89702970297,20,40,10,32,5306693.93825751,397319.200571183,0,0,0,0,0,0,0,77.4377623762376,2908.687859681,36.8821397142574,19.7791963019051,20.1322912479058,-1.26722772277228,-1.25258751384242,-0.993307035157425,2.62496018972227,2.0825497942688,2.03537299258552,57.2766083065991,0.0104402946179529,4870.33663366337,4915.33370257818,4923.78634171109,1.16223953550079,12967.6119727909,6885.10283336439,0,12967.6119727909,77.4344964219193,77.4344964219193,0.275303891775311,77.4335288990437,24.9,1015.2,38.32,407.28456289567 +45229,2874.31376386138,457.546139108911,225,78.4077722772277,80.7600054455446,19.7125335531683,-0.656633663366337,1775.76237623762,2551.16138613861,2458.33861386138,20,40,10,32,5306680.92907814,397301.922509556,0,0,0,0,0,0,0,78.4077722772276,2930.33411540157,39.4250671063366,21.1429203281981,21.2697356592354,-0.656633663366337,-0.641993454436478,-0.505325386778463,2.20120805616471,1.74635996479384,1.80463085256667,51.6548336639748,-0.0856104158672136,5009.5,4975.26125870013,4965.89525547073,1.14786129521824,11875.0619124342,6989.43963060959,0,11875.0619124342,78.4186899323595,78.4186899323595,0.280338801206845,78.419993489004,24.9,1015.2,38.31,454.941345790674 +45230,2874.30650366337,457.532259108911,225,79.4195841584158,81.8021716831683,18.6441408140594,0.309009900990099,1725.41089108911,2482.43861386139,2345.23069306931,20,40,10,32,5306667.78843642,397284.395563126,0,0,0,0,0,0,0,79.4195841584157,2952.25984966999,37.2882816281188,19.9970025545502,20.419006244612,0.309009900990099,0.323650109919957,0.244636220010385,2.64181078920777,2.09591845891721,2.10301867740356,50.1901683321237,0.019008536407859,4827.66930693069,4829.17069895108,4830.34709541751,1.13323242989972,10982.8267235873,6655.48719323365,0,10982.8267235873,79.4151863542789,79.4151863542789,0.266063239987374,79.4149530360114,24.9,1015.2,38.3050495049505,418.467700717231 +45231,2874.29916118812,457.518206336634,225,80.3659702970297,82.7769494059406,17.3774521451485,0.327128712871287,1747.9801980198,2476.11386138614,2311.90396039604,20,40,10,32,5306654.49927298,397266.650634303,0,0,0,0,0,0,0,80.3659702970296,2974.45267725525,34.754904290297,18.6384000423374,19.3950139191267,0.327128712871287,0.341768921801145,0.261568408517867,3.85800444782338,3.06080313162874,3.03461555768585,50.8466828585134,0.00280807924207009,4788.01782178218,4785.11413586903,4785.12337550904,1.11988891916069,10905.5631464929,6478.01731866965,0,10905.5631464929,80.3630693069306,80.3630693069306,0.259097691947408,80.3623170700709,24.9,1015.2,38.33,376.208391462802 +45232,2874.29173089109,457.503988316832,225,81.3209306930693,83.7605586138614,18.4286210120792,-0.0386138613861386,1766.48514851485,2475.52772277228,2267.21386138614,20,40,10,32,5306641.05115242,397248.696909404,0,0,0,0,0,0,0,81.3209306930692,2996.90857794282,36.8572420241584,19.7658441400255,20.3450243411714,-0.0386138613861386,-0.023973652456281,-0.0159795114730916,3.13553970367021,2.48762537061216,2.64888100831885,51.3849700486086,0.00489613816566067,4742.74158415842,4742.54845603372,4742.02214142565,1.10673987365381,10788.7579796076,6456.25043756118,0,10788.7579796076,81.3035976865012,81.3035976865012,0.25820997941377,81.3023366434832,24.9,1015.2,38.36,415.341483352931 +45233,2874.28419693069,457.48962940594,225,82.2030891089109,84.6691817821782,19.1479801980198,-1.63960396039604,1785.42079207921,2372.03267326733,2164.68316831683,20,40,10,32,5306627.41419217,397230.564198958,0,0,0,0,0,0,0,82.2030891089108,3019.62084315184,38.2959603960396,20.5374016830819,21.0072241143285,-1.63960396039604,-1.62496375146618,-1.25610806255466,2.7662687200488,2.19465894240451,2.1485772535885,51.9357855922454,-0.00734420724849099,4536.71584158416,4495.0412900696,4489.47917158689,1.09486502112214,10319.0017703518,6109.72252170245,0,10319.0017703518,82.2058460935201,82.2058460935201,0.244449073620246,82.2046454718865,24.9,1015.2,38.39,443.074869032444 +45234,2874.27656792079,457.475142475247,225,82.9563762376238,85.4450675247525,19.4611463145545,-0.972178217821782,1798.33663366337,1957.44752475248,1766.62871287129,20,40,10,32,5306613.60406413,397212.268815554,0,0,0,0,0,0,0,82.9563762376236,3042.5684658141,38.9222926291089,20.8732918533395,21.3171784757887,-0.972178217821782,-0.957538008891924,-0.733205153336042,2.54088211517812,2.01584524860368,1.97499972455533,52.3114921944281,0.00489613816566066,3724.07623762376,3742.13480050975,3744.04760650377,1.08491446736942,8453.71154628954,4141.35506085179,0,8453.71154628954,82.9461006764041,82.9461006764041,0.165614209935853,82.9448871832136,24.9,1015.2,38.42,455.36479896193 +45235,2874.26886207921,457.460572871287,225,83.452099009901,85.955661980198,19.972099559901,-1.09079207920792,1811.48514851485,1576.80495049505,1527.59504950495,20,40,10,32,5306599.65350909,397193.867837563,0,0,0,0,0,0,0,83.4520990099009,3065.68650855338,39.944199119802,21.421321041402,21.779871128291,-1.09079207920792,-1.07615187027806,-0.83518915330836,2.35512408161149,1.86847144990661,1.957820518928,52.6939669876044,0.00374410565609344,3104.4,3122.11740025488,3124.63750567717,1.07846611480012,7056.66121448671,3011.16095504933,0,7056.66121448671,83.452585334771,83.452585334771,0.120415754446725,83.45208147879,24.9,1015.2,38.45,475.75140079945 +45236,2874.26111059406,457.445931584158,225,83.8343663366337,86.3493973267327,18.547301429802,-0.808910891089109,1817.24257425743,1418.98811881188,1373.76435643564,20,40,10,32,5306585.62005529,397175.375980882,0,0,0,0,0,0,0,83.8343663366335,3088.92457931795,37.0946028596039,19.8931362818327,20.5893063093665,-0.808910891089109,-0.794270682159251,-0.613991892713197,3.61149368113326,2.86523028124205,2.69086975252095,52.8614437136827,-0.00417611784718115,2792.75247524753,2794.49145181845,2794.95979041787,1.07354700747321,6339.26950470805,2225.53697399557,0,6339.26950470805,83.8339970591117,83.8339970591117,0.0890558115217573,83.8333618178159,24.9,1015.2,38.48,424.107227260486 +45237,2874.25331752475,457.431244752475,225,84.1421089108911,86.6663721782178,19.2156611662376,-1.12732673267327,1823.36633663366,1283.67425742574,1280.62178217822,20,40,10,32,5306571.51064267,397156.825934302,0,0,0,0,0,0,0,84.142108910891,3112.25536903193,38.4313223324752,20.6099937380253,21.1756790154436,-1.12732673267327,-1.11268652374341,-0.8636709045168,3.07040660900887,2.43595109630577,2.47191492380815,53.0395767404745,0.00280807924207008,2564.29603960396,2562.8015880796,2562.90715277135,1.0696205744447,5819.09989477355,1722.83052139759,0,5819.09989477355,84.1190102931084,84.1190102931084,0.0688903048720684,84.1185221615618,24.9,1015.2,38.51,449.06752864212 +45238,2874.24549455445,457.416518811881,225,84.3529702970297,86.8835594059406,20.6758355335644,-0.857623762376238,1827,1178.93663366337,1175.97128712871,20,40,10,32,5306557.34677015,397138.226098265,0,0,0,0,0,0,0,84.3529702970296,3135.65712158968,41.3516710671287,22.1761217159636,22.4304102540326,-0.857623762376238,-0.84298355344638,-0.661987837738338,2.13650287609891,1.69502518266581,1.79679410463327,53.1452757232273,0.00194405485989468,2354.90792079208,2354.4532496814,2354.5911694801,1.06694800467432,5341.45705326931,1368.41840317736,0,5341.45705326931,84.3485007352219,84.3485007352219,0.0547209423912657,84.3477019242377,24.9,1015.2,38.54,504.734342596737 +45239,2874.23765376237,457.401759108911,225,84.5099207920792,87.0452184158416,21.1118718371287,-1.3970297029703,1831.27722772277,1059.66336633663,1130.09405940594,20,40,10,32,5306543.15069432,397119.58353014,0,0,0,0,0,0,0,84.5099207920791,3159.10962004953,42.2237436742574,22.6437978166332,22.8102095024258,-1.3970297029703,-1.38238949404044,-1.08386220958622,3.11040014314241,2.46768053990191,2.23906307646539,53.2696952342606,-0.00576016254783606,2189.75742574257,2190.32367414959,2190.27715660485,1.06496691476566,4969.21293977498,1026.36379595074,0,4969.21293977498,84.5079287324771,84.5079287324771,0.0411016349159662,84.5085532868907,24.9,1015.2,38.57,525.461137273136 +45240,2874.2298339604,457.386933465346,225,84.6193762376238,87.1579575247525,21.852597909802,-1.73207920792079,1835.29702970297,967.525742574258,1053.79801980198,20,40,10,32,5306528.99502347,397100.859432541,0,0,0,0,0,0,0,84.6193762376236,3182.60085211774,43.705195819604,23.4382726768691,23.4472037438821,-1.73207920792079,-1.71743899899094,-1.37127060828459,2.01287689695766,1.59694473998522,1.66366529617673,53.3866265339816,0.00374410565609344,2021.32376237624,2028.35851387119,2028.74244700305,1.06358813292196,4591.16768328975,818.421463152765,0,4591.16768328975,84.6288297225761,84.6288297225761,0.0327064884706236,84.6296351870699,24.9,1015.2,38.5886386138614,551.746934846135 +45241,2874.22203138614,457.372055247525,225,84.7141584158416,87.2555831683168,22.5820495049505,-1.94138613861386,1835.45544554455,901.862376237624,1003.95445544555,20,40,10,32,5306514.87249211,397082.070329109,0,0,0,0,0,0,0,84.7141584158415,3206.12424515954,45.164099009901,24.2206549575589,24.0728660711991,-1.94138613861386,-1.92674592968401,-1.52577521602837,2.30324938530329,1.82731591598751,1.79159993717581,53.3912346640199,-0.0159124490383971,1905.81683168317,1909.4936476816,1909.7097689769,1.06239668957097,4324.00956056681,544.114969558772,0,4324.00956056681,84.721757278698,84.721757278698,0.0218946399590591,84.7222697784063,24.9,1015.2,38.54,582.053852569217 +45242,2874.21422633663,457.357159108911,225,84.7843960396039,87.3279279207921,20.6095286030693,-0.764950495049505,1836.56435643564,896.796039603961,919.234653465346,20,40,10,32,5306500.74583415,397063.258730708,0,0,0,0,0,0,0,84.7843960396038,3229.66968960398,41.2190572061386,22.1050034020806,22.3985365309361,-0.764950495049505,-0.750310286119647,-0.557964520309032,3.03106426781884,2.40473828596597,2.46019432411198,53.4234915742878,0.00316808940130984,1816.03069306931,1820.95207332614,1821.03328618576,1.06151624531292,4119.32637711867,353.208783486931,0,4119.32637711867,84.7984507401234,84.7984507401234,0.0141026478885431,84.7984731730315,24.9,1015.2,38.48,505.631388382573 +45243,2874.20642435643,457.342242871287,225,84.8369504950495,87.382059009901,19.0435440045545,-1.3560396039604,1836.71782178218,864.748514851485,900.656435643565,20,40,10,32,5306486.62536863,397044.42210734,0,0,0,0,0,0,0,84.8369504950494,3253.23086542907,38.0870880091089,20.4253873592071,21.0696113284327,-1.3560396039604,-1.34139939503054,-1.03988734221361,3.39684169808088,2.69493305353727,2.62817585943626,53.4279557002624,0.00525614832490041,1765.40495049505,1766.02812469366,1766.07132484677,1.06085946311079,4002.69785461558,186.504122607551,0,4002.69785461558,84.8323150671502,84.8323150671502,0.00741757344052105,84.8326149929278,24.9,1015.2,38.42,444.542414856528 +45244,2874.19862435644,457.327314554455,225,84.885495049505,87.4320599009901,19.6324416941584,-1.30049504950495,1837.53465346535,851.090099009901,888.856435643564,20,40,10,32,5306472.50890009,397025.570411872,0,0,0,0,0,0,0,84.8854950495048,3276.8024647965,39.2648833883168,21.0570168196807,21.5729270321274,-1.30049504950495,-1.28585484057509,-0.998241815121649,2.85832417791609,2.26769245948164,2.38388085264852,53.4517163707722,-0.00324009143315779,1739.94653465347,1739.09134398588,1739.02611032532,1.06025200375569,3944.37291567795,329.541097012502,0,3944.37291567795,84.8827750220566,84.8827750220566,0.0132081277434681,84.8824993870815,24.9,1015.2,38.36,465.938426454987 +45245,2874.19081752475,457.312379603961,225,84.9195544554456,87.4671410891089,19.4738899889109,-1.64029702970297,1835.70297029703,848.305940594059,873.042574257425,20,40,10,32,5306458.37998497,397006.71013554,0,0,0,0,0,0,0,84.9195544554454,3300.38654367439,38.9477799778218,20.8869602380188,21.4399681111358,-1.64029702970297,-1.62565682077311,-1.2472736868516,3.20395502852256,2.54190364929005,2.30931051577993,53.3984348672047,0.000360010159239754,1721.34851485149,1715.07980590138,1714.88817538897,1.05982690085685,3896.47328204427,77.2385651443512,0,3896.47328204427,84.9100110773452,84.9100110773452,0.00308657103334519,84.9098224422441,24.9,1015.2,38.3,461.028260975569 +45246,2874.18299425743,457.297458118812,225,84.9646633663366,87.5136032673267,20.5523074808911,-2.01128712871287,1835.99504950495,869.136633663366,823.933663366337,20,40,10,32,5306444.22038651,396987.86599485,0,0,0,0,0,0,0,84.9646633663365,3323.976434736,41.1046149617822,22.043630183664,22.3600812671132,-2.01128712871287,-1.99664691978302,-1.5608856800242,2.40657817448437,1.90929329206112,1.95990065387693,53.4069311069628,-0.0036721036242455,1693.0702970297,1691.50105871973,1691.42662894861,1.05926546722957,3831.04677490823,303.486335390941,0,3831.04677490823,84.9496915988627,84.9496915988627,0.0121692862355492,84.9489632248938,24.9,1015.2,38.24,501.627869232745 +45247,2874.1751490099,457.282557821782,225,84.9629801980198,87.5118696039604,21.4144158415841,-2.55633663366337,1838.10891089109,827.965346534653,822.578217821782,20,40,10,32,5306430.01966235,396969.047425374,0,0,0,0,0,0,0,84.9629801980197,3347.57563421344,42.8288316831683,22.9682951099275,23.0934712907191,-2.55633663366337,-2.54169642473351,-2.00791596011679,1.71620980803175,1.36157965238199,1.53504899364014,53.4684208421609,0.00626417677077173,1650.54356435644,1656.68422703657,1656.9639321075,1.05928695970927,3739.19760030842,264.119727553645,0,3739.19760030842,84.9699503970198,84.9699503970198,0.0105136751298813,84.9700225365392,24.9,1015.2,38.18,534.002800531991 +45248,2874.16728554455,457.26766990099,225,84.9662673267327,87.5152553465346,20.303401540198,-0.894455445544554,1842.10891089109,808.2,840.517821782178,20,40,10,32,5306415.78497751,396950.243575696,0,0,0,0,0,0,0,84.9662673267326,3371.1799878163,40.6068030803961,21.7766630554105,22.1491034578289,-0.894455445544554,-0.879815236614696,-0.686872798947496,2.42978213063554,1.92770248329306,1.90728361177218,53.5847761256272,0.00295208330576599,1648.71782178218,1650.0337711989,1650.25273927393,1.0592443259345,3743.2100136823,18.9163019666514,0,3743.2100136823,84.9800822468384,84.9800822468384,0.000732498992471643,84.9805946251767,24.9,1015.2,38.12,492.195253414697 +45249,2874.15941029703,457.252788316832,225,85.0120693069307,87.5624313861386,18.7353525858416,-0.448514851485148,1841.02475247525,810.967326732673,843.714851485148,20,40,10,32,5306401.52838724,396931.447135869,0,0,0,0,0,0,0,85.0120693069306,3394.78995959848,37.4707051716832,20.0948328622873,20.8177947088954,-0.448514851485148,-0.43387464255529,-0.335215932582007,3.69275041378453,2.92969647487364,2.83550062531302,53.5532392356778,-0.0134643799555668,1654.68217821782,1653.10783256543,1652.78915605846,1.05867334864277,3752.72974743271,187.451011832646,0,3752.72974743271,85.0071327320849,85.0071327320849,0.00760818656123985,85.0072477133426,24.9,1015.2,38.06,433.485855571217 +45250,2874.15152386139,457.237910693069,225,85.0604554455445,87.6122691089109,20.2947728271287,0.00851485148514852,1841.53465346535,781.89702970297,836.436633663366,20,40,10,32,5306387.25104477,396912.65516566,0,0,0,0,0,0,0,85.0604554455444,3418.40939218924,40.5895456542574,21.7674082230742,22.1467466442667,0.00851485148514852,0.0231550604150058,0.007394409205497,3.00202658557678,2.38170082451569,2.39899080776877,53.5680716542385,0.00511214426120452,1618.33366336634,1618.97835506323,1619.04827911363,1.05807126155636,3669.14522802159,313.169592342192,0,3669.14522802159,85.0530939123614,85.0530939123614,0.012485159407031,85.0527520980668,24.9,1015.2,38.0126237623762,493.430551215677 +45251,2874.14362693069,457.223033861386,225,85.0980891089109,87.6510317821782,20.0115500549505,-0.938118811881188,1844.90099009901,751.475247524753,829.848514851485,20,40,10,32,5306372.95430438,396893.863741511,0,0,0,0,0,0,0,85.0980891089108,3442.04031732676,40.023100109901,21.4636341551116,21.9077991990723,-0.938118811881188,-0.923478602951331,-0.728530050591011,2.83101685259394,2.24602780149774,2.20018712028622,53.6659944175517,0.00144004063695901,1581.32376237624,1577.88479560827,1577.63771805752,1.05760378206242,3590.3029566875,505.687218809619,0,3590.3029566875,85.1017353200665,85.1017353200665,0.0202158829744283,85.1017603017444,24.9,1015.2,38.04,481.629412659773 +45252,2874.13574079208,457.20812980198,225,85.129297029703,87.683175940594,19.6572530251485,-1.42930693069307,1844.73762376238,678.638613861386,803.007920792079,20,40,10,32,5306358.67822095,396875.038667413,0,0,0,0,0,0,0,85.1292970297028,3465.68648451598,39.314506050297,21.0836285179155,21.6085747880816,-1.42930693069307,-1.41466672176321,-1.10244608476396,2.85151326879248,2.26228892709677,2.30545512799423,53.6612422834497,-0.00136803860511107,1481.64653465347,1482.40332320361,1482.61123055163,1.05721559982352,3362.17294335992,-24.0381754057314,0,3362.17294335992,85.1312688952062,85.1312688952062,-0.000950342559002116,85.1315697312587,24.9,1015.2,38.08,467.570195591872 +45253,2874.12787673267,457.193191188119,225,85.1483366336634,87.7027867326733,19.0693283824753,-0.560990099009901,1843.15841584158,635.428712871287,770.521782178217,20,40,10,32,5306344.44386563,396856.171191083,0,0,0,0,0,0,0,85.1483366336632,3489.33635847088,38.1386567649505,20.4530427108959,21.1094989641522,-0.560990099009901,-0.546349890080043,-0.422263209685569,3.41843622927621,2.71206538441004,2.59724635838475,53.6153049871307,-0.00208805892359058,1405.95049504951,1399.80534261347,1399.5028194248,1.05697907874913,3187.05641190529,96.9893400530725,0,3187.05641190529,85.1504338790313,85.1504338790313,0.00389667679638546,85.1501359735972,24.9,1015.2,38.12,446.037959294203 +45254,2874.12004643564,457.178213663366,225,85.1449504950495,87.699299009901,21.3493635862376,-1.10287128712871,1843.22772277228,590.077227722772,689.251485148515,20,40,10,32,5306330.27297709,396837.256273254,0,0,0,0,0,0,0,85.1449504950494,3512.98890671071,42.6987271724753,22.8985225133076,23.0489747844289,-1.10287128712871,-1.08823107819885,-0.844202952923657,2.18593402622662,1.73424209419536,1.92634818743919,53.6173210440225,0.00129603657326312,1279.32871287129,1281.66427366893,1282.12079560285,1.05702133225014,2900.38668978697,-142.732214777063,0,2900.38668978697,85.1406339574551,85.1406339574551,-0.00571975514382888,85.1406519566241,24.9,1015.2,38.16,533.496028198066 +45255,2874.11223653465,457.163215148515,225,85.0999405940594,87.6529388118811,20.4619455444554,0.216336633663366,1842.9900990099,628.055923220792,646.276086223762,20,40,10,32,5306316.14039754,396818.315793153,1.24752475247525,1.24752475247525,3309879.50078701,247517.433831425,4.56439856249783,0,0,85.0999405940593,3536.63601421896,40.9238910889109,21.9467113772808,22.2911430751075,0.216336633663366,0.230976842593224,0.17349656592466,2.67632906271856,2.12330402601262,1.98338809754683,53.6104088489651,0.0135363819874148,1274.33200944455,1279.56437191983,1279.66518669436,1.0575802467129,2890.24083952041,-292.961575085209,0,2890.24083952041,85.10597764925,85.10597764925,-0.011828905662836,85.1061028760018,24.9,1015.2,38.2,499.395582359191 +45256,2874.10444237624,457.148210990099,225,85.0497821782178,87.6012756435643,20.6080082508911,-0.976039603960396,1839.63366336634,656.272124840594,670.950083988119,20,40,10,32,5306302.03716554,396799.368712115,2,2,5306302.68113899,396798.844046556,26.4331660487856,0,0,85.0497821782177,3560.26984290433,41.2160165017822,22.1033727296514,22.4131004133104,-0.976039603960396,-0.961399395030539,-0.750027978896996,2.83911598754369,2.25245336630799,2.36279971064007,53.5127740937793,-0.0121683433823037,1327.22220882871,1328.17799849464,1328.25414719597,1.05820424738115,3006.30766174122,-206.924649719347,0,3006.30766174122,85.0598138417801,85.0598138417801,-0.00817730287880044,85.0603173031588,24.9,1015.2,38.24,505.690907187187 +45257,2874.09667,457.133187920792,225,85.0621881188119,87.6140537623762,18.6889653464356,0.68029702970297,1842.31188118812,661.473399051485,688.570784593069,20,40,10,32,5306287.9747642,396780.398704936,2,2,5306287.78145285,396780.556201811,50.0222718472765,0,0,85.0621881188118,3583.89525112765,37.3779306928713,20.0450796580957,20.7811170903274,0.68029702970297,0.694937238632828,0.533864090703644,3.75223364779183,2.97688835124166,2.85084088444163,53.5906802922388,-0.00352809956054959,1350.04418364455,1350.04232963598,1350.04218192516,1.05805016810036,3061.99032694959,-87.9599250682853,0,3061.99032694959,85.0597127732574,85.0597127732574,-0.003489581631438,85.0593771805751,24.9,1015.2,38.28,431.880909402541 +45258,2874.08889138614,457.118171980198,225,85.0886633663366,87.6413232673267,20.3312502749505,-0.116831683168317,1841.58415841584,679.11096779802,693.714568428713,20,40,10,32,5306273.90071106,396761.437277766,2,2,5306272.88131959,396762.267808269,73.6120855274624,0,0,85.0886633663365,3607.5241325908,40.662500549901,21.806532558411,22.1793925755856,-0.116831683168317,-0.102191474238459,-0.0763025628730808,2.40836392548419,1.91071004321485,1.9804152929921,53.5695116948755,0.00972027429947336,1372.82553622673,1371.86774310733,1371.791434789,1.05772040206656,3111.45581679909,81.0423053342005,0,3111.45581679909,85.0663464366237,85.0663464366237,0.00316281628163349,85.0657762376236,24.9,1015.2,38.32,493.059660706568 +45259,2874.08110495049,457.103165346535,225,85.0523960396039,87.6039679207921,20.3655621562376,-1.87742574257426,1840.19801980198,692.968931708911,681.652264356435,20,40,10,32,5306259.81202309,396742.487091225,2,2,5306257.98085197,396743.979004321,97.2024285819123,0,0,85.0523960396038,3631.15264265681,40.7311243124753,21.8433341887244,22.2066425315615,-1.87742574257426,-1.8627855336444,-1.45586763927689,2.26553746856043,1.79739662625435,1.96898353153505,53.5291905570406,-0.0080642275669705,1374.62119606535,1373.58805441362,1373.5057430037,1.05817200143066,3114.51470300904,-9.23045641205611,0,3114.51470300904,85.0570408783451,85.0570408783451,-0.000303619470855305,85.056965299387,24.9,1015.2,38.36,493.746808566913 +45260,2874.07331306931,457.088167128713,225,85.055495049505,87.6071599009901,19.2690913090099,-0.861188118811881,1841.5297029703,690.306342674258,663.473899114852,20,40,10,32,5306245.71312165,396723.547114103,2,2,5306243.08130895,396725.691335239,120.791307796969,0,0,85.0554950495049,3654.77882367991,38.5381826180198,20.6673008948507,21.2742631168065,-0.861188118811881,-0.846547909882023,-0.652786602298681,3.19707667253914,2.53644660697212,2.42998290676624,53.5679276501748,7.20020318479468E-05,1353.78024178911,1353.62161727459,1353.60897950377,1.05813328872063,3069.41061761405,157.469342069051,0,3069.41061761405,85.0595558278599,85.0595558278599,0.00629840211742601,85.0598711928335,24.9,1015.2,38.4025247524753,452.960441018913 +45261,2874.0655060396,457.073182574258,225,85.0819801980198,87.6344396039604,18.9771534653465,-1.76049504950495,1842.51485148515,673.571172775248,655.892577866337,20,40,10,32,5306231.58591638,396704.623560922,2,2,5306228.17851634,396707.399677619,144.385331741992,0,0,85.0819801980197,3678.40964584713,37.9543069306931,20.3541793697706,21.0268135895744,-1.76049504950495,-1.7458548405751,-1.34512540490463,3.50568511076583,2.78128553521759,2.7659002015892,53.5965844588503,0.0143284043377422,1329.46375064158,1330.3254819143,1330.39413689093,1.05780357341528,3014.95499318779,9.83271342476051,0,3014.95499318779,85.0858584452504,85.0858584452504,0.000276389025055362,85.0855968882601,24.9,1015.2,38.46,442.387930561933 +45262,2874.05767891089,457.058219603961,225,85.0577425742574,87.6094748514851,18.8052359733663,-1.65465346534653,1840.55940594059,658.149660038614,665.878532414852,20,40,10,32,5306217.42106043,396685.726133494,2,2,5306213.27349594,396689.105285603,167.982882727889,0,0,85.0577425742573,3702.04362417496,37.6104719467327,20.1697871491483,20.8792837073628,-1.65465346534653,-1.64001325641668,-1.26121120318096,3.65412486386439,2.89905234116272,2.91613426328364,53.5397028536904,-0.0110883129045844,1324.02819245347,1325.11800775054,1325.20483440555,1.05810529452328,3000.27709965667,-168.248304481306,0,3000.27709965667,85.0577185570041,85.0577185570041,-0.00663878269017055,85.05815087223,24.9,1015.2,38.52,436.097650280919 +45263,2874.04982415842,457.043298316832,225,85.042504950495,87.59378009901,18.8312365242574,-0.370594059405941,1839.82673267327,658.220272150495,684.250722189109,20,40,10,32,5306203.20416677,396666.87961743,2,2,5306198.372645,396670.81601119,191.573832625542,0,0,85.0425049504949,3725.66858803635,37.6624730485148,20.1976743598154,20.9003235219437,-0.370594059405941,-0.355953850476083,-0.274163087983331,3.70453979382473,2.93904974852458,2.73150299884378,53.5183902522634,-0.000648018286631553,1342.4709943396,1342.78692250583,1342.81209281311,1.058294371383,3041.39341742121,-224.072718870789,0,3041.39341742121,85.0429362807567,85.0429362807567,-0.00895745515143714,85.0427885902874,24.9,1015.2,38.58,437.331231044676 +45264,2874.04196405941,457.028388217822,225,85.0271584158415,87.5779731683168,23.0107524752475,-0.88970297029703,1841.78712871287,673.718088663366,694.117840652475,20,40,10,32,5306188.97718039,396648.046766942,2,2,5306183.47445928,396652.530008052,215.160562973695,0,0,85.0271584158414,3749.2879255226,46.0215049504951,24.680465601432,24.4557238782583,-0.88970297029703,-0.875062761367172,-0.697371005150693,1.81465374986508,1.43968156478993,1.58509490392789,53.575415861487,0.0128163616689353,1367.83592931584,1367.08750745095,1367.02787994593,1.05848543384025,3102.70896195117,113.652480261215,0,3102.70896195117,85.0295849426526,85.0295849426526,0.00444128571273021,85.0296640264025,24.9,1015.2,38.64,598.601278122555 +45265,2874.03410188119,457.013478910891,225,85.021405940594,87.5720481188119,21.7515572057426,0.454455445544554,1842.67326732673,690.394488549505,686.408104581188,20,40,10,32,5306174.74638534,396629.214741061,2,2,5306168.57515785,396634.242635489,238.749059714559,0,0,85.0214059405939,3772.90731108366,43.5031144114851,23.3299002269214,23.3843292017106,0.454455445544554,0.469095654474411,0.37616725889691,1.80126794906223,1.4290617478429,1.46751469392877,53.6011925888886,-0.0174964937390521,1376.80259313069,1375.67791684387,1375.58831277988,1.05855702443613,3124.7888395181,-110.254617747667,0,3124.7888395181,85.0275006371923,85.0275006371923,-0.00426701085950427,85.0276495992455,24.9,1015.2,38.7,548.225504013866 +45266,2874.02624435644,456.998565049505,225,85.0281683168317,87.5790133663366,21.5450099009901,0.131188118811881,1841.21287128713,692.917266650495,668.209809767327,20,40,10,32,5306160.52437217,396610.377103502,1.02970297029703,2,5306153.67676472,396615.955547926,18.5569804062359,0,0,85.0281683168316,3796.52474502205,43.0900198019802,23.1083653746607,23.2092324330817,0.131188118811881,0.145828327741739,0.120656925150737,1.51129775120814,1.19900973476874,1.24214884059252,53.5587113900982,0.00360010159239755,1361.12707641782,1360.66016790469,1360.62296884489,1.058473240157,3086.52503947198,83.9194800391043,0,3086.52503947198,85.0266178805998,85.0266178805998,0.00332756047881118,85.0267965110796,24.9,1015.2,38.76,539.158629713889 +45267,2874.01837693069,456.983657029703,225,85.0536831683168,87.6052936633664,19.9920055005941,-1.10029702970297,1841.17821782178,678.966992430693,656.254384545545,20,40,10,32,5306146.28394901,396591.546320621,1,2,5306138.77505386,396597.663470499,34.6880001976572,0,0,85.0536831683167,3820.14697601765,39.9840110011881,21.442671402937,21.8887030261734,-1.10029702970297,-1.08565682077311,-0.833661875182499,2.75051460139805,2.18216018654397,2.078720647789,53.5577033616524,0.00360010159239755,1335.22137697624,1335.84150976373,1335.89091635194,1.05815585365598,3026.80484931189,113.670131999891,0,3026.80484931189,85.0503482991862,85.0503482991862,0.00451753096101265,85.050131918906,24.9,1015.2,38.82,480.674593726865 +45268,2874.01050366337,456.968751188119,225,85.0494950495049,87.6009799009902,20.8729444444554,-0.976039603960396,1842.14851485149,661.369483657426,661.533591719802,20,40,10,32,5306132.03271699,396572.717963927,1,2,5306123.87022702,396579.367567312,58.2866005130337,0,0,85.0494950495048,3843.77449568213,41.7458888889109,22.3875333027953,22.6383438831417,-0.976039603960396,-0.961399395030538,-0.756400796477042,2.00019193386714,1.5868809426835,1.74432865591899,53.5859281581367,-0.00777621943957869,1322.90307537723,1324.040102246,1324.13069029309,1.05820786410239,3000.61418694741,-20.7506910809486,0,3000.61418694741,85.0497519850994,85.0497519850994,-0.000766537049733783,85.0498441301272,24.9,1015.2,38.88,513.688963591052 +45269,2874.00263554456,456.953844752475,225,85.0461584158416,87.5975431683168,20.4394147415842,0.523861386138614,1839.52475247525,656.303808750495,679.193752562376,20,40,10,32,5306117.79109544,396553.888945082,1,2,5306108.96890969,396561.075972128,81.879644238307,0,0,85.0461584158415,3867.3974253576,40.8788294831683,21.9225456875305,22.2695535923622,0.523861386138614,0.538501595068471,0.413523457651026,2.30795172083663,1.83104658128898,1.75706177946769,53.5096060043779,-0.00583216457968402,1335.49756131287,1336.1061050025,1336.15458827574,1.05824899999443,3024.99319147215,-83.966444422827,0,3024.99319147215,85.0454459366728,85.0454459366728,-0.00331122221133005,85.0453373880244,24.9,1015.2,38.94,497.18842861727 +45270,2873.99475425743,456.938953267327,225,85.0149207920792,87.5653684158415,21.3671782178218,-1.46425742574257,1841.5198019802,668.427325855446,692.998196647525,20,40,10,32,5306103.52480811,396535.07801849,1,2,5306094.06661213,396542.783173678,105.47423997263,0,0,85.0149207920791,3891.01880132019,42.7343564356435,22.9176298155346,23.0567539540273,-1.46425742574257,-1.44961721681272,-1.13526757913211,2.15998824880026,1.71365763975184,1.79367137913465,53.5676396420474,0.00914425804468976,1361.42552250297,1360.94609074773,1360.90789394921,1.05863798802067,3088.20725322398,-73.8117441350357,0,3088.20725322398,85.0243718262914,85.0243718262914,-0.00302666405254584,85.0246949552097,24.9,1015.2,39.0025247524752,533.759919867774 +45271,2873.98686683168,456.924074356436,225,85.0088217821782,87.5590864356436,19.9541754676238,-0.794455445544554,1837.75247524752,686.593729261386,690.255181728713,20,40,10,32,5306089.24692932,396516.282457671,1,2,5306079.16721479,396524.493935302,129.064243817681,0,0,85.0088217821781,3914.6347073158,39.9083509352475,21.4020963357623,21.8543169176432,-0.794455445544554,-0.779815236614697,-0.606812779063279,2.67419625929329,2.12161193584229,1.91586948380924,53.4580525495748,-0.00633617880261968,1376.8489109901,1375.7222911414,1375.63253223156,1.05871447196205,3117.01289481826,-458.050774429361,0,3117.01289481826,85.0032477208116,85.0032477208116,-0.0182702676208216,85.0028541254124,24.9,1015.2,39.08,478.735105250037 +45272,2873.97899376238,456.909190792079,225,84.9755841584158,87.5248516831683,19.864697469802,-0.186930693069307,1838.4504950495,694.100911447525,673.486623089109,20,40,10,32,5306074.99580775,396497.481484218,1,2,5306064.2758409,396506.214545829,152.641544253841,0,0,84.9755841584158,3938.23936168874,39.729394939604,21.3061256086119,21.7762596090789,-0.186930693069307,-0.172290484139449,-0.131946136328253,2.75342069098721,2.18446577437716,2.29904255972687,53.478357122556,-0.00828023366251435,1367.58753453663,1366.84953568288,1366.79073858947,1.05912780849131,3098.46942070029,44.6741943815593,0,3098.46942070029,84.96429526517,84.96429526517,0.00185439336012538,84.9643570957095,24.9,1015.2,39.16,475.655917310001 +45273,2873.97115287129,456.894268910891,225,84.9902376237624,87.5399447524752,19.185708470396,-0.715841584158416,1846.52475247525,684.046803736634,658.10945619802,20,40,10,32,5306060.8052078,396478.633758324,1,2,5306049.38571652,396487.936690156,176.216866350351,0,0,84.9902376237622,3961.84422797037,38.3714169407921,20.5778676056798,21.1992131424601,-0.715841584158416,-0.701201375228559,-0.544815091205031,3.31249665019218,2.6280167007423,2.4816718465314,53.713227750444,0.0174964937390521,1342.15625993465,1342.48539482094,1342.51161732057,1.05894602714115,3053.6746407593,209.438064457505,0,3053.6746407593,84.9862164493676,84.9862164493676,0.00823448681501961,84.986044035832,24.9,1015.2,39.24,450.094338097323 +45274,2873.9633419802,456.879312970297,225,84.979495049505,87.5288799009901,20.6454785480198,-0.239207920792079,1841.0099009901,665.67510639505,658.261377388119,20,40,10,32,5306046.67099993,396459.744511024,1,2,5306034.49775584,396469.661490446,199.788762705405,0,0,84.9794950495049,3985.45032621019,41.2909570960396,22.1435619577245,22.4404484936791,-0.239207920792079,-0.224567711862222,-0.166890300814646,2.22274186015955,1.76344411687161,1.85229165999743,53.5528072234867,-0.011736331191216,1323.93648378317,1325.03014731152,1325.11728055877,1.05908033366974,3003.59806048156,157.849495746031,0,3003.59806048156,85.0001192039995,85.0001192039995,0.00641004694529,85.0003861386137,24.9,1015.2,39.32,505.056082756142 +45275,2873.95555712871,456.864317227723,225,85.0130198019802,87.5634103960396,19.8607123218812,-0.775445544554456,1842.64356435644,655.876673228713,673.80271100495,20,40,10,32,5306032.58597693,396440.806457679,1,2,5306019.60551666,396451.381038816,223.367433143486,0,0,85.0130198019801,4009.06536793186,39.7214246437624,21.3018512891918,21.7746527820141,-0.775445544554456,-0.760805335624597,-0.588358559485897,2.82367124175758,2.24020005584433,2.34609690937328,53.6003285645063,0.00036001015923976,1329.67938423366,1330.53206720193,1330.60000129135,1.05866164683404,3018.08037146781,6.40204511225818,0,3018.08037146781,85.0148083521223,85.0148083521223,0.000253243146094437,85.0150638378122,24.9,1015.2,39.4,475.633408755799 +45276,2873.94778158416,456.849309306931,225,85.0172178217822,87.5677343564357,18.9451903192079,0.489009900990099,1836.61881188119,629.594998472277,675.118663171287,20,40,10,32,5306018.51852696,396421.853451403,0.653465346534653,1.30693069306931,3467291.91101455,259057.383099189,158.675433337284,0,0,85.0172178217821,4032.68200445552,37.8903806384158,20.3198969042304,20.9957970570456,0.489009900990099,0.503650109919956,0.386796978233977,3.52057024866266,2.79309487274053,2.75131654106389,53.4250756189885,0.00194405485989467,1304.71366164356,1304.06526020096,1303.80344576877,1.05860959016461,2951.80421859856,-63.9040703287874,0,2951.80421859856,85.0147676698362,85.0147676698362,-0.00257191560740988,85.0148790193304,24.9,1015.2,39.48,441.152496414868 +45277,2873.94002980198,456.834278118812,225,84.9938217821783,87.5436364356435,19.5283223320792,0.164653465346535,1835.63861386139,599.154455445545,673.817821782178,20,40,10,32,5306004.49567461,396402.872159861,0,0,0,0,0,0,0,84.9938217821781,4056.29470561063,39.0566446641584,20.9453423172061,21.4913415200443,0.164653465346535,0.179293674276392,0.14363010190669,2.98772747631154,2.37035642120811,2.37637155477135,53.3965628143767,0.00208805892359057,1272.97227722772,1276.81056862175,1277.25853763395,1.05890130066081,2879.29207105824,-170.819395078745,0,2879.29207105824,84.9980618566806,84.9980618566806,-0.00684981864523101,84.9981487034416,24.9,1015.2,39.56,462.854341533319 +45278,2873.93228277228,456.819242574257,225,85.0110990099009,87.561431980198,18.8890209019802,-0.122079207920792,1842.74257425743,666.435643564356,656.819801980198,20,40,10,32,5305990.48178429,396383.885507297,0,0,0,0,0,0,0,85.0110990099009,4079.90510445551,37.7780418039604,20.2596517048945,20.9477315719678,-0.122079207920792,-0.107438998990934,-0.0830513727331223,3.56710476280892,2.83001369659208,2.83459956847649,53.6032086457803,-0.00936026414023361,1323.25544554455,1312.7170473483,1312.3887223008,1.05868551803239,3003.70726035278,32.0973414329881,0,3003.70726035278,84.9985371042054,84.9985371042054,0.00136016076857472,84.9982169731258,24.9,1015.2,39.64,438.982864061743 +45279,2873.92451792079,456.804231287128,225,84.9640891089109,87.5130117821782,19.8699878991089,-1.49128712871287,1840.70297029703,638.743564356436,671.668316831683,20,40,10,32,5305976.43440065,396364.928385742,0,0,0,0,0,0,0,84.9640891089108,4103.51404389446,39.7399757982178,21.3117999236378,21.7797513494767,-1.49128712871287,-1.47664691978301,-1.14629501593689,3.46312726474177,2.74752165802473,2.81103750446456,53.5438789715376,0.0113043190001283,1310.41188118812,1318.35484756396,1318.81177746346,1.05927171596977,2972.89729355128,-233.102414852565,0,2972.89729355128,84.9725340652876,84.9725340652876,-0.00941628816348246,84.9726071664308,24.9,1015.2,39.72,477.92654749103 +45280,2873.91675386139,456.789224950495,225,84.9462178217822,87.4946043564356,18.9561853686139,-1.36415841584158,1841.4702970297,690.015841584159,730.096039603961,20,40,10,32,5305962.38843468,396345.977364632,0,0,0,0,0,0,0,84.9462178217821,4127.11180217279,37.9123707372277,20.3316897797107,21.0008440405444,-1.36415841584158,-1.34951820691173,-1.03966838618219,3.73994401307926,2.96713819337546,2.79034819211301,53.5661996014105,0.00136803860511107,1420.11188118812,1416.47992353691,1416.11978312117,1.05949461720762,3223.7077361167,11.9948906358469,0,3223.7077361167,84.9508443289873,84.9508443289873,0.000468363668044721,84.9511583215464,24.9,1015.2,39.7899009900991,442.231935704906 +45281,2873.90899,456.774222772277,225,84.969603960396,87.5186920792079,22.7983366336634,-1.19990099009901,1839.4900990099,700.622772277228,740.891089108911,20,40,10,32,5305948.34280363,396327.031437605,0,0,0,0,0,0,0,84.9696039603959,4150.71136174375,45.5966732673267,24.452636377809,24.27139487949,-1.19990099009901,-1.18526078116915,-0.946461010938903,1.92316408760724,1.52576979668989,1.65756449571506,53.5085979759321,-0.0033840954968537,1441.51386138614,1442.40331340065,1442.47452145214,1.05920306974747,3268.11363831301,-93.3121828047904,0,3268.11363831301,84.9634525046563,84.9634525046563,-0.00370470215336483,84.963066949552,24.9,1015.2,39.8000000000001,590.232942654303 +45282,2873.90122158416,456.75921980198,225,84.9734158415841,87.5226183168317,21.4934158415842,-1.53425742574257,1839.61386138614,726.39801980198,729.238613861386,20,40,10,32,5305934.28881504,396308.084279868,0,0,0,0,0,0,0,84.973415841584,4174.31198366344,42.9868316831683,23.0530275316338,23.1617851324246,-1.53425742574257,-1.51961721681272,-1.20190699131354,1.64273429000404,1.3032867969126,1.34765628516024,53.5121980775245,0.00288008127391804,1455.63663366337,1450.84013332026,1450.5542951438,1.05915489313269,3300.02694696521,163.4305120188,0,3300.02694696521,84.9630631310655,84.9630631310655,0.00651352263939779,84.9629240924092,24.9,1015.2,39.8000000000001,537.188304173996 +45283,2873.89342742574,456.744245643564,225,84.986910891089,87.5365182178218,23.7304554455446,-1.52861386138614,1838.73267326733,721.379207920792,688.79603960396,20,40,10,32,5305920.18655848,396289.172062586,0,0,0,0,0,0,0,84.9869108910889,4197.9156222223,47.4609108910891,25.4523918746285,25.0658802881458,-1.52861386138614,-1.51397365245628,-1.21176759126702,2.46791086985972,1.95795246511676,1.82721616112245,53.4865653541867,-0.00201605689174263,1410.17524752475,1412.37169885305,1412.49976426214,1.0589869178955,3194.78323036221,-6.26930663331441,0,3194.78323036221,84.9798697186549,84.9798697186549,-0.000234181834040926,84.97947223008,24.9,1015.2,39.8000000000001,629.128602659796 +45284,2873.88560188119,456.729308613862,225,84.9558712871287,87.5045474257426,22.2795445544554,-2.8739603960396,1839.5198019802,707.854455445544,687.30396039604,20,40,10,32,5305906.02539357,396270.304957688,0,0,0,0,0,0,0,84.9558712871286,4221.518559241,44.5590891089109,23.8961995520703,23.8293518466563,-2.8739603960396,-2.85932018710975,-2.26690997257072,2.19116010959455,1.73838828234913,1.72783174919316,53.5094620003143,-0.000216006095543851,1395.15841584158,1401.69343201647,1402.0625553984,1.05937377977441,3163.72243115258,-106.20881480179,0,3163.72243115258,84.9595020096068,84.9595020096068,-0.00424658802513526,84.9596264026402,24.9,1015.2,39.8000000000001,570.306255962773 +45285,2873.87775762376,456.714398415842,225,84.970297029703,87.5194059405941,23.6269801980198,-2.33821782178218,1839.74257425743,734.381188118812,725.80297029703,20,40,10,32,5305891.82902572,396251.470560287,0,0,0,0,0,0,0,84.9702970297029,4245.11846471405,47.2539603960396,25.341408225142,24.9764520567228,-2.33821782178218,-2.32357761285232,-1.86972347133197,2.36140773231835,1.87345667426851,1.88995656692297,53.5159421831806,-0.00576016254783607,1460.18415841584,1451.05882756593,1450.4880622348,1.05919403223171,3310.82984403605,253.260447130378,0,3310.82984403605,84.9709497108125,84.9709497108125,0.0101773791240617,84.9710624233851,24.9,1015.2,39.8000000000001,624.780396862472 +45286,2873.86989405941,456.699504851485,225,84.9833762376237,87.5328775247525,22.0027722772277,-2.02217821782178,1840.62376237624,710.636633663366,702.384158415842,20,40,10,32,5305877.59658264,396232.656147103,0,0,0,0,0,0,0,84.9833762376237,4268.725639219,44.0055445544554,23.5993440418084,23.5956318713468,-2.02217821782178,-2.00753800889193,-1.58861644775144,1.87080984202156,1.48423380547735,1.55201495971255,53.5415749065184,0.000864024382175407,1413.02079207921,1416.02341927262,1416.20311173975,1.0590307699843,3204.67823505818,32.7486477579886,0,3204.67823505818,84.9899086364081,84.9899086364081,0.00130297683234578,84.9900324375294,24.9,1015.2,39.8000000000001,558.223443162557 +45287,2873.86200118812,456.684644554456,225,85.0023663366337,87.5524373267326,21.1512266227723,-2.27811881188119,1840.14356435644,689.064356435644,704.857425742574,20,40,10,32,5305863.30916805,396213.882105,0,0,0,0,0,0,0,85.0023663366336,4292.33445649073,42.3024532455445,22.6860082760422,22.8715658209221,-2.27811881188119,-2.26347860295133,-1.7803321563761,2.34811877741241,1.86291369140204,1.76376169726858,53.52760651234,0.0118083332230639,1393.92178217822,1395.33884913244,1395.36712871287,1.05879413413791,3160.04193607254,157.678904033004,0,3160.04193607254,85.005846387609,85.005846387609,0.00620990316853662,85.0059061763318,24.9,1015.2,39.8000000000001,525.351632212089 +45288,2873.85409594059,456.669791287129,225,85.001306930693,87.5513461386139,21.8924532451485,-1.64980198019802,1846.73762376238,661.630693069307,714.296039603961,20,40,10,32,5305848.99873092,396195.116314202,0,0,0,0,0,0,0,85.001306930693,4315.94901207378,43.784906490297,23.4810200070189,23.5030032555233,-1.64980198019802,-1.63516177126816,-1.28395703080224,2.57768352889343,2.04504217770825,2.18086176281336,53.7194199251829,-0.0038161076879414,1375.92673267327,1370.57738457014,1370.25243752947,1.05880760426462,3130.47663827308,32.4423144293982,0,3130.47663827308,85.0116090579354,85.0116090579354,0.00132884575584586,85.0119879302215,24.9,1015.2,39.8000000000001,556.105019948572 +45289,2873.84619118812,456.654935544554,225,84.9968316831683,87.5467366336634,19.8136204620792,-2.50049504950495,1841.19801980198,620.09603960396,695.650495049505,20,40,10,32,5305834.68932625,396176.347363341,0,0,0,0,0,0,0,84.9968316831682,4339.56266138622,39.6272409241584,21.2513423357276,21.7331901922677,-2.50049504950495,-2.4858548405751,-1.93372762293612,2.8641052839315,2.27227898280881,2.13735780575961,53.5582793779072,-0.0128163616689353,1315.74653465346,1320.34217233604,1320.69592644979,1.05886490709778,2984.76082294827,-227.601678088841,0,2984.76082294827,84.9991219488284,84.9991219488284,-0.00899966234247697,84.9994965582271,24.9,1015.2,39.8000000000001,473.577611495356 +45290,2873.83829633663,456.640067128713,225,85.0158514851485,87.566327029703,21.7472574257426,-0.953960396039604,1840.97524752475,639.082178217821,704.673267326733,20,40,10,32,5305820.39860567,396157.562862373,0,0,0,0,0,0,0,85.0158514851484,4363.17496086367,43.4945148514852,23.3252884449948,23.3804860113984,-0.953960396039604,-0.939320187109745,-0.744913943351839,1.59357168297066,1.26428293789638,1.41525612256188,53.5517991950409,0.0169924795161164,1343.75544554455,1346.73199686305,1346.86674210278,1.0586268146815,3047.2392260533,16.2082163366955,0,3047.2392260533,85.0057557102244,85.0057557102244,0.000509209336780792,85.0052503536067,24.9,1015.2,39.7848514851485,547.422067973486 +45291,2873.83040594059,456.625195346535,225,85.0157821782178,87.5662556435644,21.8087865787129,-0.153069306930693,1840.58910891089,662.708910891089,693.159405940594,20,40,10,32,5305806.11627367,396138.774223369,0,0,0,0,0,0,0,85.0157821782177,4386.78659502208,43.6175731574257,23.3912822948266,23.4331469861184,-0.153069306930693,-0.138429098000836,-0.112348298442238,1.91251674452979,1.517322574434,1.60293360766739,53.5405668780726,-0.00799222553512255,1355.86831683168,1351.38460935202,1351.04064120698,1.05862706346842,3074.06258722703,-65.7961776377286,0,3074.06258722703,85.0028555043622,85.0028555043622,-0.00256646951824169,85.0023150400753,24.9,1015.2,39.68,550.921768085219 +45292,2873.82251465346,456.610326039604,225,85.0017425742574,87.5517948514851,18.6487546754455,-1.54910891089109,1837.63861386139,600.786138613861,634.805940594059,20,40,10,32,5305791.83229567,396119.988544927,0,0,0,0,0,0,0,85.0017425742573,4410.39684144672,37.2975093508911,20.0019512083308,20.7429636858625,-1.54910891089109,-1.53446870196123,-1.17863921091658,3.79496990323103,3.01079377210145,2.85807127780325,53.4547404561098,-0.0115203250956721,1235.59207920792,1064.86868934418,1053.52468646865,1.05880220429501,2797.94441427362,-533.295324519946,0,2797.94441427362,84.9796954220173,84.9796954220173,-0.0212383862148601,84.9783567185289,24.9,1015.2,39.56,430.286492406443 +45293,2873.81462673267,456.595483960396,225,84.6525346534653,87.1921106930693,18.514592959703,-0.329108910891089,1824.26732673267,-599.376237623762,-542.782178217822,20,40,10,32,5305777.55400271,396101.236803143,0,0,0,0,0,0,0,84.6525346534652,4433.97546493407,37.029185919406,19.8580544099112,20.6088348303759,-0.329108910891089,-0.314468701961232,-0.241359861312405,3.8350220501458,3.04256971698776,3.03324243927231,53.0657854800672,0.00108003047771926,-1142.15841584158,-1313.08545240663,-1334.40517935906,1.06317435652021,-2577.85171372502,-5302.03204050707,0,-2577.85171372502,84.6117958043328,84.6117958043328,-0.212089773333777,84.6076032950423,24.9,1015.2,39.44,424.726802464929 +45294,2873.80680475247,456.580802673267,225,83.1217623762376,85.6154152475248,19.4263283827723,-0.192475247524752,1777.5099009901,-3705.32277227723,-3320.33861386138,20,40,10,32,5305763.39430732,396082.687466694,0,0,0,0,0,0,0,83.1217623762375,4457.32161380646,38.8526567655445,20.8359474523432,21.2965432353658,-0.192475247524752,-0.177835038594896,-0.137316852170017,2.74676354407495,2.17918423144678,2.3257299861069,51.7056670984594,-0.0292328249302681,-7025.66138613861,-6684.59986275855,-6627.19749211138,1.08284029943368,-15726.1128221543,-16897.3862185982,0,-15726.1128221543,83.0585590628369,83.0585590628369,-0.675659521397679,83.0487105265614,24.9,1015.2,39.32,454.795469456321 +45295,2873.79917861386,456.566565346535,225,80.2097128712871,82.6160042574257,17.445395489604,0.17990099009901,1714.94554455446,-4391.69900990099,-3858.6198019802,20,40,10,32,5305749.58747577,396064.697615484,0,0,0,0,0,0,0,80.209712871287,4480.01105027511,34.8907909792079,18.7112735121417,19.4449682890555,0.17990099009901,0.194541199028868,0.149118960068007,3.71467596488313,2.94709142513171,2.57508156637437,49.8857437414706,-0.0103682925861049,-8250.31881188119,-8259.35621017547,-8260.50577037826,1.12218694229331,-18472.1163361265,-20206.4682078984,0,-18472.1163361265,80.2323584942651,80.2323584942651,-0.808175124443139,80.2347741037213,24.9,1015.2,39.2,378.309279370546 +45296,2873.79180891089,456.55284990099,225,77.3570396039604,79.6777507920792,18.7742260725743,-0.854554455445544,1654.66336633663,-4392.61782178218,-3797.56930693069,20,40,10,32,5305736.2439955,396047.36634492,0,0,0,0,0,0,0,77.3570396039603,4501.89236636422,37.5484521451485,20.1365270986295,20.4113038531539,-0.854554455445544,-0.839914246515686,-0.658352499631104,2.0893129738627,1.65758639727837,1.69941228879683,48.1322062578456,-0.0210245932996017,-8190.18712871287,-8199.82977159102,-8200.98998182199,1.16358315687947,-18345.7014059043,-19968.4425429446,0,-18345.7014059043,77.3593611410645,77.3593611410645,-0.79856822315894,77.3602500688793,24.9,1015.2,39.08,418.778057832094 +45297,2873.78471475247,456.539612277228,225,74.5537227722772,76.7903344554456,19.3422178217822,-0.0103960396039603,1593.63861386139,-4435.43267326733,-3817.35445544555,20,40,10,32,5305723.40024573,396030.639416283,0,0,0,0,0,0,0,74.5537227722771,4522.98405412549,38.6844356435643,20.7457336355866,20.7337856144634,-0.0103960396039603,0.00424416932589738,0.00599563371119438,1.29131912383533,1.02448653743703,1.27250667804503,46.3570681646662,-0.0108003047771926,-8252.78712871287,-8246.03034016273,-8245.98341157184,1.20733200238188,-18472.9002315633,-19682.3588543243,0,-18472.9002315633,74.5296145475933,74.5296145475933,-0.787207681164172,74.5267420932625,24.9,1015.2,38.96,430.252251497822 +45298,2873.77787356436,456.526881980198,225,71.685900990099,73.836478019802,18.6473762376238,0.467920792079208,1535.82673267327,-4540.90495049505,-3760.1801980198,20,40,10,32,5305711.01374375,396014.552839153,0,0,0,0,0,0,0,71.6859009900989,4543.28771127621,37.2947524752475,20.0004727478902,19.9783619898034,0.467920792079208,0.482561001009065,0.38384946916251,1.62227934762263,1.2870585751609,1.27503496534793,44.6753887088255,-0.0163444612294849,-8301.08514851485,-8295.74249583374,-8293.94855573007,1.25562812043921,-18624.2823299711,-19685.5991189643,0,-18624.2823299711,71.683375159298,71.683375159298,-0.787292095546173,71.6819027181781,24.9,1015.2,38.84,400.344314550674 +45299,2873.77129732673,456.514645742574,225,68.8257425742574,70.8905148514852,19.339495049505,1.39435643564356,1474.64851485149,-4543.9198019802,-3724.99900990099,20,40,10,32,5305699.1069736,395999.090494119,0,0,0,0,0,0,0,68.8257425742573,4562.80026111119,38.6789900990099,20.7428132926903,20.4030078290404,1.39435643564356,1.40899664457342,1.13761580820938,1.96623221687155,1.55993851440611,1.51382863739896,42.8957864896715,-0.0174244917072041,-8268.91881188119,-8274.82564454466,-8273.90762458928,1.30782708895714,-18552.0335181694,-19651.6832818033,0,-18552.0335181694,68.8325265170081,68.8325265170081,-0.785926488688481,68.8362547356433,24.9,1015.2,38.72,416.570026806607 +45300,2873.76498445545,456.502906732673,225,65.9821584158416,67.9616231683168,19.5675049504951,0.664059405940594,1411.06435643564,-4640.71881188119,-3837.60693069307,20,40,10,32,5305687.67692478,395984.256282838,0,0,0,0,0,0,0,65.9821584158415,4581.5239031904,39.1350099009901,20.9873681165374,20.4340003112487,0.664059405940594,0.678699614870451,0.556789223042893,2.88045413690267,2.28524957966774,2.28333677079208,41.0461982955614,-0.0138963921466545,-8478.32574257426,-8525.22164493677,-8565.09406055131,1.36423456722638,-18986.8416766312,-20250.4652551122,0,-18986.8416766312,65.9851949808841,65.9851949808841,-0.809906980797087,65.9770015195571,24.8987376237624,1015.2,38.6012623762376,418.012210671825 +45301,2873.75893485149,456.491687029703,225,62.9685940594059,64.8576518811882,19.1150495049505,2.95207920792079,1522.33168316832,-5168.78910891089,-4285.02574257426,20,40,10,32,5305676.72291332,395970.077713921,0,0,0,0,0,0,0,62.9685940594058,4599.43438404849,38.230099009901,20.5020814631802,19.8755155140176,2.95207920792079,2.96671941685065,2.41836345065193,3.21301305296316,2.54908996282315,2.55560337145634,44.2828336311905,0.0407531500259402,-9453.81485148515,-9403.57567885502,-9358.74176565342,1.42958358840467,-23964.5715865908,-21986.6072794622,0,-23964.5715865908,62.9564207430644,62.9564207430644,-0.87982115043187,62.9434440213605,24.89,1015.2,38.49,395.519316060145 +45302,2873.75314950495,456.481056633663,225,59.7325841584158,61.5245616831683,17.8043465346535,3.13326732673267,1501.38118811881,-5253.34950495049,-4352.93861386139,20,40,10,32,5305666.24519642,395956.642028182,0,0,0,0,0,0,0,59.7325841584157,4616.47297494508,35.6086930693069,19.0962708706363,18.5746319409666,3.13326732673267,3.14790753566253,2.55967639641546,2.72402350813873,2.16114309796748,2.14933372598982,43.6734084336294,-0.024912703019391,-9606.28811881188,-9610.83936868934,-9603.58568573641,1.50708062768934,-25283.8257501331,-22290.5827168352,0,-25283.8257501331,59.7328075678854,59.7328075678854,-0.891387282292581,59.7409785716056,24.88,1015.2,38.38,345.664884799769 +45303,2873.7476749505,456.470974653465,225,56.5567722772277,58.2534754455446,15.7958514851485,2.51841584158416,1412.42574257426,-5217.6900990099,-4330.07128712871,20,40,10,32,5305656.33088553,395943.899848212,0,0,0,0,0,0,0,56.5567722772277,4632.61929246433,31.591702970297,16.9420348006391,16.6841914204267,2.51841584158416,2.53305605051401,2.03851436895973,1.55604140822513,1.23450775644557,1.21670635119837,41.0857994130777,-0.0267127538155898,-9547.76138613862,-9543.34175080874,-9540.42137615174,1.59174748663292,-24969.5740318756,-22087.2461920027,0,-24969.5740318756,56.5499838251151,56.5499838251151,-0.883238571381893,56.5513447550791,24.87,1015.2,38.27,278.958251597859 +45304,2873.74254386139,456.461388811881,225,53.3635148514852,54.9644202970297,14.0796534653465,1.98782178217822,1334.88613861386,-5230.66435643564,-4213.88118811881,20,40,10,32,5305647.04167259,395931.787149635,0,0,0,0,0,0,0,53.3635148514851,4647.88137711779,28.1593069306931,15.1013055051269,15.0405787769082,1.98782178217822,2.00246199110807,1.59670924400423,0.979885339872901,0.777406080651924,0.84309682319735,38.8302637634088,-0.0187205282804672,-9444.54554455445,-9446.75223017351,-9444.18046677535,1.68704914752703,-24740.4110907582,-21939.6651462748,0,-24740.4110907582,53.3724425056366,53.3724425056366,-0.877409894454795,53.378354817841,24.86,1015.2,38.16,226.481785624082 +45305,2873.73782217822,456.45221970297,225,50.276297029703,51.784585940594,13.1784257425743,1.3580198019802,1258.16336633663,-5200.34455445544,-4106.69306930693,20,40,10,32,5305638.50148221,395920.207224066,0,0,0,0,0,0,0,50.2762970297029,4662.26749130922,26.3568514851485,14.1346826258941,14.096587443969,1.3580198019802,1.37266001091006,1.10276476383968,1.10570258899432,0.877224998782257,0.86765222785373,36.5984887842497,-0.0260647355289582,-9307.03762376238,-9348.42517400255,-9491.53193969353,1.79064515257919,-24389.6420022375,-21193.0373419412,0,-24389.6420022375,50.2755066169983,50.2755066169983,-0.847475465368312,50.2687783118718,24.85,1015.2,38.05,199.179921663748 +45306,2873.73353742574,456.443420693069,225,47.1090792079208,48.5223515841584,12.0737524752475,2.7390099009901,1255.80198019802,-5947.9900990099,-4751.69108910891,20,40,10,32,5305630.76234429,395909.102905013,0,0,0,0,0,0,0,47.1090792079207,4675.79857376246,24.147504950495,12.9498517254528,12.9747708780942,2.7390099009901,2.75365010991995,2.1806346487984,0.987539517405458,0.783478632116946,0.779401375872807,36.5297988458668,0.061561737229998,-10699.6811881188,-10795.7683168317,-10872.3129513619,1.91131062389112,-30132.9143629002,-23920.5788830094,0,-30132.9143629002,47.0831232232134,47.0831232232134,-0.957508250825076,47.0038518610833,24.84,1015.2,37.94,168.76625339038 +45307,2873.72979534654,456.434976039604,225,43.2658613861386,44.5638372277228,11.1025148514852,2.56544554455446,1489.62871287129,-7132.53366336634,-5729.91584158416,20,40,10,32,5305624.02048136,395898.458121146,0,0,0,0,0,0,0,43.2658613861386,4688.36600360295,22.2050297029703,11.9081388657856,11.9281752508338,2.56544554455446,2.58008575348431,2.04265194254455,0.979529026542335,0.77712339436351,0.778592386649982,43.3315427864153,-0.0126003555733914,-12862.4495049505,-12751.3042348789,-12443.9809926315,2.08191064150502,-46388.2839098782,-28599.8635731182,0,-46388.2839098782,43.2579867660033,43.2579867660033,-1.14382032262632,43.2309014527958,24.83,1015.2,37.83,142.972997000451 +45308,2873.72668366337,456.427011287129,225,39.1960396039604,40.3719207920792,10.8237425742574,1.9160396039604,1358.82178217822,-7101.44455445544,-5681.42475247525,20,40,10,32,5305618.43556213,395888.432205655,0,0,0,0,0,0,0,39.1960396039604,4699.80526779437,21.6474851485149,11.6091382309236,11.457836566955,1.9160396039604,1.93067981289025,1.55034099534377,1.00367005481386,0.796276025194697,0.781599350643073,39.5265234113785,-0.0415451723762677,-12782.8693069307,-12834.3257131654,-13225.1844770239,2.29813147842733,-46406.4321253392,-27535.5499623653,0,-46406.4321253392,39.1990659739241,39.1990659739241,-1.10087927109542,39.1800043726785,24.82,1015.2,37.72,131.573355197762 +45309,2873.7241480198,456.419637425743,225,35.030801980198,36.081726039604,9.59551485148515,2.54782178217822,1259.96534653465,-8140.95940594059,-6558.31386138614,20,40,10,32,5305613.9044023,395879.161613739,0,0,0,0,0,0,0,35.030801980198,4710.12742590767,19.1910297029703,10.2917874795645,10.1735919418525,2.54782178217822,2.56246199110807,2.05034048635443,0.873385440800211,0.692912859089221,0.69399954134182,36.650906263435,0.0390971032934373,-14699.2732673267,-14720.1148220763,-14502.1518843402,2.57321764675349,-55663.5504953617,-31667.162296827,0,-55663.5504953617,35.0004102538966,35.0004102538966,-1.26730086374974,34.8561215759268,24.81,1015.2,37.61,103.799979163201 +45310,2873.72225415842,456.412935643564,225,30.2404554455446,31.1476691089109,7.90883168316832,3.22069306930693,1454.64851485149,-8843.60594059406,-7110.09603960396,20,40,10,32,5305610.54695117,395870.749688236,0,0,0,0,0,0,0,30.2404554455445,4719.19053129821,15.8176633663366,8.48271470104768,8.46352268140121,3.22069306930693,3.23533327823678,2.56850934935265,0.708767360854455,0.562310745630034,0.578239632830286,42.3140100723401,0.00655218489816354,-15953.701980198,-15949.4487501225,-14150.3572286132,2.98289732377915,-80453.7661135959,-33969.3007951283,0,-80453.7661135959,30.2258579551024,30.2258579551024,-1.35885506867518,30.3194652817523,24.8012623762376,1015.19873762376,37.5126237623762,71.9826354703739 +45311,2873.7208990099,456.407075445544,225,25.5183366336634,26.2838867326733,7.01717821782178,3.49217821782178,1497.94059405941,-6758.11584158416,-5338.21188118812,20,40,10,32,5305608.16847526,395863.404148818,0,0,0,0,0,0,0,25.5183366336633,4726.90644733231,14.0343564356436,7.52636080938095,7.43386984023919,3.49217821782178,3.50681842675163,2.81227439693752,0.700448531828374,0.555710883375111,0.544246696036322,43.5733256093607,0.0450732719368172,-12096.3277227723,-11706.0523772179,-9967.65240234495,3.53426514502824,-72778.5455746333,-25262.9345110052,0,-72778.5455746333,25.6714668169787,25.6714668169787,-1.01150214031304,26.7510545681156,24.8,1015.19,37.49,55.4180765250646 +45312,2873.71992178218,456.401845049505,191.138613861386,23.4850891089109,24.1896417821782,6.21327722772277,3.47920792079208,1560.31683168317,-1775.92574257426,-1390.26138613861,20,40,10,32,5305606.47588948,395856.855801592,0,0,0,0,0,0,0,23.4850891089108,4733.64048160074,12.4265544554455,6.66412691440345,6.63328393269044,3.47920792079208,3.49384812972193,2.78137794201198,0.583406203505935,0.46285367444562,0.47565556004778,45.3877768119291,0.0126003555733914,-3166.18712871287,-3231.16098421723,-5140.03613015707,3.83281987225331,-21890.8206616532,-6525.81271427141,0,-21890.8206616532,23.5393520243113,23.5393520243113,-0.261355095905633,24.5743980732719,24.8,1015.18,37.48,44.1373573858684 +45313,2873.71923128713,456.396746435644,151.930693069307,23.1870396039604,23.8826507920792,5.91564356435644,3.11,1573.84158415842,691.945544554455,800.486138613861,20,40,10,32,5305605.31147553,395850.481200905,0,0,0,0,0,0,0,23.1870396039604,4740.09336047863,11.8312871287129,6.3448962678419,6.36312023242118,3.11,3.12464020892985,2.4666991428509,0.591773130525397,0.469491695933057,0.470944242390956,45.7811959139463,-0.00640818083446762,1492.43168316832,1126.52354671111,-842.708681189209,3.8815359497378,10594.1840014753,1382.84187444693,0,10594.1840014753,23.2171485148514,23.2171485148514,0.0554793103072702,23.6901778327177,24.8,1015.17,37.47,40.631027475168 +45314,2873.71874653465,456.391594752475,110.940594059406,23.6694257425742,24.3795085148515,5.77339603960396,3.39861386138614,1472.18316831683,1010.23465346535,1221.69504950495,20,40,10,32,5305604.52936741,395844.047365187,0,0,0,0,0,0,0,23.6694257425742,4746.59435877346,11.5467920792079,6.19232693551264,6.26959216311145,3.39861386138614,3.41325407031599,2.67702444159153,0.68094929040666,0.540240880679381,0.533886363835741,42.824072465951,-0.0838103650710148,2231.9297029703,2193.12696794432,674.237822885957,3.80258083798043,14228.7425560836,4532.6770355913,0,14228.7425560836,23.6850263699637,23.6850263699637,0.183207800978121,23.6781058018691,24.8,1015.16,37.46,39.4326254585141 +45315,2873.71845544554,456.386262079208,82.4257425742574,24.1883564356436,24.9140071287129,6.46555445544555,2.54990099009901,1201.10891089109,118.435643564356,248.149504950495,20,40,10,32,5305604.11006663,395837.39453642,0,0,0,0,0,0,0,24.1883564356435,4753.26207879546,12.9311089108911,6.93470995802769,6.8883851910962,2.54990099009901,2.56454119902886,2.02978916975035,0.828470064801597,0.657278601696801,0.605638386406833,34.9388419501545,-0.0777621943957869,366.585148514852,305.188432506617,292.927262952581,3.72096598321573,1937.62785939147,257.314826585532,0,1937.62785939147,24.1510686207234,24.1510686207234,0.0116886688668853,23.8242439544168,24.8,1015.15,37.45,47.8291297845379 +45316,2873.71846891089,456.380901287129,45,23.9373663366336,24.6554873267327,6.57549504950495,2.12267326732673,863.960396039604,-755.637623762377,-647.762376237623,20,40,10,32,5305604.25554482,395830.716860568,0,0,0,0,0,0,0,23.9373663366336,4759.94959276686,13.1509900990099,7.05262809446425,6.96773796476636,2.12267326732673,2.13731347625659,1.7152138637473,0.702367395489699,0.557233241366965,0.60067037487385,25.1315891962088,-0.0447852638094255,-1403.4,-1208.50336241545,-1469.44407597153,3.75995118609579,-5168.08510625451,-2650.29075853976,0,-5168.08510625451,23.9178436427801,23.9178436427801,-0.105355956387721,23.3698114016182,24.8,1015.14,37.44,48.7281951617139 +45317,2873.71876920792,456.375657623762,45,23.0697326732673,23.7618246534653,6.44570297029703,2.89722772277228,829.60396039604,-1988.1099009901,-1777.05346534653,20,40,10,32,5305604.9297073,395824.194686806,0,0,0,0,0,0,0,23.0697326732673,4766.51830088017,12.8914059405941,6.91341800345679,6.80747918770806,2.89722772277228,2.91186793170213,2.34113047421985,0.71710949806914,0.568929099770498,0.585934319911112,24.1322009941592,0.00396011175163729,-3765.16336633663,-3670.44134888736,-2547.94465322281,3.90511824284639,-14382.709238046,-16084.946003458,0,-14382.709238046,22.8822716400353,22.8822716400353,-0.643463603786117,22.0116821323601,24.8,1015.13,37.43,46.5405283612614 +45318,2873.71928633663,456.370962970297,45,19.5378712871287,20.1240074257426,5.47238613861386,3.49594059405941,888.128712871287,-1976.69603960396,-1735.11683168317,20,40,10,32,5305605.99317735,395818.363685518,0,0,0,0,0,0,0,19.5378712871287,4772.44338099568,10.9447722772277,5.86947506375973,5.77654387242554,3.49594059405941,3.51058080298926,2.82271385133635,0.657793814569398,0.52187015199942,0.498653058830285,25.8346170351722,0.00921626007653772,-3711.81287128713,-3886.64465248505,-2619.84143629824,4.61417119397495,-17348.9934761627,-17825.2180674977,0,-17348.9934761627,19.7457941378296,19.7457941378296,-0.713151760720627,20.6087622046119,24.8,1015.12,37.42,33.592017506212 +45319,2873.71998643564,456.366886138614,45,18.557900990099,19.114638019802,4.73266336633663,3.3950495049505,925.891089108911,-1212.33762376238,-1022.03762376238,20,40,10,32,5305607.38168265,395813.308446655,0,0,0,0,0,0,0,18.557900990099,4777.68804405948,9.46532673267327,5.07607630570422,5.09096925380545,3.3950495049505,3.40968971388035,2.69558276395171,0.418452187851671,0.331985041576584,0.354832183935323,26.9330800330445,0.0142564023058943,-2234.37524752475,-2126.0892069405,-1617.22031855437,4.85067371870422,-11618.8745187737,-4183.54845774155,0,-11618.8745187737,18.5484611312616,18.5484611312616,-0.167602032480477,19.4438098044323,24.8,1015.11,37.41,25.9771123701166 +45320,2873.72080564356,456.363007128713,45,18.0344356435644,18.5754687128713,4.65713861386139,3.44722772277228,909.752475247525,-923.338613861386,-775.954455445545,20,40,10,32,5305608.98637382,395808.503626605,0,0,0,0,0,0,0,18.0344356435643,4782.75674163924,9.31427722772277,4.99507130347637,4.99668796456361,3.44722772277228,3.46186793170213,2.74116372186868,0.532860767380364,0.422752728146823,0.413625437451739,26.4636267853959,-0.00756021334403484,-1699.29306930693,-1397.74034898539,208.960313001055,4.99080400173465,-8975.48360449003,-1935.83220751374,0,-8975.48360449003,18.0303089893148,18.0303089893148,-0.0772881743619893,18.8381496690257,24.8,1015.10126237624,37.4063118811881,25.1156907541283 +45321,2873.72172772277,456.359243168317,45,18.157603960396,18.7023320792079,4.27826732673267,3.5,929.70297029703,1850.48910891089,2092.69207920792,20,40,10,32,5305610.77903426,395803.84557055,0,0,0,0,0,0,0,18.157603960396,4787.75692533011,8.55653465346534,4.58870824431918,4.68137195654009,3.5,3.51464020892985,2.73536296465377,0.633186422180991,0.502347524510967,0.515856635101655,27.0439631620904,0.011736331191216,3943.18118811881,3613.42896774826,1614.16404959491,4.95820734179013,21180.3225894665,6407.01122657173,0,21180.3225894665,18.2536028820704,18.2536028820704,0.256054689627379,18.9976347899826,24.8,1015.1,37.44,22.0233630056729 +45322,2873.72281920792,456.355375049505,45,19.7159603960396,20.3074392079208,4.65688118811881,3.5,991.910891089109,2129.40594059406,2618.20594059406,20,40,10,32,5305612.88783906,395799.063429459,0,0,0,0,0,0,0,19.7159603960396,4793.00591834442,9.31376237623762,4.99479519832982,5.09287583103591,3.5,3.51464020892985,2.73693057947806,0.649504403469683,0.515293628878074,0.501864596576096,28.853518226493,0.0218886176817771,4747.61188118812,4856.44711302813,2929.89040150656,4.56710919250206,25087.4848085867,9459.39282464665,0,25087.4848085867,19.6439182433095,19.6439182433095,0.377959949460291,19.5283488605491,24.8,1015.1,37.48,26.0601436224469 +45323,2873.7241890099,456.351337326733,45,20.5331584158416,21.1491531683168,4.82431683168317,3.5,859.930693069307,1359.16633663366,1693.23366336634,20,40,10,32,5305615.51600085,395794.079319276,0,0,0,0,0,0,0,20.5331584158416,4798.61631254134,9.64863366336634,5.17438035730664,5.28219839527624,3.5,3.51464020892985,2.7352170068569,0.670803166127554,0.532191307541925,0.522902361120747,25.0143698883603,-0.0887065032366756,3052.4,3074.12758553083,4037.97438122967,4.38358967825377,13593.7636689422,4492.8639849562,0,13593.7636689422,20.5448422703656,20.5448422703656,0.181169602108724,20.4340147671834,24.8,1015.1,37.52,27.961230509328 +45324,2873.7257129703,456.347251584159,45,21.3125049504951,21.9518800990099,5.10087128712871,3.26168316831683,757.594059405941,1686.13663366337,2101.89405940594,20,40,10,32,5305618.43080133,395789.040550049,0,0,0,0,0,0,0,21.312504950495,4804.42073721131,10.2017425742574,5.47100224013679,5.56228183975358,3.26168316831683,3.27632337724668,2.559739469329,0.624229922898467,0.495241757417347,0.502649546457568,22.0375178836386,0.0121683433823037,3788.03069306931,3694.92482109597,3712.27586768239,4.22373858585888,14105.6538988559,6699.52666078875,0,14105.6538988559,21.3279244191746,21.3279244191746,0.267818242220261,21.4453584222293,24.8,1015.1,37.56,31.0291332415913 +45325,2873.72737940594,456.343100891089,45,22.326198019802,22.995983960396,5.49941584158416,3.10980198019802,793.267326732673,1858.53564356436,2320.90396039604,20,40,10,32,5305621.61098031,395783.925640741,0,0,0,0,0,0,0,22.326198019802,4810.48492964805,10.9988316831683,5.89846610414804,5.95963083505722,3.10980198019802,3.12444218912787,2.45466128769307,0.613102445602986,0.486413613797048,0.488583245606544,23.0752111666313,0.00741620928033894,4179.4396039604,4126.74013332026,3368.31214423675,4.03175722240005,15551.7300536138,7067.52941782819,0,15551.7300536138,22.3368530536222,22.3368530536222,0.282601651254231,22.3153348156305,24.8,1015.1,37.6,35.6441024960265 +45326,2873.72926138614,456.338878712871,45,23.3756930693069,24.0769638613861,5.69608910891089,2.39643564356436,825.653465346535,1455.10792079208,1806.89504950495,20,40,10,32,5305625.19203438,395778.728896066,0,0,0,0,0,0,0,23.3756930693069,4816.83509488457,11.3921782178218,6.10941043611633,6.18731125251791,2.39643564356436,2.41107585249421,1.88559156529881,0.650458092616833,0.516050251833718,0.509743507640172,24.0172857513299,0.00676819099370738,3262.00297029703,3242.48303107539,2460.55855131768,3.85065275527034,12069.1159522055,5937.02764936498,0,12069.1159522055,23.3427295363199,23.3427295363199,0.237390942064504,23.0540870076284,24.8,1015.1,37.64,38.447487820882 +45327,2873.73136277228,456.334603861386,45,23.8690693069307,24.5851413861386,5.92208910891089,2.07594059405941,837,343.559405940594,521.980198019802,20,40,9.61386138613861,32,5305629.18069316,395773.473880962,0,0,0,0,0,0,0,23.8690693069307,4823.41499895498,11.8441782178218,6.3518095159345,6.4080366386461,2.07594059405941,2.09058080298926,1.64624186054451,0.586585038959704,0.4653756491202,0.47385859462964,24.3473430653209,-0.000288008127391801,865.539603960396,897.100843054603,946.176719553131,3.77059120433662,3204.3197444926,460.812686685219,0,3204.3197444926,23.8218373688854,23.8218373688854,0.0184363733402986,23.461005565017,24.8,1015.1,37.68,41.18095683259 +45328,2873.7334729703,456.33033,45,23.5723069306931,24.2794761386139,5.61509900990099,-0.338910891089109,823.965346534653,-632.780198019802,-568.133663366337,20,40,9.06930693069307,32,5305633.1856572,395768.220401257,0,0,0,0,0,0,0,23.572306930693,4830.01442959304,11.230198019802,6.02254350923853,6.12961195000928,-0.338910891089109,-0.324270682159251,-0.257409883880696,0.722083234727737,0.572875085045119,0.669160239972939,23.9681803656096,-0.00964827226762542,-1200.91386138614,-1281.84500539163,-762.91497120022,3.81810873115643,-4393.29851090052,-2544.17820445837,0,-4393.29851090052,23.5866209195177,23.5866209195177,-0.101639000533708,23.399839639546,24.8,1015.1,37.72,37.6954382652928 +45329,2873.73529673267,456.325912475248,45,23.1065247524752,23.7997204950495,4.15935643564356,-2.80029702970297,852.861386138614,-1286.81089108911,-1464.03267326733,20,40,9.93069306930693,32,5305636.66328178,395762.77838008,0,0,0,0,0,0,0,23.1065247524752,4836.50974834992,8.31871287128713,4.46116890546804,4.86413374707566,-2.80029702970297,-2.78565682077312,-2.01460287609309,1.9912001942349,1.57974721715327,1.42515442168739,24.8087320854026,0.0383050809431099,-2750.84356435644,-2606.26835604352,-1856.44455495237,3.89551732373691,-10671.3843758065,-5200.03929058246,0,-10671.3843758065,23.0811171453779,23.0811171453779,-0.208553899944453,22.9215129785727,24.8,1015.1,37.76,24.075661985349 +45330,2873.73646633663,456.321257821782,45,22.2471881188119,22.9146037623762,5.16206930693069,-3.4629702970297,997.084158415842,-1102.8900990099,-1350.20198019802,20,40,10,32,5305638.93452208,395757.019080354,0,0,0,0,0,0,0,22.2471881188118,4842.80525935102,10.3241386138614,5.53664092901597,5.66791959303747,-3.4629702970297,-3.44833008809985,-2.67321832012061,0.839759552197392,0.666235278352533,0.724596406314717,29.0040024730553,0.0270007619429816,-2453.09207920792,-2422.88524654446,-2108.86366820699,4.04588771809144,-11500.0329725488,-5768.50935155443,0,-11500.0329725488,22.2418088422703,22.2418088422703,-0.231191931074295,22.2651098000506,24.8,1015.10126237624,37.8037871287129,32.3518726228641 +45331,2873.73689059406,456.316472574258,68.1683168316832,21.5115742574257,22.1569214851485,5.05611881188119,-3.49663366336634,1001.86633663366,-797.832673267327,-987.508910891089,20,40,10,32,5305639.82807003,395751.072160676,0,0,0,0,0,0,0,21.5115742574257,4848.87203536862,10.1122376237624,5.42300242235102,5.53556542103941,-3.49663366336634,-3.48199345443648,-2.70518317605184,0.772027437354871,0.61249903412949,0.606544141810031,29.1431103985855,-0.0200165648537304,-1785.34158415842,-1855.77409077541,-1508.13527896589,4.18390899080979,-8704.19509241715,-4328.74689491027,0,-8704.19509241715,21.5181211645917,21.5181211645917,-0.172798963064619,21.4923393424977,24.8,1015.11,37.87,30.8831004327395 +45332,2873.73633574258,456.311865247525,210.742574257426,20.6830891089109,21.3035817821782,4.7110297029703,-3.4819801980198,938.831683168317,-723.09801980198,-909.016831683168,20,40,10,32,5305638.9039754,395745.314120105,0,0,0,0,0,0,0,20.6830891089109,4854.75142882297,9.42205940594059,5.05287285396486,5.19444821596504,-3.4819801980198,-3.46733998908995,-2.67465050036416,0.886498542559451,0.703316326340974,0.72573758295432,27.3095066555456,-0.0151924287199176,-1632.11485148515,-1347.37114008431,96.2788000794039,4.35268186521311,-7758.88421494073,-7187.2161597124,0,-7758.88421494073,20.6812332124301,20.6812332124301,-0.28722810399852,20.9417681203093,24.8,1015.12,37.94,27.3013561864768 +45333,2873.73489811881,456.307924752475,225,20.1273267326733,20.7311465346535,4.68118811881188,-3.5,906.688118811881,1559.40495049505,1299.58316831683,20,40,10,32,5305636.32968299,395740.357227424,0,0,0,0,0,0,0,20.1273267326732,4860.37745682077,9.36237623762376,5.02086589582187,5.13719212502389,-3.5,-3.48535979107015,-2.67431093487938,1.02836031203665,0.81586439468734,0.795860171377969,26.3744882699681,-0.00316808940130984,2858.98811881188,2540.67513969219,1441.72161975503,4.47200171608594,13435.7944338759,987.311845354071,0,13435.7944338759,20.1596839525536,20.1596839525536,0.0395481379821174,20.7043008233526,24.8,1015.13,38.01,27.2991743129462 +45334,2873.73273861386,456.304848118812,225,20.5110891089109,21.1264217821782,4.79966336633663,-3.5,909.777227722772,2111.04455445545,1768.30891089109,20,40,10,32,5305632.39878178,395736.452309506,0,0,0,0,0,0,0,20.5110891089109,4866.0209151541,9.59932673267327,5.14793797980961,5.2599962885724,-3.5,-3.48535979107015,-2.68898225635244,0.956607898736363,0.758938589053458,0.751187163372973,26.4643468057144,0.00187205282804672,3879.35346534653,3889.60793059504,2817.05558095796,4.38833539041226,18032.0878204616,3090.75336796827,0,18032.0878204616,20.5251996863052,20.5251996863052,0.123598993562722,20.7284002075612,24.8,1015.14,38.08,28.3534398870585 +45335,2873.72994376238,456.302996633663,225,21.0582673267327,21.6900153465347,5.16193069306931,-3.5,922.529702970297,2005.64950495049,1676.07920792079,20,40,10,32,5305627.26343015,395734.052328303,0,0,0,0,0,0,0,21.0582673267326,4871.79159238183,10.3238613861386,5.53649225701398,5.59960824372179,-3.5,-3.48535979107015,-2.7149918027221,0.957066169930708,0.759302165074627,0.732640236663768,26.835301273795,0.00302408533761393,3681.72871287129,3739.98335457308,3903.08106004025,4.27444983328939,16890.8445989537,4339.77725962396,0,16890.8445989537,21.0597532594843,21.0597532594843,0.173542354235425,21.1515270519166,24.8,1015.15,38.15,32.2080967527955 +45336,2873.72677693069,456.302633564356,225,21.6537425742574,22.3033548514852,5.80759405940594,-3.5,959.193069306931,2376.11386138614,2002.84257425743,20,40,10,32,5305621.40554567,395733.494060785,0,0,0,0,0,0,0,21.6537425742574,4877.72433127072,11.6151881188119,6.22900644228965,6.18310930271389,-3.5,-3.48535979107015,-2.77878242777363,0.687144273462903,0.545155759289652,0.589135784530329,27.9017953695268,0.0119523372867598,4378.95643564356,4328.5189589256,3809.92767303458,4.15697623504924,20312.2931817374,4836.82152029005,0,20312.2931817374,21.6896241544946,21.6896241544946,0.193273535274313,21.7769325992015,24.8,1015.16,38.22,38.5348567945733 +45337,2873.72360306931,456.303876138614,225,22.5842475247525,23.261774950495,6.01332673267327,-3.5,1009.47524752475,2023.52673267327,1681.54158415842,20,40,10,32,5305615.49850277,395734.935760087,0,0,0,0,0,0,0,22.5842475247524,4883.86557579767,12.0266534653465,6.44966755153094,6.41151869795434,-3.5,-3.48535979107015,-2.77142005778317,0.842646241477567,0.668525474672494,0.672723994037667,29.3644446444861,0.0159844510702451,3705.06831683168,3793.03001666503,3737.59971569215,3.98578959681322,17368.5526826011,5582.35784527859,0,17368.5526826011,22.535159298108,22.535159298108,0.223025520373823,22.3952211144961,24.8,1015.17,38.29,41.5895125537056 +45338,2873.72080534653,456.306587227723,225,23.0968514851485,23.789757029703,6.46792079207921,-3.5,923.420792079208,1795.45544554455,1502.48415841584,20,40,9.82178217821782,32,5305610.25514795,395738.21942883,0,0,0,0,0,0,0,23.0968514851485,4890.21971894948,12.9358415841584,6.93724800149026,6.82770914615069,-3.5,-3.48535979107015,-2.79597916615986,0.959222901063226,0.761013238634487,0.73838753230319,26.8612220052603,-0.0696979668288164,3297.9396039604,3217.94987746299,3519.58604693469,3.89698926023783,13769.2163361085,2750.09883995068,0,13769.2163361085,23.1074206450348,23.1074206450348,0.11103486586282,22.9820444839322,24.8,1015.18,38.36,47.1851677377213 +45339,2873.71850079208,456.31032980198,225,23.3462871287129,24.0466757425743,6.6609306930693,-3.49841584158416,776.193069306931,1811.78118811881,1516.05742574257,20,40,9.9009900990099,32,5305605.90209845,395742.804563694,0,0,0,0,0,0,0,23.3462871287129,4896.67756009359,13.3218613861386,7.14426314483449,7.0062367460638,-3.49841584158416,-3.48377563265431,-2.80682069852926,0.986478535476292,0.782636886894692,0.768232169480173,22.5785411509441,-4.15646615036027E-18,3327.83861386139,3318.86784628958,3048.93884455383,3.8551412808347,11588.6631518487,2851.57464851717,0,11588.6631518487,23.401481129301,23.401481129301,0.114062891437661,23.4934187763034,24.8,1015.19,38.43,49.5432347078065 +45340,2873.7167049505,456.314854851485,225,24.0164158415842,24.7369083168317,6.70165346534653,-3.5,800.40099009901,1563.21881188119,1326.84356435644,20,40,10,32,5305602.47375477,395748.381484967,0,0,0,0,0,0,0,24.0164158415841,4903.25873971405,13.4033069306931,7.1879408551338,7.07931042512328,-3.5,-3.48535979107015,-2.7966429314657,0.950637965165298,0.754202256678249,0.801256082958532,23.2827210224171,0.0105842986816488,2890.06237623762,2865.7115380845,2694.65028838904,3.74751982861315,10083.2196519805,3148.89013336187,0,10083.2196519805,23.9780648955984,23.9780648955984,0.125822359463668,23.8594289604811,24.8,1015.19873762376,38.4924257425743,50.6214486732029 +45341,2873.71551346535,456.31993970297,200.049504950495,24.2841782178218,25.0127035643564,6.49042574257426,-3.5,817.69801980198,1121.66237623762,915.176237623763,20,40,10,32,5305600.15229481,395754.675999544,0,0,0,0,0,0,0,24.2841782178218,4909.96978193077,12.9808514851485,6.96138596295642,6.91494625872695,-3.5,-3.48535979107015,-2.76535054798434,1.13834390114775,0.903121451679312,0.865884993072883,23.7858712209706,0.00180005079619877,2036.83861386139,2021.59463778061,2156.80507040837,3.70614642602065,7182.36050776869,1203.16483301745,0,7182.36050776869,24.2615866091559,24.2615866091559,0.0481039440577704,24.117001551181,24.8,1015.2,38.51,48.8430538724857 +45342,2873.71491663366,456.325257029703,109.158415841584,24.2565148514852,24.9842102970297,7.34510891089109,-3.33227722772277,825.970297029703,821.846534653465,653.639603960396,20,40,10,32,5305598.92711266,395761.280017153,0,0,0,0,0,0,0,24.2565148514851,4916.72044235432,14.6902178217822,7.87808690780632,7.64065391445197,-3.33227722772277,-3.31763701879292,-2.69943354044007,1.32298033626626,1.04960541416991,1.05092371756551,24.0265020114064,-0.000216006095543851,1475.48613861386,1511.10648955985,1484.65674320724,3.71038540049093,5259.92270609567,-663.854605354307,0,5259.92270609567,24.2636410155867,24.2636410155867,-0.0265510461937289,24.2362652110687,24.8,1015.2,38.52,58.812323474417 +45343,2873.7147709901,456.330636633663,48.5643564356436,24.289603960396,25.0182920792079,6.84165346534654,-3.29009900990099,830.787128712871,538.709900990099,411.681188118812,20,40,10,32,5305598.53629168,395767.976712729,0,0,0,0,0,0,0,24.289603960396,4923.45231958204,13.6833069306931,7.33809957714505,7.21415840727362,-3.29009900990099,-3.27545880097114,-2.62822731034135,1.0308800022876,0.817863427066682,0.839650221900964,24.1666179653825,0.00669618896185943,950.391089108911,944.802705617096,867.122525390156,3.70532267281831,3405.16500329435,-21.2521659335526,0,3405.16500329435,24.2647902166454,24.2647902166454,-0.000936727336097741,24.1461394961465,24.8,1015.2,38.53,52.6097297445332 +45344,2873.71493722772,456.336004950495,45,23.9471584158416,24.6655731683168,7.20487128712872,-2.73782178217822,829.544554455446,155.250495049505,94.0693069306931,20,40,10,32,5305598.72344306,395774.669781422,0,0,0,0,0,0,0,23.9471584158416,4930.17067299239,14.4097425742574,7.72767331950593,7.50373488672161,-2.73782178217822,-2.72318157324836,-2.21645878136016,1.36332645715768,1.0816145875246,1.07752794120626,24.1304729453949,-0.00489613816566065,249.319801980198,223.027752181159,138.692738558861,3.7585195367388,901.332592350826,-2841.78223569976,0,901.332592350826,23.9731698853053,23.9731698853053,-0.113608142992515,23.9620035160205,24.8,1015.2,38.54,57.0647255855236 +45345,2873.71527772277,456.34127970297,45,23.7888712871287,24.5025374257426,7.1399603960396,-2.22346534653465,826.450495049505,-335.964356435643,-415.454455445545,20,40,10,32,5305599.2354914,395781.252121932,0,0,0,0,0,0,0,23.7888712871287,4936.78995987357,14.2799207920792,7.65805234485913,7.43949293300044,-2.22346534653465,-2.2088251376048,-1.77838139552027,1.30310872678844,1.03383998793912,0.999093573210489,24.0404704055849,-0.00115203250956722,-751.418811881188,-723.128154102539,-511.366068142752,3.78332929971745,-2729.72167616297,-1784.11904616734,0,-2729.72167616297,23.7489959807862,23.7489959807862,-0.071349214129332,23.6761728508244,24.8,1015.2,38.55,55.937863105969 +45346,2873.71557920792,456.346490495049,45,23.2880297029703,23.9866705940594,5.34274257425743,0.437920792079208,818.881188118812,-569.793069306931,-653.949504950495,20,40,10,32,5305599.67672632,395787.753478476,0,0,0,0,0,0,0,23.2880297029703,4943.33143938402,10.6854851485149,5.73042426418297,5.88157966967368,0.437920792079208,0.452561001009065,0.347862617434585,1.31344954473881,1.04204402409153,1.06247624538871,23.8202881921939,-0.00604817067522788,-1223.74257425743,-1212.27833545731,-1130.69990296033,3.86474573871465,-4506.31421315651,-2942.17629672392,0,-4506.31421315651,23.3065096559161,23.3065096559161,-0.117606933960726,23.3081262433728,24.8,1015.2,38.56,36.0161477092387 +45347,2873.71576386138,456.35162029703,45,22.9640099009901,23.6529301980198,4.69732673267327,-2.03722772277228,809.767326732673,-668.378217821782,-604.59900990099,20,40,10,32,5305599.90337802,395794.150033928,0,0,0,0,0,0,0,22.9640099009901,4949.75505126521,9.39465346534654,5.03817556462515,5.313825076919,-2.03722772277228,-2.02258751384242,-1.51027070006512,1.46700878536411,1.1638724488518,1.2267214317134,23.5551767109297,0.000576016254783608,-1272.97722772277,-1355.71795902363,-1986.60096513022,3.91926290885224,-4700.41881336075,-2665.031188327,0,-4700.41881336075,22.9567476717969,22.9567476717969,-0.106608556895296,22.7014289423841,24.8,1015.2,38.57,28.8365392603866 +45348,2873.71573920792,456.356674752475,69.950495049505,22.2603861386139,22.9281977227723,4.8879603960396,-0.636633663366336,834.371287128713,-1748.96633663366,-1543.44554455446,20,40,10,32,5305599.74402344,395800.445726646,0,0,0,0,0,0,0,22.2603861386138,4956.06021166125,9.77592079207921,5.24264204507809,5.43571460638239,-0.636633663366336,-0.621993454436478,-0.413650615374959,1.31973713105661,1.04703237082678,1.01064001075145,24.2708769074984,0.0360010159239754,-3292.41188118812,-3154.55544554455,-2309.52261687383,4.04458661432922,-13113.3318470953,-9461.03460269006,0,-13113.3318470953,22.1915466130771,22.1915466130771,-0.378974283566964,21.8011385644174,24.8,1015.2,38.58,30.7483252136034 +45349,2873.71551376238,456.361471386139,96.6831683168317,20.5037227722772,21.1188344554455,4.23731683168317,0.459009900990099,962.975247524752,-1748.88118811881,-1487.85445544554,20,40,10,32,5305599.21853863,395806.413526618,0,0,0,0,0,0,0,20.5037227722772,4961.99678457104,8.47463366336634,4.54478628715945,4.78135076369076,0.459009900990099,0.473650109919956,0.360676019341507,1.26267824623477,1.00176388663713,1.01829951471384,28.0118144741905,0.0283688005480927,-3236.73564356436,-3119.1056072934,-2137.29865998109,4.39128789935851,-15879.8711051484,-9696.09067107209,0,-15879.8711051484,20.5653902558572,20.5653902558572,-0.388345641494847,20.8788236195408,24.8,1015.2,38.59,23.2452518848077 +45350,2873.71520623762,456.365925247525,100.247524752475,19.599900990099,20.187898019802,4.64510891089109,-2.01089108910891,987.054455445545,-928.213861386139,-781.703960396039,20,40,10,32,5305598.54872999,395811.951578837,0,0,0,0,0,0,0,19.599900990099,4967.55229103418,9.29021782178218,4.98216869758927,5.07642183355638,-2.01089108910891,-1.99625088017906,-1.5163450271512,0.979258302847512,0.776908611839506,0.736036861940415,28.7122502400074,-0.0173524896753562,-1709.91782178218,-1849.08181550828,-862.210395289247,4.5926483341086,-9017.07531836034,-4956.4500806141,0,-9017.07531836034,19.6160028428585,19.6160028428585,-0.197928579986709,20.1723083354253,24.8,1015.2,38.6,26.3738205144216 +45351,2873.71488336634,456.370157227723,103.811881188119,19.2081287128713,19.7843725742574,4.0419504950495,-2.95405940594059,971.60396039604,-189.405940594059,-102.050495049505,20,40,10,32,5305597.85548939,395817.212713535,0,0,0,0,0,0,0,19.2081287128713,4972.91835671075,8.08390099009901,4.33524371978137,4.54070171503017,-2.95405940594059,-2.93941919701074,-2.22558359455131,1.05900244680159,0.840174771545831,0.788780911818466,28.2628135572125,0.00856824178990616,-291.456435643564,208.894990687188,1271.91657001914,4.68563673394921,-1364.34615645333,331.100589210461,0,-1364.34615645333,19.2225454367219,19.2225454367219,0.0130855907372907,19.956634938781,24.8,1015.2,38.61,20.7715386055262 +45352,2873.71453891089,456.374416237624,110.940594059406,19.7316336633663,20.3235826732673,4.39898624862376,-2.30831683168317,1012.4702970297,2592.18415841584,2849.85742574257,20,40,10,32,5305597.12166456,395822.50679952,0,0,0,0,0,0,0,19.7316336633663,4978.30078971405,8.79797249724752,4.71818680884591,4.87461167162535,-2.30831683168317,-2.29367662275331,-1.74723758039633,0.860121679561145,0.682389863979505,0.685130722740381,29.4515671030221,0.0279367883570049,5442.04158415842,4656.51581217527,4447.0639002445,4.562982172274,29336.5254704645,7301.24966002698,0,29336.5254704645,19.7783327124791,19.7783327124791,0.291504645514053,20.5165412539401,24.8,1015.2,38.62,24.0834823007434 +45353,2873.71416574257,456.378911683168,112.722772277228,21.0499603960396,21.6814592079208,5.03384158415842,-2.65762376237624,1359.19306930693,3090.03564356436,3400.44059405941,20,40,10,32,5305596.32934207,395828.09446322,0,0,0,0,0,0,0,21.0499603960396,4983.96107178225,10.0676831683168,5.39910870774527,5.49052145536928,-2.65762376237624,-2.64298355344638,-2.06039921677486,0.617322220574404,0.489761432759406,0.550285436386425,39.5373237161557,0.116139277370745,6490.47623762377,7047.20525438683,7823.55169389553,4.27757390489766,44596.823902888,11952.8365039358,0,44596.823902888,21.1039199098127,21.1039199098127,0.475394569159886,22.0124284383927,24.8,1015.2,38.63,30.2676349177516 +45354,2873.71380316832,456.383833168317,105.594059405941,23.7216237623762,24.4332724752475,6.29166336633663,-2.97811881188119,1615.64356435644,6855.76435643564,6175.48712871287,20,40,10,32,5305595.54706952,395834.213215701,0,0,0,0,0,0,0,23.7216237623762,4990.12730184276,12.5833267326733,6.74820093152955,6.71372565577401,-2.97811881188119,-2.96347860295133,-2.36158848326157,0.646697259417501,0.51306654090499,0.510456011781547,46.9971662277945,0.0740180887396935,13031.2514851485,12677.8721007744,10212.1547991944,3.80308879338761,92941.8234367741,25207.1810574929,0,92941.8234367741,23.7832832075286,23.7832832075286,1.00638690106634,24.342985627948,24.8,1015.2,38.64,45.2828470361698 +45355,2873.71353623762,456.389574257426,73.5148514851485,27.6251485148515,28.453902970297,7.0890198019802,-2.24376237623762,1860.87128712871,7113.04059405941,5667.87821782178,20,40,10,32,5305594.9235408,395841.356178029,0,0,0,0,0,0,0,27.6251485148514,4997.26843542362,14.1780396039604,7.60341538412732,7.61606348569716,-2.24376237623762,-2.22912216730777,-1.77061190723154,0.634707187483354,0.503554045463157,0.521708971043445,54.1305515270347,0.057097611255425,12780.9188118812,12563.092304676,11947.5414385534,3.26314584525844,90223.56143824,24941.7214105875,0,90223.56143824,27.5816066071953,27.5816066071953,0.996216329553748,27.370583784412,24.8,1015.2,38.65,58.124691737445 +45356,2873.71353722772,456.39611980198,46.7821782178218,30.7447722772277,31.6671154455446,7.88612871287129,-2.19742574257426,1724.40594059406,5972.41287128713,4858.53663366337,20,40,10,32,5305594.77821662,395849.510237706,0,0,0,0,0,0,0,30.7447722772277,5005.39962439502,15.7722574257426,8.45836435100724,8.47335928599674,-2.19742574257426,-2.1827855336444,-1.72445270523675,0.786526878690521,0.62400237375681,0.615676874153979,50.1609355071935,-0.0979947653450611,10830.9495049505,11124.7576708166,11599.276528766,2.92958480521248,63241.5673960778,20875.55934099,0,63241.5673960778,30.7626413096755,30.7626413096755,0.837202779683903,30.7379135642734,24.8,1015.2,38.66,72.2024433576228 +45357,2873.71405247525,456.403285049505,45,33.8802277227723,34.8966345544555,8.85190099009901,-3.04316831683168,1686.79207920792,6205.68811881189,5073.09900990099,20,40,10,32,5305595.57155409,395858.453473602,0,0,0,0,0,0,0,33.8802277227722,5014.37744741483,17.703801980198,9.49421528602448,9.47474254206675,-3.04316831683168,-3.02852810790183,-2.40433175084933,0.772761376404994,0.613081315195627,0.614091365481137,49.066792631232,0.0501134141661738,11278.7871287129,11174.7602587982,11004.4289503872,2.65821190418497,58806.8496568112,20917.4618723318,0,58806.8496568112,33.8563758455053,33.8563758455053,0.835756843011039,33.7750492032627,24.8,1015.2,38.67,90.0803382134774 +45358,2873.71524455446,456.410908415842,45,36.663594059406,37.7635018811881,9.62118811881188,-3.13792079207921,1834.34158415842,5862.23465346535,4741.66237623762,20,40,10,32,5305597.60833194,395867.990023374,0,0,0,0,0,0,0,36.6635940594059,5024.18630695829,19.2423762376238,10.319323658219,10.2887880327126,-3.13792079207921,-3.12328058314936,-2.4842235006815,0.785672583287286,0.623324606252672,0.632249391023085,53.3588337496884,0.038089074847566,10603.897029703,10589.1594843643,10283.7549582672,2.45588281408863,55559.1250673422,18821.2414148887,0,55559.1250673422,36.6644321144985,36.6644321144985,0.752130782385167,36.6107701844388,24.8,1015.2,38.68,106.107672112902 +45359,2873.71708287129,456.418902376238,45,39.1752277227723,40.3504845544555,10.5320693069307,-2.72188118811881,1886.50495049505,4826.14158415842,3893.26336633663,20,40,10,32,5305600.83384951,395878.009825105,0,0,0,0,0,0,0,39.1752277227722,5034.7414921068,21.0641386138614,11.2963004804477,11.2082900062315,-2.72188118811881,-2.70724097918896,-2.16223942215136,0.87635588701409,0.695269505173158,0.69372486088237,54.8762045688521,-0.0729380582619742,8719.40495049505,8906.54536810116,9334.32662316119,2.29785313494037,43991.3407326931,15281.9270746139,0,43991.3407326931,39.1582294873051,39.1582294873051,0.61250122537006,39.1011333574247,24.8,1015.2,38.69,125.850443947363 +45360,2873.71960257426,456.427022772277,45,41.3992772277228,42.6412555445545,10.9500891089109,-3.03079207920792,1484.82178217822,4983.73663366337,4047.87524752475,20,40,10,32,5305605.31870325,395888.209889791,0,0,0,0,0,0,0,41.3992772277227,5045.92221815191,21.9001782178218,11.7446527607387,11.6913520051862,-3.03079207920792,-3.01615187027807,-2.40387065226742,0.847636617897329,0.672484661340159,0.72550730223806,43.1917148405666,-0.0441372455227939,9031.61188118812,8890.41242035095,8856.89015924476,2.17463962349286,34012.6865926713,16316.4121916857,0,34012.6865926713,41.4008730516615,41.4008730516615,0.65331557908266,41.4142783519559,24.8,1015.2,38.7063118811881,136.98147530765 +45361,2873.7227339604,456.435266633663,45,43.753504950495,45.0661100990099,12.748504950495,-3.10940594059406,1540.41089108911,4944.45247524752,3997.18712871287,20,40,9.8019801980198,32,5305610.93384706,395898.584181274,0,0,0,0,0,0,0,43.753504950495,5057.75301064366,25.4970099009901,13.6735657922892,13.356487145637,-3.10940594059406,-3.09476573166421,-2.50753779629744,1.71989739359316,1.3645052512472,1.33185397206473,44.8087364718079,0.0200165648537304,8941.6396039604,8919.78465836683,8852.89831129406,2.05753448720249,32966.7030400448,16341.8582240147,0,32966.7030400448,43.7496639545142,43.7496639545142,0.653408162598438,43.7505492488031,24.8,1015.2,38.76,178.856743785816 +45362,2873.72644643564,456.443616930693,45,46.0699603960396,47.4520592079208,13.6845148514852,-3.41237623762376,1629.76237623762,4750.07227722772,3810.3099009901,20,40,10,32,5305617.62299378,395909.110456517,0,0,0,0,0,0,0,46.0699603960395,5070.2351950771,27.3690297029703,14.6774947245932,14.2854461514691,-3.41237623762376,-3.39773602869391,-2.76230719413291,2.0686029088028,1.64115577029262,1.6015733036324,47.4078658174552,0.0318969001086422,8560.38217821782,8559.25802372316,8559.16079473431,1.95397132480067,31712.2521437892,16445.614701516,0,31712.2521437892,46.0905011273404,46.0905011273404,0.657400145955181,46.0987762812759,24.8,1015.2,38.82,204.33473328786 +45363,2873.73056376238,456.452195544554,45,48.3932178217822,49.8450143564356,13.7321089108911,-3.46772277227723,1712.44059405941,4542.2,3608.74554455446,20,40,10,32,5305625.05695357,395919.934652934,0,0,0,0,0,0,0,48.3932178217821,5083.36922354244,27.4642178217822,14.7285423184198,14.4590997180278,-3.46772277227723,-3.45308256334738,-2.7850264450113,1.57527977289985,1.24977078883451,1.2678682431066,49.8128776852405,0.0262807416245021,8150.94554455446,8155.56107244387,8165.4589114436,1.85999229912003,30202.0951980303,15022.754260225,0,30202.0951980303,48.3857552200764,48.3857552200764,0.600559313357082,48.3725757634953,24.8,1015.2,38.88,209.29809317578 +45364,2873.73500683168,456.461012178218,45,50.5725742574258,52.0897514851485,13.7304059405941,-3.21851485148515,1791.13861386139,4435.94752475247,3408.48217821782,20,40,10,32,5305633.08897327,395931.066210066,0,0,0,0,0,0,0,50.5725742574257,5097.11330030262,27.4608118811881,14.726715776681,14.5828059208424,-3.21851485148515,-3.2038746425553,-2.56484359279,1.21301017601709,0.962359011158038,0.952120792546406,52.1021102858142,0.029376828993964,7844.42970297029,7838.19826487599,7833.25793342106,1.7798640830346,29094.401212904,14934.9915398989,0,29094.401212904,50.5553950593078,50.5553950593078,0.597005740177978,50.541035100556,24.8,1015.2,38.94,212.891651120346 +45365,2873.73971287129,456.470138415842,45,52.662099009901,54.241961980198,13.8261287128713,-3.00633663366337,1866.32178217822,4088.73564356436,3417.1405940594,20,40,10,32,5305641.60117099,395942.592200993,0,0,0,0,0,0,0,52.6620990099009,5111.45238858645,27.6522574257426,14.8293844134848,14.784386799791,-3.00633663366337,-2.99169642473351,-2.38025452099884,1.01594010384103,0.806010644476639,0.832946355071652,54.2891000011639,0.024912703019391,7505.87623762376,7503.32951671405,7504.88583587742,1.70924593731839,27857.4808543347,14418.4925517135,0,27857.4808543347,52.656192039996,52.656192039996,0.576405907917523,52.646009614621,24.8,1015.2,39,218.857826713386 +45366,2873.74462475247,456.479614950495,45,54.6436831683168,56.2829936633663,15.0664257425743,-3.06415841584158,1934.4801980198,3860.3504950495,3302.15940594059,20,40,10,32,5305650.48681318,395954.561405646,0,0,0,0,0,0,0,54.6436831683167,5126.36393369097,30.1328514851485,16.1596802484459,15.9531240651147,-3.06415841584158,-3.04951820691173,-2.44520396556802,1.42687244748779,1.1320297098593,1.10990016960753,56.271747950129,0.00972027429947337,7162.50990099009,7004.34025095579,6974.90476816894,1.64720359408986,26554.1648280931,12988.0174815512,0,26554.1648280931,54.6356911087147,54.6356911087147,0.519390800466175,54.6190948034332,24.8,1015.2,39.06,254.933764073538 +45367,2873.74972247525,456.489403960396,45,56.3939108910891,58.0857282178218,15.5014455445545,-3.13554455445545,1729.68811881188,3384.8099009901,2998.99900990099,20,40,9.98019801980198,32,5305659.70970501,395966.926036385,0,0,0,0,0,0,0,56.3939108910891,5141.79447838294,31.0028910891089,16.6262660878383,16.4237597224394,-3.13554455445545,-3.12090434552559,-2.50209464686258,1.45401777159833,1.15356584185974,1.14441774902997,50.314587843157,-0.138531909275457,6383.80891089109,6497.81871385159,6521.52953799531,1.59603052382007,20291.4329453302,11843.5730086811,0,20291.4329453302,56.3983140868542,56.3983140868542,0.475318323911606,56.4024892169011,24.8,1015.2,39.12,270.061846343536 +45368,2873.75497574257,456.499495742574,45,58.136,59.88008,14.8046831683168,-3.03534653465346,1481.50495049505,3387.1099009901,3074.90198019802,20,40,9.95049504950495,32,5305669.21394638,395979.672990396,0,0,0,0,0,0,0,58.1359999999999,5157.70322824543,29.6093663366337,15.8789450309713,15.9307274122325,-3.03534653465346,-3.02070632572361,-2.39030198077228,1.08591326938413,0.861524858397544,0.88554772493395,43.0952321178904,0.0136083840192627,6462.01188118812,6515.07414959318,6542.45593162063,1.54820239866478,17245.4488624402,11871.3521169444,0,17245.4488624402,58.1267094402509,58.1267094402509,0.474723338670506,58.1222061029479,24.8,1015.2,39.18,253.979749186849 +45369,2873.76040940594,456.509861881188,45,59.8593366336634,61.6551167326733,15.0046732673267,-2.44772277227723,1522.92574257426,3425.78217821782,3088.18118811881,20,40,9.89108910891089,32,5305679.0462112,395992.767695416,0,0,0,0,0,0,0,59.8593366336633,5174.08926201881,30.0093465346535,16.0934468715587,16.2000177986806,-2.44772277227723,-2.43308256334737,-1.91887712661179,1.20756786903211,0.958041278898217,0.947120388997403,44.3001141188339,0.0166324693568767,6513.96336633664,6507.84768159985,6499.44233595495,1.50364971874868,17355.4908375366,11929.0228534417,0,17355.4908375366,59.8485982746789,59.8485982746789,0.477001165463076,59.8400869878303,24.8,1015.2,39.24,262.664936619416 +45370,2873.76601663366,456.520516138614,45,61.5191584158416,63.3647331683168,15.5273861386139,-2.37742574257426,1568.41089108911,3343.87524752475,3035.58118811881,20,40,9.77227722772277,32,5305689.19353823,396006.227063431,0,0,0,0,0,0,0,61.5191584158415,5190.94993473608,31.0547722772277,16.6540889910681,16.7398548934044,-2.37742574257426,-2.3627855336444,-1.86633729619726,1.24200323862559,0.985361072982433,1.01844028450874,45.6232234560719,0.0120243393186078,6379.45643564356,6382.76704244682,6381.13803719828,1.46307255875948,17032.0776727752,11742.0355273044,0,17032.0776727752,61.5235801392019,61.5235801392019,0.469565892232785,61.5289309966549,24.8,1015.2,39.2785396039604,280.577087773617 +45371,2873.77179049505,456.531445742574,45,63.1775742574258,65.0729014851485,15.1790891089109,-2.37584158415842,1610.35643564356,3282.16534653465,2936.96435643564,20,40,9.88118811881188,32,5305699.64337864,396020.034948394,0,0,0,0,0,0,0,63.1775742574256,5208.27683415852,30.3581782178218,16.2805187277787,16.5386555602454,-2.37584158415842,-2.36120137522856,-1.8504784954592,1.64821666166348,1.30763631505621,1.29157477660184,46.8433698877673,0.0192245425034029,6219.12970297029,6223.85761199882,6225.4193420516,1.42463427027282,16600.3437609737,11304.7574415618,0,16600.3437609737,63.1860591118517,63.1860591118517,0.452004977725506,63.1868534336688,24.8,1015.2,39.19,273.730140348459 +45372,2873.77773336634,456.542648514852,45,64.8023267326733,66.7463965346535,15.0580297029703,-2.5880198019802,1669.69801980198,3184.99207920792,2896.83465346535,20,40,9.77227722772277,32,5305710.40018537,396034.188712112,0,0,0,0,0,0,0,64.8023267326732,5226.0563319583,30.1160594059406,16.1506749728967,16.5288774688224,-2.5880198019802,-2.57337959305034,-2.00045369184025,2.11416922817044,1.67730646293787,1.72778656324377,48.56954659929,0.0079202235032746,6081.82673267327,6075.27611018528,6074.13719637893,1.38890227871707,16405.2860761471,11001.2709720809,0,16405.2860761471,64.8027974708361,64.8027974708361,0.43997320524131,64.7996248662018,24.8,1015.2,39.08,273.446305873828 +45373,2873.78382405941,456.554122178218,45,66.3676435643564,68.3586728712871,14.5878712871287,-2.76168316831683,1690.74257425743,3088.15049504951,2826.51782178218,20,40,9.54455445544554,32,5305721.42476436,396048.684806686,0,0,0,0,0,0,0,66.3676435643563,5244.2769879264,29.1757425742574,15.6464007809995,16.2186602021496,-2.76168316831683,-2.74704295938698,-2.1115024244055,2.95700910799502,2.34598556336869,2.1841191763665,49.1817078740613,0.010296290554257,5914.66831683169,5919.43701597883,5920.68707528821,1.35613974862152,15779.5391459627,10823.4768510629,0,15779.5391459627,66.3708207038525,66.3708207038525,0.432840189959595,66.3692356748833,24.8,1015.2,38.97,263.292447835446 +45374,2873.7900639604,456.565858415842,45,67.8757128712871,69.9119842574257,15.9697612761386,-2.24940594059406,1727.90594059406,3015.7,2777.03861386139,20,40,9.79207920792079,32,5305732.71987234,396063.51291404,0,0,0,0,0,0,0,67.875712871287,5262.92849958757,31.9395225522772,17.12856388607,17.4810155892148,-2.24940594059406,-2.2347657316642,-1.74622449054401,2.10394199144044,1.66919253807478,1.83598965356706,50.2627463802265,0.00482413613381271,5792.73861386139,5792.93668267817,5793.99250188808,1.32599350933241,15442.518992581,10208.1066174866,0,15442.518992581,67.879088324674,67.879088324674,0.408278327832776,67.8797048552527,24.8,1015.2,38.86,306.317295329468 +45375,2873.79644336634,456.577852574257,45,69.3500198019802,71.4305203960396,16.1901727173267,-0.399603960396039,1766.12871287129,2977.95544554456,2708.65643564356,20,40,9.6039603960396,32,5305744.267643,396078.666909643,0,0,0,0,0,0,0,69.3500198019801,5281.9897069033,32.3803454346535,17.3649688883947,17.7533248461431,-0.399603960396039,-0.384963751466182,-0.303915895887284,2.40012015685308,1.90416973120024,1.81068907843664,51.3746017560225,0.0134643799555668,5686.61188118812,5689.14196647387,5689.10622891155,1.2978034725208,15165.095485202,10032.7173028716,0,15165.095485202,69.3448477600234,69.3448477600234,0.401179350608331,69.3435622601137,24.8,1015.2,38.75,316.932780765944 +45376,2873.80295960396,456.590087128713,45,70.7700198019802,72.8931203960396,18.401297029703,-1.55564356435644,1800.67821782178,2896.61386138614,2684.48217821782,20,40,9.9009900990099,32,5305756.06352009,396094.124869774,0,0,0,0,0,0,0,70.7700198019801,5301.45465940605,36.8025940594059,19.7365374666407,19.7158936096863,-1.55564356435644,-1.54100335542658,-1.22393760127058,1.35749062374906,1.07698464543553,1.08485132830021,52.3796061165562,0.013248373860023,5581.09603960396,5579.66045485737,5579.15125975622,1.27175515372909,14870.820280972,9564.13194145009,0,14870.820280972,70.7598051171453,70.7598051171453,0.382437996274885,70.7579085848684,24.8,1015.2,38.64,389.214829209758 +45377,2873.80959069307,456.602583663366,45,72.1544455445545,74.3190789108911,17.7545643564356,-1.45267326732673,1837.88118811881,2825.5297029703,2643.75148514851,20,40,9.58415841584158,32,5305768.06630712,396109.912944968,0,0,0,0,0,0,0,72.1544455445543,5321.30379328944,35.5091287128713,19.0428763830639,19.2451255169743,-1.45267326732673,-1.43803305839688,-1.12767241715329,1.69847948443771,1.34751304600157,1.31193990936671,53.4617966552309,0.0101522864905611,5469.28118811881,5465.96857170866,5465.25695841584,1.24735891007694,14588.8912264006,9641.22989604715,0,14588.8912264006,72.146895990589,72.146895990589,0.385551797754012,72.1441230891088,24.8,1015.2,38.53,371.194220681345 +45378,2873.81633950495,456.615335445544,45,73.5114257425742,75.7167685148515,17.5741683168317,-1.06980198019802,1868.89603960396,2749.21683168317,2585.13168316832,20,40,9.7029702970297,32,5305780.28147634,396126.022840316,0,0,0,0,0,0,0,73.5114257425741,5341.53683765137,35.1483366336634,18.8493903919009,19.1697873535887,-1.06980198019802,-1.05516177126816,-0.819747123436773,2.03530016673874,1.61473456249463,1.71032471898335,54.3639821142858,0.00316808940130984,5334.34851485149,5336.20062738947,5336.57454169133,1.22433233928089,14201.6920266775,9123.02820568398,0,14201.6920266775,73.498465738653,73.498465738653,0.364890696990498,73.4959678922232,24.8,1015.2,38.42,368.237596090595 +45379,2873.82320079208,456.62832960396,45,74.7869504950495,77.030559009901,18.3837931794059,-1.53861386138614,1904.67326732673,2680.38415841584,2522.93069306931,20,40,9.94059405940594,32,5305792.69959872,396142.438343373,0,0,0,0,0,0,0,74.7869504950494,5362.13463058317,36.7675863588119,19.7177634967058,19.9316099982385,-1.53861386138614,-1.52397365245628,-1.19333753239268,2.02588564315512,1.60726541525615,1.54393618019427,55.404699482616,0.00374410565609345,5203.31485148515,5207.49227526713,5207.4022542132,1.20345181697719,13877.2208100774,8895.49961842469,0,13877.2208100774,74.7861977257131,74.7861977257131,0.355783474387045,74.7851785843213,24.8,1015.2,38.31,399.196083822268 +45380,2873.83016752475,456.641562475248,45,76.0211386138614,78.3017727722772,18.1016815183168,-0.868712871287128,1933.4900990099,2608.57425742574,2489.9099009901,20,40,9.97029702970297,32,5305805.30773752,396159.154652689,0,0,0,0,0,0,0,76.0211386138613,5383.08487458756,36.2033630366337,19.4151811646086,19.7623446373797,-0.868712871287128,-0.854072662357271,-0.658437599540746,2.26920253509319,1.80030435932537,1.66318541179821,56.2429471373899,0.00705619912109919,5098.48415841584,5097.46184687776,5097.71431323481,1.18390709056978,13578.9573432426,8331.92669104778,0,13578.9573432426,76.0219827467894,76.0219827467894,0.333209434804854,76.0218021807351,24.8,1015.2,38.2063118811881,391.883107446565 +45381,2873.83724831683,456.654997326733,45,77.2134653465347,79.5298693069307,18.9497623762376,-0.243960396039604,1962.33663366337,2533.72376237624,2357.79504950495,20,40,9.99009900990099,32,5305818.12267437,396176.126294237,0,0,0,0,0,0,0,77.2134653465346,5404.36989430703,37.8995247524752,20.3248007202343,20.5522354379082,-0.243960396039604,-0.229320187109747,-0.18374494313121,1.72509342110071,1.36862759415328,1.50673638233748,57.0820588165459,-0.00403211378348525,4891.51881188119,4942.44756396432,4950.42476093763,1.16562320544048,13018.6773004906,8016.00675729276,0,13018.6773004906,77.2091564552494,77.2091564552494,0.320677983639948,77.2075596175001,24.8,1015.2,38.14,422.816203030136 +45382,2873.84444376238,456.668628118812,45,78.3357128712871,80.6857842574257,20.6923663366337,-1.08851485148515,1769.86138613861,2602.02871287129,2406.03861386139,20,40,9.96039603960396,32,5305831.14564725,396193.345760856,0,0,0,0,0,0,0,78.335712871287,5425.97553490109,41.3847326732673,22.1938520321259,22.0994189282123,-1.08851485148515,-1.07387464255529,-0.852035263575591,1.61080520633452,1.27795540069276,1.30208725979047,51.4831808200492,-0.0676819099370738,5008.06732673267,4964.23053622194,4956.04267126455,1.14892361262624,11844.174413029,7917.63343693486,0,11844.174413029,78.3414256445446,78.3414256445446,0.317304131403248,78.3422900972548,24.8,1015.2,38.08,489.021663058247 +45383,2873.85172415842,456.682492376238,45,79.4882277227723,81.8728745544555,18.7105396040594,-1.18772277227723,1728.73762376238,2513.85940594059,2316.9504950495,20,40,9.91089108910891,32,5305844.32079752,396210.858803343,0,0,0,0,0,0,0,79.4882277227722,5447.89828440604,37.4210792081188,20.0682193934752,20.47918442491,-1.18772277227723,-1.17308256334737,-0.906760543409093,2.40974170575044,1.91180312493901,1.89402044297146,50.2869390629274,0.00367210362424549,4830.8099009901,4832.6241937065,4833.79900113905,1.13226297176291,11002.1439279868,7607.26920949712,0,11002.1439279868,79.4751483187922,79.4751483187922,0.304260747856957,79.4743164812055,24.8,1015.2,38.02,420.29713911947 +45384,2873.85909663366,456.696563465347,45,80.5564158415842,82.9731083168317,18.8061287128713,-0.74970297029703,1751.57425742574,2489.2099009901,2290.28910891089,20,40,10,32,5305857.66192921,396228.63247873,0,0,0,0,0,0,0,80.5564158415841,5470.1273399341,37.6122574257426,20.1707446678851,20.6221354149119,-0.74970297029703,-0.735062761367171,-0.572882250106124,2.52344189305675,2.0020087983851,1.92912348512938,50.9512298087566,0.00532815035674837,4779.49900990099,4780.71010685227,4780.53890142662,1.11724916203467,10882.8461983796,7738.89271490277,0,10882.8461983796,80.5636417017938,80.5636417017938,0.309512139332745,80.564532140131,24.8,1015.2,37.96,425.903215526069 +45385,2873.86659089109,456.710804059406,45,81.6369405940594,84.0860488118812,20.3759438944555,0.143960396039604,1775.5297029703,2473.41287128713,2251.6396039604,20,40,10,32,5305871.22490081,396246.62127587,0,0,0,0,0,0,0,81.6369405940593,5492.6600259627,40.7518877889109,21.8544692497461,22.0199309353456,0.143960396039604,0.158600604969461,0.120288596741723,1.99668683816549,1.58410012476445,1.50685914432832,51.6480654729811,-7.2002031847948E-05,4725.05247524752,4728.62331144005,4728.82668512822,1.10245522360219,10761.5383145481,7289.70937254481,0,10761.5383145481,81.6469036368983,81.6469036368983,0.291589059896088,81.6469529557715,24.8,1015.2,37.9,486.60117821157 +45386,2873.87418693069,456.725227920792,45,82.7151287128713,85.1965825742574,19.949698019703,-0.103861386138614,1795.61881188119,2491.39801980198,2194.81485148515,20,40,10,32,5305884.97235923,396264.841668644,0,0,0,0,0,0,0,82.7151287128712,5515.48919570968,39.8993960394059,21.3972939939218,21.7193059004692,-0.103861386138614,-0.0892211772087562,-0.0624553782709169,2.20988429279248,1.75324338149286,1.90576105864657,52.232433963459,0.0082082316306664,4686.21287128713,4683.96727771787,4683.689663003,1.08808308209221,10653.1404694909,7441.17449215434,0,10653.1404694909,82.716156063131,82.716156063131,0.297579757975794,82.7158666545553,24.8,1015.2,37.84,473.1425456718 +45387,2873.8818839604,456.739836534654,45,83.7737128712871,86.2869242574258,19.6052618261386,0.136633663366337,1818.5297029703,2437.67821782178,2188.38316831683,20,40,10,32,5305898.90280622,396283.295477282,0,0,0,0,0,0,0,83.773712871287,5538.61425401551,39.2105236522772,21.0278647179215,21.4868617199537,0.136633663366337,0.151273872296194,0.118065336016248,2.53241946481064,2.00913128362594,1.96675675680069,52.8988847702437,0.00273607721022213,4626.06138613861,4480.09590236251,4457.02135729221,1.07433339225897,10515.9934088061,6808.37218633993,0,10515.9934088061,83.7594611312615,83.7594611312615,0.272312627302335,83.7578255870514,24.8,1015.2,37.78,462.115872355183 +45388,2873.88966871287,456.754610990099,45,84.4681188118812,87.0021623762376,21.1736534653465,-0.136831683168317,1823.26237623762,557.59801980198,492.171287128713,20,40,10,32,5305912.99209154,396301.958700066,0,0,0,0,0,0,0,84.4681188118811,5562.00312348745,42.3473069306931,22.7100624618972,22.860531087647,-0.136831683168317,-0.12219147423846,-0.0984549498129114,1.65310460936132,1.31151423842906,1.3908636486159,53.0365526551369,-0.00180005079619877,1049.76930693069,1252.73311440055,1274.9413984763,1.06549180280975,2384.4125054026,224.418488427669,0,2384.4125054026,84.381316831683,84.381316831683,0.00899149320875005,84.3745022458987,24.8,1015.2,37.72,523.08471650548 +45389,2873.89749069307,456.769353861386,45,84.071504950495,86.5936500990099,20.3297821782178,-0.00792079207920784,1819.59405940594,255.836633663366,233.215841584158,20,40,9.95049504950495,32,5305927.15110155,396320.583727403,0,0,0,0,0,0,0,84.0715049504949,5585.4114329484,40.6595643564357,21.8049579332026,22.1205422203041,-0.00792079207920784,0.00671941685064954,0.0128025839464855,2.09691034330895,1.66361387923381,1.5550248943251,52.9298456439383,0.00208805892359058,489.052475247525,477.468885403392,478.956528176182,1.07051804947383,1108.13319280921,-1751.75474925637,0,1108.13319280921,84.0966090579354,84.0966090579354,-0.0700870829657399,84.0989591005829,24.8,1015.2,37.66,490.112158694406 +45390,2873.90529960396,456.784036039604,45,84.0248118811881,86.5455562376237,20.3992568757426,0.589405940594059,1819.33663366337,767.29504950495,784.469306930693,20,40,9.87128712871287,32,5305941.28731991,396339.132625336,0,0,0,0,0,0,0,84.024811881188,5608.75036746435,40.7985137514852,21.8794738745772,22.1768229902139,0.589405940594059,0.604046149523918,0.479129948297826,2.15427501487187,1.70912496371783,1.73702432207298,52.9223574326261,0.000936026414023354,1551.76435643564,1501.73662386041,1496.35805496438,1.07111370406383,3518.13736297183,740.209581127319,0,3518.13736297183,84.0353296735613,84.0353296735613,0.0296008561252034,84.0370727306374,24.8,1015.2,37.6126237623762,493.011534625632 +45391,2873.91311455445,456.798734356436,45,84.1724257425743,86.6975985148515,20.8873861386139,1.08643564356436,1823.18316831683,857.068316831683,845.149504950495,20,40,9.99009900990099,32,5305955.43442327,396357.701736379,0,0,0,0,0,0,0,84.1724257425742,5632.11420288789,41.7747722772277,22.403022919499,22.6003860369962,1.08643564356436,1.10107585249421,0.870667400447359,1.754081530179,1.39162572602347,1.45241531712913,53.0342485901178,-0.0042481198790291,1702.21782178218,1701.00879325556,1700.14046451374,1.06923491101411,3861.01108739333,1057.16709168253,0,3861.01108739333,84.1877779629447,84.1877779629447,0.0423215588885888,84.1878522254094,24.8,1015.2,37.64,511.527166317789 +45392,2873.92091376238,456.813501584158,45,84.3472871287129,86.8777057425743,20.2437524752475,1.13485148514851,1826.08910891089,832.436633663367,848.821782178218,20,40,9.95049504950495,32,5305969.55088324,396376.356071763,0,0,0,0,0,0,0,84.3472871287127,5655.51950462057,40.487504950495,21.7126857171096,22.0627729837458,1.13485148514851,1.14949169407837,0.899124533190204,2.11340999487066,1.67670411431619,1.6210824113584,53.1187789755073,0.00064801828663155,1681.25841584158,1679.95373982943,1679.85985935042,1.06701775949463,3811.52470940214,1094.42114397449,0,3811.52470940214,84.3424777962944,84.3424777962944,0.0437715801282981,84.3427348015174,24.8,1015.2,37.68,487.031093768854 +45393,2873.92870425742,456.828326831683,45,84.4679603960396,87.0019992079208,20.7905346534653,-0.045049504950495,1827.39108910891,797.39603960396,811.150495049505,20,40,10,32,5305983.64996563,396395.082298406,0,0,0,0,0,0,0,84.4679603960395,5678.96933520363,41.5810693069307,22.2991436678219,22.5352992575605,-0.045049504950495,-0.0304092960206375,-0.0234203788997617,1.72439995710992,1.36807742455567,1.45921434869793,53.1566520442593,0.00360010159239754,1608.54653465346,1611.78643270268,1611.8416528088,1.06549312287743,3644.21137382595,910.06175770157,0,3644.21137382595,84.481987060092,84.481987060092,0.0363730679998677,84.4823911468315,24.8,1015.2,37.72,508.259439927602 +45394,2873.9364890099,456.843199108911,45,84.6106435643565,87.1489628712871,19.9759466446535,0.34009900990099,1831.38118811881,779.959405940594,756.093069306931,20,40,10,32,5305997.73741891,396413.866824894,0,0,0,0,0,0,0,84.6106435643563,5702.45498930154,39.9518932893069,21.4254472794727,21.8503246470312,0.34009900990099,0.354739218830847,0.278963985352822,2.42647494330802,1.92507867881957,1.89292020489137,53.2727193195982,-0.00597616864337993,1536.05247524752,1525.23307850439,1524.56041785388,1.06369634217911,3481.53424264303,783.875417816759,0,3481.53424264303,84.6137688461914,84.6137688461914,0.0314035116382895,84.6137240924092,24.8,1015.2,37.76,477.967419055891 +45395,2873.94427712871,456.858101881188,45,84.7333861386139,87.2753877227723,19.2652475247525,-1.86356435643564,1833.05940594059,670.706358756436,693.208131013861,20,40,10,32,5306011.83048612,396432.689357416,0.851485148514851,0.851485148514851,4517987.4058914,337560.818932693,8.50963773031734,0,0,84.7333861386138,5725.97493432354,38.5304950495049,20.6631781967666,21.2520082462332,-1.86356435643564,-1.84892414750579,-1.43154333771313,3.12759777205072,2.48132452531744,2.5245669148201,53.3215366971911,0.000360010159239759,1363.9144897703,1374.73499886567,1375.6943923525,1.06215539150212,3089.8809891371,652.448937302018,0,3089.8809891371,84.7228696206254,84.7228696206254,0.0260949362263116,84.7226260254596,24.8,1015.2,37.8,451.898079132704 +45396,2873.95207950495,456.873021386139,45,84.8096732673267,87.3539634653466,19.2127612764357,0.517524752475248,1833.88613861386,674.734739629703,694.158934328713,20,40,10,32,5306025.94964933,396451.533114647,1,1,5306022.21076005,396454.579014968,31.7572505853503,0,0,84.8096732673266,5749.52163083069,38.4255225528713,20.6068834255493,21.2122699132026,0.517524752475248,0.532164961405105,0.409752414219695,3.2375957572078,2.56859300361885,2.55671441695064,53.3455853758284,0.00252007111467829,1368.89367395842,1368.10086757051,1368.03770390716,1.06119983473442,3099.74748634836,288.640649139851,0,3099.74748634836,84.8005273992744,84.8005273992744,0.0115252861919709,84.7998652522394,24.8,1015.2,37.84,450.89293201416 +45397,2873.9599140594,456.887915940594,45,84.8584851485148,87.4042397029703,19.0393531350495,-0.174752475247525,1836.08415841584,690.978366552475,685.574825306931,20,40,10,32,5306040.12903574,396470.346769594,1,1,5306037.07972746,396472.83090014,55.2990751560944,0,0,84.8584851485147,5773.08322046215,38.078706270099,20.4208923905715,21.0668443762263,-0.174752475247525,-0.160112266317668,-0.128710962707467,3.39495937204247,2.6934396831923,2.59773176825118,53.4095231801093,0.00324009143315779,1376.55319185941,1375.43898081584,1375.35021052804,1.0605906118091,3119.03973671136,255.975531318985,0,3119.03973671136,84.8307421821389,84.8307421821389,0.0102127787036335,84.8305132484676,24.8,1015.2,37.88,444.336598957836 +45398,2873.9677690099,456.902789603961,45,84.8479108910891,87.3933482178217,19.4773872387129,-1.39316831683168,1838.15346534653,692.531556953465,667.268270656436,20,40,9.95049504950495,32,5306054.34672976,396489.134986959,1,1,5306051.95152022,396491.086253482,78.8453730760923,0,0,84.847910891089,5796.65190585819,38.9547744774258,20.8907112563103,21.4389601121674,-1.39316831683168,-1.37852810790183,-1.06887945272081,2.99825256914623,2.37870665448149,2.48459271399262,53.4697168787342,0.00734420724849099,1359.7998276099,1359.38861241125,1359.35585049233,1.06072335094935,3084.92232533284,272.331658814017,0,3084.92232533284,84.8634848544259,84.8634848544259,0.0108336328682294,84.8633218293257,24.8,1015.2,37.92,460.290373944117 +45399,2873.97558594059,456.917724851485,45,84.8653762376238,87.4113375247525,18.6521875679208,-0.04009900990099,1837.37623762376,677.966314745544,656.070232315842,20,40,9.98019801980198,32,5306068.49268232,396507.998559745,1,1,5306066.83159387,396509.351771741,102.404782008424,0,0,84.8653762376236,5820.22557736534,37.3043751358416,20.00563319938,20.7383529350283,-0.04009900990099,-0.0254588009711332,-0.0186091250103455,3.74349277508391,2.96995365458193,2.8390018419926,53.4471082407339,-0.0101522864905611,1334.03654706139,1334.70639705735,1334.75976466447,1.06050357975393,3024.59093777759,57.0710648885718,0,3024.59093777759,84.8761059700028,84.8761059700028,0.00236632574148831,84.876432909005,24.8,1015.2,37.96,430.112873975948 +45400,2873.98338990099,456.932671485149,45,84.8967821782178,87.4436856435644,18.9063146312871,-0.925643564356436,1835.90099009901,660.673856437624,662.276135082178,20,40,10,32,5306082.61441568,396526.875791937,1,1,5306081.70869478,396527.613640903,125.959484225827,0,0,84.8967821782177,5843.80540715081,37.8126292625743,20.2782003069769,20.9561905264922,-0.925643564356436,-0.911003355426578,-0.699364454450995,3.51323658713492,2.78727660724239,2.83749474125341,53.4041950297526,-0.000720020318479515,1322.9499915198,1324.08504971803,1324.17548091928,1.06011131062199,2995.91979514206,220.457265634769,0,2995.91979514206,84.8985069110871,84.8985069110871,0.00882402596695703,84.8987559641678,24.8,1015.2,38.0037871287129,439.463682621544 +45401,2873.99120831683,456.947596831683,45,84.9216435643564,87.4692928712871,18.9908459854455,-1.40386138613861,1837.17326732673,656.552788457426,680.180300574257,20,40,10,32,5306096.76346163,396545.726895814,1,1,5306096.58389672,396545.873179054,149.511179837276,0,0,84.9216435643563,5867.39289664476,37.9816919708911,20.3688654506219,21.0290807466989,-1.40386138613861,-1.38922117720876,-1.06713806152982,3.47269917006024,2.75511566631857,2.72062911950538,53.4412040741224,0.00338409549685369,1336.73308903168,1337.28978815825,1337.33414092427,1.05980108508721,3028.35248409773,26.1806162191027,0,3028.35248409773,84.9235509263796,84.9235509263796,0.00101978019583408,84.9235291843469,24.8,1015.2,38.07,442.640095243164 +45402,2873.99900346535,456.962552277228,45,84.9469207920792,87.4953284158416,19.52459186,-1.88148514851485,1837.42574257426,669.39200169604,693.321721615842,20,40,10,32,5306110.86879695,396564.614626515,1,1,5306111.45959704,396564.133328981,173.063664534551,0,0,84.9469207920791,5890.98563745885,39.04918372,20.9413411534925,21.48457596089,-1.88148514851485,-1.866844939585,-1.43670597361971,3.0891728099254,2.45083953080888,2.39917156432861,53.4485482813709,0.00590416661153197,1362.71372331188,1362.18023675502,1362.13773335719,1.05948586779102,3086.71248906067,355.475697853445,0,3086.71248906067,84.9429950985197,84.9429950985197,0.0141707240031065,84.9433123998113,24.8,1015.2,38.14,462.82519079823 +45403,2874.0068039604,456.977519207921,45,84.9393366336634,87.4875167326732,20.0398630363366,-1.71306930693069,1840.44554455446,687.387182709901,689.618236294059,20,40,9.99009900990099,32,5306124.98384026,396583.516748307,1,1,5306126.346217,396582.406882933,196.633438141507,0,0,84.9393366336632,5914.5845970023,40.0797260726733,21.4940015915492,21.9225829892946,-1.71306930693069,-1.69842909800084,-1.31563200102624,2.94816597859351,2.33896973989529,2.42992610500557,53.5363907602254,0.0083522356943623,1377.00541900396,1375.87223184616,1375.78194971248,1.05958065028496,3124.48539165657,-60.326995081856,0,3124.48539165657,84.9614590726398,84.9614590726398,-0.00248205513622454,84.9617604903346,24.8,1015.2,38.21,482.871673160852 +45404,2874.0146040594,456.992487524753,45,85.027495049505,87.5783199009901,19.8193212324752,-0.657326732673267,1840.07920792079,693.993645067327,672.474811941584,20,40,9.93069306930693,32,5306139.09817989,396602.42049088,1,1,5306141.23334991,396600.681066534,220.20402388975,0,0,85.0274950495049,5938.18790486809,39.6386424649505,21.2574567671358,21.7403565416791,-0.657326732673267,-0.64268652374341,-0.503501243527177,2.77695190932509,2.2031346037561,2.26000645014093,53.5257344595119,-0.0147604165288299,1366.46845700891,1365.77741629653,1365.72236040445,1.05848151694447,3096.73397534368,382.949520803705,0,3096.73397534368,85.0096800313694,85.0096800313694,0.0154396627781569,85.0090475247523,24.8,1015.2,38.28,473.70452095956 +45405,2874.0224339604,457.007447029703,45,85.0558910891089,87.6075678217822,20.136099009901,-0.733564356435644,1840.4504950495,683.137437748515,657.653033847525,20,40,10,32,5306153.26798058,396621.314153605,1.1980198019802,1,5306156.13766371,396618.976306668,194.072540016788,0,0,85.0558910891088,5961.80884037414,40.272198019802,21.5972206687059,22.0112769601729,-0.733564356435644,-0.718924147505786,-0.560415631737548,2.48220626160928,1.96929391907999,1.9075182656042,53.5365347642891,0.00417611784718115,1340.79047159604,1341.17691697291,1341.20770545559,1.0581283695505,3038.1541519361,282.444720739851,0,3038.1541519361,85.046661993922,85.046661993922,0.0112638739121378,85.0464507307872,24.8,1015.2,38.35,485.278351832708 +45406,2874.03027633663,457.02240029703,45,85.0255841584158,87.5763516831683,19.7290357542574,-2.2360396039604,1840.03465346535,664.799707691089,658.779976432673,20,40,9.9009900990099,32,5306167.46108974,396640.200367658,2,1,5306171.04809859,396637.277917975,16.2756612175371,0,0,85.0255841584157,5985.43492841045,39.4580715085149,21.1606199669546,21.6635411425096,-2.2360396039604,-2.22139939503054,-1.72861795316521,3.11340758841982,2.47006653972326,2.4958389751437,53.5244384229387,0.0128883637007832,1323.57968412376,1324.6883194906,1324.77664555907,1.05850522874362,2999.54124353187,-223.577822115596,0,2999.54124353187,85.03651857661,85.03651857661,-0.00904867714491845,85.0369099481376,24.8,1015.2,38.42,471.277704839173 +45407,2874.03812326733,457.037344752475,45,85.0283366336634,87.5791867326733,18.6824801979208,0.87039603960396,1840.55940594059,655.840079338614,674.819533883168,20,40,9.91089108910891,32,5306181.66289262,396659.075663564,2,1,5306185.95702193,396655.577100451,39.8793913171873,0,0,85.0283366336633,6009.05373231584,37.3649603958416,20.0381239322883,20.7740352314015,0.87039603960396,0.885036248533818,0.680420817833428,3.73594261752196,2.96396362885167,2.82445435935355,53.5397028536904,-0.0185045221849234,1330.65961322178,1331.47116433506,1331.53582140934,1.05847107404864,3016.36614064868,-203.597910231948,0,3016.36614064868,85.0218561905694,85.0218561905694,-0.00799213584725765,85.0215432343233,24.8,1015.2,38.49,431.586021972377 +45408,2874.04604227723,457.052184653465,45,84.9935643564356,87.5433712871287,21.5257640263366,0.612178217821782,1837.4801980198,664.495993683168,691.025011049505,20,40,9.91089108910891,32,5306196.00060377,396677.823023689,2,1,5306200.85751927,396673.865940857,63.4697813969476,0,0,84.9935643564355,6032.6656778879,43.0515280526733,23.0877229750754,23.1908498752004,0.612178217821782,0.626818426751641,0.495255873630204,1.7120493597633,1.35827890110985,1.72335462457877,53.4501323260715,0.00288008127391804,1355.52100473267,1355.28933524305,1355.27087790719,1.05890419624894,3068.83614795962,-209.90865179169,0,3068.83614795962,84.9903019311831,84.9903019311831,-0.00841965384657022,84.9900812824139,24.8,1015.2,38.56,538.96258163173 +45409,2874.0539670297,457.067006633663,45,84.9359504950495,87.484029009901,18.8748487345545,-0.892475247524752,1839.51485148515,682.80924299604,692.497166961386,20,40,10,32,5306210.34941167,396696.548158834,2,1,5306215.75156054,396692.146857112,87.0499502818324,0,0,84.9359504950494,6056.26769609473,37.7496974691089,20.2444511724032,20.9319828737888,-0.892475247524752,-0.877835038594895,-0.674893942020692,3.56646581023458,2.82950677440809,2.45880525805332,53.5093179962506,0.0108723068090406,1375.30640995743,1374.24451572055,1374.1599135641,1.05962229860072,3119.17778772484,-251.917786732984,0,3119.17778772484,84.9471455739633,84.9471455739633,-0.0101651254234235,84.9473281471003,24.8,1015.2,38.63,438.516567384737 +45410,2874.06185237624,457.081869108911,45,84.9495544554455,87.4980410891088,20.2152398237624,-1.91722772277228,1839.09405940594,693.942710311881,677.882508261386,20,40,9.89108910891089,32,5306224.62438303,396715.322334723,2,1,5306230.64015837,396710.421092086,110.621501124338,0,0,84.9495544554454,6079.86109048416,40.4304796475247,21.6821041220513,22.0729078758899,-1.91722772277228,-1.90258751384242,-1.48210055083082,2.44070247393911,1.93636629419169,2.03702867507901,53.4970776508364,-0.010224288522409,1371.82521857327,1370.90940025645,1370.83643611174,1.05945253275718,3110.07553502158,75.8815684202301,0,3110.07553502158,84.9400628369767,84.9400628369767,0.00311924756832114,84.9400503536067,24.8,1015.2,38.6974752475248,488.355229925214 +45411,2874.06969752475,457.096778118812,45,84.9592673267327,87.5080453465347,19.5337409242574,-1.64960396039604,1840.12871287129,687.660337119802,660.617684762376,20,40,9.58415841584158,32,5306238.82391645,396734.153048302,2,1,5306245.526345,396728.692367559,134.189234567736,0,0,84.9592673267325,6103.45825563817,39.0674818485149,20.951154094896,21.4929269480967,-1.64960396039604,-1.63496375146618,-1.26413109537074,3.00669894619696,2.38540770879012,2.24279741192105,53.5271745001488,-0.00280807924207008,1348.27802188218,1348.3502786216,1348.35603538693,1.05933174221501,3058.04888087814,214.689119506181,0,3058.04888087814,84.9576531712576,84.9576531712576,0.00861026696728903,84.9578041489862,24.8,1015.2,38.75,462.709579019181 +45412,2874.07751792079,457.111723861386,45,84.9904950495049,87.5402099009901,19.7714493952475,-2.37207920792079,1838.32673267327,669.738108370297,656.575895569307,20,40,9.36633663366337,32,5306252.97684144,396753.028602535,2,1,5306260.41589443,396746.967770532,157.762291986201,0,0,84.9904950495048,6127.06333561618,39.542898790495,21.2061112392897,21.697349241864,-2.37207920792079,-2.35743899899094,-1.82600423552337,2.79804622789021,2.21987008376834,2.30096513940935,53.4747570209636,0.0080642275669705,1326.3140039396,1327.30790322006,1327.38708815178,1.05894217975568,3004.19441861949,224.58562334342,0,3004.19441861949,84.9958484462307,84.9958484462307,0.00891797100500875,84.9957056105609,24.8,1015.2,38.8,471.691224536621 +45413,2874.08532079208,457.126694059406,45,85.0043366336633,87.5544667326732,19.3555929591089,-2.24188118811881,1840.30693069307,656.653638511881,669.473143024753,20,40,9.75247524752475,32,5306267.09682027,396771.933944656,2,1,5306275.30688628,396765.244943931,181.337633039793,0,0,85.0043366336633,6150.67460896602,38.7111859182178,20.7600793036417,21.3440584429419,-2.24188118811881,-2.22724097918896,-1.71605596452388,3.15075103894431,2.49969350150027,2.54196439766292,53.5323586464419,-0.000144004063695898,1326.12678153663,1327.12853694521,1327.20834778238,1.05877016340827,3006.51108042062,111.069712942382,0,3006.51108042062,85.0085159298107,85.0085159298107,0.00444400875730063,85.0088483734087,24.8,1015.2,38.85,456.123342843545 +45414,2874.09311138614,457.141684356436,45,85.0246732673267,87.5754134653465,19.9050577559406,-2.29059405940594,1838.75742574257,660.43672880099,687.451757292079,20,40,9.94059405940594,32,5306281.1936705,396790.863822309,2,1,5306290.20066539,396783.525538401,204.917386861719,0,0,85.0246732673267,6174.29152956557,39.8101155118812,21.3494145299447,21.8131306953062,-2.29059405940594,-2.27595385047609,-1.76837954704398,2.76324040465932,2.19225638498059,2.13379802552793,53.4872853745051,-0.00511214426120451,1347.88848609307,1347.97708832833,1347.98414735533,1.05851727424176,3052.56482185987,89.9034635284589,0,3052.56482185987,85.025593765317,85.025593765317,0.00363798756112869,85.0258479019329,24.8,1015.2,38.9,477.237947776391 +45415,2874.10090455445,457.156683663367,45,85.0238118811881,87.5745262376237,21.152605060396,-1.16158415841584,1842.32178217822,677.609223466336,693.982283339604,20,40,9.9009900990099,32,5306295.2951495,396809.804915114,2,1,5306305.10178308,396801.815140242,228.508759101461,0,0,85.023811881188,6197.91285987361,42.3052101207921,22.6874867362705,22.8744181001143,-1.16158415841584,-1.14694394948598,-0.885480085691083,2.37306591908341,1.88270586385401,2.06941215103307,53.5909683003661,0.0038161076879414,1371.59150680594,1370.21210983614,1369.81894809674,1.05852785794772,3112.2788938073,106.05611765958,0,3112.2788938073,85.0348067836485,85.0348067836485,0.00421118844558302,85.0351867043846,24.8,1015.2,38.95,525.890403822982 +45416,2874.10870178218,457.171677425743,45,85.0529504950495,87.6045390099009,20.6210539054455,-1.07930693069307,1842.4900990099,629.239901631683,633.165980734654,20,40,10,32,5306309.40433255,396828.739143398,0.871287128712871,0.435643564356436,2311662.3073509,172869.851293678,106.893202678001,0,0,85.0529504950494,6221.53484370199,41.2421078108911,22.1173650069064,22.4241464857322,-1.07930693069307,-1.06466672176321,-0.831162937650036,2.1308357536271,1.69052908981687,1.62356216599907,53.5958644385318,0.00309608736946189,1262.40588236634,1263.3623298949,1263.7485233492,1.05816652705499,2863.75676394326,-200.157750651786,0,2863.75676394326,85.0467767865894,85.0467767865894,-0.00803161999368409,85.0463542668552,24.8,1015.2,39,503.871400458305 +45417,2874.11648930693,457.186683366337,45,85.0652475247525,87.617204950495,19.7056243127723,-1.68861386138614,1842.46534653465,588.179207920792,607.165346534654,20,40,9.87128712871287,32,5306323.49533224,396847.688126476,0,0,0,0,0,0,0,85.0652475247524,6245.15786674929,39.4112486255446,21.1355097374271,21.6455221666521,-1.68861386138614,-1.67397365245628,-1.29835426788525,2.86409761344447,2.27227289731796,2.31529992402599,53.5951444182134,-0.00518414629305246,1195.34455445545,1193.51094990687,1193.25474776049,1.05801253703246,2711.15488117967,97.3085428888357,0,2711.15488117967,85.0489879423585,85.0489879423585,0.00393479942056087,85.0482567656764,24.8,1015.2,39.05,469.289285021055 +45418,2874.12426643565,457.201693762376,45,85.0606435643565,87.6124628712872,19.3078960395049,-2.24752475247525,1838.78712871287,567.107920792079,593.596039603961,20,40,9.86138613861386,32,5306337.56703685,396866.642222164,0,0,0,0,0,0,0,85.0606435643563,6268.78069240936,38.6157920790099,20.7089213858445,21.3068726643107,-2.24752475247525,-2.23288454354539,-1.72914516634642,3.1864775741813,2.5280376603561,2.5520566595742,53.4881493988873,-0.000360010159239747,1160.70396039604,1162.59689246152,1162.6041961339,1.0580695479826,2627.65648971076,50.3386030455609,0,2627.65648971076,85.0570270561709,85.0570270561709,0.00201641451271897,85.0563856671381,24.8,1015.2,39.1,454.428077265926 +45419,2874.13204009901,457.216712178217,45,85.050504950495,87.6020200990099,21.1940121010891,-2.1380198019802,1841.26237623762,572.220792079208,566.026732673267,20,40,9.9009900990099,32,5306351.63220514,396885.606099697,0,0,0,0,0,0,0,85.0505049504949,6292.40778921905,42.3880242021782,22.7318983670758,22.9114498201267,-2.1380198019802,-2.12337959305034,-1.66518610137288,2.15776845839198,1.71189653721162,1.62880119068217,53.5601514307352,0.00331209346500574,1138.24752475248,1142.04365258308,1142.32849599246,1.05819795403721,2580.63909458888,-45.5142102263773,0,2580.63909458888,85.0369869620624,85.0369869620624,-0.00184758574868858,85.0372940122582,24.8,1015.2,39.15,527.069177406069 +45420,2874.13981336634,457.231731188119,45,85.0404059405941,87.5916181188119,21.6250396039604,-2.15445544554456,1839.27722772277,618.687128712871,592.829702970297,20,40,10,32,5306365.69668789,396904.570611383,0,0,0,0,0,0,0,85.0404059405939,6316.03173206833,43.2500792079208,23.1942022169533,23.2775821620772,-2.15445544554456,-2.1398152366147,-1.68795976683162,1.62723886217389,1.29099327712279,1.4751160579308,53.5024058011932,-0.00828023366251435,1211.51683168317,1208.04066268013,1207.7646581801,1.05832231806213,2743.94090444547,156.728327731657,0,2743.94090444547,85.0452138025682,85.0452138025682,0.00633652474160924,85.0454214049975,24.8,1015.2,39.1962128712871,542.584053403395 +45421,2874.14758891089,457.246743168317,45,85.067495049505,87.6195199009901,19.0904037406931,-2.83376237623762,1841.78712871287,620.958415841584,579.030693069307,20,40,10,32,5306379.76560656,396923.526349797,0,0,0,0,0,0,0,85.0674950495048,6339.65799265689,38.1808074813862,20.4756473455811,21.1219841994904,-2.83376237623762,-2.81912216730777,-2.17138183187285,3.45204603523467,2.73873020575029,2.58806812699446,53.575415861487,0.00252007111467828,1199.98910891089,1201.23374179002,1201.07674681754,1.05798400603759,2720.66675374056,257.158749841656,0,2720.66675374056,85.0785721007743,85.0785721007743,0.0102658780729433,85.0785870815652,24.8,1015.2,39.22,446.691366671339 +45422,2874.15538643564,457.261735247525,45,85.0899405940593,87.6426388118812,18.6860297029703,-0.778019801980198,1840.43069306931,617.486138613862,525.582178217822,20,40,10,32,5306393.87574413,396942.457934904,0,0,0,0,0,0,0,85.0899405940593,6363.29304169429,37.3720594059406,20.0419309975883,20.7794727932755,-0.778019801980198,-0.763379593050341,-0.587159950174904,3.79070766832832,3.00741226694396,3.02069992032531,53.5359587480343,0.00252007111467828,1143.06831683168,1144.86013135967,1144.9887883074,1.05770481378656,2588.97751751903,68.5189277540019,0,2588.97751751903,85.0945975884716,85.0945975884716,0.00272032153709276,85.0949507779348,24.8,1015.2,39.24,431.820062419124 +45423,2874.16322366337,457.276695742574,45,85.1221683168317,87.6758333663366,19.5558465341584,-1.63227722772277,1841.35148514851,609.804950495049,513.525742574257,20,40,10,32,5306408.06018895,396961.351400691,0,0,0,0,0,0,0,85.1221683168315,6386.93478193082,39.1116930683168,20.9748637386961,21.5215578055005,-1.63227722772277,-1.61763701879292,-1.25703313414231,3.0033221481748,2.3827286776742,2.52228296152005,53.5627435038817,-0.00597616864337992,1123.33069306931,1119.76819919616,1119.64566713814,1.05730443007495,2544.86437782504,293.246448915184,0,2544.86437782504,85.1284504460346,85.1284504460346,0.0117785293381083,85.12850174446,24.8,1015.2,39.26,464.038502069011 +45424,2874.17108326732,457.291653564357,45,85.1754455445544,87.7307089108911,18.7871567654456,-1.92584158415842,1843.35643564356,559.218811881188,491.437623762376,20,40,10,32,5306422.28620259,396980.242183792,0,0,0,0,0,0,0,85.1754455445543,6410.58715704083,37.5743135308911,20.1503960723171,20.8703138651212,-1.92584158415842,-1.91120137522856,-1.4660695905116,3.72408522268373,2.95455639468576,2.61624320857556,53.6210651496786,0.00295208330576598,1050.65643564356,1046.66184687776,1046.2804620462,1.05664366777007,2381.55389893953,48.4589682275739,0,2381.55389893953,85.1608119792177,85.1608119792177,0.00191430034091886,85.1605791607731,24.8,1015.2,39.28,435.693847071359 +45425,2874.17895643564,457.306604653465,45,85.1747326732674,87.7299746534653,21.1714801980198,-1.58277227722772,1842.10396039604,461.948514851485,436.714851485149,20,40,10,32,5306436.53755257,396999.124936238,0,0,0,0,0,0,0,85.1747326732672,6434.24564980761,42.3429603960396,22.7077314972946,22.8997906263836,-1.58277227722772,-1.56813206829787,-1.2302036128844,2.02463018960847,1.60626938318848,1.90958094228075,53.5846321215635,-0.00266407517837418,898.663366336634,904.641770414665,905.136944837341,1.05665201112162,2034.81108709593,39.595886429082,0,2034.81108709593,85.1700140182334,85.1700140182334,0.00160523478089536,85.1696479962281,24.8,1015.2,39.3,525.94043816162 +45426,2874.18686891089,457.321491683168,45,85.1533762376237,87.7079775247525,19.2517068208911,-1.17544554455446,1840.92574257426,434.208910891089,432.60297029703,20,40,10,32,5306450.86319752,397017.92910575,0,0,0,0,0,0,0,85.1533762376236,6457.90146023115,38.5034136417822,20.6486549482883,21.2650770596369,-1.17544554455446,-1.1608053356246,-0.89581248915149,3.23769565198546,2.56867225657266,2.46399887414517,53.5503591544039,0.00165604673250287,866.811881188118,864.998666797372,865.205271098538,1.05691674871205,1962.29851640079,-110.28711789594,0,1962.29851640079,85.1536383687873,85.1536383687873,-0.00442494744524126,85.1536802451672,24.8,1015.2,39.32,452.641351849877 +45427,2874.19477257426,457.33639,45,85.1327425742574,87.6867248514852,19.1473206825742,-1.44435643564356,1843.38613861386,447.734653465347,447.685148514852,20,40,10,32,5306465.17232916,397036.746949101,0,0,0,0,0,0,0,85.1327425742573,6481.55287475261,38.2946413651485,20.5366943116787,21.1742410183329,-1.44435643564356,-1.42971622671371,-1.10179130353857,3.36682111116058,2.67111579057096,2.65896908759388,53.6219291740608,0.011736331191216,895.419801980198,898.01310655818,898.077746346063,1.0571728942719,2030.0851609319,63.8512147488356,0,2030.0851609319,85.1407646309184,85.1407646309184,0.00245754773497157,85.1411935879301,24.8,1015.2,39.34,448.757862105963 +45428,2874.20267524752,457.351288415842,45,85.1288415841584,87.6827068316832,18.6589174915842,-1.51861386138614,1844.67326732673,448.761386138614,465.482178217822,20,40,10,32,5306479.47968493,397055.564789584,0,0,0,0,0,0,0,85.1288415841583,6505.20420748089,37.3178349831683,20.0128514617838,20.7589805033869,-1.51861386138614,-1.50397365245628,-1.15434113180235,3.81476907633141,3.02650172989386,3.03528468759813,53.6593702306217,-0.0114483230638242,914.243564356436,908.050945985687,907.767590759076,1.05722146185398,2074.85139967823,-106.468946891123,0,2074.85139967823,85.1415596510145,85.1415596510145,-0.00416489668768071,85.1417788778877,24.8,1015.2,39.36,430.938025985551 +45429,2874.21056366337,457.36619970297,45,85.1012277227723,87.6542645544555,18.6392299233663,-2.06693069306931,1840.85643564356,409.273267326732,454.520792079208,20,40,10,32,5306493.76040534,397074.398097174,0,0,0,0,0,0,0,85.1012277227722,6528.84951177132,37.2784598467327,19.9917353183331,20.7401252774487,-2.06693069306931,-2.05229048413945,-1.57523715444328,3.8469016026266,3.05199453023703,3.04733716742502,53.5483430975122,-0.00849623975805821,863.79405940594,866.192334084894,866.557821782178,1.05756557183185,1956.51049115132,-357.29798936333,0,1956.51049115132,85.10726301343,85.10726301343,-0.0142224618501594,85.107541065535,24.8,1015.2,39.38,430.153687974804 +45430,2874.21843435643,457.381122376238,45,85.0804950495049,87.6329099009902,18.6334708475248,0.179405940594059,1841.9702970297,420.717821782178,480.50297029703,20,40,10,32,5306508.00810453,397093.244907699,0,0,0,0,0,0,0,85.0804950495049,6552.4859186195,37.2669416950495,19.9855583507021,20.7341722103948,0.179405940594059,0.194046149523918,0.148971915930581,3.8419498711374,3.04806600307899,3.01222440404007,53.5807440118437,0.0124563515096955,901.220792079208,899.862738947162,900.145780292315,1.05782324964359,2043.16911207523,-320.177060202697,0,2043.16911207523,85.0722875208312,85.0722875208312,-0.0129085928394831,85.0721030645921,24.8,1015.19873762376,39.3848514851485,429.906805949151 +45431,2874.2262830693,457.396063069307,45,85.065702970297,87.6176740594059,19.9001364136634,-0.68,1839.76732673267,460.014851485149,520.187128712871,20,40,10,32,5306522.21474906,397112.113343172,0,0,0,0,0,0,0,85.0657029702969,6576.11376927956,39.8002728273268,21.3441360837523,21.8114514976348,-0.68,-0.665359791070143,-0.506280173657189,2.76815746506354,2.19615740533636,2.31575035992648,53.516662203499,-0.00734420724849099,980.20198019802,976.52776198412,976.124837340877,1.05800602345468,2220.5570846299,104.534321608301,0,2220.5570846299,85.0592441917457,85.0592441917457,0.00424114193597097,85.0589589816123,24.8,1015.19,39.3,477.125473791344 +45432,2874.23409722773,457.411049207921,45,85.0597128712871,87.6115042574258,18.8786446644554,-0.335643564356436,1840.36633663366,474.208910891089,498.511881188119,20,40,10,32,5306536.35643819,397131.0371481,0,0,0,0,0,0,0,85.059712871287,6599.74155803094,37.7572893289109,20.2485225437087,20.9418404116081,-0.335643564356436,-0.321003355426578,-0.248966664262619,3.58544037489528,2.84456051727445,2.64680274803888,53.5340866952063,-0.0038161076879414,972.720792079208,973.67518870699,973.899226779821,1.05808050187404,2204.63623601253,-18.1334580368367,0,2204.63623601253,85.0578111949808,85.0578111949808,-0.000694376368313811,85.0577895332389,24.8,1015.18,39.2,438.670799090241 +45433,2874.24191544555,457.426024653465,45,85.0902079207921,87.6429141584159,19.7161419137624,-0.480990099009901,1840.79702970297,466.266336633664,515.611881188119,20,40,10,32,5306550.50594519,397149.947675606,0,0,0,0,0,0,0,85.0902079207919,6623.3713175469,39.4322838275248,21.1467905197364,21.6563495241288,-0.480990099009901,-0.466349890080044,-0.365813357620215,2.81220067225419,2.23109971510279,2.45090950901752,53.5466150487478,0.0126003555733914,981.878217821782,977.240064699538,977.100509193776,1.05770121884332,2224.38730741958,239.631787400412,0,2224.38730741958,85.0807040486226,85.0807040486226,0.0094816412334246,85.0804262140499,24.8,1015.17,39.1,469.736273140609 +45434,2874.24970712872,457.44105,45,85.0948514851485,87.647697029703,19.4722392734653,-0.517821782178218,1842.64851485149,467.209900990099,489.516831683169,20,40,10,32,5306564.60525398,397168.919386974,0,0,0,0,0,0,0,85.0948514851484,6647.00621606175,38.9444785469306,20.8851897428637,21.4497078955486,-0.517821782178218,-0.503181573248359,-0.37950682540332,3.10761145272189,2.46546809238203,2.51802013109743,53.6004725685701,-0.00705619912109919,956.726732673268,954.219017743359,953.922470532768,1.05764365960968,2169.47104809979,168.987329203669,0,2169.47104809979,85.1021784138808,85.1021784138808,0.006817142110257,85.1021518151814,24.8,1015.16,39,461.493646333754 +45435,2874.25751158416,457.456060297029,45,85.0948712871287,87.6477174257426,19.9261743675247,-0.411584158415841,1848.59900990099,441.232673267327,444.066336633663,20,40,10,32,5306578.72861681,397187.87268255,0,0,0,0,0,0,0,85.0948712871286,6670.64803421357,39.8523487350495,21.3720634114353,21.8351715974762,-0.411584158415841,-0.396943949485984,-0.308190743136141,2.74368345769463,2.17674060076515,2.0407101951536,53.7735654531325,-0.00813622959881844,885.29900990099,890.794157435546,891.06501650165,1.05764375040247,2013.60040958293,-188.524929607503,0,2013.60040958293,85.0943909420645,85.0943909420645,-0.00747475737672849,85.0947081565298,24.8,1015.15,38.9,478.019558131979 +45436,2874.26535188119,457.471016336634,45,85.1070792079209,87.6602915841584,19.7647502749505,-0.0252475247524753,1841.84158415842,428.411881188119,445.473267326733,20,40,10,32,5306592.91963593,397206.759489458,0,0,0,0,0,0,0,85.1070792079206,6694.28562725538,39.529500549901,21.1989260154154,21.6984777225754,-0.0252475247524753,-0.0106073158226177,-0.00418306266154253,2.77945119352566,2.20511744670286,2.21034082625744,53.5769999061876,0.0079202235032746,873.885148514851,874.914135869032,874.948175388967,1.05749150706835,1980.20264048448,27.9963300201684,0,1980.20264048448,85.0983405548474,85.0983405548474,0.00105517977540391,85.0979992456388,24.8,1015.14,38.8,471.491788772583 +45437,2874.27319584158,457.485958514851,45,85.0655742574258,87.6175414851486,18.7348250822772,-0.873168316831683,1841.4504950495,429.723762376238,448.331683168317,20,40,10,32,5306607.11780924,397225.629059631,0,0,0,0,0,0,0,85.0655742574256,6717.92082901555,37.4696501645545,20.0942670818511,20.8205966792926,-0.873168316831683,-0.858528107901826,-0.658329704015307,3.69805338727695,2.93390366490986,2.93862555448557,53.5656235851557,-0.00432012191087705,878.055445544555,874.838407999216,874.618312116927,1.05800762095053,1990.68911075497,-21.5426367385737,0,1990.68911075497,85.0818499166747,85.0818499166747,-0.000826444030550724,85.082111551155,24.8,1015.13,38.7,433.57577921049 +45438,2874.28102376237,457.50092,45,85.063306930693,87.6152061386139,18.628696369703,-1.28247524752475,1840.80198019802,406.840594059406,430.627722772277,20,40,10,32,5306621.28590401,397244.522054581,0,0,0,0,0,0,0,85.063306930693,6741.55295118277,37.2573927394059,19.9804374257879,20.729361278538,-1.28247524752475,-1.26783503859489,-0.973084593328115,3.83342635430545,3.04130374881916,3.03154031779649,53.5467590528115,-0.00194405485989467,837.468316831683,843.545397510048,843.850315888732,1.05803618658067,1897.89725361413,-283.627585357566,0,1897.89725361413,85.0671232232133,85.0671232232133,-0.0113292269821093,85.0671619047618,24.8,1015.12,38.6,429.706820637829 +45439,2874.28883623762,457.515897821782,45,85.0332574257425,87.5842551485148,18.785896589802,-2.30910891089109,1839.23267326733,410.755445544554,449.417821782178,20,40,10,32,5306635.42508676,397263.43479449,0,0,0,0,0,0,0,85.0332574257425,6765.17768105075,37.571793179604,20.1490444554304,20.8609571185681,-2.30910891089109,-2.29446870196123,-1.76465146636107,3.68553958682265,2.92397566193913,2.91947868861547,53.5011097646199,0.00612017270707582,860.173267326733,861.6127046368,861.568062234795,1.05841056988848,1947.93525738781,56.4612335634003,0,1947.93525738781,85.0419479462796,85.0419479462796,0.00220838915576109,85.0423711456859,24.8,1015.11,38.5,435.258318710384 +45440,2874.2966370297,457.530888118812,45,85.0194158415841,87.5699983168317,18.7755093506931,-1.78029702970297,1840.76732673267,420.548514851485,475.614851485149,20,40,10,32,5306649.54241256,397282.362594179,0,0,0,0,0,0,0,85.019415841584,6788.79970085273,37.5510187013861,20.1379034943602,20.8515973549069,-1.78029702970297,-1.76565682077312,-1.35891448086961,3.68517218203493,2.92368417608418,2.90693514420155,53.5457510243656,-0.00403211378348525,896.163366336634,893.691912557592,893.447194719472,1.05858597413009,2031.6641810001,-256.820947672474,0,2031.6641810001,85.0260571512596,85.0260571512596,-0.0102400091494276,85.0265373880244,24.8,1015.10252475248,38.4265099009901,434.901247118349 +45441,2874.30440653465,457.545918514851,45,85.0309306930693,87.5818586138614,19.1492260723762,0.110495049504951,1840.12376237624,438.460396039604,450.485148514851,20,40,10,32,5306663.60095577,397301.339212761,0,0,0,0,0,0,0,85.0309306930692,6812.41788767892,38.2984521447525,20.5387379609472,21.1700448166096,0.110495049504951,0.125135258434808,0.0962231017429862,3.34888471843116,2.65688569628808,2.76902883620626,53.5270304960852,-0.00684019302555534,888.945544554455,895.93353592785,896.23612446959,1.05844193661858,2014.70752253219,-136.451449527366,0,2014.70752253219,85.0197227722771,85.0197227722771,-0.00540252045008045,85.0193438943893,24.8,1015.11,38.51,448.599862625804 +45442,2874.31220405941,457.56090980198,45,85.050405940594,87.6019181188119,18.8452486252475,-0.896237623762376,1846.40099009901,493.241584158416,454.071287128713,20,40,10,32,5306677.71232964,397320.267952287,0,0,0,0,0,0,0,85.0504059405939,6836.0356204897,37.6904972504951,20.2127032110823,20.9127026495825,-0.896237623762376,-0.881597414832518,-0.676750068203323,3.6267775732036,2.87735597610453,2.79710489149336,53.7096276488516,0.0136803860511107,947.312871287129,943.97778649152,943.540254596888,1.05819669186946,2153.69211590614,108.51734554731,0,2153.69211590614,85.0234674051562,85.0234674051562,0.00422888823536207,85.0228879773691,24.8,1015.12,38.62,437.489040433058 +45443,2874.32003158416,457.575865148515,45,85.0204356435643,87.5710487128712,20.1316452144554,-1.5850495049505,1839.26237623762,486.433663366337,454.621782178218,20,40,10,32,5306691.88013154,397339.152824037,0,0,0,0,0,0,0,85.0204356435643,6859.65279304195,40.2632904289109,21.5924436956187,22.0057709765528,-1.5850495049505,-1.57040929602064,-1.21507444699268,2.51941479910074,1.99881384566832,2.07320920261844,53.5019737890021,-0.0039601117516373,941.055445544554,942.815233800608,942.892597831212,1.05857048078993,2131.72294233011,197.94789253115,0,2131.72294233011,85.0305744534848,85.0305744534848,0.00794992865623345,85.0304364922205,24.8,1015.13,38.73,485.461462029588 +45444,2874.32786712871,457.590819009901,45,85.0453267326733,87.5966865346534,18.9164081412871,-1.14168316831683,1838.84158415842,470.941584158416,453.960396039604,20,40,10,32,5306706.06288261,397358.036017419,0,0,0,0,0,0,0,85.0453267326732,6883.27341991214,37.8328162825743,20.2890262252784,20.9727307758032,-1.14168316831683,-1.12704295938697,-0.866732310434862,3.56425051853048,2.82774924097932,2.73944394779457,53.4897334435879,-0.00907225601284181,924.90198019802,925.994667189491,926.110900518623,1.05826047866034,2094.00052835476,19.7305654898565,0,2094.00052835476,85.0504738751102,85.0504738751102,0.000863205132393052,85.0501707685053,24.8,1015.14,38.84,440.102077771758 +45445,2874.33571940594,457.605760792079,45,85.0669900990099,87.6189998019802,19.4861375135644,-1.25594059405941,1839.98514851485,469.550495049505,438.323762376237,20,40,10,32,5306720.27695676,397376.904624612,0,0,0,0,0,0,0,85.0669900990098,6906.89888165581,38.9722750271287,20.9000964712314,21.4590904760635,-1.25594059405941,-1.24130038512955,-0.964315861185681,3.05097788977954,2.42053704340228,2.49873610261865,53.5229983823017,0.00496814019750861,907.874257425742,902.260454857367,901.994115983027,1.05799003683493,2056.35781948928,11.6977697336388,0,2056.35781948928,85.0496980688167,85.0496980688167,0.000427517999324285,85.0496381895332,24.8,1015.15,38.95,461.269065505745 +45446,2874.34360158416,457.620659702971,45,85.0502673267327,87.6017753465347,18.9229867991089,-2.01811881188119,1837.30693069307,281.294059405941,250.326732673267,20,40,10,32,5306734.54742822,397395.72072814,0,0,0,0,0,0,0,85.0502673267326,6930.52538000565,37.8459735982178,20.2960822456431,20.9786531369129,-2.01811881188119,-2.00347860295133,-1.54108368065391,3.55709342374955,2.82207105724079,2.82380770337431,53.4450921838422,0.00288008127391803,531.620792079208,390.662042936967,379.663092880717,1.05819816457702,1205.34271125997,-887.362242216541,0,1205.34271125997,85.0261667483579,85.0261667483579,-0.0355180320012113,85.0244353606788,24.8,1015.16,39.06,440.321365958911 +45447,2874.35146831683,457.635538712871,45,84.5501287128713,87.0866325742574,18.5474433440594,-1.15920792079208,1818.5396039604,-1706.69801980198,-1613.93861386139,20,40,10,32,5306748.78979025,397414.511443404,0,0,0,0,0,0,0,84.5501287128712,6954.10368091323,37.0948866881188,19.8932884937151,20.6310028541136,-1.15920792079208,-1.14456771186222,-0.877163171711316,3.77062070009871,2.99147598276036,2.8627985740364,52.8991727783711,-0.0174964937390521,-3320.63663366337,-3391.92380158808,-3399.99946903903,1.06446880580159,-7451.3494476236,-8430.14180917743,0,-7451.3494476236,84.4707073816291,84.4707073816291,-0.337063904410254,84.4622178446949,24.8,1015.17,39.17,425.723976883715 +45448,2874.3592309901,457.650168316832,45,82.3429603960396,84.8132492079208,18.7760720572277,-1.70366336633663,1761.34653465347,-4368.96138613861,-3948.34158415842,20,40,10,32,5306762.84498079,397432.988008931,0,0,0,0,0,0,0,82.3429603960395,6977.3259556107,37.5521441144554,20.1385070321753,20.6988438598796,-1.70366336633663,-1.68902315740678,-1.30304299597073,3.00134078738051,2.38115673668604,2.38580530650528,51.2354938304923,-0.00784822147142665,-8317.30297029703,-8088.86923830997,-8041.04097586524,1.09310430123033,-18631.4533877221,-19136.4305511996,0,-18631.4533877221,82.3467828644249,82.3467828644249,-0.765394732542557,82.3452770238893,24.8,1015.18,39.28,429.288933360034 +45449,2874.36674732673,457.664325445545,45,79.5996138613861,81.9876022772277,18.1090759075247,-1.72841584158416,1701.91089108911,-4362.43663366337,-3864.61386138614,20,40,10,32,5306776.45438883,397450.867916349,0,0,0,0,0,0,0,79.599613861386,6999.81073231587,36.2181518150495,19.4231121077051,19.9735963771336,-1.72841584158416,-1.7137756326543,-1.32501197108334,2.94982311337294,2.34028445152691,2.29019860143224,49.5065810417593,-0.0233286583187361,-8227.05049504951,-8224.17648269777,-8225.04092240248,1.1307736106598,-18420.1259972898,-18694.0870091113,0,-18420.1259972898,79.6019900990098,79.6019900990098,-0.747575128800003,79.6024143139798,24.8,1015.19,39.39,399.507075385016 +45450,2874.37398831683,457.678043069307,45,76.9404851485148,79.2486997029703,17.3881573156436,-1.47564356435644,1644.81188118812,-4420.39108910891,-3755.94257425743,20,40,10,32,5306789.56354262,397468.191282555,0,0,0,0,0,0,0,76.9404851485147,7021.54675250289,34.7763146312871,18.6498820046263,19.2082440233161,-1.47564356435644,-1.46100335542658,-1.12815400241493,2.93854513134858,2.33133690282253,2.40725203284366,47.8456381710908,-0.0192965445352508,-8176.33366336634,-8181.77143417312,-8184.24671078113,1.16985728534985,-18304.1772516965,-18633.0870305924,0,-18304.1772516965,76.9287910989117,76.9287910989117,-0.745167957389795,76.9277464558236,24.8012623762376,1015.19747524752,39.4810643564356,369.714773360678 +45451,2874.38096445545,457.691315742574,45,74.2748316831683,76.5030766336634,16.2982106711881,-2.61841584158416,1590.15841584158,-4451.70099009901,-3804.75544554455,20,40,10,32,5306802.19199829,397484.951679045,0,0,0,0,0,0,0,74.2748316831682,7042.54165104525,32.5964213423762,17.4808463246843,18.127248691386,-2.61841584158416,-2.6037756326543,-1.99570246009732,3.34437958153491,2.6533114813521,2.52800943930869,46.255833307888,-0.0185765242167713,-8256.45643564356,-8251.86646407215,-8249.17344943162,1.21184027443183,-18510.4863046059,-18375.7474977312,0,-18510.4863046059,74.2614952455641,74.2614952455641,-0.734880294960192,74.2608685776512,24.81,1015.19,39.46,329.113101240122 +45452,2874.38767871287,457.704144356436,45,71.5727326732673,73.7199146534653,16.624904290396,-2.48257425742574,1527.94059405941,-4477.07227722772,-3803.17128712871,20,40,10,32,5306814.3452333,397501.150321275,0,0,0,0,0,0,0,71.5727326732672,7062.79631471412,33.2498085807921,17.8312455843235,18.250177018646,-2.48257425742574,-2.46793404849589,-1.91803037497658,2.36396537959954,1.87548582040189,2.02029881336559,44.4459902353579,-0.0148324185606779,-8280.24356435643,-8278.28797176747,-8278.36430884912,1.25760957848367,-18510.2020790044,-18381.9725898559,0,-18510.2020790044,71.5905199490245,71.5905199490245,-0.735159407029806,71.5944297221295,24.82,1015.18,39.42,333.613613661356 +45453,2874.39411742574,457.71654960396,45,68.9342376237624,71.0022647524752,15.7266138613861,-2.33544554455446,1471.91089108911,-4456.09207920792,-3815.56534653465,20,40,10,32,5306825.99747588,397516.81253969,0,0,0,0,0,0,0,68.9342376237623,7082.31173209585,31.4532277227723,16.8677731356445,17.3346484216469,-2.33544554455446,-2.3208053356246,-1.79616612582604,2.5178319203388,1.9975580461126,2.11171326126222,42.8161522424477,-0.0163444612294849,-8271.65742574257,-8271.08312910499,-8269.92668334423,1.30578030631874,-18496.643494176,-18661.9991727951,0,-18496.643494176,68.9408706009214,68.9408706009214,-0.746348397215966,68.9409990700482,24.83,1015.17,39.38,300.834404203444 +45454,2874.4003029703,457.728496831683,45,66.3263465346535,68.3161369306931,14.251897139604,-1.69930693069307,1419.22772277228,-4493.11485148515,-3795.88316831683,20,40,10,32,5306837.19093687,397531.895918193,0,0,0,0,0,0,0,66.3263465346534,7101.08912816296,28.5037942792079,15.2860475765628,15.9303269731877,-1.69930693069307,-1.68466672176321,-1.29359694391484,3.28928056235128,2.60959788466041,2.50836050233568,41.2836609965959,-0.0131043697963271,-8288.99801980198,-8387.22257621802,-8432.46053590812,1.35710570953317,-18574.4625485566,-18347.4180319832,0,-18574.4625485566,66.3077876678756,66.3077876678756,-0.733791077127507,66.2965392181037,24.84,1015.16,39.34,254.104092701368 +45455,2874.40624059406,457.739971782178,45,63.5346732673267,65.4407134653465,14.1406732673267,-1.91970297029703,1480.50495049505,-5068.7396039604,-4319.17821782178,20,40,10,32,5306847.93564743,397546.382879344,0,0,0,0,0,0,0,63.5346732673266,7119.12656922457,28.2813465346535,15.1667530442893,15.6756938216042,-1.91970297029703,-1.90506276136717,-1.46829501670116,2.65633264927424,2.10743958476599,2.10782061708801,43.0661432970238,0.0438492373954021,-9387.91782178218,-9276.32795804332,-9233.95688868531,1.41678986432637,-22954.5496089841,-20071.8702760445,0,-22954.5496089841,63.5237078717772,63.5237078717772,-0.803255944406322,63.5171713814586,24.85,1015.15,39.3,245.997332450703 +45456,2874.41190346535,457.750946732673,45,60.512,62.32736,13.6450891089109,-1.44277227722772,1512.5,-5175.80891089109,-4432.0198019802,20,40,10,32,5306858.18251466,397560.238019723,0,0,0,0,0,0,0,60.512,7136.3585375139,27.2901782178218,14.6352081594554,15.0808052932318,-1.44277227722772,-1.42813206829787,-1.09963720070358,2.34957515951825,1.86406913302236,1.81472565454892,43.9968415606904,-0.0168484754524205,-9607.82871287129,-9611.34385844525,-9597.22141045803,1.4876551967964,-25149.6325388744,-21110.7033499763,0,-25149.6325388744,60.5279526517007,60.5279526517007,-0.844269080373383,60.5342348348656,24.86,1015.14,39.26,227.699220093995 +45457,2874.41728445545,457.761394752475,45,57.5261485148515,59.251932970297,13.4534059405941,-1.31950495049505,1434.91584158416,-5142.54752475248,-4413.59504950495,20,40,10,32,5306867.91892476,397573.427570814,0,0,0,0,0,0,0,57.5261485148514,7152.74867717286,26.9068118811881,14.4296160195588,14.7466623058296,-1.31950495049505,-1.30486474156519,-1.01650482197499,1.79602206869059,1.42489985345246,1.50065308520481,41.7400098744482,-0.0232566562868881,-9556.14257425743,-9554.45986667974,-9552.94369403871,1.56491188934339,-24962.272994447,-20876.4478229146,0,-24962.272994447,57.5258827565924,57.5258827565924,-0.834839176987008,57.5219954393375,24.87,1015.13,39.22,217.929687135117 +45458,2874.42238574257,457.771323069307,45,54.5270891089109,56.1629017821782,11.4934026402574,-0.578316831683168,1362.17821782178,-5086.62772277228,-4375.7504950495,20,40,10,32,5306877.14874824,397585.960612934,0,0,0,0,0,0,0,54.5270891089108,7168.30590060521,22.9868052805149,12.3273903715845,12.9067434328978,-0.578316831683168,-0.563676622753311,-0.411395144974967,2.92899035274286,2.32375648225176,2.13419687884619,39.6241581665643,-0.0157684449747012,-9462.37821782178,-9452.30529359867,-9442.51281252587,1.65101350182904,-24754.3153648321,-20530.847883787,0,-24754.3153648321,54.5329626507204,54.5329626507204,-0.821085078804898,54.5401303728508,24.88,1015.12,39.18,167.480125156156 +45459,2874.42721633663,457.780729405941,45,51.6010792079208,53.1491115841584,11.3485940594059,-0.412475247524752,1289.73267326733,-4990.81089108911,-4261.55643564356,20,40,10,32,5306885.88872072,397597.834612618,0,0,0,0,0,0,0,51.6010792079207,7183.04295860851,22.6971881188119,12.1720741470351,12.615700294067,-0.412475247524752,-0.397835038594895,-0.30366490828297,2.32219213507603,1.84234441805644,2.03025718401588,37.5168026984385,-0.0201605689174262,-9252.36732673267,-9251.52777178708,-9264.92277352237,1.74470741615235,-24217.8168637022,-20229.2753704634,0,-24217.8168637022,51.6011815508283,51.6011815508283,-0.808981145639322,51.6094226062836,24.89,1015.11,39.14,160.104368759217 +45460,2874.43178029703,457.789622871287,45,48.7436435643565,50.2059528712871,9.6508696369604,-0.153564356435644,1217.60891089109,-5021.63069306931,-4360.6702970297,20,40,10,32,5306894.14615627,397609.061054062,0,0,0,0,0,0,0,48.7436435643564,7196.97179823997,19.3017392739208,10.3511589355942,11.0072561950899,-0.153564356435644,-0.138924147505787,-0.124112733065397,3.26279410084691,2.5885844707531,2.62936312285549,35.4188074944529,-0.0257047253697185,-9382.30099009901,-9562.71815508284,-9868.33775446164,1.84698932055182,-24541.3038774011,-20691.9350816603,0,-24541.3038774011,48.713787569846,48.713787569846,-0.827435218769394,48.6584123299808,24.8987376237624,1015.10252475248,39.1,121.620450834883 +45461,2874.4360739604,457.797974257426,45,45.3933168316832,46.7551163366337,9.01185038504951,0.0411881188118812,1414.31188118812,-6423.57128712871,-5678.96732673268,20,40,10,32,5306901.91491092,397619.603445498,0,0,0,0,0,0,0,45.3933168316831,7210.06152802545,18.023700770099,9.66577097696905,10.2715210110009,0.0411881188118812,0.0558283277417386,0.0490342616818552,3.01232365278458,2.38987015038932,2.33719060884077,41.1406649613459,0.095330690166687,-12102.5386138614,-11949.1022742868,-11655.7234540078,1.98388846338855,-39821.9073066959,-25753.8391120182,0,-39821.9073066959,45.3680458778551,45.3680458778551,-1.0311951987278,45.2898636645074,24.9,1015.11,39.06,106.043026683511 +45462,2874.44003415842,457.805662970297,45,41.4041485148515,42.646272970297,7.79995379538614,-0.335247524752475,1429.40099009901,-6756.54257425742,-6032.23564356435,20,40,9.91089108910891,32,5306909.08063655,397629.309522405,0,0,0,0,0,0,0,41.4041485148514,7222.12157901555,15.5999075907723,8.36593638330013,9.0113418754323,-0.335247524752475,-0.320607315822617,-0.237555287847474,3.1887415860438,2.52983384662092,2.63069052632793,41.579589347491,-0.0419051825355074,-12788.7782178218,-12760.5001764533,-12703.4439004434,2.17569057177047,-46235.9172741077,-28466.2630371143,0,-46235.9172741077,41.4072566415057,41.4072566415057,-1.13810465204936,41.4116110746703,24.9,1015.12,39.02,81.8047331798858 +45463,2874.44360980198,457.812657920792,45,37.4392178217822,38.5623943564356,5.82889603959406,-1.9529702970297,1290.97524752475,-7193.10693069307,-6014.82970297029,20,40,9.86138613861386,32,5306915.54938132,397638.138891906,0,0,0,0,0,0,0,37.4392178217821,7233.05678377352,11.6577920791881,6.25185414315648,7.10689719418696,-1.9529702970297,-1.93833008809985,-1.35085838986899,4.17427265276491,3.3117190455971,3.08516277452029,37.5529477184262,-0.0411851622170279,-13207.9366336634,-13259.1976766984,-13741.420620092,2.40609049694411,-47667.602298992,-28780.9462779107,0,-47667.602298992,37.3790871483188,37.3790871483188,-1.15070281780653,37.244337932488,24.9,1015.13,38.98,51.0559164012167 +45464,2874.4467560396,457.818958712871,45,32.7734653465347,33.7566693069307,5.19423432343564,-2.22455445544554,1383.23267326733,-8747.93564356436,-7112.85742574258,20,40,10,32,5306921.23806942,397646.089592862,0,0,0,0,0,0,0,32.7734653465346,7242.82456245889,10.3884686468713,5.57113991310065,6.29929609797154,-2.22455445544554,-2.20991424651569,-1.59281361798759,3.56129895723883,2.82540757751915,3.00029249252953,40.236607449463,0.0761781496951321,-15860.7930693069,-15630.753847662,-15028.959626205,2.75122987329585,-70875.6569582353,-34416.4835695196,0,-70875.6569582353,32.7642075286736,32.7642075286736,-1.3778101820083,32.6407896173834,24.9,1015.14,38.94,40.4917829808039 +45465,2874.44929465346,457.824545445545,45,27.6458910891089,28.4752678217822,3.87635258526733,-1.64980198019802,1447.64356435644,-8953.6495049505,-7133.55742574257,20,40,10,32,5306925.81701567,397653.130988643,0,0,0,0,0,0,0,27.6458910891089,7251.21621842699,7.75270517053466,4.15762964477689,4.88368262052068,-1.64980198019802,-1.63516177126816,-1.17400956090836,3.5420307831822,2.81012089542977,2.69025228726223,42.1102443222104,0.00712820115294714,-16087.2069306931,-16041.8804626997,-13167.6429670322,3.26509884576345,-88678.003575398,-35280.4125399029,0,-88678.003575398,27.6761103813351,27.6761103813351,-1.41142480584691,28.0344113128247,24.9,1015.15,38.9,24.5425273945492 +45466,2874.45113415842,457.829459009901,45,23.1989207920792,23.8948884158416,3.30341584158416,-1.93811881188119,1528.32673267327,-5044.83663366337,-3855.49801980198,20,40,10,32,5306929.11585101,397659.311006576,0,0,0,0,0,0,0,23.1989207920792,7258.22509887253,6.60683168316832,3.5431192931715,4.14129607011771,-1.93811881188119,-1.92347860295133,-1.2450154566017,2.91844061398018,2.31538669577811,2.24196783134525,44.4572225523262,-0.00108003047771926,-8900.33465346535,-8853.23070287227,-8825.61212717723,3.88577579404711,-60285.1035781922,-20673.1096978873,0,-60285.1035781922,23.3670236251347,23.3670236251347,-0.826893332897644,24.8337213593854,24.9,1015.16,38.86,18.2183129149035 +45467,2874.4524649505,457.834016138614,45,21.9386534653465,22.5968130693069,3.10922772277228,-2.29504950495049,1486.37128712871,-773.005940594059,-609.631683168317,20,40,9.99009900990099,32,5306931.48025468,397665.030380959,0,0,0,0,0,0,0,21.9386534653465,7264.42617753039,6.21845544554455,3.33484043781035,3.90389724737876,-2.29504950495049,-2.28040929602064,-1.61156620071911,2.77734145068236,2.20344365197581,2.3934659827638,43.2367881125034,-0.0136803860511107,-1382.63762376238,-1627.78965787668,-4934.0136192807,4.10241179829736,-9831.96491894238,-2941.655536543,0,-9831.96491894238,21.9546867954122,21.9546867954122,-0.117316929712777,22.7235305272798,24.9,1015.17,38.82,16.0763256891267 +45468,2874.45341980198,457.838625049505,45,21.5490099009901,22.1954801980198,2.96324917492079,-0.622475247524752,1458.89603960396,-569.286138613861,-462.037623762376,20,40,10,32,5306933.14714724,397670.801889575,0,0,0,0,0,0,0,21.5490099009901,7270.47228536868,5.92649834984158,3.17826935076436,3.75721431932726,-0.622475247524752,-0.607835038594897,-0.180191658839831,2.82465967022305,2.24098423973613,2.18180266264916,42.4375655589912,0.00648018286631558,-1031.32376237624,-818.92917361043,-1733.57928547053,4.176782413501,-7303.96078178241,-3103.74392584177,0,-7303.96078178241,21.547536712087,21.547536712087,-0.124316515809994,21.6720265504656,24.9,1015.18,38.78,15.1581115229558 +45469,2874.45395633663,457.843307722772,45,21.2648415841584,21.9027868316832,4.40913861386139,-0.697029702970297,1435.28217821782,-293.860396039604,-198.121782178218,20,40,10,32,5306934.03754774,397676.651517187,0,0,0,0,0,0,0,21.2648415841584,7276.40531281643,8.81827722772277,4.72907585305643,4.97122623437967,-0.697029702970297,-0.682389494040439,-0.512252124297471,1.21662434976719,0.965226367710413,0.966888434307004,41.7506661751617,-0.0002880081273918,-491.982178217822,-529.608803058524,-972.771882289226,4.23237448236263,-3381.63357215088,-1059.73176955534,0,-3381.63357215088,21.2651098911871,21.2651098911871,-0.0423828273916514,21.25420904554,24.9,1015.19,38.74,24.7888066993892 +45470,2874.45414178218,457.848017425743,45,20.9785247524753,21.6078804950495,4.66139603960396,0.572970297029703,1421.90594059406,-470.467326732673,-377.142574257426,20,40,10,32,5306934.2770179,397682.52327194,0,0,0,0,0,0,0,20.9785247524752,7282.28240981864,9.32279207920792,4.99963765782325,5.16946668547994,0.572970297029703,0.587610505959562,0.460389925065463,0.893106822860495,0.708559100244858,0.818514269227873,41.3615671950554,-0.00540015238859631,-847.609900990099,-1044.6917361043,-876.794826483585,4.29027993875176,-6025.94479837969,-3080.57894913473,0,-6025.94479837969,20.9717592392902,20.9717592392902,-0.123085699659071,20.8727156018183,24.9,1015.19747524752,38.6911633663366,26.8077588848837 +45471,2874.4542219802,457.852637425742,45,20.4998316831683,21.1148266336634,3.48705940594059,-1.52316831683168,1382.13366336634,-931.538613861386,-794.321782178218,20,40,9.93069306930693,32,5306934.3235204,397688.279848502,0,0,0,0,0,0,0,20.4998316831683,7288.04246353151,6.97411881188119,3.74008845695261,4.14278936954374,-1.52316831683168,-1.50852810790183,-1.07606258466215,1.97677817604928,1.56830530229186,1.39866948028308,40.2046385473225,-0.0212405993951455,-1725.8603960396,-1583.38104107441,-413.593366751751,4.39045273357458,-12165.9396961139,-3505.91631768137,0,-12165.9396961139,20.4947435545535,20.4947435545535,-0.139696271607357,20.5784784164695,24.9,1015.19,38.59,17.5743128898204 +45472,2874.45448059406,457.857117821782,45,20.0493663366337,20.6508473267327,4.52483168316832,-3.47584158415842,1338.48514851485,140.568316831683,156.357425742574,20,40,10,32,5306934.70360032,397693.868417197,0,0,0,0,0,0,0,20.0493663366336,7293.66666564922,9.04966336633663,4.85316387757563,4.99968935262399,-3.47584158415842,-3.46120137522856,-2.66197641259361,0.884906290564917,0.702053090396817,0.777877362022576,38.9349547177158,-0.00964827226762542,296.925742574257,214.205185766101,144.360066032429,4.48896513258403,2025.36403766666,-933.226462375578,0,2025.36403766666,20.0878168806979,20.0878168806979,-0.0370865056802707,20.3569953457342,24.9,1015.18,38.48,25.325821252661 +45473,2874.45515722772,457.86148019802,45,20.1926336633663,20.7984126732673,4.89310891089109,-3.5,1300.39603960396,902.882178217821,746.543564356436,20,40,10,32,5306935.86061036,397699.323729617,0,0,0,0,0,0,0,20.1926336633663,7299.25080165032,9.78621782178218,5.2481641480092,5.32122923766244,-3.5,-3.48535979107015,-2.72793238449003,0.61635084382651,0.488990777092168,0.484037409633962,37.8269874516395,-0.00554415645229222,1649.42574257426,1609.71218507989,767.528512456465,4.45719053397328,11118.1930031654,825.576440146269,0,11118.1930031654,20.1862867365944,20.1862867365944,0.0331585138711857,20.2237206227826,24.9,1015.17,38.37,28.4266647291682 +45474,2874.45648376238,457.865532871287,45,20.2019108910891,20.8079682178218,5.01083168316832,-3.5,1265.00495049505,838.814851485148,674.777227722772,20,40,10,32,5306938.22830802,397704.414670305,0,0,0,0,0,0,0,20.2019108910891,7304.86426193635,10.0216633663366,5.3744291554147,5.4219255386924,-3.5,-3.48535979107015,-2.74059905867554,0.551508036161614,0.437546806135554,0.442475501379289,36.7975024002775,-0.0168484754524205,1513.59207920792,1541.35046564062,1325.33867626251,4.45506396509895,9928.88537810346,-72.5803117006,0,9928.88537810346,20.2078947162043,20.2078947162043,-0.002499754925986,20.2411802707417,24.9,1015.16,38.26,29.5012668311383 +45475,2874.45851405941,457.868852970297,45,20.3172475247525,20.9267649504951,5.42893069306931,-3.5,1251.91089108911,982.70198019802,788.180198019802,20,40,9.74257425742574,32,5306941.91580115,397708.616344845,0,0,0,0,0,0,0,20.3172475247524,7310.48425506066,10.8578613861386,5.82286639113544,5.78428141856861,-3.5,-3.48535979107015,-2.77926724912446,0.531451322667613,0.421634524980136,0.42108862804397,36.4166116518018,0.00288008127391803,1770.88217821782,1604.07162042937,926.841402455368,4.42987787035529,11428.7231352797,1388.5004811414,0,11428.7231352797,20.3142857562984,20.3142857562984,0.0554725026958148,20.3433526534829,24.9,1015.15,38.15,33.5801610529807 +45476,2874.46110257426,457.87123,45,20.4555247524752,21.0691904950495,5.16091089108911,-3.5,1140.91089108911,586.926732673267,430.833663366337,20,40,9.93069306930693,32,5306946.65813713,397711.661813089,0,0,0,0,0,0,0,20.4555247524752,7316.15286663932,10.3218217821782,5.53539845585647,5.56416355567156,-3.5,-3.48535979107015,-2.75026026243917,0.502940239924889,0.399014848791248,0.408716472312214,33.1877525356123,-0.103250913669962,1017.7603960396,732.66287618861,148.848016387461,4.39995772114518,5740.32003289177,981.766918237471,0,5740.32003289177,20.4679296147436,20.4679296147436,0.0413507934951899,20.3379563838495,24.9,1015.14,38.04,31.0320753076558 +45477,2874.46405881188,457.872382871287,45,20.5166435643564,21.1321428712871,5.50591089108911,-3.5,914.316831683168,-854.045544554455,-1059.12277227723,20,40,10,32,5306952.10865843,397713.194740622,0,0,0,0,0,0,0,20.5166435643564,7321.85651061621,11.0118217821782,5.90543244938421,5.86121475058104,-3.5,-3.48535979107015,-2.78112148237611,0.577320706482198,0.458025658148677,0.476227637202189,26.5963985321235,-0.00684019302555534,-1913.16831683168,-1479.16117047348,-615.952671307077,4.38694998348292,-8919.66953349686,-1795.61001321541,0,-8919.66953349686,20.4907186550338,20.4907186550338,-0.0717086560141174,20.1854144394595,24.9,1015.13,37.93,34.4961341591337 +45478,2874.46705,457.872228811881,45,19.9952079207921,20.5950641584158,5.94676237623763,-3.5,893.509900990099,-797.817821782178,-1001.48910891089,20,40,10,32,5306957.65278176,397713.101113825,0,0,0,0,0,0,0,19.9952079207921,7327.49363666132,11.8935247524753,6.37827313228895,6.20642096921222,-3.5,-3.48535979107015,-2.83197478030763,0.939949444423662,0.745722365532209,0.76089124719454,25.9911494524096,-0.00532815035674837,-1799.30693069307,-1817.51011665523,-678.666310037893,4.50207363530873,-8418.80457042294,-4723.31256173264,0,-8418.80457042294,19.976275169101,19.976275169101,-0.188843141739914,19.9146312580447,24.9,1015.12,37.82,38.6910841837829 +45479,2874.4697509901,457.870882970297,45,19.4053168316832,19.9874763366337,5.76272277227723,-3.5,866.653465346535,-776.864356435644,-985.176237623762,20,40,10,32,5306962.68567618,397711.513667841,0,0,0,0,0,0,0,19.4053168316831,7332.9494954897,11.5254455445545,6.18087919135931,6.01600388866406,-3.5,-3.48535979107015,-2.83064540965495,0.906296137786546,0.719023032304986,0.717131553496311,25.2099274068594,-0.00936026414023361,-1762.04059405941,-1597.14649544162,515.036620463836,4.63816944800311,-8241.08311779698,-3124.20463520795,0,-8241.08311779698,19.405043917263,19.405043917263,-0.124809386879281,19.8429484539217,24.9,1015.11,37.71,36.400069475508 +45480,2874.47204752475,457.868396633663,45,19.1478217821782,19.7222564356436,5.40672277227723,-3.4229702970297,870.618811881188,1456.04554455446,1179.67425742574,20,40,10,32,5306966.99456579,397708.492527882,0,0,0,0,0,0,0,19.1478217821782,7338.28382703536,10.8134455445545,5.79904701253069,5.69836626362694,-3.4229702970297,-3.40833008809985,-2.74377107352586,0.67403222926076,0.534753131065981,0.530875068368186,25.3252746618798,0.0128883637007832,2635.7198019802,2521.368983433,2410.96259349991,4.70084718658549,12584.0465949807,3662.192562953,0,12584.0465949807,19.2486638564846,19.2486638564846,0.146266978182964,20.1209807257078,24.9,1015.10252475248,37.610099009901,32.6278494823527 +45481,2874.47382475247,457.864922178218,45,20.4538316831683,21.0674466336634,5.79661386138614,-3.5,919.019801980198,3171.20198019802,2684.83267326733,20,40,10,32,5306970.36334267,397704.223697829,0,0,0,0,0,0,0,20.4538316831683,7343.76568465362,11.5932277227723,6.21722949584619,6.10496137214565,-3.5,-3.48535979107015,-2.80876471999794,0.718051491338028,0.569676443633467,0.543916596387523,26.7332023926346,0.00892825194914591,5856.03465346534,5897.64949514753,4434.82739305975,4.40208307961518,27556.913086007,10234.1368468456,0,27556.913086007,20.4446576806195,20.4446576806195,0.409215055168888,20.7585306697846,24.9,1015.11,37.57,37.4161044032926 +45482,2874.47486455446,457.860551485149,45,21.9237920792079,22.5815058415842,5.76339603960396,-3.38435643564356,986.633663366337,3855.23564356436,3233.76633663366,20,40,10,32,5306972.38594827,397698.814444392,0,0,0,0,0,0,0,21.9237920792079,7349.65355704085,11.5267920792079,6.18160131251184,6.16103548112114,-3.38435643564356,-3.36971622671371,-2.67893858694181,0.54403653116698,0.43161918054703,0.438280399061881,28.7000098945932,0.0231846542550402,7089.00198019802,7075.49007940398,6495.87615719935,4.10666671361962,33413.3182534391,10062.8487839081,0,33413.3182534391,21.9103945691599,21.9103945691599,0.402121524033589,21.8610003561079,24.9,1015.12,37.54,38.0692163494873 +45483,2874.47490227723,457.855604455445,128.762376237624,23.3204752475248,24.0200895049505,6.0020792079208,-3.16148514851485,861.024752475248,3998.65445544555,3344.82277227723,20,40,10,32,5306972.56508953,397692.654486061,0,0,0,0,0,0,0,23.3204752475247,7355.93942024218,12.0041584158416,6.43760388051221,6.44431988459708,-3.16148514851485,-3.146844939585,-2.49556260105998,0.568263107333029,0.450839682026628,0.445935365993617,25.0461947864371,-0.071858027784255,7343.47722772277,7308.90080384276,7457.37941337288,3.86062663146347,28308.2094546233,8943.58600306089,0,28308.2094546233,23.3055863150671,23.3055863150671,0.358796523216673,23.2018114772564,24.9,1015.13,37.51,41.628581157211 +45484,2874.47393158416,457.850512871287,225,24.4369702970297,25.1700794059406,6.30134653465346,-3.03950495049505,803.217821782178,4347.24158415842,3619.87524752475,20,40,10,32,5306970.87949333,397686.281365023,0,0,0,0,0,0,0,24.4369702970297,7362.57978099575,12.6026930693069,6.75858673281152,6.76301176978104,-3.03950495049505,-3.0248647415652,-2.39638046318942,0.536387066499376,0.425550368100976,0.431947033913233,23.3646593346601,0.0167044713887246,7967.11683168317,7974.71948828547,7831.40426921903,3.68372582885627,27430.3521986709,8142.25772447166,0,27430.3521986709,24.4530245074012,24.4530245074012,0.325482795804332,24.5655858524301,24.9,1015.14,37.48,45.8561298897011 +45485,2874.47219049505,457.845581584158,225,25.8534158415842,26.6290183168317,7.01235643564357,-1.73247524752475,881.049504950495,4743.40297029703,3971.12772277228,20,40,10,32,5306967.76332158,397680.08256793,0,0,0,0,0,0,0,25.8534158415841,7369.55253479113,14.0247128712871,7.52118914759739,7.44938348817646,-1.73247524752475,-1.7178350385949,-1.37758011725725,0.64461015428195,0.511410706127885,0.514978738417261,25.628691224087,0.0215286075225373,8714.53069306931,8586.13407509068,7851.59733544773,3.48264785113502,31096.7403322916,11230.2197670735,0,31096.7403322916,25.8710374473091,25.8710374473091,0.448932021915065,25.9340350248332,24.9,1015.15,37.45,55.69753436545 +45486,2874.46997227723,457.840641584158,225,27.4030594059406,28.2251511881188,7.18569306930693,-1.01029702970297,1127.84653465347,3550.21287128713,2946.97920792079,20,40,10,32,5306963.7635405,397673.85723554,0,0,0,0,0,0,0,27.4030594059406,7376.9648875139,14.3713861386139,7.70710348608756,7.68576973294524,-1.01029702970297,-0.995656820773113,-0.800049918357799,0.67064419377366,0.532065184546158,0.6160456138672,32.8077258115188,0.148108179511235,6497.19207920792,6955.66042544848,8835.96574118994,3.2848854689285,27498.1320842578,10145.2364264984,0,27498.1320842578,27.4113274188805,27.4113274188805,0.403442200655711,27.6178598039077,24.9,1015.16,37.42,59.2777037240823 +45487,2874.46739673267,457.835651287129,225,29.3720495049505,30.253210990099,5.72924752475247,-0.696138613861386,1479.89603960396,5987.78811881188,4990.94356435643,20,40,10,32,5306959.10298385,397667.55751119,0,0,0,0,0,0,0,29.3720495049504,7384.81085602325,11.4584950495049,6.1449749028784,6.55946413254962,-0.696138613861386,-0.681498404931526,-0.54902372552345,2.08042996905952,1.65053893808346,1.41172741694075,43.0484307971892,0.0341289630959287,10978.7316831683,10565.5973433977,9728.70569803626,3.06698671732625,57940.5135738862,19644.9715924796,0,57940.5135738862,29.4386918929516,29.4386918929516,0.785150420982693,29.8320749316354,24.9,1015.17,37.39,43.5048627846363 +45488,2874.46450693069,457.830263663366,225,32.6146633663366,33.5931032673267,7.1339603960396,-0.817722772277228,1647.15346534653,6437.66138613862,5170.59702970297,20,40,9.42574257425743,32,5306953.86909867,397660.752603964,0,0,0,0,0,0,0,32.6146633663366,7393.42107464261,14.2679207920792,7.65161697105865,7.94070008613481,-0.817722772277228,-0.80308256334737,-0.620367102213261,1.56091670381129,1.23837564208426,1.45580141081523,47.9137520932189,0.0462973064782324,11608.2584158416,11591.1675816096,11067.1431845995,2.76178776886498,61394.8558025334,22314.544771786,0,61394.8558025334,32.602021076365,32.602021076365,0.891700432419469,32.5858038601844,24.9,1015.18,37.36,63.8896905987154 +45489,2874.46129792079,457.824356237624,225,35.7299108910891,36.8018082178218,7.54963366336634,-0.382376237623762,1804.77227722772,5824.09603960396,4846.82178217822,20,40,9.91089108910891,32,5306948.05542289,397653.289812361,0,0,0,0,0,0,0,35.7299108910891,7402.92119901004,15.0992673267327,8.09745244674454,8.47288260974304,-0.382376237623762,-0.367736028693905,-0.272563927619238,1.90669413388132,1.51270312281124,1.38016762424422,52.4986974772327,0.0533535055993316,10670.9178217822,10653.5467699245,10395.1104595019,2.52048560808434,56445.684335101,20897.8778696279,0,56445.684335101,35.7172695814135,35.7172695814135,0.834900445490094,35.6424024238772,24.9,1015.19,37.33,72.1104226041359 +45490,2874.4577780198,457.817944950495,225,38.5035247524753,39.6586304950495,9.62457425742575,-0.639108910891089,1895.5099009901,4672.91485148515,3915.52673267327,20,40,10,32,5306941.67701239,397645.189258571,0,0,0,0,0,0,0,38.5035247524752,7413.2499084985,19.2491485148515,10.3229555028391,10.3974560382996,-0.639108910891089,-0.624468701961232,-0.492818094144386,1.18675473188876,0.941528878197557,0.987435475058076,55.1381479607149,-0.0386650911023496,8588.44158415842,8882.87976668954,9297.59768139825,2.33825754738905,44376.8535999985,17230.9869148295,0,44376.8535999985,38.4800611704734,38.4800611704734,0.6898860678147,38.4000153518579,24.8987376237624,1015.19873762376,37.310099009901,109.132168625012 +45491,2874.45402168317,457.811093168317,225,40.8586930693069,42.0844538613861,9.14909900990099,-0.839405940594059,1489.67821782178,4709.48118811881,4232.01386138614,20,40,10,32,5306934.87038684,397636.532304499,0,0,0,0,0,0,0,40.8586930693069,7424.27427533018,18.298198019802,9.81297867772263,10.1285323820693,-0.839405940594059,-0.824765731664202,-0.61988689305808,2.1556357739573,1.71020454144419,1.67395981788489,43.3329828270523,-0.0754581293766525,8941.49504950495,8721.21565532791,8731.29563351441,2.20342175738922,34253.318963072,16731.1684755311,0,34253.318963072,40.8710663660425,40.8710663660425,0.670394514698994,40.8858770256435,24.89,1015.2,37.35,104.895723817424 +45492,2874.45006277228,457.803802772277,225,43.3254356435644,44.6251987128713,12.6841287128713,-0.446633663366337,1534.28712871287,4595.9,4320.67227722772,20,40,10,32,5306927.69823017,397627.322402219,0,0,0,0,0,0,0,43.3254356435643,7435.9696096536,25.3682574257426,13.604518266793,13.2774704851619,-0.446633663366337,-0.431993454436479,-0.351111804273893,1.75564497421158,1.39286610675806,1.43634761225254,44.630603445016,0.0304568594716832,8916.57227722772,8875.3001470444,8802.0052851094,2.07790124863907,33065.6114083384,17103.0857762619,0,33065.6114083384,43.3222967356141,43.3222967356141,0.683717010314892,43.3214117877831,24.88,1015.2,37.4,176.989925181807 +45493,2874.44590920792,457.796061980198,225,45.7536930693069,47.1263038613861,13.9767326732673,-0.702871287128713,1625.09405940594,4398.07425742574,4177.5198019802,20,40,9.88118811881188,32,5306920.17547749,397617.545134252,0,0,0,0,0,0,0,45.7536930693069,7448.34884504965,27.9534653465346,14.9909165436483,14.5167338196015,-0.702871287128713,-0.688231078198855,-0.567102084802087,2.40057234994249,1.90452848506973,1.93571208101914,47.27206998539,0.0270727639748295,8575.59405940594,8572.01619449074,8563.70147741906,1.96749957257384,31895.8368675608,16413.0521297739,0,31895.8368675608,45.7503510440152,45.7503510440152,0.65615979914823,45.7307357117938,24.87,1015.2,37.45,211.084262539835 +45494,2874.44155009901,457.787893267327,225,48.0316039603961,49.4725520792079,14.9971782178218,-1.28752475247525,1703.14851485149,4224.45643564356,3935.33663366337,20,40,9.55445544554455,32,5306912.28146071,397607.228130214,0,0,0,0,0,0,0,48.031603960396,7461.38166001114,29.9943564356436,16.0854079640225,15.5156172391111,-1.28752475247525,-1.27288454354539,-1.04115078567658,2.85798336207615,2.26742206834956,2.260330110683,49.5425820576833,0.024912703019391,8159.79306930693,8164.87471816489,8180.7447710256,1.87409657388484,30299.7095506171,15278.2098411706,0,30299.7095506171,48.0231025389667,48.0231025389667,0.610795237939633,48.0098584878655,24.86,1015.2,37.5,241.084001470234 +45495,2874.43700445545,457.779328910891,225,50.1609108910892,51.6657382178218,15.8594158415842,-0.490990099009901,1778.78217821782,4100.26435643564,3772.03168316832,20,40,9.30693069306931,32,5306904.05068202,397596.412210611,0,0,0,0,0,0,0,50.1609108910891,7475.02545206284,31.7188316831683,17.0102115329809,16.3714146698396,-0.490990099009901,-0.476349890080044,-0.387485782521134,3.19066975403291,2.5313635863346,2.46804144719847,51.7426761428293,0.0215286075225373,7872.29603960396,7869.32968336438,7868.90518560881,1.79448244594005,29233.5472862619,14351.659410607,0,29233.5472862619,50.15843672189,50.15843672189,0.573778169896196,50.1455053792219,24.85,1015.2,37.55,268.433259594931 +45496,2874.43227306931,457.770387425743,225,52.1693762376238,53.7344575247525,15.8534851485148,0.579405940594059,1849.22772277228,3951.64158415842,3627.20099009901,20,40,9.02970297029703,32,5306895.48420202,397585.120456771,0,0,0,0,0,0,0,52.1693762376237,7489.24380151278,31.7069702970297,17.0038504951814,16.4815059320771,0.579405940594059,0.594046149523917,0.489444179002737,2.65748362215567,2.10835272560021,2.19518538305391,53.7918539692219,0.0128883637007832,7578.84257425742,7577.36692481129,7572.83013481905,1.72534945077949,28133.5526537961,13458.7560215486,0,28133.5526537961,52.1606609155964,52.1606609155964,0.538178446557533,52.149360886429,24.84,1015.2,37.6,272.039943333715 +45497,2874.42737455446,457.761093069307,225,54.0220792079208,55.6427415841584,16.7681881188119,-0.344158415841584,1913.12376237624,3756.8306930693,3491.31584158416,20,40,9,32,5306886.61596638,397573.383688259,0,0,0,0,0,0,0,54.0220792079207,7503.9989586635,33.5363762376238,17.9849264168936,17.3662539342616,-0.344158415841584,-0.329518206911727,-0.264734151174429,3.10962428030824,2.46706499800073,2.47351381610507,55.6505144193449,0.022032621745473,7248.14653465347,7241.01456719929,7168.01237807812,1.66613647137867,26879.5846735677,12516.2338141349,0,26879.5846735677,54.0215237721791,54.0215237721791,0.500356718840202,54.0145849028661,24.83,1015.2,37.65,302.100435323443 +45498,2874.4223290099,457.751459009901,225,55.7488613861386,57.4213272277228,16.9231485148515,0.734455445544555,1887.04455445545,3363.40495049505,3179.74554455445,20,40,9,32,5306877.4829169,397561.218962812,0,0,0,0,0,0,0,55.7488613861385,7519.25298113324,33.846297029703,18.1511310956912,17.5968772624893,0.734455445544555,0.749095654474411,0.613084118344258,2.82780377897162,2.24347866348135,2.16712396811756,54.8919010117949,-0.115779267211505,6543.15049504951,6534.76090579355,6663.39898546876,1.61448712754421,23099.4588300294,11134.7628765878,0,23099.4588300294,55.7426187628663,55.7426187628663,0.446730440370766,55.7268374146374,24.82,1015.2,37.7,310.104899210216 +45499,2874.41715356436,457.741517227723,225,57.3040891089109,59.0232117821782,16.8026138613861,0.0505940594059406,1467.9504950495,3346.88415841584,3174.9702970297,20,40,9,32,5306868.11607722,397548.666670134,0,0,0,0,0,0,0,57.3040891089108,7534.95701806943,33.6052277227723,18.021850170531,17.5836427699817,0.0505940594059406,0.0652342683357983,0.0589551464996914,2.30659435998749,1.82996969960209,1.84548555538135,42.700948991491,-0.0104402946179529,6521.85445544554,6553.99487305166,6528.62340969406,1.57066270364782,17505.2587419188,11067.8126058391,0,17505.2587419188,57.3113960396039,57.3113960396039,0.442821509873755,57.3181495955258,24.81,1015.2,37.75,309.583866296754 +45500,2874.41187138614,457.73124029703,225,58.9054455445544,60.6726089108911,17.3320594059406,-0.40039603960396,1513.81188118812,3413.22277227723,3151.42178217822,20,40,9,32,5306858.55897232,397535.693411392,0,0,0,0,0,0,0,58.9054455445543,7551.10218058318,34.6641188118812,18.5897135015656,18.1263178844799,-0.40039603960396,-0.385755830674103,-0.315125264456324,2.42264701862964,1.92204173990421,1.92298411992591,44.0350026375698,0.0084962397580582,6564.64455445545,6552.59187334575,6539.34175599412,1.52794740507901,17666.6477770322,10912.4085147721,0,17666.6477770322,58.9057154200568,58.9057154200568,0.436414185973044,58.9054432957828,24.8025247524752,1015.2,37.8050495049505,329.146316535316 +45501,2874.40643722772,457.72068990099,225,60.5000297029703,62.3150305940594,17.8737326732673,-0.0507920792079209,1541.59900990099,3428.46633663366,3062.9495049505,20,40,9,32,5306848.7264261,397522.374518282,0,0,0,0,0,0,0,60.5000297029702,7567.68649598472,35.7474653465346,19.1706918270616,18.6788312214156,-0.0507920792079209,-0.0361518702780632,-0.0321667860872199,2.5404767934944,2.01552368083578,2.04391932620643,44.8432974470949,0.00756021334403484,6491.41584158415,6492.13660425449,6490.21501140635,1.48768266199685,17321.2571485216,10980.4020120325,0,17321.2571485216,60.4958092343887,60.4958092343887,0.439144038166197,60.4878012377269,24.81,1015.2,37.89,349.359336029897 +45502,2874.40084306931,457.709882277228,225,62.011495049505,63.8718399009901,18.5122871287129,0.476930693069307,1580.9900990099,3375.89405940594,2988.01683168317,20,40,9,32,5306838.60322624,397508.729946582,0,0,0,0,0,0,0,62.0114950495049,7584.70673652377,37.0245742574258,19.8555812625209,19.3083604654204,0.476930693069307,0.491570901999163,0.398183043434462,2.81845899982616,2.23606484899264,2.1674071685364,45.9891377819232,0.0149764226243738,6363.91089108911,6364.06215076953,6362.19049091376,1.45140642051904,16990.0107985819,10390.2523965277,0,16990.0107985819,62.0119821586118,62.0119821586118,0.415465804006141,62.0157740975666,24.82,1015.2,37.98,373.191856050022 +45503,2874.39505495049,457.698885148515,225,63.5096831683168,65.4149736633663,18.372603960396,0.16970297029703,1619.9900990099,3318.51485148515,2905.9,20,40,9,32,5306828.12496981,397494.842921128,0,0,0,0,0,0,0,63.5096831683167,7602.14383426855,36.7452079207921,19.7057623622285,19.2755757105998,0.16970297029703,0.184343179226887,0.15403165466224,2.30068161216101,1.82527873635709,1.92739159478742,47.1236017957195,0.0131043697963271,6224.41485148515,6224.86390549946,6226.3512635388,1.41716080826687,16625.8529087869,10123.2179188574,0,16625.8529087869,63.5085174002548,63.5085174002548,0.404802361424265,63.5026590613233,24.83,1015.2,38.07,371.883810419913 +45504,2874.38912247525,457.687642079208,225,64.9362079207921,66.8842941584158,19.1749900990099,-1.02019801980198,1654.05940594059,3216.78415841584,2890.92079207921,20,40,9,32,5306817.38479141,397480.644782168,0,0,0,0,0,0,0,64.936207920792,7619.98570121024,38.3499801980198,20.5663714846128,20.0398369993218,-1.02019801980198,-1.00555781087212,-0.816582819312286,2.74551216882286,2.17819143495257,2.09765280721671,48.1146377620747,0.00100802844587131,6107.70495049505,6105.48208999118,6104.35092278363,1.38602547375374,16292.8131260643,9841.27462000883,0,16292.8131260643,64.935256053328,64.935256053328,0.393641963206223,64.9352774714768,24.84,1015.2,38.16,401.939115558398 +45505,2874.38306059406,457.676146138614,225,66.3438712871287,68.3341874257426,19.0656831683168,-0.198811881188119,1689.55940594059,3138.70396039604,2818.12079207921,20,40,9,32,5306806.4105402,397466.127386258,0,0,0,0,0,0,0,66.3438712871286,7638.22215090771,38.1313663366337,20.4491329916139,20.0276529990606,-0.198811881188119,-0.184171672258261,-0.149385760440038,2.29001186811368,1.81681374197063,1.84606657589989,49.147290902838,0.00727220521664304,5956.82475247525,5961.49376531713,5962.92542632106,1.35661168874078,15885.4336785447,9517.11995651509,0,15885.4336785447,66.3327886481716,66.3327886481716,0.380614917927438,66.3322847822783,24.85,1015.2,38.25,401.376827430897 +45506,2874.37685742574,457.664427524753,225,67.7013861386139,69.7324277227723,19.0237722772277,-1.1570297029703,1723.93564356436,3102.36831683168,2738.43663366337,20,40,9,32,5306795.17954191,397451.327949395,0,0,0,0,0,0,0,67.7013861386137,7656.84042323994,38.0475445544554,20.4041809498689,20.0697436017751,-1.1570297029703,-1.14238949404044,-0.92354324993873,1.97521598871736,1.56706591857875,1.58658227618,50.1472551211424,0.0111603149364324,5840.80495049505,5842.19405940594,5842.52710489094,1.32941048379003,15575.0104122879,9299.43467584512,0,15575.0104122879,67.6931088128614,67.6931088128614,0.371869860253347,67.6903724410034,24.86,1015.2,38.34,403.270740268847 +45507,2874.37051891089,457.652481782178,225,69.0223960396039,71.0930679207921,17.9265049504951,-1.13910891089109,1757.92079207921,3017.22475247525,2733.10198019802,20,40,9,32,5306783.70290137,397436.24111446,0,0,0,0,0,0,0,69.0223960396039,7675.83080671079,35.8530099009901,19.2272933821055,19.2119822539258,-1.13910891089109,-1.12446870196123,-0.882056149121045,1.65022523004706,1.30922984157535,1.41682628619393,51.1358430184147,0.00208805892359058,5750.32673267327,5747.08956965004,5746.82079889142,1.30396895210392,15336.781377713,9123.24995862721,0,15336.781377713,69.0183129104989,69.0183129104989,0.364909758302564,69.0154091089177,24.87,1015.2,38.43,370.525148170524 +45508,2874.36408871287,457.64026029703,225,70.304396039604,72.4135279207921,18.0155324532673,-1.82871287128713,1789.67326732673,2942.94851485149,2698.84851485148,20,40,9,32,5306772.0625771,397420.807768449,0,0,0,0,0,0,0,70.3043960396039,7695.18262491761,36.0310649065347,19.3227809252493,19.3611994472291,-1.82871287128713,-1.81407266235727,-1.42608126914699,1.87488484447231,1.48746676708519,1.40897866255999,52.0594850829602,0.0113043190001283,5641.79702970297,5646.05771983139,5646.06719317235,1.28019213383662,15039.4067983772,8921.01788420032,0,15039.4067983772,70.309629742182,70.309629742182,0.356732455423763,70.3088093918895,24.88,1015.2,38.52,377.194223153814 +45509,2874.35751366337,457.627847722772,225,71.568396039604,73.7154479207921,20.1692178217822,-0.305049504950495,1820.88118811881,2882.89405940594,2666.7702970297,20,40,9,32,5306760.15821063,397405.131590696,0,0,0,0,0,0,0,71.5683960396039,7714.89206416404,40.3384356435644,21.6327426577531,21.2666721410908,-0.305049504950495,-0.290409296020638,-0.232952631269527,2.09686173317932,1.66357531369066,1.63463630063921,52.9672867004992,0.011736331191216,5549.66435643564,5546.96752279188,5546.72081029079,1.25757240502118,14786.1878061531,8652.77254184547,0,14786.1878061531,71.5686514067248,71.5686514067248,0.345998213682767,71.5694797399235,24.89,1015.2,38.61,452.852391039433 +45510,2874.35080990099,457.615240495049,225,72.771198019802,74.954333960396,18.7372673267327,-0.990594059405941,1852.80198019802,2812.26831683168,2624.3198019802,20,40,9,32,5306748.01977723,397389.208669943,0,0,0,0,0,0,0,72.7711980198019,7734.94483745887,37.4745346534654,20.0968865411816,20.1167845278465,-0.990594059405941,-0.975953850476082,-0.768666733011151,1.84426743806603,1.46317600882451,1.58240514772637,53.8958249032103,0.00698419708925124,5436.58811881188,5438.71230271542,5439.47585098608,1.23677740817073,14495.3149737388,8384.97896755205,0,14495.3149737388,72.7887941378295,72.7887941378295,0.33533204805627,72.7902305671737,24.8987376237624,1015.2,38.6861138613861,406.276076417439 +45511,2874.34402148515,457.602383663367,225,73.9740495049505,76.193270990099,18.808598459901,-1.43910891089109,1884.43069306931,2757.5405940594,2576.0198019802,20,40,9,32,5306735.73010965,397372.972014458,0,0,0,0,0,0,0,73.9740495049504,7755.33220891102,37.617196919802,20.1733936254399,20.2462082958803,-1.43910891089109,-1.42446870196123,-1.13252209434652,2.22032950178986,1.76153023777882,1.64870687754967,54.8158668661635,0.00626417677077172,5333.5603960396,5333.66643466327,5333.6411494808,1.21665953276754,14228.1683323174,8078.73684280571,0,14228.1683323174,73.9737023821193,73.9737023821193,0.323089239617036,73.9757096820546,24.9,1015.2,38.68,412.70519350328 +45512,2874.33714306931,457.589298019802,225,75.1400396039604,77.3942407920792,19.4515841584158,-0.786633663366337,1912.19801980198,2718.35940594059,2500.16732673267,20,40,9,32,5306723.27884612,397356.447341014,0,0,0,0,0,0,0,75.1400396039603,7776.04555459308,38.9031683168317,20.8630358451578,20.8602751356615,-0.786633663366337,-0.771993454436478,-0.612346773561681,1.52847468063462,1.21263729795364,1.25305201051735,55.6235856594338,0.0168484754524205,5218.52673267327,5218.36079796098,5218.25094935773,1.19777743036351,13907.0807049392,7685.65692906331,0,13907.0807049392,75.1350029408881,75.1350029408881,0.30726426603057,75.131248891734,24.9,1015.2,38.66,435.852612325744 +45513,2874.33012366337,457.57606960396,225,76.2662376237624,78.5542247524752,19.7614455445545,-1.19029702970297,1940.80693069307,2655.05445544555,2448.3297029703,20,40,9,32,5306710.56963083,397339.740127188,0,0,0,0,0,0,0,76.2662376237623,7797.07125104523,39.5228910891089,21.1953814861807,21.1886426913521,-1.19029702970297,-1.17565682077311,-0.926363634256666,1.53823652642961,1.22038199824724,1.20194738355804,56.4557851435324,0.00165604673250287,5103.38415841584,5100.7964023135,5100.219340318,1.18009574767058,13599.457152734,7645.24073945596,0,13599.457152734,76.242223801588,76.242223801588,0.305793821956444,76.2397375608277,24.9,1015.2,38.64,449.933668518876 +45514,2874.32300534653,457.562642574257,225,77.314900990099,79.634348019802,18.7859207920792,-1.71910891089109,1965.16831683168,2565.41584158416,2366.41089108911,20,40,9,32,5306697.68164846,397322.782206447,0,0,0,0,0,0,0,77.3149009900989,7818.40072439506,37.5718415841584,20.1490704138805,20.4190171500781,-1.71910891089109,-1.70446870196123,-1.33112769507213,2.03840516709841,1.61719795903891,1.53119722991676,57.16442914098,0.00756021334403485,4931.82673267327,4955.32337025782,4963.18860963019,1.1640931054847,13127.7728922138,7390.34957445093,0,13127.7728922138,77.3098650132339,77.3098650132339,0.29554155910641,77.3089865448082,24.9,1015.2,38.62,417.986774566206 +45515,2874.31579247525,457.549023960396,225,78.3406138613861,80.6908322772277,19.3953069306931,-0.683861386138614,1780.33663366337,2617.80891089109,2381.78316831683,20,40,9,32,5306684.62281492,397305.582474624,0,0,0,0,0,0,0,78.340613861386,7840.02316413653,38.7906138613861,20.8026750123493,20.9959892849083,-0.683861386138614,-0.669221177208756,-0.529849469723415,1.64544589877773,1.30543809060303,1.3627995417522,51.7878934188297,-0.0722180379434948,4999.59207920792,4987.59087344378,4979.18157541862,1.14884784776893,11885.7543567702,7168.55844242543,0,11885.7543567702,78.3482339966669,78.3482339966669,0.287383317539661,78.3490018827063,24.9,1015.2,38.6,441.329561658256 +45516,2874.30846683168,457.535249207921,225,79.3789504950495,81.760319009901,19.5683366336634,-1.34178217821782,1725.28712871287,2517.04653465347,2333.96732673267,20,40,9,32,5306671.35860069,397288.184475182,0,0,0,0,0,0,0,79.3789504950494,7861.93156520914,39.1366732673267,20.9882601485493,21.2024129608527,-1.34178217821782,-1.32714196928796,-1.04789139249637,1.83066790908381,1.45238662756266,1.47768390191767,50.1865682305313,0.00295208330576598,4851.01386138614,4853.70956768944,4855.34621046175,1.13381783540039,11041.4503613849,6866.35606926865,0,11041.4503613849,79.3721653759434,79.3721653759434,0.274629938241364,79.3711881188118,24.9,1015.2,38.58,450.192601107598 +45517,2874.30105683168,457.521284950495,225,80.3518217821782,82.7623764356436,19.1369647965347,-0.848118811881188,1746.83168316832,2477.61881188119,2329.15940594059,20,40,9,32,5306657.94238348,397270.547584306,0,0,0,0,0,0,0,80.3518217821781,7884.11662791541,38.2739295930693,20.5255869787287,20.8917541697569,-0.848118811881188,-0.833478602951331,-0.647978651728668,2.3579394901351,1.87070509461657,1.84160750383888,50.8132739157359,0.00741620928033894,4806.77821782178,4806.31445936673,4806.23284858503,1.1200916178776,10943.1532020619,6722.8445428877,0,10943.1532020619,80.3494596608175,80.3494596608175,0.268852999161295,80.3484728328608,24.9,1015.2,38.56,437.58974518919 +45518,2874.29356950495,457.507134851485,225,81.3199702970297,83.7595694059405,18.550591309604,-1.62881188118812,1765.57920792079,2461.76534653465,2294.2396039604,20,40,9,32,5306644.38710564,397252.676593566,0,0,0,0,0,0,0,81.3199702970296,7906.57032813543,37.1011826192079,19.8966648828801,20.4478592885703,-1.62881188118812,-1.61417167225826,-1.24059875336843,3.01717779939569,2.39372125718549,2.44570096666202,51.3586173049523,0.00979227633132132,4756.00495049505,4752.9726301343,4753.00189353674,1.10675846824645,10813.6462263439,6556.98661262933,0,10813.6462263439,81.3098304087833,81.3098304087833,0.262199239725962,81.3095143081131,24.9,1015.2,38.54,418.991175117471 +45519,2874.28601564356,457.492784554455,225,82.2428217821782,84.7101064356436,18.4404378431683,0.271188118811881,1785.74752475248,2315.1504950495,2181.23861386139,20,40,9,32,5306630.7130785,397234.553975015,0,0,0,0,0,0,0,82.2428217821781,7929.28910726085,36.8808756863366,19.7785184275581,20.407302558849,0.271188118811881,0.285828327741739,0.218654097688971,3.30792435061769,2.6243892013328,2.64860626155762,51.9452898604494,0.00259207314652623,4496.38910891089,4454.64181942947,4447.88941774911,1.09433933399249,10224.664823171,6144.67275681039,0,10224.664823171,82.2273531026369,82.2273531026369,0.245765665675471,82.2263046598237,24.9,1015.2,38.52,416.905584408537 +45520,2874.27838762376,457.478282178218,225,82.9666138613861,85.4556122772277,19.5570693064357,-0.221980198019802,1798.69306930693,1802.89207920792,1776.42574257426,20,40,9,32,5306616.90511475,397216.239406687,0,0,0,0,0,0,0,82.966613861386,7952.24420761839,39.1141386128713,20.9761752381422,21.3991797609624,-0.221980198019802,-0.207339989089945,-0.178963684392712,3.39466342319739,2.69320488793375,2.69496586321232,52.3218604870142,-0.000504014222935661,3579.31782178218,3601.91458680521,3605.12818602962,1.08478242297201,8126.41043637502,4174.6697859525,0,8126.41043637502,82.9719415743554,82.9719415743554,0.166990708971884,82.9704706149513,24.9,1015.2,38.5037871287129,462.093936264237 +45521,2874.27066861386,457.463727425742,225,83.4678712871287,85.9719074257426,20.6925500546535,0.269405940594059,1805.29207920792,1505.15445544554,1523.05148514851,20,40,9,32,5306602.92982539,397197.856511929,0,0,0,0,0,0,0,83.4678712871286,7975.36767279991,41.3851001093069,22.1940490811477,22.3938734520795,0.269405940594059,0.284046149523918,0.245596082607132,2.55776718000878,2.02924125682773,1.92418588598942,52.5138179039208,0.00489613816566066,3028.20594059406,3039.56455249485,3041.23100470898,1.07826246525644,6858.88134608167,2894.57594169284,0,6858.88134608167,83.4684278992254,83.4684278992254,0.115743009944563,83.4680974232636,24.9,1015.2,38.51,504.62378762982 +45522,2874.26293326733,457.449068811881,225,83.8376237623762,86.3527524752475,20.2041490648515,-1.55663366336634,1817.0099009901,1342.94257425743,1399.96237623762,20,40,9,32,5306588.92663795,397179.343627464,0,0,0,0,0,0,0,83.8376237623761,7998.60857896052,40.408298129703,21.6702085921642,21.9993089888266,-1.55663366336634,-1.54199345443648,-1.20170037782217,2.37907454175269,1.88747289077988,1.85704226626802,52.854675522689,0.00338409549685369,2742.90495049505,2744.07023821194,2744.87128093157,1.07350532843884,6225.45511932522,2320.52217559214,0,6225.45511932522,83.8413193804528,83.8413193804528,0.0927931902101059,83.8412991409746,24.9,1015.2,38.52,485.40723127703 +45523,2874.25519247525,457.43432029703,225,84.13699009901,86.6610998019802,21.2206083608911,-0.901188118811881,1824.57425742574,1221.85445544554,1297.60396039604,20,40,9,32,5306574.91541779,397160.718499606,0,0,0,0,0,0,0,84.1369900990098,8021.94085734335,42.4412167217822,22.7604245126625,22.881885277932,-0.901188118811881,-0.886547909882023,-0.695436512712215,1.71805406958684,1.36304282372347,1.49957401208776,53.0747137320163,0.00360010159239754,2519.45841584158,2527.49783354573,2527.76417137041,1.06968515882315,5721.46568174488,1615.90830201388,0,5721.46568174488,84.1343697676697,84.1343697676697,0.064606955745083,84.1337827334134,24.9,1015.2,38.53,524.609824049178 +45524,2874.24744089109,457.419504455445,225,84.402900990099,86.934988019802,23.2614752475248,0.948415841584158,1829.08415841584,1179.37227722772,1160.53267326733,20,40,9,32,5306560.88576106,397142.00906765,0,0,0,0,0,0,0,84.4029009900989,8045.34745552817,46.5229504950495,24.9493813947482,24.633522261498,0.948415841584158,0.963056050514017,0.780355354980123,2.05799894920744,1.63274296694413,1.64523983918253,53.2059014340433,0.00403211378348525,2339.90495049505,2333.73913341829,2333.78831691981,1.06631679324362,5309.98694558478,1473.48266969079,0,5309.98694558478,84.3710360748945,84.3710360748945,0.0589062619133252,84.3703349169629,24.9,1015.2,38.54,607.325093346152 +45525,2874.23963009901,457.404694356436,225,84.5321485148515,87.068112970297,23.2678811881188,-0.0976237623762375,1831.68316831683,1049.53267326733,1102.73168316832,20,40,9,32,5306546.74636288,397123.304741429,0,0,0,0,0,0,0,84.5321485148513,8068.80815990111,46.5357623762376,24.956252165126,24.6465216501019,-0.0976237623762375,-0.0829835534463806,-0.0531309268515745,2.42082726258305,1.92059801035917,1.97501885553778,53.2815035674836,-0.0036721036242455,2152.26435643564,2151.38919713754,2151.32734312417,1.06468700519769,4884.00429847933,1055.21142303773,0,4884.00429847933,84.5319670620526,84.5319670620526,0.0422385060288051,84.5326222968357,24.9,1015.2,38.55,609.257823325812 +45526,2874.23180108911,457.389833267327,225,84.6456732673267,87.1850434653466,22.1312673267327,1.61257425742574,1833.83168316832,979.547524752476,1009.79207920792,20,40,9,32,5306532.57441125,397104.536211879,0,0,0,0,0,0,0,84.6456732673266,8092.30847257989,44.2625346534653,23.7371629876544,23.6852394242795,1.61257425742574,1.6272144663556,1.29628239616811,2.28815467437322,1.8153403106945,1.76275136980108,53.3440013311277,1.37403839681331E-18,1989.3396039604,1993.49049112832,1993.78706658383,1.06325749874604,4513.74479350262,950.172493514026,0,4513.74479350262,84.6624414273109,84.6624414273109,0.0380068947488844,84.6631526858693,24.9,1015.2,38.56,563.549965230209 +45527,2874.2240119802,457.374957623763,225,84.7580792079208,87.3008215841584,23.0249207920792,1.76376237623762,1834.28712871287,915.810891089109,967.018811881188,20,40,9,32,5306518.47675344,397085.750780269,0,0,0,0,0,0,0,84.7580792079207,8115.84262926305,46.0498415841584,24.6956620039213,24.4527682464093,1.76376237623762,1.77840258516748,1.42870328539867,1.87525347963459,1.48775922907542,1.42965501396758,53.3572497049877,-0.000792022350327459,1882.8297029703,1879.65123027154,1879.33578500707,1.06184603773947,4267.10352119921,470.924977969128,0,4267.10352119921,84.7661371434172,84.7661371434172,0.0188434685052818,84.7665267326731,24.9,1015.2,38.57,598.666287040927 +45528,2874.21618475248,457.360101089109,225,84.8418613861386,87.3871172277228,23.0001782178218,0.196534653465347,1838.33168316832,843.99801980198,902.925742574257,20,40,9,32,5306504.30812192,397066.987797804,0,0,0,0,0,0,0,84.8418613861385,8139.40022090221,46.0003564356436,24.6691240515658,24.4366086539369,0.196534653465347,0.211174862395204,0.172569925791656,1.81433504412482,1.43942871502237,1.45491453215486,53.4749010250273,-0.00468013207011681,1746.92376237624,1754.42584060386,1754.95244695898,1.06079720353362,3963.84696769704,497.154535543627,0,3963.84696769704,84.8435777864914,84.8435777864914,0.0199245172041858,84.8436343234323,24.9,1015.2,38.58,597.693404732164 +45529,2874.20835366337,457.345219207921,225,84.8725742574257,87.4187514851485,22.514897689901,0.146138613861386,1839.29702970297,818.553465346535,902.974257425743,20,40,9,32,5306490.13296109,397048.193025295,0,0,0,0,0,0,0,84.8725742574256,8162.97419529716,45.029795379802,24.1486304523549,24.0251526907514,0.146138613861386,0.160778822791243,0.13246648067573,2.2374639383857,1.77512408866742,1.7896557904301,53.5029818174479,0.00482413613381271,1721.52772277228,1720.2829036369,1720.12873173032,1.06041429264336,3907.05243399031,30.9099013678961,0,3907.05243399031,84.8815171061659,84.8815171061659,0.00119677809366758,84.8815586044317,24.9,1015.2,38.59,579.552768451148 +45530,2874.20052643565,457.33031950495,225,84.9324257425742,87.4803985148515,20.9758751375247,-1.6380198019802,1838.02475247525,809.462376237624,873.158415841584,20,40,9,32,5306475.96540923,397029.376090134,0,0,0,0,0,0,0,84.9324257425741,8186.55658201332,41.9517502750495,22.4979328837026,22.7192185749217,-1.6380198019802,-1.62337959305034,-1.27458582669672,2.62573163615598,2.08316183235536,2.12249405104478,53.4659727730781,0.00482413613381271,1682.62079207921,1683.65633761396,1683.75237152287,1.05966620476151,3813.26583919066,239.530382720242,0,3813.26583919066,84.9148405058327,84.9148405058327,0.0095415482142259,84.9143845355963,24.9,1015.2,38.5936881188119,519.396399510925 +45531,2874.19269871287,457.315408019802,225,84.9443168316832,87.4926463366336,19.6484636968317,0.361287128712871,1837.56435643564,798.212871287129,885.987128712871,20,40,9,32,5306461.79726265,397010.544370792,0,0,0,0,0,0,0,84.9443168316831,8210.14734854248,39.2969273936634,21.0742014157198,21.59084733526,0.361287128712871,0.375927337642728,0.300626439850363,2.85537117469503,2.2653496520461,2.23405170975072,53.4525803951544,-0.00720020318479508,1684.2,1680.2265758259,1680.0709476662,1.05951799955939,3815.46117037388,-0.796924998080728,0,3815.46117037388,84.9331966473874,84.9331966473874,2.7230445819486E-05,84.932654502593,24.9,1015.2,38.56,467.214008405198 +45532,2874.18484257426,457.300487227723,225,84.9691782178218,87.5182535643565,20.3052821782178,-0.771782178217822,1838.16831683168,790.361386138614,883.550495049505,20,40,9,32,5306447.57674751,396991.70002679,0,0,0,0,0,0,0,84.9691782178217,8233.74113998911,40.6105643564356,21.7786801568507,22.1509940140795,-0.771782178217822,-0.757141969287963,-0.585528759323995,2.62178562707865,2.0800312094894,1.95927532854549,53.4701488909253,0.00129603657326312,1673.91188118812,1674.13767277718,1674.07091937765,1.05920927941211,3792.19322211129,180.526268030437,0,3792.19322211129,84.9509130477403,84.9509130477403,0.00721062205229178,84.9502171617161,24.9,1015.2,38.52,492.945815855751 +45533,2874.17702069307,457.285546831683,225,84.9309801980198,87.4789096039604,22.368099559901,-1.37118811881188,1839.33663366337,781.568316831683,866.665346534653,20,40,9,32,5306433.42018547,396972.832305191,0,0,0,0,0,0,0,84.9309801980197,8257.33865695831,44.736199119802,23.9911803123946,23.9035475828426,-1.37118811881188,-1.35654790988202,-1.07794526677742,1.95204559756248,1.54868335661775,1.64435393863996,53.5041338499575,0.00158404470065493,1648.23366336634,1654.75724928929,1655.09374823197,1.05968606184329,3738.07908151031,122.0070894538,0,3738.07908151031,84.9411998823644,84.9411998823644,0.0048674421897644,84.9417487977368,24.9,1015.2,38.48,573.066402353739 +45534,2874.16923148515,457.270596831683,225,84.933198019802,87.4811939603961,21.0904851485148,0.171584158415842,1840.89603960396,820.316831683168,870.996039603961,20,40,9,32,5306419.32441992,396953.953609411,0,0,0,0,0,0,0,84.9331980198019,8280.93500030265,42.1809702970297,22.6208592607024,22.8164948397952,0.171584158415842,0.186224367345699,0.144069839368907,2.167225829781,1.71939967837073,1.63144909012006,53.5494951300217,-0.00453612800642091,1691.31287128713,1687.96140574453,1687.71614332862,1.05965671610526,3838.9201312514,79.8450386022076,0,3838.9201312514,84.9538268797176,84.9538268797176,0.00323089239617341,84.9544137670909,24.9,1015.2,38.44,522.278859445615 +45535,2874.16140970297,457.255612970297,225,84.9781485148515,87.527492970297,21.8685445544555,0.388019801980198,1841.0297029703,825.544554455445,842.155445544554,20,40,9,32,5306405.16912973,396935.03156704,0,0,0,0,0,0,0,84.9781485148514,8304.53605544566,43.7370891089109,23.4553764467372,23.4809712686118,0.388019801980198,0.402660010910055,0.314960563466964,1.61998644838894,1.28523947068606,1.37327816306155,53.5533832397415,0.00734420724849099,1667.7,1669.62436035683,1669.64815652994,1.05909597582889,3783.60406471278,132.548788686082,0,3783.60406471278,84.9814236839524,84.9814236839524,0.00524186081974959,84.9815671852899,24.9,1015.2,38.4,552.046994405192 +45536,2874.15360683168,457.240677920792,225,85.0332277227723,87.5842245544555,22.6702178217822,-0.957326732673267,1840.88613861386,815.732673267327,821.873267326733,20,40,9,32,5306391.04784378,396916.170855706,0,0,0,0,0,0,0,85.0332277227721,8328.1477877339,45.3404356435644,24.3152209702541,24.1671094918297,-0.957326732673267,-0.942686523743409,-0.75043477764881,2.09309128624776,1.66058397556965,1.62218426006393,53.5492071218943,0.00216006095543853,1637.60594059406,1639.00547985492,1638.97723715229,1.05841009487979,3712.72547974723,417.068117308852,0,3712.72547974723,85.0274724046661,85.0274724046661,0.0166650328399067,85.0273693540781,24.9,1015.2,38.36,585.929079284581 +45537,2874.14577673267,457.225742673267,225,85.078801980198,87.631166039604,21.7429625962376,-0.995544554455446,1844.29702970297,791.925742574258,821.60099009901,20,40,9,32,5306376.87618771,396897.308903929,0,0,0,0,0,0,0,85.0788019801979,8351.7737517878,43.4859251924752,23.3206819727825,23.3799808605577,-0.995544554455446,-0.980904345525588,-0.757170910962914,2.50721075157295,1.98913158962201,2.0463157571218,53.6484259217808,0.00252007111467828,1613.52673267327,1607.93452602686,1607.37271098538,1.05784322985892,3662.8860658433,524.536280716027,0,3662.8860658433,85.0826299382412,85.0826299382412,0.0209606356675225,85.0829844413012,24.9,1015.2,38.32,550.129861287654 +45538,2874.13789485149,457.210816336633,225,85.1420099009901,87.6962701980199,19.3876815184158,-1.07831683168317,1843.37623762376,688.156435643564,772.733663366337,20,40,9,32,5306362.60847544,396878.456244157,0,0,0,0,0,0,0,85.1420099009899,8375.41893875149,38.7753630368317,20.7944962826182,21.3799285936614,-1.07831683168317,-1.06367662275331,-0.819276071376901,3.23014798651503,2.56268420797894,2.58556723212957,53.6216411659334,-0.00180005079619877,1460.8900990099,1459.94481913538,1459.81035360679,1.05705771782828,3312.20382397229,102.864387152417,0,3312.20382397229,85.1440866581706,85.1440866581706,0.00412949710812262,85.1438050919376,24.9,1015.2,38.28,458.241293595567 +45539,2874.13002861386,457.195878514852,225,85.1478811881188,87.7023176237624,19.0013047311881,-1.15207920792079,1843.18316831683,605.449504950495,659.840594059406,20,40,9,32,5306348.37005668,396859.58970344,0,0,0,0,0,0,0,85.1478811881187,8399.07030170529,38.0026094623762,20.3800831070116,21.0509504991679,-1.15207920792079,-1.13743899899094,-0.870157547161791,3.56807464587415,2.83078316722476,2.62191833027224,53.6160250074493,-0.000576016254783607,1265.2900990099,1274.47966865994,1275.18562942008,1.05698474405937,2868.51999417123,-72.0739524371527,0,2868.51999417123,85.1431055778844,85.1431055778844,-0.00287825812284733,85.1429195662422,24.9,1015.2,38.24,443.762410346227 +45540,2874.12218326733,457.180955742574,225,85.1201188118812,87.6737223762376,21.0581683168317,-0.625742574257426,1842.0495049505,585.651485148515,657.435643564357,20,40,9,32,5306334.17006095,396840.742506586,0,0,0,0,0,0,0,85.1201188118811,8422.71831553918,42.1163366336634,22.586197445381,22.799479633854,-0.625742574257426,-0.611102365327568,-0.467133744681936,2.41036189277116,1.91229515920203,2.01516415570223,53.5830480768629,-0.0133923779237189,1243.08712871287,1243.11642976179,1243.22322489392,1.0573295288763,2816.98811517164,-115.430695902791,0,2816.98811517164,85.1227163023232,85.1227163023232,-0.0045080003049644,85.1228935407825,24.9,1015.2,38.2113613861386,522.289917739781 +45541,2874.11432455446,457.166036138614,225,85.1085742574257,87.6618314851485,22.038504950495,1.6290099009901,1841.13366336634,656.632995871287,662.933979585148,20,40,9,32,5306319.94529609,396821.89872044,0.811881188118812,0.811881188118812,2154049.2265644,161083.587623236,1.91470053098197,0,0,85.1085742574256,8446.36207563269,44.0770099009901,23.6376695600361,23.6332895575495,1.6290099009901,1.64365010991996,1.29516401865999,2.58500301060547,2.05084919344633,2.05414580217118,53.5564073250791,0.00799222553512255,1319.56697545644,1315.61478652216,1315.66885409862,1.05747304914427,2989.31435802775,-133.936831907783,0,2989.31435802775,85.1069967650229,85.1069967650229,-0.00542294328442405,85.1070355492691,24.9,1015.2,38.25,562.10747764284 +45542,2874.10645376238,457.151127425743,225,85.1084653465347,87.6617193069307,22.806099009901,1.2060396039604,1841.88613861386,694.069016336634,676.872897116832,20,40,9,32,5306305.69797423,396803.068006772,2,2,5306305.95315035,396802.860106711,21.2361359616099,0,0,85.1084653465345,8470.00156875701,45.612198019802,24.4609620099205,24.286136837445,1.2060396039604,1.22067981289025,0.980056544609547,1.83634430616009,1.456890078552,1.49838606547129,53.5782959427609,0.00050401422293566,1370.94191345347,1369.75455742736,1369.54537109326,1.05747427601509,3106.97560443413,-32.2671077674917,0,3106.97560443413,85.1005969022643,85.1005969022643,-0.00129480769858763,85.1003659594529,24.9,1015.2,38.3,590.658691511061 +45543,2874.09858079208,457.136217920792,225,85.090702970297,87.6434240594059,22.9151089108911,1.14623762376238,1841.68316831683,686.879022080198,659.965906672277,20,40,9,32,5306291.44669562,396784.23614119,2,2,5306291.04575525,396784.562800002,44.8374465481009,0,0,85.0907029702969,8493.63953380102,45.8302178217822,24.577881920058,24.3783124345816,1.14623762376238,1.16087783269224,0.932241760440712,1.71242318728359,1.35857548253175,1.31462261780067,53.5723917761494,-0.0167044713887246,1346.84492875248,1346.97732018758,1346.98786794341,1.05769539243922,3052.65294917645,-51.5487497494267,0,3052.65294917645,85.095643662386,85.095643662386,-0.00192519251924939,85.0953891560584,24.9,1015.2,38.35,594.803936578538 +45544,2874.09069613861,457.121320792079,225,85.0842772277228,87.6368055445544,22.3047227722772,1.11475247524753,1841.98514851485,668.767509703961,656.88119229901,20,40,9,32,5306277.17356035,396765.419210917,2,2,5306276.13695378,396766.263767111,68.4409837010707,0,0,85.0842772277227,8517.27370539068,44.6094455445545,23.9232047592891,23.8588685135262,1.11475247524753,1.12939268417738,0.901586214451272,1.44888412117457,1.14949298670723,1.20104452863633,53.5811760240348,0.00165604673250287,1325.64870200297,1326.6705183351,1326.75192744563,1.05777492959274,3005.34571111326,-119.20008045033,0,3005.34571111326,85.0775186746396,85.0775186746396,-0.00478166628543762,85.0775533239037,24.9,1015.2,38.4,569.724811135197 +45545,2874.08281237624,457.106423861386,225,85.0895445544554,87.6422308910891,21.7101089108911,0.138910891089109,1840.60396039604,656.386120163367,670.454826168317,20,40,9,32,5306262.90213159,396746.602463604,2,2,5306261.22892273,396747.965679836,92.0433011231524,0,0,85.0895445544553,8540.90737582523,43.4202178217822,23.2854443484611,23.3527097738945,0.138910891089109,0.153551100018967,0.130482906574602,1.76204719588732,1.3979454010978,1.37906473632318,53.5409988902637,0.0080642275669705,1326.84094633168,1327.81273433506,1327.89015763946,1.05771008682007,3005.60570155098,151.644665803275,0,3005.60570155098,85.0835618076658,85.0835618076658,0.00600022873573499,85.08343941537,24.9,1015.2,38.45,546.39678085609 +45546,2874.07491495049,457.09154029703,225,85.0880891089109,87.6407317821783,20.2678564355445,-0.586237623762376,1842.02475247525,661.118245907921,688.20727189703,20,40,9,32,5306248.60515588,396727.801819095,2,2,5306246.31858473,396729.664761009,115.649270904147,0,0,85.0880891089108,8564.54318971411,40.5357128710891,21.7385387162068,22.1254599250829,-0.586237623762376,-0.57159741483252,-0.448472453070093,2.41444115730238,1.91553150219249,1.87453105016622,53.5823280565444,-0.0180725099938357,1349.32551780495,1349.35382006984,1349.35607493913,1.05772792021883,3058.93645286445,-24.6995759824553,0,3058.93645286445,85.0874369179491,85.0874369179491,-0.00084005925345558,85.0874967468175,24.9,1015.2,38.5,490.644469413371 +45547,2874.0669860396,457.076673465347,225,85.0622079207921,87.6140741584158,20.1836644663366,-0.746930693069307,1842.9702970297,678.613192340594,693.817012748515,20,40,9,32,5306234.24954592,396709.020879393,2,2,5306231.39450305,396711.346973222,139.276999601935,0,0,85.062207920792,8588.17711793194,40.3673289326733,21.6482375840649,22.0526230747682,-0.746930693069307,-0.73229048413945,-0.570719723914104,2.4194393700789,1.91949690594612,1.91493626480136,53.6098328327103,0.00921626007653772,1372.43020508911,1371.48900064768,1371.41401396554,1.05804934725421,3113.8732265464,-54.555210334815,0,3113.8732265464,85.0765730810703,85.0765730810703,-0.00225740395820646,85.0768360207448,24.9,1015.2,38.55,486.971866519225 +45548,2874.0590539604,457.061792772277,225,85.0585148514851,87.6102702970297,20.915002200198,0.642376237623762,1841.27722772277,692.78618640495,682.126478863367,20,40,9,32,5306219.88843639,396690.222475393,2,2,5306216.45967524,396693.015995665,162.921741506443,0,0,85.058514851485,8611.80731630929,41.830004400396,22.4326428660308,22.6745591899411,0.642376237623762,0.657016446553619,0.521049657465188,1.85944191695302,1.47521489916958,1.62925102068386,53.5605834429263,0.00705619912109918,1374.91266526832,1373.86729313859,1373.78400731463,1.05809552038952,3116.76754920489,-154.75949144213,0,3116.76754920489,85.0591389079501,85.0591389079501,-0.00624802579268077,85.0595629420084,24.9,1015.2,38.6,514.755581441162 +45549,2874.05119574257,457.046849207921,225,85.0770891089109,87.6294017821782,19.7614796478218,0.486435643564357,1839.47524752475,690.606642713861,663.883893175248,20,40,9,32,5306205.66560619,396671.348115104,2,2,5306201.54282096,396674.707078768,186.538027829791,0,0,85.0770891089108,8635.43615932359,39.5229592956436,21.1954180640596,21.6943811194066,0.486435643564357,0.501075852494214,0.375306761471354,2.77606203051334,2.20242860564474,2.01686456887962,53.508165963741,-0.0147604165288299,1354.49053588911,1354.30210639169,1354.28709402834,1.0578642001622,3066.80310386153,-13.4878194970392,0,3066.80310386153,85.0710724438779,85.0710724438779,-0.000417987343293624,85.0704915605845,24.9,1015.2,38.65,471.493785963644 +45550,2874.04331544554,457.031952178218,225,85.0364851485149,87.5875797029703,19.5333954892079,-0.356336633663366,1839.38613861386,674.078423686139,655.861404833663,20,40,9,32,5306191.40090016,396652.530892913,2,2,5306186.63723948,396656.411998094,210.136467101713,0,0,85.0364851485148,8659.06283292095,39.0667909784158,20.9507835942848,21.4977160534342,-0.356336633663366,-0.341696424733509,-0.263783008729871,2.96689042380994,2.35382504691516,2.27761005541511,53.5055738905945,0.00403211378348525,1329.9398285198,1330.78158286018,1330.84864625529,1.05836934060966,3012.51595735343,-185.336853630346,0,3012.51595735343,85.0386693461425,85.0386693461425,-0.00744616540861695,85.0388469589815,24.9,1015.2,38.6823267326733,462.897697865894 +45551,2874.03547782178,457.017044356436,225,85.0143267326732,87.5647565346534,21.9536397138614,-0.667920792079208,1840.62871287129,658.397497675247,665.434852630693,20,40,9,32,5306177.21554088,396633.701550866,2,2,5306171.75737941,396638.148487829,233.694184367031,0,0,85.0143267326731,8682.68198146329,43.9072794277228,23.5466463066354,23.5560302599427,-0.667920792079208,-0.653280583149351,-0.516953061043541,1.95315402457735,1.54956274307886,1.6534393800688,53.5417189105822,0.00813622959881845,1323.83235030594,1324.93038343007,1325.01786480712,1.05864522514095,3001.48190938775,5.67290264425681,0,3001.48190938775,85.0209283403587,85.0209283403587,0.000160659630319131,85.0212839226779,24.9,1015.2,38.61,556.821900147117 +45552,2874.02760871287,457.002167722772,225,85.0110198019802,87.5613503960396,21.3576688669307,-0.0169306930693069,1839.4603960396,657.980835726733,683.80245280594,20,40,9,32,5306162.97122458,396614.909919398,1.24752475247525,2,5306156.87253472,396619.878353435,68.1100441737758,0,0,85.0110198019801,8706.29879559969,42.7153377338614,22.9074304442705,23.04892092064,-0.0169306930693069,-0.00229048413944934,-0.00471600961978399,1.92033643569749,1.52352643851403,1.52081212180366,53.5077339515499,-0.0118083332230639,1341.78328853267,1342.1280738502,1342.15554323497,1.05868686588251,3040.37081329638,-69.0184838873596,0,3040.37081329638,85.0213823154592,85.0213823154592,-0.00266449912318323,85.0214509193775,24.9,1015.2,38.52,532.982403649535 +45553,2874.01970950495,456.987318415842,225,85.0122376237624,87.5626047524753,20.8987040704951,-0.311287128712871,1840.70792079208,673.211514934653,694.077118468317,20,40,9,32,5306148.67060472,396596.151234478,1,2,5306141.98204195,396601.600097477,29.4654680414694,0,0,85.0122376237623,8729.91432417505,41.7974081409901,22.4151621065496,22.6583132115156,-0.311287128712871,-0.296646919783014,-0.228670750613364,2.30346369169973,1.82748593903912,1.86413134648895,53.5440229756013,0.00770421740773074,1367.28863340297,1366.56317687887,1366.50537904526,1.05867183200716,3100.22118274499,-146.328002018873,0,3100.22118274499,85.0117908048229,85.0117908048229,-0.00591581435371589,85.0117087223007,24.9,1015.2,38.43,515.496842921312 +45554,2874.01179524753,456.972487524753,225,85.0206831683169,87.5713036633663,20.6834405941584,0.0431683168316831,1841.26732673267,690.086519057426,686.812369384158,20,40,9,32,5306134.34175679,396577.414895922,1,2,5306127.09131189,396583.321498324,53.0417491003976,0,0,85.0206831683168,8753.52741303642,41.3668811883168,22.1842786172467,22.4753574834194,0.0431683168316831,0.0578085257615399,0.0352288951702854,3.05627192469358,2.4247371418892,2.36835817824397,53.5602954347989,0.00511214426120451,1376.89888844158,1375.77017146274,1375.68024547275,1.05856634241528,3122.65112815848,1.82416028138338,0,3122.65112815848,85.0033091853739,85.0033091853739,3.13150127073557E-05,85.0031765205091,24.9,1015.2,38.34,509.2155417442 +45555,2874.00391059406,456.957612475248,225,85.0026831683168,87.5527636633663,19.9347167217822,-1.22435643564356,1839.12376237624,693.091047133663,668.687382367327,20,40,9,32,5306120.06879144,396558.624442589,1,2,5306112.19637562,396565.037735967,76.6246898135129,0,0,85.0026831683167,8777.13971006612,39.8694334435644,21.3812256185657,21.837348555734,-1.22435643564356,-1.20971622671371,-0.935759990365918,2.72709682246756,2.16358135594498,2.24114924776774,53.4979416752186,-0.00957627023577746,1361.77842950099,1361.284189251,1361.24481264495,1.05879022744067,3085.42470130806,-17.0648600727906,0,3085.42470130806,85.0038624644641,85.0038624644641,-0.000604515897151917,85.0035818010372,24.9,1015.2,38.25,478.237970482323 +45556,2873.9960180198,456.942749207921,225,84.9892475247524,87.538924950495,19.7793580857426,-1.60059405940594,1840.50495049505,679.462749911881,656.366186890099,20,40,9,32,5306105.78095103,396539.848309269,1,2,5306097.3025176,396546.755297189,100.205923333536,0,0,84.9892475247524,8800.74999515961,39.5587161714851,21.2145938025577,21.7040913918533,-1.60059405940594,-1.58595385047608,-1.23195464763565,2.78366469331153,2.20846028715681,2.19796143912337,53.5381188089898,0.0039601117516373,1335.82893680198,1336.42357548577,1336.47095093369,1.05895756170411,3029.35561135413,-43.2817147767349,0,3029.35561135413,84.9879942162532,84.9879942162532,-0.00176317136664212,84.9882458274398,24.9,1015.2,38.16,472.061049900745 +45557,2873.98815534653,456.927848514851,225,85.0131386138613,87.5635327722772,22.2821584158416,-1.67445544554455,1840.0198019802,661.73142100198,661.176833251485,20,40,9,32,5306091.54939362,396521.026457562,1,2,5306082.40872459,396528.472938218,123.787053917263,0,0,85.0131386138613,8824.35990880096,44.5643168316832,23.8990030812507,23.8350866644658,-1.67445544554455,-1.6598152366147,-1.31744847651735,1.70685111073162,1.35415479572576,1.50099049622903,53.5240064107476,0.00676819099370738,1322.90825425347,1324.04506380788,1324.13563454137,1.05866025441875,2998.43633816065,141.54188622682,0,2998.43633816065,85.0102183119301,85.0102183119301,0.00560674879369434,85.0098231966052,24.9,1015.2,38.07,569.080494621297 +45558,2873.98030762376,456.912929009901,225,85.0036534653465,87.5537630693069,20.5461105610891,-1.79514851485149,1842.17326732673,656.199162428713,678.696435373267,20,40,9,32,5306077.34601034,396502.181576939,1,2,5306067.514894,396510.190533109,147.368244010821,0,0,85.0036534653464,8847.97299249182,41.0922211221782,22.0369836011077,22.3567954177733,-1.79514851485149,-1.78050830592163,-1.38531530094203,2.50469834162054,1.98713833317188,1.94342012783643,53.5866481784552,-0.00770421740773075,1334.89559780198,1335.52940076426,1335.57989646876,1.05877818153247,3029.48417534103,-129.005595233306,0,3029.48417534103,85.002494265268,85.002494265268,-0.00509753945692137,85.0024518623289,24.9,1015.2,37.98,501.53443594411 +45559,2873.97248762376,456.897982772277,225,85.0235445544555,87.5742508910891,19.7658580859406,-1.91009900990099,1840.91089108911,667.952307216832,692.817551855446,20,40,9,32,5306063.19463699,396483.304225486,1,2,5306052.62591084,396491.914078291,170.941759241961,0,0,85.0235445544553,8871.58550024759,39.5317161718812,21.200114211719,21.6945110248353,-1.91009900990099,-1.89545880097113,-1.46941091827321,2.84861225054383,2.25998736268427,2.18915203249496,53.5499271422128,-0.00201605689174262,1360.76985907228,1360.31793992562,1360.28193508321,1.05853114951337,3085.36410036166,87.7138386184862,0,3085.36410036166,85.0083229095186,85.0083229095186,0.00352498121098437,85.0079977369164,24.9,1015.2,37.89,471.842612327721 +45560,2873.96470316832,456.882990990099,225,84.9739603960396,87.5231792079208,19.7842293726733,-1.9660396039604,1839.93564356436,686.185068247525,690.557293337624,20,40,9,32,5306049.11018307,396464.371230649,1,2,5306037.7363757,396473.636945913,194.516148409902,0,0,84.9739603960395,8895.19866185375,39.5684587453465,21.2198185612725,21.7071309285384,-1.9660396039604,-1.95139939503054,-1.50696878859471,2.851473890485,2.26225768575206,2.33182388977752,53.5215583416647,0.013176371828175,1376.74236158515,1375.62021270322,1375.53081000001,1.0591492176619,3121.75109483441,89.7538067767529,0,3121.75109483441,84.9987938437407,84.9987938437407,0.00348277401998362,84.9992247053275,24.9,1015.2,37.8050495049505,472.597204227359 +45561,2873.95696891089,456.867933663366,225,84.9843069306931,87.5338361386139,19.0889136411881,-1.16316831683168,1842.17821782178,694.134329116832,673.993731066337,20,40,9,32,5306035.12023936,396445.358166932,1,2,5306022.84533443,396455.357964742,218.092922206703,0,0,84.984306930693,8918.80786812437,38.1778272823762,20.4740491210287,21.1162477198343,-1.16316831683168,-1.14852810790182,-0.881949956789229,3.40212550275214,2.69912503571444,2.60440421829326,53.586792182519,-0.0107283027453447,1368.12806018317,1367.36738007528,1367.30677594426,1.05901931950695,3105.6119425342,-178.378683060037,0,3105.6119425342,84.9890260758748,84.9890260758748,-0.00704723937741201,84.9896693069306,24.9,1015.2,37.75,446.589683081892 +45562,2873.94922722772,456.852892673267,225,85.0051386138613,87.5552927722773,19.1864042905941,-0.421980198019802,1836.86138613861,677.478592686139,670.467435742574,20,40,9,32,5306021.11623697,396426.365113493,0.871287128712871,1.74257425742574,4623057.28230764,345411.563825859,209.222836308108,0,0,85.0051386138612,8942.41693091314,38.3728085811881,20.5786139161918,21.2006732959284,-0.421980198019802,-0.407339989089945,-0.315604913704739,3.29622360108426,2.61510624396489,2.60673533875866,53.4321318181096,-0.00554415645229222,1347.94602842871,1349.5636173384,1349.51566641,1.05875984727727,3050.13884929662,130.735069010882,0,3050.13884929662,85.0025573963336,85.0025573963336,0.00527453735474313,85.002496463932,24.9,1015.2,37.7,449.989735018307 +45563,2873.94146811881,456.837871881189,225,85.015801980198,87.5662760396039,19.2133608359406,-0.964158415841584,1840.5495049505,614.535643564356,708.657425742574,20,40,9,32,5306007.0795659,396407.396547747,0,0,0,0,0,0,0,85.0158019801979,8966.03188448848,38.4267216718812,20.6075264904709,21.2240589047047,-0.964158415841584,-0.949518206911727,-0.733822789577593,3.26212305615751,2.58805208782961,2.54820922352341,53.539414845563,0.0101522864905611,1323.19306930693,1321.32909048842,1321.58492529247,1.05862788101805,3000.09066541253,-22.270650349656,0,3000.09066541253,85.0187876678757,85.0187876678757,-0.00097348843794741,85.0183625648278,24.9,1015.2,37.65,451.04113571459 +45564,2873.93373653465,456.822816930693,225,85.0024158415841,87.5524883168317,19.8296820680198,-0.867425742574257,1840.64356435644,636.223762376238,702.174257425743,20,40,9,32,5305993.09470542,396388.386255553,0,0,0,0,0,0,0,85.0024158415841,8989.64405096262,39.6593641360396,21.2685694087382,21.7478828688024,-0.867425742574257,-0.852785533644399,-0.659961613310458,2.7031369728899,2.1445724658277,2.13164368684953,53.5421509227732,0.00122403454141516,1338.39801980198,1340.3504950495,1340.40428099953,1.0587936644046,3034.85834379396,-156.256870666673,0,3034.85834379396,84.9956318008038,84.9956318008038,-0.00626027949331312,84.9956504479018,24.9,1015.2,37.6,473.624720986445 +45565,2873.92597207921,456.807808613862,225,84.9984851485149,87.5484397029703,19.9001738173267,-0.275445544554455,1840.42574257426,664.875247524752,715.591089108911,20,40,9,32,5305979.04797438,396369.432866811,0,0,0,0,0,0,0,84.9984851485147,9013.25430448295,39.8003476346535,21.3441762015115,21.8083420778245,-0.275445544554455,-0.260805335624598,-0.213425154899044,2.69981343374598,2.14193568840627,2.21375958374234,53.5358147439706,-0.00813622959881845,1380.46633663366,1376.9092049799,1376.75590759076,1.05884270511121,3129.91269599636,-2.03984386230886,0,3129.91269599636,84.9883715322026,84.9883715322026,-1.49767451929981E-05,84.9882746817538,24.9,1015.2,37.55,476.976348932094 +45566,2873.91820524753,456.79276920792,225,84.9675544554455,87.5165810891089,19.3881061607921,0.0824752475247525,1837.47524752475,673.153465346535,715.308910891089,20,40,9,32,5305964.99759856,396350.440580169,0,0,0,0,0,0,0,84.9675544554454,9036.86008649615,38.7762123215842,20.794951738022,21.370370346304,0.0824752475247525,0.0971154564546094,0.0755686272281246,3.20176350561922,2.54016497318008,2.57088930842167,53.4499883220078,0.00259207314652623,1388.46237623762,1391.56804234879,1391.75783121169,1.05922861132201,3144.09312118849,-133.343947197583,0,3144.09312118849,84.9733333986864,84.9733333986864,-0.00535486716988218,84.9733611504007,24.9,1015.2,37.5,458.020251671747 +45567,2873.91045455446,456.777745049504,225,84.9802376237624,87.5296447524753,19.3008800881188,-2.16356435643564,1838.24752475248,715.168316831683,741.720792079208,20,40,9,32,5305950.97683721,396331.467731135,0,0,0,0,0,0,0,84.9802376237623,9060.46294295929,38.6017601762376,20.7013963408885,21.296661895769,-2.16356435643564,-2.14892414750579,-1.66324332236368,3.37069367073778,2.67418814122313,2.56447322557735,53.4724529559444,-0.00273607721022213,1456.88910891089,1448.42324281933,1448.21645450259,1.05907085652094,3299.97773525567,229.508979060693,0,3299.97773525567,84.9837026762081,84.9837026762081,0.00920252916379491,84.9835960396038,24.9,1015.2,37.45,454.996177280644 +45568,2873.90272089109,456.762706930693,225,85.0113960396039,87.5617379207921,20.8412574257426,-0.994752475247525,1840.70297029703,724.064356435644,712.59306930693,20,40,9,32,5305936.98799451,396312.47796651,0,0,0,0,0,0,0,85.0113960396038,9084.072290099,41.6825148514851,22.353547001122,22.6091858922125,-0.994752475247525,-0.980112266317667,-0.773309712654991,2.07167662521448,1.64359434726832,1.83009999742876,53.5438789715376,0.00352809956054959,1436.65742574257,1433.01808646211,1432.86837340877,1.05868202856691,3257.21991525963,174.315295254208,0,3257.21991525963,85.0092529163806,85.0092529163806,0.00694376368331204,85.0093329561526,24.9,1015.2,37.4,512.348905700786 +45569,2873.8949360396,456.747708217822,225,85.0461683168317,87.5975533663366,20.2262816280198,-0.995841584158416,1842.61881188119,718.382178217822,647.470297029703,20,40,9,32,5305922.9035131,396293.535492127,0,0,0,0,0,0,0,85.0461683168316,9107.69172799778,40.4525632560396,21.6939471450227,22.0879639992118,-0.995841584158416,-0.981201375228557,-0.763078709512902,2.71168839323072,2.15135685773628,2.09689868772452,53.5996085441879,-0.00367210362424549,1365.85247524753,1373.71811587099,1374.04922206506,1.05824931127025,3098.94736508589,106.434957257977,0,3098.94736508589,85.0384296637584,85.0384296637584,0.00428743369384983,85.0381826496935,24.9,1015.2,37.35,490.055861722393 +45570,2873.8870909901,456.732777227723,225,85.0222970297029,87.5729659405941,21.5801578657426,-0.978910891089109,1840.43069306931,687.992079207921,685.30495049505,20,40,9,32,5305908.70606904,396274.675280838,0,0,0,0,0,0,0,85.0222970297028,9131.31323072054,43.1603157314851,23.1460637565788,23.2385233174979,-0.978910891089109,-0.964270682159251,-0.751756979810355,2.17062537880358,1.72209675931897,1.71657589704949,53.5359587480343,0.00648018286631558,1373.29702970297,1362.80244093716,1362.27923620933,1.05854629674631,3112.85184976371,32.2994792241964,0,3112.85184976371,85.0323023233015,85.0323023233015,0.00123898528466247,85.0326155586986,24.9012623762376,1015.2,37.3075742574257,542.253575758539 +45571,2873.87921811881,456.717885049505,225,85.0313465346534,87.5822869306931,19.957197469604,0.433366336633663,1840.14356435644,618.669306930693,667.963366336634,20,40,9,32,5305894.45628093,396255.862396921,0,0,0,0,0,0,0,85.0313465346533,9154.93305434541,39.9143949392079,21.405337621157,21.8580138007618,0.433366336633663,0.448006545563521,0.35472600358232,2.75935015179696,2.18916999710702,2.13393743006173,53.52760651234,-0.00338409549685369,1286.63267326733,1292.24034898539,1292.80716643093,1.0584334869367,2915.64248031359,-125.167577379633,0,2915.64248031359,85.0313355553376,85.0313355553376,-0.00497908701759908,85.0314685525694,24.91,1015.2,37.31,479.305558525616 +45572,2873.87133079208,456.70300970297,225,85.0190297029703,87.5696005940594,20.5640396039604,0.0770297029702971,1840.5099009901,615.560396039604,687.345544554455,20,40,9,32,5305880.17939962,396237.069905275,0,0,0,0,0,0,0,85.0190297029702,9178.55268393836,41.1280792079208,22.056213616568,22.3740647711212,0.0770297029702971,0.0916699119001545,0.0816388818005357,2.11892537261371,1.68107981830936,1.70975860385417,53.5382628130535,-0.00252007111467828,1302.90594059406,1302.95365160278,1302.98505421971,1.05858674312366,2953.59929501961,-50.8882082402118,0,2953.59929501961,85.0205478874619,85.0205478874619,-0.00201505299045037,85.0206192362092,24.92,1015.2,37.32,501.508654083044 +45573,2873.86343950495,456.688136633663,225,85.0182475247525,87.5687949504951,19.9281303632673,-0.465643564356436,1837.80693069307,620.886138613862,696.480198019802,20,40,9,32,5305865.89519144,396218.280025267,0,0,0,0,0,0,0,85.0182475247524,9202.16813091304,39.8562607265347,21.3741613387279,21.8327025238605,-0.465643564356436,-0.451003355426579,-0.34328871531768,2.74612395028144,2.17867680054237,2.13797433406394,53.4596365942755,-0.000504014222935653,1317.36633663366,1310.15680815606,1309.68195190948,1.05859637593929,2981.74076068904,158.30602898638,0,2981.74076068904,85.0259375551416,85.0259375551416,0.00633652474156625,85.0260215935878,24.93,1015.2,37.33,478.193636256453 +45574,2873.85554742574,456.673259207921,225,85.0035742574258,87.5536814851485,20.0019460947525,0.535346534653465,1839.79702970297,594.890099009901,664.468316831683,20,40,9,32,5305851.60967379,396199.484599004,0,0,0,0,0,0,0,85.0035742574256,9225.78653044548,40.003892189505,21.4533333094717,21.894390079299,0.535346534653465,0.549986743583324,0.430391899483101,2.78679898192807,2.21094691995951,2.32387430558002,53.5175262278812,0.00842423772621025,1259.35841584158,1270.61475345554,1271.31027817067,1.05877956313403,2854.52609645613,-266.977786650805,0,2854.52609645613,85.0101842956572,85.0101842956572,-0.0107478569639046,85.0106326261196,24.94,1015.2,37.34,481.160033150063 +45575,2873.84766009901,456.658386930693,225,84.9735445544554,87.5227508910891,19.8007194714851,-2.12475247524752,1839.67326732673,639.061386138614,719.985148514852,20,40,9,32,5305837.33290414,396180.695651351,0,0,0,0,0,0,0,84.9735445544553,9249.39651127607,39.6014389429703,21.2375052195827,21.7212442838975,-2.12475247524752,-2.11011226631767,-1.63434395389787,2.73797981431451,2.17221553353009,2.1245676758629,53.5139261262888,-0.00784822147142664,1359.04653465347,1353.56679737281,1353.13519094767,1.05915459282433,3081.18749529299,-211.755914200162,0,3081.18749529299,84.9843266346436,84.9843266346436,-0.00840603862365755,84.9844016030173,24.95,1015.2,37.35,472.599421881426 +45576,2873.83978950495,456.643489108911,225,84.9970297029703,87.5469405940594,20.2888157313861,-0.288019801980198,1838.33168316832,660.991089108911,709.738613861386,20,40,9,32,5305823.08776185,396161.8753478,0,0,0,0,0,0,0,84.9970297029702,9273.00140638058,40.5776314627723,21.7610188667627,22.1381159404015,-0.288019801980198,-0.273379593050341,-0.20499728000506,2.45820299475301,1.95025058324236,1.98606352115778,53.4749010250273,-0.00403211378348525,1370.7297029703,1372.90830310754,1373.15132484677,1.05886108369006,3104.58584352876,-34.794146329715,0,3104.58584352876,84.9806417017938,84.9806417017938,-0.0013587992462514,84.9802271570013,24.96,1015.2,37.36,491.554473114764 +45577,2873.83191504951,456.628590990099,225,84.9852673267326,87.5348253465347,20.841794829505,0.708613861386139,1839.16831683168,677.622772277228,720.631683168317,20,40,9,32,5305808.8355339,396143.054452455,0,0,0,0,0,0,0,84.9852673267326,9296.60608143559,41.6835896590099,22.3541234001374,22.6084541698726,0.708613861386139,0.723254070315996,0.574965701990797,1.91851594916556,1.52208212942798,1.5443267236235,53.4992377117919,0.0116643291593681,1398.25445544555,1400.65462209587,1400.52906176332,1.05900720188992,3168.55921284574,72.0534310336004,0,3168.55921284574,84.9805608273698,84.9805608273698,0.00278703612934844,84.9802209335218,24.97,1015.2,37.37,512.157549233813 +45578,2873.82399584158,456.61376039604,225,85.0046831683169,87.5548236633663,20.0321336630693,-0.103762376237624,1840.87623762376,679.958415841584,736.180198019802,20,40,9,32,5305794.49895525,396124.316086958,0,0,0,0,0,0,0,85.0046831683168,9320.21346658411,40.0642673261386,21.4857113571794,21.9206305160749,-0.103762376237624,-0.0891221673077666,-0.0599201668220735,2.54336828587286,2.01781768776261,1.97718038857617,53.5489191137669,-0.00712820115294714,1416.13861386139,1414.27732575238,1414.01184347006,1.05876590437994,3211.44281876325,105.766993409156,0,3211.44281876325,84.9942608567786,84.9942608567786,0.00428879521614383,84.9939060820367,24.98,1015.2,37.38,481.644259416938 +45579,2873.81607049505,456.598932079208,225,84.9852079207921,87.5347641584159,19.2456430139604,-1.10633663366337,1839.0297029703,670.210891089109,716.749504950495,20,40,9,32,5305780.15101452,396105.580260282,0,0,0,0,0,0,0,84.9852079207919,9343.82326452141,38.4912860279208,20.6421511375795,21.2505128432291,-1.10633663366337,-1.09169642473351,-0.837711171600286,3.22353997256945,2.55744164539197,2.63666273564739,53.4952055980084,-0.00943226617208156,1386.9603960396,1390.20856778747,1390.4733804809,1.05900933997487,3143.22907116766,-125.673069120704,0,3143.22907116766,84.981868934418,84.981868934418,-0.00495049504950123,84.9819991513436,24.99,1015.2,37.39,452.444579409699 +45580,2873.80817574257,456.584058217822,225,84.9444653465347,87.4927993069307,20.0042915291089,0.675841584158416,1835.30198019802,372.782178217822,398.390099009901,20,40,9,32,5305765.86082586,396086.788625959,0,0,0,0,0,0,0,84.9444653465345,9367.42739977994,40.0085830582178,21.4558489339397,21.8930911526358,0.675841584158416,0.690481793088273,0.545295300446987,2.92637710622292,2.32168322566532,2.31173614708233,53.3867705380454,0.0112323169682803,771.172277227724,635.266042544849,623.171994342292,1.0595165214282,1750.45726758427,-1515.54232148869,0,1750.45726758427,84.9135487697283,84.9135487697283,-0.0607130019932601,84.9116196133898,24.9987376237624,1015.2,37.4088366336634,481.548187539132 +45581,2873.80028316832,456.569268910891,225,84.2855049504951,86.8140700990099,20.2669790979208,-1.33544554455446,1812.92574257426,-1890.45841584158,-1652.56336633663,20,40,9,32,5305751.57283511,396068.102300853,0,0,0,0,0,0,0,84.2855049504949,9390.95757929039,40.5339581958416,21.7375977169471,22.0790428853732,-1.33544554455446,-1.3208053356246,-1.01531943225222,2.55915691063737,2.03034381954315,2.04435315446805,52.7358721701399,-0.0124563515096955,-3543.02178217822,-3601.36077835506,-3611.37153949981,1.06782020995243,-7956.62063594979,-10083.2688151921,0,-7956.62063594979,84.2008291343985,84.2008291343985,-0.403229803178355,84.1902845259307,25,1015.2,37.48,489.640516560382 +45582,2873.79251881188,456.554765049505,225,81.824801980198,84.279546039604,18.3707145211881,-1.65990099009901,1747.15346534653,-4561.84158415842,-3849.7198019802,20,40,9,32,5305737.51600212,396049.775742474,0,0,0,0,0,0,0,81.8248019801979,9414.06882604507,36.7414290423762,19.7037358209658,20.3240781898844,-1.65990099009901,-1.64526078116915,-1.27391619831131,3.38131624918553,2.68261571610506,2.48478931295042,50.8226341798761,-0.0258487294334144,-8411.56138613861,-8202.35036761102,-8156.32282981388,1.10004474156854,-18807.8580165355,-20622.7061656063,0,-18807.8580165355,81.8357364964218,81.8357364964218,-0.824699920487088,81.8344696341486,25,1015.2,37.56,414.281246696246 +45583,2873.7850780198,456.540685940594,225,78.9033564356436,81.2704571287129,21.0032271726733,-1.79356435643564,1687.76732673267,-4470.69405940594,-3808.19702970297,20,40,9,32,5305724.04904591,396031.989010324,0,0,0,0,0,0,0,78.9033564356434,9436.38315720569,42.0064543453465,22.5272696454334,22.3962615082843,-1.79356435643564,-1.77892414750579,-1.41999070024548,2.53761854677023,2.01325604982534,1.9974546162202,49.0951614317801,-0.023472662382432,-8278.89108910891,-8286.53085971963,-8288.19479194955,1.14076487622412,-18544.7356739776,-20213.6682423382,0,-18544.7356739776,78.8871449857856,78.8871449857856,-0.808357568430113,78.8867347018691,25,1015.2,37.64,504.736705639736 +45584,2873.77790990099,456.527108316832,225,76.0074653465347,78.2876893069306,20.6878316831683,-2.05168316831683,1626.77722772277,-4460.96336633663,-3811.34950495049,20,40,9,32,5305711.07597154,396014.836001721,0,0,0,0,0,0,0,76.0074653465345,9457.89099873485,41.3756633663366,22.188988333775,21.9619801441592,-2.05168316831683,-2.03704295938698,-1.62146158833927,1.91810191145291,1.52175364667358,1.67040440947875,47.3210313670466,-0.0201605689174263,-8272.31287128713,-8277.32945789628,-8278.42135928936,1.18422429651543,-18540.5048035247,-19825.8514792097,0,-18540.5048035247,76.002859523576,76.002859523576,-0.792871613894064,76.0020262461633,25,1015.2,37.72,483.987171011238 +45585,2873.77098405941,456.514061287129,225,73.1147227722772,75.3081644554455,17.3131364136634,-1.56316831683168,1560.5099009901,-4466.86732673267,-3852.93168316832,20,40,9,32,5305698.5398161,395998.351972041,0,0,0,0,0,0,0,73.1147227722771,9478.6002452695,34.6262728273267,18.5694174134443,18.9245457434661,-1.56316831683168,-1.54852810790183,-1.2104288174074,2.21566593575022,1.75783033081093,1.84179028110314,45.3933929704133,-0.0150484246562217,-8319.79900990099,-8314.10730320557,-8313.79612284546,1.23109745518724,-18594.5469176195,-19957.7756634191,0,-18594.5469176195,73.1252810508773,73.1252810508773,-0.798189719962096,73.1263612158146,25,1015.2,37.8,359.383384597273 +45586,2873.76426752475,456.501529306931,225,70.2139405940594,72.3203588118812,15.6176633662376,-0.431485148514851,1508.86633663366,-4554.67722772277,-3783.71881188119,20,40,9,32,5305686.37985069,395982.516464593,0,0,0,0,0,0,0,70.2139405940593,9498.50645643562,31.2353267324752,16.7509169419731,17.3156124240202,-0.431485148514851,-0.416844939584994,-0.30407427216065,3.08428757354373,2.44696375849757,2.26092224001283,43.8911425779376,-0.0177845018664439,-8338.39603960396,-8332.30187236545,-8329.37210402496,1.28199029582928,-18764.6835900309,-20203.4508560562,0,-18764.6835900309,70.230788059994,70.230788059994,-0.80799404197846,70.2336241961872,25,1015.2,37.88,300.875178291812 +45587,2873.75791405941,456.489471485149,225,67.4100693069307,69.4323713861386,17.9447821782178,-0.971485148514852,1438.31188118812,-4547.24356435644,-3737.37128712871,20,40,9,32,5305674.8818089,395967.283682137,0,0,0,0,0,0,0,67.4100693069306,9517.61432860283,35.8895643564356,19.2468968475109,19.1351666686113,-0.971485148514852,-0.956844939584994,-0.768635946686971,1.26531922059056,1.0038591414996,1.07017587741492,41.8387966621436,-0.0213126014269935,-8284.61485148515,-8352.62205666111,-8386.31388776623,1.33531429140905,-18511.4638470762,-19777.9097158712,0,-18511.4638470762,67.3839326536613,67.3839326536613,-0.790945059852516,67.3797297536185,25,1015.2,37.96,366.496674779762 +45588,2873.7517939604,456.477958019802,225,64.4635346534654,66.3974406930693,16.982396039604,-1.21356435643564,1447.10891089109,-4977.91683168317,-4088.34356435644,20,40,9,32,5305663.80385511,395952.736749061,0,0,0,0,0,0,0,64.4635346534652,9535.92769782726,33.9647920792079,18.2146777571137,18.1470537967495,-1.21356435643564,-1.19892414750579,-0.949745873277335,1.57648358397849,1.2507258496099,1.25418055904768,42.0946918833312,0.0429132109813787,-9066.2603960396,-9081.36775806294,-9071.76644240656,1.39638158725511,-21347.4611584915,-20914.5824668335,0,-21347.4611584915,64.4557082638956,64.4557082638956,-0.836957705671552,64.4460881047388,25,1015.2,38.04,330.537818992741 +45589,2873.74592821782,456.466998415842,225,61.3156237623763,63.1550924752475,17.2017128712871,-0.487425742574257,1530.5198019802,-5339.2099009901,-4368.09801980198,20,40,9,32,5305653.1846516,395938.888214198,0,0,0,0,0,0,0,61.3156237623762,9553.39861905939,34.4034257425743,18.4499087225502,18.1531892364119,-0.487425742574257,-0.472785533644401,-0.3824737914347,1.81701982900714,1.44155872759408,1.40397917344173,44.5210163525435,-0.0181445120256836,-9707.30792079208,-9673.44793647682,-9731.75088669416,1.46814884627917,-25375.9558631827,-22532.667307629,0,-25375.9558631827,61.3184005489657,61.3184005489657,-0.901135781895024,61.3018746591845,25,1015.2,38.12,330.200173446757 +45590,2873.74036257426,456.456622277228,225,57.6011188118812,59.3291523762376,16.7815445544554,-0.532376237623762,1433.92574257426,-6105.27227722773,-4959.70594059406,20,40,9,32,5305643.10825927,395925.776491194,0,0,0,0,0,0,0,57.6011188118811,9569.95033608359,33.5630891089109,17.9992520262283,17.5826591139222,-0.532376237623762,-0.517736028693905,-0.424193996559188,2.24566274081547,1.78162872610162,1.78416316428906,41.711209061709,-0.0369370423379988,-11064.9782178218,-11006.5784726988,-10820.3737581928,1.56346199955005,-28837.2455537665,-33098.8983978779,0,-28837.2455537665,57.4979837270855,57.4979837270855,-1.32360934113212,57.3735855685508,25,1015.19873762376,38.1886386138614,309.899165336265 +45591,2873.73534554455,456.446930198019,225,52.2721782178218,53.8403435643565,14.9003267326733,0.320594059405941,1306.5099009901,-5905.51188118812,-4875.73465346535,20,40,9,32,5305634.03274762,395913.535203048,0,0,0,0,0,0,0,52.2721782178217,9585.20005885587,29.8006534653465,15.9815287123454,15.6764053215705,0.320594059405941,0.335234268335798,0.27146003694925,1.70966120270658,1.35638422247563,1.37497463602755,38.0048324703039,-0.0259927334971103,-10781.2465346535,-10884.9375355357,-11165.4855019,1.72298855665542,-28214.8950975922,-32884.2269568844,0,-28214.8950975922,52.3686092539947,52.3686092539947,-1.3151243342156,52.5176939654152,25,1015.19,38.19,246.391150162024 +45592,2873.73101940594,456.437765247525,225,48.2274653465346,49.6742893069307,13.6417920792079,-0.625841584158416,1448.93564356436,-6929.28415841584,-5635.92871287129,20,40,9,32,5305626.22518374,395901.973620456,0,0,0,0,0,0,0,48.2274653465346,9599.14263888888,27.2835841584158,14.6316718896937,14.3734539696295,-0.625841584158416,-0.611201375228558,-0.487901700633109,1.5972681670177,1.26721559650272,1.25426660574992,42.147829382835,0.0882024890137398,-12565.2128712871,-12490.5812861484,-12371.9298291916,1.86747396008417,-40112.9994465632,-30713.4031168433,0,-40112.9994465632,48.1344229977453,48.1344229977453,-1.22950636647823,47.979769795539,25,1015.18,38.18,207.054831158683 +45593,2873.72742712871,456.429098316832,225,43.0240495049505,44.314770990099,12.0982079207921,0.441980198019802,1493.74257425743,-7544.2900990099,-6224.13564356436,20,40,9,32,5305619.76581335,395891.056927794,0,0,0,0,0,0,0,43.0240495049504,9611.83224367436,24.1964158415842,12.9760817143756,12.7616889390748,0.441980198019802,0.45662040694966,0.369828886667183,1.3990010341726,1.10991752458015,1.14853574933866,43.4512101633466,-0.0490333836884546,-13768.4257425743,-13682.8848446231,-13366.2383607961,2.09458995794526,-50060.7510354765,-35884.8535632291,0,-50060.7510354765,43.0810366630722,43.0810366630722,-1.43475176725594,43.1915457757102,25,1015.17,38.17,163.898066443559 +45594,2873.72461742574,456.421062871287,225,38.4746138613862,39.6288522772277,10.8248712871287,-1.97623762376238,1336.47524752475,-7015.72079207921,-5646.56633663366,20,40,9,32,5305614.74186631,395880.953024682,0,0,0,0,0,0,0,38.4746138613861,9623.11544383938,21.6497425742574,11.6103488457969,11.4170176297897,-1.97623762376238,-1.96159741483252,-1.57489131852137,1.30702828787725,1.03694962791426,1.04144726543667,38.8764890678552,-0.0426252028539869,-12662.2871287129,-12902.4038133516,-13252.6235226306,2.34140063529996,-46059.995940288,-28556.807527811,0,-46059.995940288,38.4967259092245,38.4967259092245,-1.14171404764238,38.5763193666927,25,1015.16,38.16,130.884560270561 +45595,2873.72252742574,456.413544752475,225,34.3701881188119,35.4012937623762,10.084495049505,-2.92118811881188,1267.76732673267,-7444.53267326732,-6021.58415841584,20,40,9.5049504950495,32,5305611.03944517,395871.517608535,0,0,0,0,0,0,0,34.3701881188118,9633.2384070407,20.1689900990099,10.8162492054463,10.5515559607757,-2.92118811881188,-2.90654790988203,-2.35828260712726,1.41839016447709,1.12530016904263,1.12141797967076,36.8778566678198,0.0643698164720681,-13466.1168316832,-12616.823066366,-10280.5433442548,2.62244781102735,-51403.2321966413,-27585.0962616204,0,-51403.2321966413,34.410786099402,34.410786099402,-1.10443012122994,34.7506649964548,25,1015.15,38.15,111.70465484995 +45596,2873.72103544554,456.406541584159,217.871287128713,31.6046930693069,32.5528338613861,8.63043564356436,-2.13574257425743,1571.89603960396,-1987.91584158416,-1572.41782178218,20,40,9.8019801980198,32,5305608.43320134,395862.74365974,0,0,0,0,0,0,0,31.6046930693069,9642.30926746423,17.2608712871287,9.25667990455717,9.1558685486977,-2.13574257425743,-2.12110236532757,-1.66749215722511,1.62905475985895,1.2924339455814,1.18371316288738,45.7246023169138,0.0326169204271217,-3560.33366336634,-4273.5158317812,-6339.32175692517,2.8477922615793,-18388.9191825254,-8553.99261909609,0,-18388.9191825254,31.7020689148122,31.7020689148122,-0.34274825997451,32.2717456301854,25,1015.14,38.14,85.4026409942118 +45597,2873.72002960396,456.399731881188,185.792079207921,30.8887425742574,31.8154048514852,8.68346534653466,-1.64158415841584,1544.41089108911,-1267.88118811881,-1053.26930693069,20,40,9.86138613861386,32,5305606.72311671,395854.22695926,0,0,0,0,0,0,0,30.8887425742574,9650.99190022001,17.3669306930693,9.31355756474758,9.1601225627615,-1.64158415841584,-1.62694394948598,-1.31862426197295,1.02618672705683,0.814139949886132,0.931091494953387,44.9250917552742,-0.0149764226243738,-2321.1504950495,-2367.57724732869,-3159.90708436346,2.91386974052793,-12153.534361077,-5797.70088280657,0,-12153.534361077,30.8795528869718,30.8795528869718,-0.231624895162786,30.7391955595439,25,1015.13,38.13,84.3156649105848 +45598,2873.71940554455,456.393005346535,121.633663366337,29.699,30.58997,8.18274257425742,-1.90455445544554,1484.82673267327,-1677.21089108911,-1470.29108910891,20,40,10,32,5305605.718366,395845.826621913,0,0,0,0,0,0,0,29.699,9659.43229103409,16.3654851485149,8.77650119641128,8.66581263220499,-1.90455445544554,-1.88991424651569,-1.50301341028839,1.43590456585715,1.13919547043943,1.14473556221514,43.1918588446303,-0.0256327233378705,-3147.50198019802,-3122.47145377904,-2815.4383904667,3.03162600497624,-16470.7414646995,-13071.64555315,0,-16470.7414646995,29.6260804823056,29.6260804823056,-0.522383426461456,29.3349702492317,25,1015.12,38.12,76.5961933357126 +45599,2873.71912316832,456.386647623762,69.950495049505,27.4102673267327,28.2325753465347,7.65734653465347,-2.50623762376238,1375.9504950495,-1620.73663366337,-1359.33168316832,20,40,10,32,5305605.33824925,395837.897146297,0,0,0,0,0,0,0,27.4102673267326,9667.36110627061,15.3146930693069,8.21298121172053,8.08728274820172,-2.50623762376238,-2.49159741483252,-1.96484330426311,1.75646503709124,1.39351671539892,1.33684222598366,40.0247774717663,-0.0311048777583148,-2980.06831683168,-2969.62628173709,-2989.13995664506,3.28496587703682,-15656.4404435172,-12679.7971714544,0,-15656.4404435172,27.4941340064699,27.4941340064699,-0.50660338311059,27.7688637889749,25,1015.11,38.11,67.1144381911732 +45600,2873.7191839604,456.380678415841,45,26.2876336633664,27.0762626732673,8.64730693069307,-3.21227722772277,1312.55940594059,-1611.76831683168,-1410.26138613861,20,40,10,32,5305605.58507263,395830.463129503,0,0,0,0,0,0,0,26.2876336633663,9674.79822406488,17.2946138613861,9.27477541108526,8.86520077028706,-3.21227722772277,-3.19763701879292,-2.63969546843401,2.05224242572133,1.62817594651896,1.59189098646531,38.1808054361403,-0.0317528960449463,-3022.0297029703,-2943.96771885109,-2798.97092365375,3.42447469352995,-15778.5744456938,-10312.3090099448,0,-15778.5744456938,26.1775371042054,26.1775371042054,-0.411895892559548,26.0659379591462,25.0012623762376,1015.10126237624,38.1037871287129,78.9965209859412 +45601,2873.71959861386,456.375051287129,45,24.2897128712871,25.0184042574257,7.99648514851485,-3.48207920792079,1218.84158415842,-1312.10495049505,-1109.27623762376,20,40,10,32,5305606.47968559,395823.467084984,0,0,0,0,0,0,0,24.2897128712871,9681.81454799227,15.9929702970297,8.57672850344977,8.19673047322872,-3.48207920792079,-3.46743899899094,-2.86567390615332,1.8909416268956,1.50020564558824,1.61398676539346,35.4546645063132,-0.014616412465134,-2421.38118811881,-2493.78542299774,-2436.52404236428,3.70596483986345,-12709.2058787124,-8991.4636134301,0,-12709.2058787124,24.4013810410744,24.4013810410744,-0.359383339324032,24.8274731835854,25.01,1015.1,38.12,67.3959671537494 +45602,2873.72020930693,456.369778910891,45,23.7356138613861,24.4476822772277,8.6100396039604,-3.46910891089109,1189.61881188119,-1094.04356435644,-909.134653465347,20,40,9.97029702970297,32,5305607.72946171,395816.919525045,0,0,0,0,0,0,0,23.7356138613861,9688.47154367434,17.2200792079208,9.23480388140702,8.68703252480267,-3.46910891089109,-3.45446870196124,-2.89835677750345,2.68461351361744,2.12987661388753,2.07643694594246,34.6046085183163,-0.00619217473892378,-2003.17821782178,-2007.45776884619,-2257.25903883328,3.79187061340594,-10513.6904504414,-3803.4924613423,0,-10513.6904504414,23.7179797078717,23.7179797078717,-0.152022132906359,23.8313027812457,25.02,1015.1,38.14,75.6545803616269 +45603,2873.72099019802,456.364716534654,45,22.9885940594059,23.6782518811881,8.69817821782178,-3.5,1162.84653465347,-1076.43762376238,-884.030693069307,20,40,9.99009900990099,32,5305609.2897874,395810.639263472,0,0,0,0,0,0,0,22.9885940594059,9694.9700443069,17.3963564356436,9.32933803581608,8.71917313602389,-3.5,-3.48535979107015,-2.94155852905854,2.98221028417688,2.36597927774134,2.35652773087687,33.8258345418488,-0.0138963921466545,-1960.46831683168,-1964.11749828448,-1527.20786300153,3.91546798340621,-10384.4857935456,-4018.91747293799,0,-10384.4857935456,23.0538544260366,23.0538544260366,-0.160493524599983,23.1342224042242,25.03,1015.1,38.16,76.2873379754111 +45604,2873.72202584159,456.359875346535,45,22.6473465346534,23.3267669306931,8.28732673267327,-3.5,1136.22277227723,-913.160396039604,-763.543564356436,20,40,10,32,5305611.317034,395804.643066285,0,0,0,0,0,0,0,22.6473465346534,9701.30760176015,16.5746534653465,8.88867422191375,8.35001954130436,-3.5,-3.48535979107015,-2.92788687752629,2.63818154997212,2.09303914994592,2.0773203496218,33.0513806872923,-0.00907225601284181,-1676.70396039604,-1490.72030193118,-310.355804251305,3.97448308764015,-8802.33562461766,-3833.66500751752,0,-8802.33562461766,22.6059311832173,22.6059311832173,-0.153175342286708,22.7952141626958,25.04,1015.1,38.18,69.8870041847667 +45605,2873.72325376238,456.355253762376,45,22.3185643564356,22.9881212871287,7.91972277227723,-3.5,1131.32673267327,933.19702970297,1106.38613861386,20,40,9.77227722772277,32,5305613.6955107,395798.926871732,0,0,0,0,0,0,0,22.3185643564356,9707.5189232123,15.8394455445545,8.49439607263271,8.01838083706136,-3.5,-3.48535979107015,-2.91418914325884,2.33848862766603,1.85527347405641,1.86294097565142,32.908960668297,0.0133203758918709,2039.58316831683,1869.5346142535,948.658416402865,4.03301532930277,10846.0144031659,2365.29406080463,0,10846.0144031659,22.351365748456,22.351365748456,0.0943603023668737,22.7723578595361,25.05,1015.1,38.2,64.4874882795963 +45606,2873.72471089109,456.350717227723,45,22.9081089108911,23.5953521782178,7.8410594059406,-3.5,1131.07425742574,1262.68811881188,1544.4099009901,20,40,9.97029702970297,32,5305616.49665161,395793.324296973,0,0,0,0,0,0,0,22.9081089108911,9713.80073391089,15.6821188118812,8.41002471150263,7.98524907328442,-3.5,-3.48535979107015,-2.89805278818975,2.09741793028851,1.66401658064009,1.64043325367284,32.9016164610485,-0.0351369915418,2807.09801980198,2792.77616900304,2173.36035672722,3.92901357795938,14438.3487152403,4494.8646142722,0,14438.3487152403,22.9271300852857,22.9271300852857,0.180411234192727,23.0478517614787,25.06,1015.1,38.22,63.9640740953359 +45607,2873.72643316832,456.346202376238,45,23.6610594059406,24.3708911881188,7.47284158415842,-3.5,889.935643564356,1386.54059405941,1702.80594059406,20,40,9.78217821782178,32,5305619.78845607,395787.757607788,0,0,0,0,0,0,0,23.6610594059406,9720.26761256874,14.9456831683168,8.01508815764134,7.71511144373908,-3.5,-3.48535979107015,-2.86146729371126,1.51488237426592,1.20185364685576,1.25533578396306,25.8871785184212,-0.0524174791853083,3089.34653465347,3083.29763748652,2455.88113816731,3.80400488254363,12242.4085365683,4817.13606929151,0,12242.4085365683,23.6467742378198,23.6467742378198,0.193484571229399,23.5833999194506,25.07,1015.1,38.24,59.6923913358694 +45608,2873.7283890099,456.341712277228,45,24.2466138613861,24.9740122772277,7.80036633663366,-3.5,859.554455445545,1079.51188118812,1349.20297029703,20,40,10,32,5305623.51235029,395782.229572606,0,0,0,0,0,0,0,24.2466138613861,9726.92463278325,15.6007326732673,8.36637885948945,8.02736819999644,-3.5,-3.48535979107015,-2.87010792499972,1.69856115816025,1.34757784302011,1.32882603105761,25.0034255795194,0.00309608736946189,2428.71485148515,2236.76295461229,1447.25683245826,3.71205583598022,9021.82634264152,3660.0606369693,0,9021.82634264152,24.2429775512204,24.2429775512204,0.14636092322103,24.0016420032023,25.08,1015.1,38.26,64.6100099740517 +45609,2873.73054584158,456.33726059406,45,24.4538910891089,25.1875078217822,7.65855445544555,-3.5,856.128712871287,-402.477227722772,-304.028712871287,20,40,10,32,5305627.60768813,395776.756123826,0,0,0,0,0,0,0,24.4538910891089,9733.71500536301,15.3171089108911,8.2142767820236,7.91858907279671,-3.5,-3.48535979107015,-2.8569638088235,1.50623010849992,1.19498924778355,1.2176038431071,24.9037747674419,-0.0036721036242455,-706.505940594059,-516.198892265464,154.423063806051,3.68057740501594,-2585.31598769496,-2370.61151472361,0,-2585.31598769496,24.4086078815802,24.4086078815802,-0.0947755666655749,24.0953665803683,25.09,1015.1,38.28,62.9482647717637 +45610,2873.73276712871,456.33292069307,45,23.8797524752475,24.596145049505,7.54515841584159,-3.5,838.371287128713,-654.008910891089,-563.631683168317,20,40,10,32,5305631.81990993,395771.424089354,0,0,0,0,0,0,0,23.8797524752475,9740.42476259624,15.0903168316832,8.09265246496597,7.78918342284215,-3.5,-3.48535979107015,-2.86150668269065,1.53356683578435,1.21667723223568,1.17857877113379,24.3872321909647,-0.00792022350327459,-1217.64059405941,-1369.62380158808,-1319.91587151536,3.7689932228221,-4476.2019619039,-3375.54195241133,0,-4476.2019619039,23.8922559552985,23.8922559552985,-0.134917328366502,23.7814397639843,25.0987376237623,1015.1,38.3025247524753,60.8556019509861 +45611,2873.73479831683,456.328570990099,45,23.3038712871287,24.0029874257426,7.27951485148515,-3.5,876.851485148515,-1366.48118811881,-1441.99207920792,20,40,10,32,5305635.68022893,395766.073492141,0,0,0,0,0,0,0,23.3038712871287,9746.99069070405,14.5590297029703,7.80773319257827,7.53013460083503,-3.5,-3.48535979107015,-2.85616597247898,1.41122039286694,1.11961192795991,1.11453896838333,25.5065757780729,0.0399611276756127,-2808.47326732673,-2649.0737476718,-2481.58423364468,3.86265516923039,-11086.474071825,-6235.6285155291,0,-11086.474071825,23.2729554945593,23.2729554945593,-0.250001361522294,23.0286253648775,25.1,1015.1,38.34,56.8792217899485 +45612,2873.73639346535,456.324103861386,45,22.2004158415841,22.8664283168317,6.66438613861386,-3.5,999.193069306931,-1410.19801980198,-1781.61287128713,20,40,9.89108910891089,32,5305638.7355006,395760.562032714,0,0,0,0,0,0,0,22.2004158415841,9753.31277607257,13.3287722772277,7.14796932545555,6.94346835086344,-3.5,-3.48535979107015,-2.83755606299968,1.07348959648091,0.851668359411406,0.892825460554526,29.0653482041897,0.0213126014269935,-3191.81089108911,-3327.37967846289,-2733.48148545033,4.0549437483473,-15133.1018427315,-8685.054983126,0,-15133.1018427315,22.1786058229585,22.1786058229585,-0.347769554183136,22.0561737452945,25.1,1015.1,38.38,48.341494023805 +45613,2873.73727108911,456.319557326733,45,20.7481089108911,21.3705521782178,6.82414851485149,-3.5,991.792079207921,-1568.25049504951,-1950.74158415842,20,40,10,32,5305640.46346301,395754.927652968,0,0,0,0,0,0,0,20.7481089108911,9759.2822673267,13.648297029703,7.31932442717929,6.99613552694727,-3.5,-3.48535979107015,-2.8800072570131,1.61111384597132,1.27820026437284,1.25924611690263,28.8500621289644,-0.022032621745473,-3518.99207920792,-3367.31680227429,-2623.0018785662,4.33971890061455,-17620.880492526,-8690.56549536373,0,-17620.880492526,20.7996699343201,20.7996699343201,-0.347226306789094,21.038165337728,25.1,1015.1,38.42,49.0823499580219 +45614,2873.73738524752,456.315058712871,102.029702970297,20.0230594059406,20.6237511881188,6.80707920792079,-3.5,923.79702970297,-765.530693069307,-952.544554455446,20,40,10,32,5305640.7761535,395749.327426244,0,0,0,0,0,0,0,20.0230594059406,9764.92615440041,13.6141584158416,7.30101653207692,6.94003963771615,-3.5,-3.48535979107015,-2.89550994506635,1.78329073340068,1.41479926610162,1.42978734898369,26.8721663141012,-0.0160564531020931,-1718.07524752475,-1739.57827663955,-1654.44165382025,4.49540975112545,-8301.22627985892,-4840.82562024864,0,-8301.22627985892,19.9859170669542,19.9859170669542,-0.19335386508948,20.0400275131235,25.1,1015.1,38.46,48.2793451734027 +45615,2873.73665851485,456.310861980198,207.178217821782,18.9768415841584,19.5461468316832,6.5079504950495,-3.5,858.435643564356,-668.59306930693,-848.238613861386,20,40,10,32,5305639.5244377,395744.075123031,0,0,0,0,0,0,0,18.9768415841584,9770.35080803077,13.015900990099,6.98018235177961,6.62553173037146,-3.5,-3.48535979107015,-2.89934608159752,1.74975236133339,1.38819111786291,1.3587796997934,24.9708806611241,-0.0167764734205726,-1516.83168316832,-1186.69625526909,-70.020963594559,4.74400714649659,-7185.14447816373,-7212.84597543519,0,-7185.14447816373,18.9921923340849,18.9921923340849,-0.288227461359996,19.377768445507,25.1,1015.1,38.5,44.0116487928767 +45616,2873.73523970297,456.307343762376,225,18.5043663366336,19.0594973267327,6.17547524752475,-3.5,827.60396039604,1491.93465346535,1243.2099009901,20,40,10,32,5305636.97548896,395739.644902469,0,0,0,0,0,0,0,18.5043663366336,9775.51806298127,12.3509504950495,6.62358193557467,6.31554576718156,-3.5,-3.48535979107015,-2.88667870551273,1.5284385377262,1.21260862345915,1.22684057585946,24.0740233524261,-0.00187205282804673,2735.14455445545,2345.90800901872,1395.70519260043,4.8641758361752,12760.4087769524,826.730310893308,0,12760.4087769524,18.5340344083913,18.5340344083913,0.0331040529795526,19.1076578347686,25.1,1015.1,38.54,40.0125577013832 +45617,2873.73317831683,456.304659306931,225,18.755297029703,19.3179559405941,6.0980198019802,-3.5,824.534653465347,1931.01881188119,1600.20297029703,20,40,10,32,5305633.21751149,395736.231815848,0,0,0,0,0,0,0,18.7552970297029,9780.69657794276,12.1960396039604,6.54050614474765,6.26402795465138,-3.5,-3.48535979107015,-2.874839261662,1.3811117859154,1.09572483304009,1.11377978723598,23.9847408329346,0.00273607721022213,3531.22178217822,3602.81490049995,2629.75616508693,4.79885671990823,16252.4530466726,2530.23530177562,0,16252.4530466726,18.788516616018,18.788516616018,0.101163829254217,19.1065979416611,25.1,1015.1,38.58,39.351263572751 +45618,2873.73059188119,456.303113861386,225,19.3710297029703,19.9521605940594,6.38989108910891,-3.29316831683168,838.707920792079,2122.56534653465,1758.99702970297,20,40,10,32,5305628.46132958,395734.220052303,0,0,0,0,0,0,0,19.3710297029703,9785.98467387235,12.7797821782178,6.85355628379785,6.54771409622942,-3.29316831683168,-3.27852810790183,-2.70973111660857,1.52067733185692,1.20645115952898,1.19786026263851,24.397024467296,0.00684019302555533,3881.56237623762,3893.03587883541,3818.97892441908,4.64677015039527,17601.0845902071,4569.82616960671,0,17601.0845902071,19.3536119988236,19.3536119988236,0.182680891851562,19.4912779317259,25.1,1015.1,38.62,42.9955726760601 +45619,2873.72770742574,456.302895049505,225,20.001405940594,20.6014481188119,6.55433663366336,-2.5309900990099,872.316831683168,2317.46138613861,1931.28217821782,20,40,10,32,5305623.12325579,395733.85094095,0,0,0,0,0,0,0,20.001405940594,9791.45201724419,13.1086732673267,7.02993437530314,6.7239833977572,-2.5309900990099,-2.51634989008005,-2.07759436964797,1.51848429793146,1.20471128462795,1.1951204612661,25.3746680557275,0.0133203758918709,4248.74356435643,4238.81983138908,4256.18398301528,4.50049827374584,19406.4108575035,5301.5907081697,0,19406.4108575035,20.0324396627781,20.0324396627781,0.211844699321415,20.1567769006638,25.1,1015.1,38.66,45.3126500660829 +45620,2873.72477742574,456.304151584158,225,20.8936732673267,21.5204834653465,6.40437623762376,-0.115841584158416,924.529702970297,2541.72277227723,2134.11782178218,20,40,10,32,5305617.66761348,395735.318191908,0,0,0,0,0,0,0,20.8936732673267,9797.12860726069,12.8087524752475,6.86909250800594,6.64765943456862,-0.115841584158416,-0.101201375228558,-0.0762171939213097,1.3826344502305,1.09693286060126,1.0778290493972,26.8934789155281,0.0154084348154615,4675.84059405941,4743.02622291932,4419.46587719289,4.30853292403433,21670.2132088053,6344.54556494203,0,21670.2132088053,20.8808221742966,20.8808221742966,0.253524981210989,20.9998945518038,25.1,1015.09873762376,38.6873762376238,44.9819536455214 +45621,2873.72217861386,456.306747425742,225,21.8930198019802,22.5498103960396,5.351,2.89514851485148,984.39603960396,2498.42871287129,2078.84950495049,20,40,9.98019801980198,32,5305612.79530354,395738.464948354,0,0,0,0,0,0,0,21.8930198019802,9803.06449980744,10.702,5.73928086773017,5.80839953295049,2.89514851485148,2.90978872378134,2.3047640447745,0.97593251473871,0.774270050169548,0.786232582735933,28.6349200578027,0.00727220521664303,4577.27821782178,4581.4376923831,4553.76499585042,4.1123896224694,21569.2166390735,8010.04861385907,0,21569.2166390735,21.9109260856779,21.9109260856779,0.320273611519569,21.8727955664867,25.1,1015.09,38.64,34.4276140167694 +45622,2873.72012425743,456.310536138614,225,22.9433465346535,23.6316469306931,5.18481353135644,3.48514851485149,810,2474.70594059406,2068.03366336634,20,40,9.9009900990099,32,5305608.90466825,395743.115930062,0,0,0,0,0,0,0,22.9433465346535,9809.30920690315,10.3696270627129,5.56103552667959,5.72716140878593,3.48514851485149,3.49978872378134,2.68284718407821,1.11052315253633,0.881049461969162,0.892701762042814,23.5619449019235,-0.0588256600197759,4542.7396039604,4491.20020586217,4580.1165432752,3.92303145380792,16828.2011227882,5157.20051264579,0,16828.2011227882,22.9163863346731,22.9163863346731,0.207124301539067,22.7297906378573,25.1,1015.08,38.58,33.542978920913 +45623,2873.71866574257,456.315211287129,225,23.4797425742574,24.1841348514851,4.42627722772277,2.34435643564356,777.816831683168,2468.39504950495,2072.49504950495,20,40,10,32,5305606.09779162,395748.89111934,0,0,0,0,0,0,0,23.4797425742574,9815.76274856982,8.85255445544554,4.74745808415979,5.11265471199928,2.34435643564356,2.35899664457342,1.73490841254246,1.86390616577152,1.47875667496295,1.42881725840436,22.6257744838364,0.0112323169682803,4540.8900990099,4511.36319968631,4478.35630303831,3.83323274166727,15753.0598223958,4174.11634821363,0,15753.0598223958,23.507528771689,23.507528771689,0.166824603252399,23.5120886016884,25.1,1015.07,38.52,27.1984358253394 +45624,2873.71773633663,456.32037009901,166.188118811881,24.1816138613861,24.9070622772277,6.14521782178218,3.48455445544554,819.608910891089,2458.36237623762,2060.9099009901,20,40,10,32,5305604.26012828,395755.286534035,0,0,0,0,0,0,0,24.1816138613861,9822.38414042899,12.2904356435644,6.5911289614257,6.61532138692334,3.48455445544554,3.4991946643754,2.75497419133651,1.00504308481375,0.797365338226937,0.826324843064074,23.8414567895572,0.0139683941785025,4519.27227722772,4524.42246838545,4411.11812209614,3.72199852483196,16038.3204655356,4330.1027984806,0,16038.3204655356,24.1760978335457,24.1760978335457,0.173024975764904,24.1950783928274,25.1,1015.06,38.46,44.5447725875181 +45625,2873.71721623762,456.325770891089,119.851485148515,24.8543564356436,25.5999871287129,6.53412871287129,3.36772277227723,859.029702970297,2340.16138613861,1977.04950495049,20,40,10,32,5305603.17520393,395761.997090018,0,0,0,0,0,0,0,24.8543564356435,9829.18803110557,13.0682574257426,7.00826012129855,6.9847952952992,3.36772277227723,3.38236298120708,2.69804932103593,0.861146959772515,0.683203284732177,0.692883193128414,24.9881611487677,0.00936026414023362,4317.21089108911,4295.97671796883,4168.23545744927,3.62139714166998,15623.0762934154,5439.19726686476,0,15623.0762934154,24.8507396333692,24.8507396333692,0.217446002025946,24.9241774253999,25.1,1015.05,38.4,49.4175228107402 +45626,2873.71688118812,456.331372376238,94.9009900990099,25.6755643564356,26.4458312871287,6.70681188118812,3.5,898.460396039604,2116.12673267327,1758.30891089109,20,40,10,32,5305602.42854706,395768.963849528,0,0,0,0,0,0,0,25.6755643564356,9836.20437453241,13.4136237623762,7.19347357749362,7.17880003066361,3.5,3.51464020892985,2.79139779687812,0.618394651414796,0.490612261139498,0.50688396223859,26.1351535161055,0.0115923271275201,3874.43564356436,3848.1638466817,3287.34531055349,3.50564494331417,14195.9620490756,6341.33504768838,0,14195.9620490756,25.6892553671208,25.6892553671208,0.253500473809757,25.6837890217519,25.1,1015.04,38.34,51.674719734365 +45627,2873.71666435644,456.337177623762,75.2970297029703,26.5791188118812,27.3764923762376,7.27261386138614,3.5,931.480198019802,1313.6297029703,1077.27524752475,20,40,10,32,5305601.89629441,395776.18839927,0,0,0,0,0,0,0,26.5791188118812,9843.47107299226,14.5452277227723,7.80033145076485,7.71202823653376,3.5,3.51464020892985,2.81482286256951,0.764225183511029,0.606309004200294,0.581623113433021,27.0956606209572,0.00475213410196476,2390.90495049505,2246.35931771395,1725.87064919806,3.38625396551271,8776.28033172538,4366.53531150746,0,8776.28033172538,26.5438319772571,26.5438319772571,0.17459889553312,26.2698221009108,25.1,1015.03,38.28,59.6717645096311 +45628,2873.71649089109,456.343117326733,75.2970297029703,26.7872277227723,27.5908445544554,7.20796039603961,3.5,934.009900990099,-468.937623762376,-512.224752475248,20,40,10,32,5305601.44135543,395783.581896613,0,0,0,0,0,0,0,26.7872277227723,9850.90373022549,14.4159207920792,7.7309865812646,7.66894922062969,3.5,3.51464020892985,2.80735620055191,0.638229757727779,0.506348727061205,0.514926554204923,27.1692466975058,-0.0039601117516373,-981.162376237624,-790.546446426821,41.5148180589856,3.35988544548888,-3578.39652872832,-1740.41527138819,0,-3578.39652872832,26.7414721105774,26.7414721105774,-0.0695642584060425,26.5040143520733,25.1,1015.02,38.22,58.9047768351188 +45629,2873.7163090099,456.349012178218,80.6435643564356,26.3595544554456,27.1503410891089,7.23185148514851,3.5,925.247524752475,-637.708910891089,-661.941584158416,20,40,10,32,5305600.97184579,395790.919240226,0,0,0,0,0,0,0,26.3595544554455,9858.27976680414,14.463702970297,7.75661126275068,7.6647545778813,3.5,3.51464020892985,2.81704104482049,0.710077106688417,0.563349851262089,0.562107437245123,26.914359504764,0.000792022350327462,-1299.6504950495,-1504.51343985884,-1903.20852015231,3.41433421193413,-4776.62187710964,-2424.06122323205,0,-4776.62187710964,26.3711661601803,26.3711661601803,-0.0969730636429943,26.1438328061434,25.1,1015.01,38.16,58.8614577214297 +45630,2873.7160990099,456.354811881188,85.990099009901,25.6155148514852,26.3839802970297,6.91309900990099,3.5,984.514851485148,-1899.5900990099,-1787.73861386139,20,40,10,32,5305600.45239995,395798.137114378,0,0,0,0,0,0,0,25.6155148514851,9865.53505426289,13.826198019802,7.41472937474288,7.35087724678312,3.5,3.51464020892985,2.80873063081679,0.621262430973423,0.492887455160806,0.489032033420604,28.6383761553314,0.0504734243254135,-3687.32871287129,-3495.54260366631,-3454.59338828809,3.51489446457528,-15001.5295625937,-10752.7634450122,0,-15001.5295625937,25.5487722772277,25.5487722772277,-0.43086462111558,24.8518421292502,25.1,1015.00252475248,38.1164108910891,54.1625622548162 +45631,2873.71584712871,456.360262277228,93.1188118811881,23.2658514851485,23.963827029703,6.18532673267327,3.5,1106.61881188119,-2536.91386138614,-2322.80891089109,20,40,10,32,5305599.86324106,395804.918444695,0,0,0,0,0,0,0,23.2658514851485,9872.35784177665,12.3706534653465,6.63414826714476,6.59691529572558,3.5,3.51464020892985,2.80109903169977,0.562363324685334,0.44615900489206,0.444599874570566,32.1902363863908,-0.0123123474459996,-4859.72277227723,-5108.14396627782,-4263.63636781997,3.87520734058989,-24366.4099960208,-22132.1469708896,0,-24366.4099960208,23.1952570336241,23.1952570336241,-0.885049396028713,22.7657520965013,25.1,1015.01,38.17,43.6440135602518 +45632,2873.71558158416,456.365003861386,89.5544554455445,19.6861683168317,20.2767533663366,5.3170594059406,3.5,982.89603960396,-3115.42475247525,-2690.92475247525,20,40,10,32,5305599.26472179,395810.816326663,0,0,0,0,0,0,0,19.6861683168317,9878.31416600657,10.6341188118812,5.70287746609972,5.65288595515011,3.5,3.51464020892985,2.80194793968643,0.631681184500983,0.501153322620553,0.469906659033663,28.5912868265028,-0.033696950904841,-5806.34950495049,-5665.10870502892,-3130.39331998172,4.58194704218285,-30158.363114437,-19270.2226474133,0,-30158.363114437,19.8183717282619,19.8183717282619,-0.770181844917158,20.8608445195897,25.1,1015.02,38.24,32.285675792011 +45633,2873.71532287129,456.369156138614,91.3366336633663,18.2048712871287,18.7510174257426,4.88856435643564,3.5,999.148514851485,-1986.19108910891,-1644.97227722772,20,40,10,32,5305598.69211587,395815.980317132,0,0,0,0,0,0,0,18.2048712871287,9883.52717731019,9.77712871287129,5.24328983022963,5.20335504202761,3.5,3.51464020892985,2.80504860413758,0.497403887659645,0.394622504360225,0.420310765343541,29.0640521676165,0.0442812495864898,-3631.16336633663,-3175.19088324674,-25.5952071413991,4.94525052007548,-20895.1187387196,-6282.71254780428,0,-20895.1187387196,18.2086401333202,18.2086401333202,-0.252265573091963,19.8044124134331,25.1,1015.03,38.31,27.1770892551263 +45634,2873.71507009901,456.373118910891,91.3366336633663,17.8845346534653,18.4210706930693,4.73321782178218,3.5,1227.57425742574,2156.89900990099,2301.90099009901,20,40,10,32,5305598.13478011,395820.908433917,0,0,0,0,0,0,0,17.8845346534653,9888.49021798675,9.46643564356436,5.07667099371219,5.05280893211045,3.5,3.51464020892985,2.79739160124933,0.495805355811339,0.393354286204057,0.393578363222679,35.7086876746728,0.0566655990643374,4458.8,4358.29965689638,3442.277246692,5.03431350731291,32574.0344924374,6509.1472443355,0,32574.0344924374,18.0009931379276,18.0009931379276,0.258943839928545,19.7829539337681,25.1,1015.04,38.38,25.6368761717854 +45635,2873.71476990099,456.377282574257,107.376237623762,19.925297029703,20.5230559405941,4.65337623762376,3.5,1353.07920792079,4716.51287128713,4942.17722772277,20,40,10,32,5305597.4850826,395826.085223154,0,0,0,0,0,0,0,19.9252970297029,9893.70819881733,9.30675247524753,4.99103592056518,5.10189821278151,3.5,3.51464020892985,2.73165891224585,0.714161685486203,0.566590410402113,0.574261865545583,39.3594786974913,0.0358570118602795,9658.6900990099,9667.59908832468,7038.55765786167,4.52337074442318,68699.2042577233,17602.1040350862,0,68699.2042577233,19.9420160768552,19.9420160768552,0.703167717761875,20.8148557833379,25.1,1015.05,38.45,26.0913713186377 +45636,2873.71440267327,456.381996831683,114.504950495049,22.7774653465347,23.4607893069307,4.92768316831683,3.5,1274.61386138614,5992.76435643565,6146.26633663366,20,40,10,32,5305596.6988476,395831.945667471,0,0,0,0,0,0,0,22.7774653465346,9899.62307458741,9.85536633663367,5.28524719307733,5.49884668031869,3.5,3.51464020892985,2.68952399198017,1.10991088831818,0.880563713375129,0.893219349413313,37.0770142879112,-0.0486733735292148,12139.0306930693,11859.8931379277,10064.8418053077,3.95899300835154,71055.3559230899,22680.2855773084,0,71055.3559230899,22.8115615135771,22.8115615135771,0.90833823481358,22.9949575369533,25.1,1015.06,38.52,30.3366092332144 +45637,2873.71402752475,456.387425445545,107.376237623762,26.0470099009901,26.8284201980198,5.44068316831683,3.5,1254.93564356436,5269.21386138614,5068.09900990099,20,40,10,32,5305595.88188518,395838.695748431,0,0,0,0,0,0,0,26.0470099009901,9906.42639964243,10.8813663366337,5.83547165301857,6.12282165605006,3.5,3.51464020892985,2.66911961181195,1.46346738379241,1.16106282715032,1.10230968678709,36.50459813472,-0.0347049793507123,10337.3128712871,10442.8777080678,10531.3128995883,3.45842626297714,52421.9812528163,20190.8061215845,0,52421.9812528163,26.0202201744927,26.0202201744927,0.808188739666048,25.8424691900759,25.1,1015.07,38.59,37.5994733009308 +45638,2873.71374673267,456.393521683168,75.2970297029703,28.7956831683168,29.6595536633663,6.1870693069307,3.49940594059406,1037.42574257426,5307.91683168317,4405.67623762376,20,40,10,32,5305595.22470148,395846.280668857,0,0,0,0,0,0,0,28.7956831683168,9914.04660902087,12.3741386138614,6.63601728659837,6.91550039403617,3.49940594059406,3.51404614952391,2.68400078455953,1.44965535864224,1.15010485900759,1.2144474348659,30.1774915881132,-0.0159124490383971,9713.59306930693,9626.06057249289,9781.49001559708,3.12786630458685,36711.314183434,18394.441722246,0,36711.314183434,28.7775966081756,28.7775966081756,0.736025335206783,28.7036709531316,25.1,1015.08,38.66,47.999421006283 +45639,2873.71379415842,456.400217029703,45,31.3424455445545,32.2827189108911,6.27742574257426,3.4690099009901,1099.58415841584,5052.26435643564,4098.74752475248,20,40,10,32,5305595.16203135,395854.62289403,0,0,0,0,0,0,0,31.3424455445544,9922.40427252471,12.5548514851485,6.7329301930393,7.13846281667776,3.4690099009901,3.48365010991995,2.62034088557844,2.03306190701142,1.61295880705541,1.60498726338428,31.9856066118789,0.0142564023058943,9151.01188118812,9175.4005979806,9040.58872171741,2.87325757711852,33622.739595207,17705.5552269901,0,33622.739595207,31.33993049701,31.33993049701,0.708032436907054,31.3055001031951,25.1,1015.09,38.73,51.1642907215877 +45640,2873.71435574257,456.407446435644,45,33.8135940594059,34.8280018811881,6.88709900990099,3.4760396039604,1189.31188118812,4670.15346534653,3765.84455445545,20,40,10,32,5305596.03976583,395863.647601613,0,0,0,0,0,0,0,33.8135940594059,9931.46244161162,13.774198019802,7.38684275494079,7.79889259868086,3.4760396039604,3.49067981289025,2.63722802307718,2.07222781870426,1.64403164452458,1.66049252709263,34.5956802663671,0.0672498977459861,8435.99801980198,8139.89848054113,7964.59364833591,2.66282312190278,30960.5483604276,14607.229100137,0,30960.5483604276,33.7640781295951,33.7640781295951,0.583376902046646,33.5433566919628,25.1,1015.09873762376,38.789900990099,60.9496128055182 +45641,2873.7156309901,456.414923465346,45,35.3600396039604,36.4208407920792,6.97688118811881,2.77009900990099,1674.80693069307,3599.8198019802,2973.15841584158,20,40,10,32,5305598.23389746,395873.004631256,0,0,0,0,0,0,0,35.3600396039604,9941.09750519798,13.9537623762376,7.48313973451632,7.96424687361429,2.77009900990099,2.78473921883084,2.09267618321359,2.39349270715813,1.89891174898291,1.8785721246843,48.7181587930243,0.13457179752382,6572.97821782178,7022.04014312322,8090.5503093139,2.54556577744274,33173.6168812166,10883.4284540326,0,33173.6168812166,35.4092189001078,35.4092189001078,0.433059395048408,35.5383597950364,25.1,1015.1,38.79,63.5286769858871 +45642,2873.71757772277,456.422434653465,45,37.5125742574257,38.6379514851485,7.27235643564356,2.00712871287129,1875.9702970297,5401.23861386139,4442.83465346535,20,40,10,32,5305601.67109681,395882.426645382,0,0,0,0,0,0,0,37.5125742574257,9951.19103985144,14.5447128712871,7.80005534561829,8.33944329402336,2.00712871287129,2.02176892180114,1.51103843346481,2.66525597256472,2.11451903121076,2.13309680887593,54.5697639213072,0.0372970524972386,9844.07326732673,9610.40361729242,8627.46339867952,2.40019868568284,51555.1191729966,17533.301086819,0,51555.1191729966,37.5221696892461,37.5221696892461,0.700628478689458,37.57819469211,25.1,1015.1,38.78,69.6649105152784 +45643,2873.72016742574,456.43012960396,45,39.9287623762376,41.1266252475248,7.38517821782179,1.88108910891089,1878.09900990099,4571.85346534653,3775.66336633663,20,40,10,32,5305606.29518292,395892.099051861,0,0,0,0,0,0,0,39.9287623762376,9961.96563382834,14.7703564356436,7.92106373581053,8.57388842782874,1.88108910891089,1.89572931784075,1.40231376286265,3.21351416173291,2.54948752464882,2.57928969457439,54.6316856686964,-0.110523118886605,8347.51683168317,8479.62598764827,8995.91921042528,2.25447738611361,40920.8428213854,15261.6349970851,0,40920.8428213854,39.9207495343593,39.9207495343593,0.612239813090221,39.908467587716,25.1,1015.1,38.77,73.6444627497377 +45644,2873.72331544555,456.437965544554,45,42.2978613861386,43.5667972277228,7.04108855886139,1.08990099009901,1504.93564356436,5066.26930693069,4124.17524752475,20,40,9.92079207920792,32,5305611.95031087,395901.965732979,0,0,0,0,0,0,0,42.2978613861386,9973.36983869632,14.0821771177228,7.55200613976209,8.4171861739351,1.08990099009901,1.10454119902887,0.797491144740818,4.22788469404746,3.35425292705574,3.31574530743774,43.7768033513631,-0.00604817067522786,9190.44455445545,9102.59250073523,8853.75050470331,2.12856686770098,34260.6151701748,17413.1113128261,0,34260.6151701748,42.2766685619057,42.2766685619057,0.696617434020626,42.2850917836882,25.1,1015.1,38.76,70.9476452135514 +45645,2873.72699811881,456.445981089109,45,44.7549108910891,46.0975582178218,7.4796298129802,1.85752475247525,1582.42574257426,4822.23861386139,3880.4702970297,20,40,9.71287128712871,32,5305618.59178139,395912.073994948,0,0,0,0,0,0,0,44.7549108910891,9985.46198583604,14.9592596259604,8.02236895595991,8.93109743848098,1.85752475247525,1.8721649614051,1.34762033207876,4.44340886873132,3.52524212049388,3.41090605279002,46.030898960395,0.0329769305863615,8702.70891089109,8693.84481913538,8702.62709924547,2.01166838368284,32224.0320653724,17390.4076097132,0,32224.0320653724,44.7582114498578,44.7582114498578,0.695176943436921,44.7518315378805,25.1,1015.1,38.75,79.8422180872765 +45646,2873.73105841584,456.454245940594,45,47.1158613861386,48.5293372277228,9.55469636964357,2.60445544554455,1669.51485148515,4575.15544554455,3742.15346534654,20,40,10,32,5305625.927157,395922.50541734,0,0,0,0,0,0,0,47.1158613861385,9998.23930401536,19.1093927392871,10.2480071147947,10.8320438685437,2.60445544554455,2.61909565447441,1.97242048388381,2.92007542203399,2.31668369418192,2.41647822829049,48.5642184489333,0.0209525912677537,8317.30891089108,8327.41044995588,8329.78310499784,1.91056406682297,30862.3601446152,15831.9381477995,0,30862.3601446152,47.1359339280462,47.1359339280462,0.632997581936408,47.134353513139,25.1,1015.1,38.74,117.848386722655 +45647,2873.73534643564,456.462863663366,45,49.4118811881188,50.8942376237624,9.87448679868317,1.75613861386139,1753.80693069307,4290.65049504951,3689.02079207921,20,40,10,32,5305633.67644504,395933.384001256,0,0,0,0,0,0,0,49.4118811881188,10011.6534294004,19.7489735973663,10.5910022729091,11.2362032415533,1.75613861386139,1.77077882279124,1.33880624161156,3.20179582315762,2.54019061276243,2.56644515521353,51.0161756414834,0.0203765750129701,7979.67128712871,7974.57159102049,7976.38509907332,1.82169545020667,29659.0337950486,15609.008198446,0,29659.0337950486,49.4161748848151,49.4161748848151,0.624087780065139,49.4115655695047,25.1,1015.1,38.73,126.534771787587 +45648,2873.73984940594,456.471898118812,45,51.662,53.21186,10.1661325632871,-0.211188118811881,1828.65346534653,3991.20495049505,3648.2297029703,20,40,10,32,5305641.81455497,395944.788869803,0,0,0,0,0,0,0,51.6619999999999,10025.6953584983,20.3322651265743,10.9038105250014,11.6133497558058,-0.211188118811881,-0.196547909882024,-0.13331058199248,3.52394147595631,2.79576948423914,2.71404018772343,53.1933730805018,0.0167044713887246,7639.43465346534,7579.01920399961,7551.02080243256,1.74232534057892,28316.1477457407,14982.8049037393,0,28316.1477457407,51.645775904323,51.645775904323,0.599088869282965,51.622411603712,25.1,1015.1,38.72,135.640078789687 +45649,2873.74456980198,456.481304653465,45,53.6869306930693,55.2975386138613,12.5419603960396,-0.0648514851485149,1900.26237623762,3703.56831683168,3273.57623762376,20,40,10,32,5305650.34707767,395956.664475193,0,0,0,0,0,0,0,53.6869306930692,10040.3336017876,25.0839207920792,13.4520338898934,13.750894520188,-0.0648514851485149,-0.0502112762186573,-0.0345548871512944,1.68881493219466,1.33984553494207,1.42255199286354,55.276391861863,0.0199445628218824,6977.14455445544,7041.80103911381,7025.72167356051,1.67656281369346,25860.9989008867,13488.3087733241,0,25860.9989008867,53.6774256445446,53.6774256445446,0.539266302867905,53.6684680923667,25.1,1015.1,38.71,189.483053863818 +45650,2873.74949792079,456.491028316832,45,55.5377128712871,57.2038442574257,12.1507062705941,-0.0678217821782177,1936.34158415842,3376.06435643564,2881.68910891089,20,40,10,32,5305659.25727673,395968.942035826,0,0,0,0,0,0,0,55.537712871287,10055.5120427942,24.3014125411881,13.0323894651896,13.5239598590904,-0.0678217821782177,-0.05318157324836,-0.0571883350492569,2.59716185504499,2.06049558697459,2.01160024877504,56.3258934780787,-0.0614177331663021,6257.75346534654,6421.88282521321,6545.20811902155,1.62064618715576,22833.1694099998,12313.5214331665,0,22833.1694099998,55.5375706303303,55.5375706303303,0.493287695106158,55.5273815331469,25.1,1015.1,38.6962128712871,183.756844008371 +45651,2873.75463237624,456.501006534653,45,57.3111485148515,59.030482970297,11.9325550055446,-0.176435643564356,1494.39108910891,3717.47425742574,3124.54752475248,20,40,9.81188118811881,32,5305668.54399206,395981.54355112,0,0,0,0,0,0,0,57.3111485148514,10071.1845811056,23.8651100110891,12.7984086425826,13.4403989228103,-0.176435643564356,-0.161795434634499,-0.125293923754957,3.21277403962976,2.54890033816893,2.50547222543922,43.4700746956908,-0.0759621435995882,6842.02178217822,6673.56441525341,6599.27025790087,1.57051144312911,18718.5783326646,12423.6079017555,0,18718.5783326646,57.3064549553965,57.3064549553965,0.497756211264683,57.3083357192956,25.1,1015.1,38.66,180.947253631918 +45652,2873.7599829703,456.511237920792,45,59.1019108910891,60.8749682178218,13.1882931793069,-1.58514851485149,1495.23762376238,3555.80198019802,2984.33168316832,20,40,10,32,5305678.2254135,395994.467617533,0,0,0,0,0,0,0,59.101910891089,10087.3557282453,26.3765863586139,14.145266066532,14.6111806839569,-1.58514851485149,-1.57050830592163,-1.20967464817692,2.4464761689361,1.94094693788116,1.94444215953313,43.4946993905828,0.0163444612294849,6540.13366336634,6543.99419664739,6549.55074140445,1.52291748235622,17326.5873589294,12127.4997274072,0,17326.5873589294,59.0964355455347,59.0964355455347,0.484944286507862,59.0865093310912,25.1,1015.1,38.62,214.063358310461 +45653,2873.76553643564,456.521742970297,45,60.8017326732673,62.6257846534653,14.1401287128713,-0.493762376237624,1551.13366336634,3421.35940594059,3013.25445544555,20,40,10,32,5305688.27650746,396007.739319024,0,0,0,0,0,0,0,60.8017326732672,10104.0113133388,28.2802574257426,15.16616897571,15.5187516929047,-0.493762376237624,-0.479122167307767,-0.371362522679409,1.9476759416563,1.54521662746731,1.63066556180188,45.1206492737732,0.00676819099370738,6434.61386138614,6434.28372708558,6433.13822269849,1.48033345508826,17191.1995169039,11883.8225900924,0,17191.1995169039,60.8010394079011,60.8010394079011,0.4752870088989,60.8046854477484,25.1,1015.1,38.58,241.082462602647 +45654,2873.77124069307,456.532551584158,45,62.487900990099,64.362538019802,13.7065726072277,-0.895643564356436,1590.19306930693,3295.55544554455,3000.84653465347,20,40,10,32,5305698.60013665,396021.394161194,0,0,0,0,0,0,0,62.4879009900989,10121.1410943619,27.4131452144554,14.701153041827,15.2465640164816,-0.895643564356436,-0.881003355426577,-0.684109595726457,2.80761080796322,2.22745828047369,2.19282498188545,46.2568413363339,0.0175684957709,6296.40198019802,6293.01011665523,6291.27952179258,1.44036428242782,16779.474781443,11584.8659564995,0,16779.474781443,62.4930441133221,62.4930441133221,0.463226644446618,62.4937168029077,25.1,1015.1,38.54,232.803850258723 +45655,2873.77707990099,456.543664950495,45,64.1471386138614,66.0715527722772,14.0845148514851,-0.933960396039604,1631.29702970297,3147.09207920792,2963.28811881188,20,40,10,32,5305709.16693304,396035.433091466,0,0,0,0,0,0,0,64.1471386138613,10138.7334074807,28.1690297029703,15.1065196446253,15.6630112681731,-0.933960396039604,-0.919320187109746,-0.706897128533815,2.87127629894458,2.27796821036305,2.27635752983357,47.4525070772009,0.0200885668855783,6110.3801980198,6112.55991569454,6113.00513170252,1.40309619148457,16272.759475306,11264.6481997984,0,16272.759475306,64.1457349279482,64.1457349279482,0.450392935333151,64.1425797386105,25.1,1015.1,38.5,245.587194980773 +45656,2873.78304871287,456.555084356436,45,65.7291782178218,67.7010535643564,14.6072772277228,-1.82247524752475,1673.73267326733,3028.25049504951,2895.84257425742,20,40,10,32,5305719.96696687,396049.857530934,0,0,0,0,0,0,0,65.7291782178217,10156.7757160891,29.2145544554456,15.6672148612783,16.1987168465816,-1.82247524752475,-1.8078350385949,-1.39018976462259,2.76513958100906,2.19376312376158,2.26607000525992,48.6869099112022,0.0120243393186078,5924.09306930693,5928.35703362416,5928.47331339159,1.36931636554806,15797.3005071468,10927.0584354897,0,15797.3005071468,65.7352469365748,65.7352469365748,0.436966964023134,65.7348588900332,25.1,1015.1,38.46,262.728803881165 +45657,2873.78913990099,456.566794752475,45,67.276900990099,69.295208019802,14.7787343237624,-1.32217821782178,1713.07425742574,3009.00099009901,2768.87227722772,20,40,9.98019801980198,32,5305730.98719041,396064.648487267,0,0,0,0,0,0,0,67.2769009900989,10175.254390704,29.5574686475248,15.8511132785716,16.4334622851131,-1.32217821782178,-1.30753800889192,-1.00791099146092,3.03671709199119,2.40922303505407,2.36127927267256,49.8313102053935,0.00626417677077172,5777.87326732673,5776.42724242721,5778.39987317027,1.33780134094737,15406.5007806614,10521.240276287,0,15406.5007806614,67.2802323301637,67.2802323301637,0.420789356163325,67.2794552850773,25.1,1015.1,38.42,271.194282806194 +45658,2873.79536623762,456.578781089109,45,68.777396039604,70.8407179207921,15.8853388337624,-0.286831683168317,1749.94554455446,2971.21584158416,2684.80099009901,20,40,9.99009900990099,32,5305742.25160267,396079.787635428,0,0,0,0,0,0,0,68.7773960396039,10194.1542727722,31.7706776675247,17.0380155570965,17.461092519441,-0.286831683168317,-0.272191474238459,-0.20496344713268,2.36589279250732,1.87701496106097,1.85916601020554,50.9038524718006,0.0128163616689353,5656.01683168317,5661.8510440153,5662.08122080278,1.30860989646553,15069.7002371009,10163.7747238222,0,15069.7002371009,68.7726384668169,68.7726384668169,0.406428019039541,68.7725039854382,25.1,1015.1,38.38,305.552082982715 +45659,2873.80174277228,456.591032970297,45,70.2399801980198,72.3471796039604,15.8764279428713,-0.28980198019802,1787.61881188119,2899.32574257426,2648.5603960396,20,40,10,32,5305753.78831635,396095.26252302,0,0,0,0,0,0,0,70.2399801980197,10213.4650316006,31.7528558857426,17.0284580714666,17.5372829846404,-0.28980198019802,-0.275161771268163,-0.216035832542101,2.71418607045196,2.15333842576295,2.13881205780892,51.9997233965264,0.00180005079619877,5547.88613861386,5542.99500049015,5542.82598074676,1.28135572144054,14786.0157414287,9808.97394249217,0,14786.0157414287,70.228323791785,70.228323791785,0.392341709418473,70.2230181672258,25.1,1015.1,38.34,308.307952728981 +45660,2873.8082490099,456.603514059406,45,71.628306930693,73.7771561386139,16.343497249604,-0.623366336633663,1821.36138613861,2860.43366336634,2578.79108910891,20,40,10,32,5305765.56018511,396111.027197876,0,0,0,0,0,0,0,71.628306930693,10233.1668054455,32.6869944992079,17.5294190013928,18.0149221424462,-0.623366336633663,-0.608726127703806,-0.477742748925853,2.57016501213192,2.03907725466058,2.00143317946625,52.9812550946777,0.0139683941785025,5439.22475247525,5436.17762964415,5435.86969049661,1.25652822905038,14483.5779908468,9716.50997902528,0,14483.5779908468,71.6223591804724,71.6223591804724,0.388526723959517,71.6203217138847,25.1,1015.1,38.3037871287129,325.129710534569 +45661,2873.81491376238,456.616221881188,45,72.9739900990099,75.1632098019802,17.1374257425743,0.502277227722772,1857.82673267327,2794.82871287129,2535.58118811881,20,40,10,32,5305777.62063627,396127.079533518,0,0,0,0,0,0,0,72.9739900990098,10253.2554999449,34.2748514851485,18.3809567719123,18.7672750815669,0.502277227722772,0.516917436652629,0.403052236306445,2.19182904927594,1.73891899523434,1.7729471323442,54.0419890278617,0.00993628039501722,5330.4099009901,5327.67417900206,5327.62764732278,1.23334830445061,14210.9370511989,9078.76604898253,0,14210.9370511989,72.9680922458582,72.9680922458582,0.36305536494244,72.9681747700658,25.1,1015.1,38.29,352.608786262718 +45662,2873.82168267327,456.629165049505,45,74.2665742574257,76.4945714851485,16.5642810780198,-0.798910891089109,1891.31188118812,2724.44851485149,2478.41188118812,20,40,10,32,5305789.86879232,396143.428443952,0,0,0,0,0,0,0,74.2665742574256,10273.7071884488,33.1285621560396,17.766223412219,18.3536960041059,-0.798910891089109,-0.784270682159251,-0.598219704905714,3.06872531009472,2.43461721371149,2.38054056077838,55.0160325147008,0.000216006095543854,5202.8603960396,5201.87184589746,5201.56763767286,1.21188068881904,13875.1589728791,8877.8934806689,0,13875.1589728791,74.2655727869816,74.2655727869816,0.355113605419941,74.2647235905408,25.1,1015.1,38.28,337.474023072405 +45663,2873.82856643564,456.642334851485,45,75.5206930693069,77.7863138613861,16.5839708471287,-1.46623762376238,1919.71782178218,2671.82673267327,2407.18118811881,20,40,10,32,5305802.32465825,396160.063428524,0,0,0,0,0,0,0,75.5206930693069,10294.5146056655,33.1679416942574,17.7873419162625,18.442312202884,-1.46623762376238,-1.45159741483252,-1.10979555926307,3.40186502754643,2.69891838397618,2.60425989411879,55.8423278321879,0.0105842986816488,5079.00792079208,5081.54561317518,5082.30181381598,1.19175097909104,13520.1876194246,8584.27678353704,0,13520.1876194246,75.5194911283207,75.5194911283207,0.34326972301191,75.5189081893145,25.1,1015.1,38.27,340.832436745706 +45664,2873.8355849505,456.655697821782,45,76.7408514851485,79.043077029703,17.4838498349505,-0.811782178217822,1950.86138613861,2645.12376237624,2334.81584158416,20,40,10,32,5305815.02584997,396176.943459393,0,0,0,0,0,0,0,76.7408514851484,10315.6642479372,34.967699669901,18.7525181932347,19.2783946147446,-0.811782178217822,-0.797141969287964,-0.615102220872563,2.79438899094995,2.21696856241676,2.33557514563182,56.7482573968988,0.00993628039501722,4979.9396039604,4978.26323889814,4972.63334179572,1.17280104364054,13257.3549717162,8165.25000270747,0,13257.3549717162,76.7353418292324,76.7353418292324,0.326514829700793,76.7331170347803,25.1,1015.1,38.26,372.336585868574 +45665,2873.84274752475,456.669235247525,45,77.8789702970297,80.2153394059406,16.912804730099,0.00227722772277237,1910.02475247525,2596.95445544554,2335.7297029703,20,40,9.78217821782178,32,5305827.99002853,396194.045532592,0,0,0,0,0,0,0,77.8789702970296,10337.1404226622,33.825609460198,18.1400367421255,18.8575030831712,0.00227722772277237,0.0169174366526294,0.0172472390776144,3.65457014591551,2.89940561206092,2.83704748534709,55.5603678754713,-0.0740180887396935,4932.68415841584,4899.26018037447,4907.74395406765,1.15566182286841,12638.6637619633,8016.85666223927,0,12638.6637619633,77.8826938535437,77.8826938535437,0.321334237384123,77.8837446434944,25.1,1015.1,38.25,355.850940647303 +45666,2873.85002564356,456.682960990099,45,79.0592673267327,81.4310453465346,18.3670462044555,-0.584059405940594,1720.74257425743,2561.69405940594,2316.84455445545,20,40,10,32,5305841.16406605,396211.385961203,0,0,0,0,0,0,0,79.0592673267326,10358.939220572,36.7340924089109,19.6998013227335,20.1629350244171,-0.584059405940594,-0.569419197010737,-0.437914048406331,2.54065197111747,2.01566266051415,2.19750944228309,50.0543725000585,-0.00288008127391804,4878.53861386139,4910.83315361239,4908.53087387,1.13840757886609,11119.7265884498,7934.45736792507,0,11119.7265884498,79.0502357611998,79.0502357611998,0.317402161008185,79.0488697031226,25.1,1015.1,38.24,407.252812280582 +45667,2873.85739019802,456.696913366337,45,80.1469702970297,82.5513794059406,17.5079405942574,-1.10623762376238,1741.44059405941,2488.89405940594,2324.99306930693,20,40,10,32,5305854.49318661,396229.011502623,0,0,0,0,0,0,0,80.1469702970296,10381.0543263476,35.0158811885149,18.7783570334476,19.4938894952704,-1.10623762376238,-1.09159741483252,-0.833356138698818,3.65401034366801,2.89896148492332,2.80358901646492,50.6564534903711,0.00482413613381272,4813.88712871287,4812.29264777963,4811.84774514285,1.12295459572486,10953.6328782634,7762.7186470725,0,10953.6328782634,80.1566538574648,80.1566538574648,0.310469289503196,80.1581008617484,25.1,1015.1,38.23,380.257816358718 +45668,2873.86483980198,456.711074356436,45,81.2477128712871,83.6851442574257,18.8135423545545,-2.22316831683168,1766.03465346535,2466.69108910891,2281.12574257426,20,40,10,32,5305867.97522875,396246.899660401,0,0,0,0,0,0,0,81.247712871287,10403.4763677942,37.6270847091089,20.1786962604608,20.6676062041953,-2.22316831683168,-2.20852810790183,-1.70532046316867,2.83392288854024,2.2483333467726,2.27414918717493,51.3718656788123,0.00669618896185943,4747.81683168317,4751.99156945398,4752.16136273434,1.10773455008077,10806.9393551196,7353.62579553185,0,10806.9393551196,81.2530657778648,81.2530657778648,0.294090176344375,81.2530529067535,25.1,1015.1,38.22,428.681516532899 +45669,2873.87238891089,456.725422079208,45,82.3339405940594,84.8039588118812,19.1272579759406,-1.22930693069307,1789.39603960396,2469.96138613861,2230.01782178218,20,40,10,32,5305881.6374613,396265.023655758,0,0,0,0,0,0,0,82.3339405940593,10426.1968428217,38.2545159518812,20.5151758089058,20.9970511062347,-1.22930693069307,-1.21466672176321,-0.948523137236298,2.71447913453022,2.15357093235039,2.07025610542526,52.0514208553933,0.00345609752870164,4699.97920792079,4699.57798255073,4699.59371423381,1.09312103514044,10696.8551625911,7554.32940606798,0,10696.8551625911,82.3334909322614,82.3334909322614,0.302144942216999,82.3330719411389,25.1,1015.1,38.21,441.725187300603 +45670,2873.88004851485,456.73995940594,45,83.3966435643564,85.8985428712872,18.5620330032673,-2.4550495049505,1810.64356435644,2430.70693069307,2217.27920792079,20,40,10,32,5305895.50017962,396283.387427908,0,0,0,0,0,0,0,83.3966435643563,10449.2170500549,37.1240660065347,19.9089368121525,20.5773475862657,-2.4550495049505,-2.44040929602064,-1.88035732497134,3.46258972627869,2.74709519417965,2.78168331247169,52.6694862967761,0.00590416661153197,4647.98613861386,4644.6448877561,4644.55315022628,1.07919114954948,10567.404224886,6969.27518443008,0,10567.404224886,83.387069699049,83.387069699049,0.278722674247623,83.3860325290351,25.1,1015.1,38.2050495049505,423.678299272065 +45671,2873.8878080198,456.754666732673,45,84.3831881188119,86.9146837623763,19.3260242022772,-1.53693069306931,1827.30693069307,1637.08514851485,1522.85445544554,20,40,10,32,5305909.54420092,396301.966200545,0,0,0,0,0,0,0,84.3831881188118,10472.5215487073,38.6520484045544,20.7283649698038,21.2842996762076,-1.53693069306931,-1.52229048413945,-1.17667734106378,3.06620738202089,2.43261957938063,2.57808494999899,53.1542039751765,0.00590416661153198,3159.9396039604,2971.1610920498,2944.27093383036,1.06657406885512,7180.76481203759,4069.43884582919,0,7180.76481203759,84.3008679541221,84.3008679541221,0.162729144201538,84.2950017211066,25.1,1015.1,38.23,454.399189986976 +45672,2873.89561643565,456.769462673267,45,84.2579108910892,86.7856482178218,18.4049752471287,0.618118811881188,1820.69306930693,-110.567326732673,-132.608910891089,20,40,10,32,5305923.67689749,396320.656893648,0,0,0,0,0,0,0,84.2579108910891,10495.9714415291,36.8099504942574,19.740482583983,20.4926535327805,0.618118811881188,0.632759020811046,0.485384640184602,3.8508668598871,3.05514042392503,2.91254074307185,52.9618145460787,-0.00842423772621026,-243.176237623762,3.75131849818648,36.3397748372969,1.06815108458222,-548.212771780165,-2700.38077093739,0,-548.212771780165,84.2645480835211,84.2645480835211,-0.107946933307188,84.2648967203796,25.1,1015.1,38.26,419.95007116519 +45673,2873.90340316832,456.784187722772,45,84.0010099009901,86.5210401980198,18.4681138611881,-1.07841584158416,1818.25742574257,568.388118811881,560.99900990099,20,40,10,32,5305937.77107517,396339.258467264,0,0,0,0,0,0,0,84.00100990099,10519.3292301705,36.9362277223762,19.8082026811025,20.5321709454081,-1.07841584158416,-1.0637756326543,-0.818133582007474,3.69876223903894,2.93446604261633,2.92836300435149,52.8909645467404,0.000576016254783605,1129.38712871287,1100.61840015685,1094.21456463403,1.07141639781053,2560.81110586578,-224.329071370612,0,2560.81110586578,84.0203745711204,84.0203745711204,-0.00897787798581789,84.0227181456462,25.1,1015.1,38.29,421.706067558946 +45674,2873.91119782179,456.798894257426,45,84.0944059405941,86.6172381188119,19.0050104511881,-1.46178217821782,1817.75742574257,804.379207920792,823.663366336634,20,40,10,32,5305951.88039807,396357.837150186,0,0,0,0,0,0,0,84.094405940594,10542.6756113036,38.0100209023762,20.3840577225782,20.9941186684892,-1.46178217821782,-1.44714196928796,-1.11553062758472,3.21493686712497,2.55061624836552,2.56641852830151,52.8764201363071,0.00784822147142665,1628.04257425743,1604.81949808842,1602.55514944018,1.07022706201355,3685.49672516194,954.95209705948,0,3685.49672516194,84.1032403685912,84.1032403685912,0.0381335163219238,84.1035662070879,25.1,1015.1,38.32,441.253046900405 +45675,2873.91899633663,456.81362980198,45,84.243702970297,86.771014059406,18.8635847086139,-1.26831683168317,1824.5198019802,823.906930693069,833.538613861386,20,40,10,32,5305965.99628345,396376.452006905,0,0,0,0,0,0,0,84.2437029702969,10566.0546416391,37.7271694172277,20.2323698028322,20.8824910480392,-1.26831683168317,-1.25367662275331,-0.965299184730827,3.38525349879905,2.68573938952484,2.70266676345192,53.0731296873157,-0.00446412597457295,1657.44554455446,1661.64792667385,1661.56743777181,1.06833032044276,3759.16029470581,1021.84117704999,0,3759.16029470581,84.2494837761003,84.2494837761003,0.0409096602729358,84.2495927639492,25.1,1015.1,38.35,436.392240441369 +45676,2873.92680633664,456.828398217822,45,84.3897821782178,86.9214756435644,19.5031380638614,-0.505742574257426,1827.17821782178,806.221782178218,819.919801980198,20,40,10,32,5305980.13276714,396395.108100572,0,0,0,0,0,0,0,84.3897821782177,10589.4794350109,39.0062761277228,20.9183306205606,21.4349748887613,-0.505742574257426,-0.491102365327569,-0.375827822872013,2.83029944331018,2.24545863455869,2.27575503132672,53.1504598695204,0.00439212394272501,1626.14158415842,1622.3893049701,1622.17783843805,1.06648006919894,3687.27830187765,892.590636206236,0,3687.27830187765,84.3882880109792,84.3882880109792,0.035667799453239,84.3884918108632,25.1,1015.1,38.38,460.059738223061 +45677,2873.93462792079,456.843188811881,45,84.5002772277228,87.0352855445545,19.4073652365347,-0.895049504950495,1829.99504950495,766.309900990099,801.943564356436,20,40,10,32,5305994.29027203,396413.792114161,0,0,0,0,0,0,0,84.5002772277227,10612.9381649614,38.8147304730693,20.8156082965978,21.3592870508659,-0.895049504950495,-0.880409296020637,-0.681205754178727,3.00746963010721,2.38601914191776,2.32408852589076,53.2323981817633,-0.0036721036242455,1568.25346534653,1562.46778809611,1561.46133512834,1.06508559638739,3556.57967039973,810.007442778473,0,3556.57967039973,84.5103198706008,84.5103198706008,0.0324300994455858,84.5104768884364,25.1,1015.1,38.41,457.127270739443 +45678,2873.94245178218,456.858007227723,45,84.6076930693069,87.1459238613862,20.3208630362376,-0.897524752475247,1831.82673267327,679.035422724752,713.03118379802,20,40,10,32,5306008.45143257,396432.510767733,0.752475247524752,0.752475247524752,3992639.50925092,298308.917868144,6.61862907707485,0,0,84.6076930693068,10636.4269866611,40.6417260724753,21.7953915977656,22.1427124192654,-0.897524752475247,-0.88288454354539,-0.680363115627022,2.28444232929296,1.8123950685101,1.77715846677226,53.2856796853308,0.0038161076879414,1392.06660652277,1404.70472650076,1405.68561788263,1.06373344370638,3156.34963433767,441.980749450336,0,3156.34963433767,84.6032748750121,84.6032748750121,0.0176480519339141,84.6032542205888,25.1,1015.1,38.44,491.308872149893 +45679,2873.95027079208,456.872855346535,45,84.7051881188118,87.2463437623762,20.4232513752475,0.885049504950495,1832.14851485149,679.606972536634,693.598680917822,20,40,10,32,5306022.60300224,396451.266167314,1,1,5306020.74501166,396452.779786381,29.3407455380143,0,0,84.7051881188118,10659.940470682,40.8465027504951,21.9052094701555,22.2357225234085,0.885049504950495,0.899689713880354,0.708838628714657,2.27918702524748,1.80822569771294,1.92877154039775,53.2950399494711,-0.00129603657326312,1373.20565345446,1372.23191005484,1372.15433096199,1.06250889590041,3110.38289755345,410.442254819129,0,3110.38289755345,84.691224291736,84.691224291736,0.0164281279613071,84.6901278642149,25.1,1015.1,38.47,495.824982112854 +45680,2873.95807782178,456.887735445545,45,84.7579504950496,87.300689009901,19.3399691967327,0.181584158415842,1833.85643564356,693.139408231683,681.172276459406,20,40,10,32,5306036.73172566,396470.060912404,1,1,5306035.5845091,396470.995496716,52.8359107282499,0,0,84.7579504950494,10683.4716273377,38.6799383934653,20.7433218451315,21.3171194516265,0.181584158415842,0.196224367345699,0.159258499241045,3.14155252229063,2.49239572645603,2.47276475195934,53.3447213514462,0.00439212394272501,1374.31168469109,1373.29153059383,1373.21025391513,1.06185040935588,3113.8922362442,213.906720684554,0,3113.8922362442,84.7226723850602,84.7226723850602,0.00852040649609391,84.7222582743988,25.1,1015.1,38.5012623762376,455.361553797328 +45681,2873.96586247525,456.90264980198,45,84.76,87.3028,19.964597359802,-0.255049504950495,1835.91584158416,689.994555652475,663.07110949604,20,40,10,32,5306050.81829528,396488.897494072,1,1,5306050.42767707,396489.215712678,76.3368874092074,0,0,84.7599999999999,10707.0118247249,39.929194719604,21.4132744644081,21.8490640837059,-0.255049504950495,-0.240409296020637,-0.16956191201437,2.88487664840908,2.28875824256627,2.21866298076643,53.4046270419437,0.0137523880829586,1353.06566514851,1352.93702532256,1352.92366299506,1.06182712816281,3069.11571781164,696.940273964883,0,3069.11571781164,84.7742926183707,84.7742926183707,0.0277655240771706,84.77480575641,25.1,1015.1,38.54,479.728872692599 +45682,2873.9736409901,456.917582079207,45,84.7848811881188,87.3284276237624,19.7764504949505,-0.812772277227723,1835.31188118812,673.063777758416,655.937309448515,20,40,10,32,5306064.89315414,396507.75610238,1,1,5306065.27695933,396507.443434028,99.8475447638828,0,0,84.7848811881187,10730.5667740373,39.552900989901,21.2114752302901,21.6909391108629,-0.812772277227723,-0.798132068297865,-0.620500504617799,2.72165036995658,2.15926033477268,2.19230863063258,53.3870585461727,-0.00252007111467827,1329.00108720693,1329.88223251811,1329.95243423012,1.06151090927776,3012.63993508745,82.8720261828997,0,3012.63993508745,84.8086930693068,84.8086930693068,0.00333572961254784,84.8095212635548,25.1,1015.1,38.58,471.685562022967 +45683,2873.98142653465,456.932513267327,45,84.8258910891089,87.3706678217821,18.8769917493069,-1.05019801980198,1835.90594059406,657.913153664357,666.329659175247,20,40,10,32,5306078.98111935,396526.61349536,1,1,5306080.13087481,396525.676842724,123.365537826218,0,0,84.8258910891088,10754.1283729372,37.7539834986139,20.2467496892352,20.9275452057093,-1.05019801980198,-1.03555781087212,-0.794261981066094,3.51942936548075,2.79218973671406,2.77317176090387,53.4043390338163,0.000576016254783607,1324.2428128396,1325.32362235088,1325.40973150602,1.06099724899528,3001.36513532576,76.024519770973,0,3001.36513532576,84.8311950789137,84.8311950789137,0.00303619470858432,84.8316593116453,25.1,1015.1,38.62,438.282940903103 +45684,2873.98921722772,456.947450792079,45,84.8483762376238,87.3938275247525,20.5235940593069,-1.24584158415842,1835.25742574257,658.472097291089,684.693480274257,20,40,10,32,5306093.07854045,396545.478860145,1,1,5306094.99246598,396543.919673458,146.895683712409,0,0,84.8483762376236,10777.6952943894,41.0471881186139,22.0128332501665,22.3296234388163,-1.24584158415842,-1.23120137522856,-0.950803709498213,2.7638172599494,2.19271404139396,2.16413919652191,53.3854745014721,-0.00547215442044427,1343.16557756535,1343.45235999638,1343.47520823428,1.06071600547038,3042.38382363924,158.483952455398,0,3042.38382363924,84.8556593471227,84.8556593471227,0.00638417802177038,84.8557670909947,25.1,1015.1,38.66,501.555998348092 +45685,2873.99700564357,456.962398712871,45,84.8868316831683,87.4334366336633,22.9631408140594,-0.243069306930693,1836.28712871287,674.226718445545,694.145160310891,20,40,10,32,5306107.17157185,396564.357006507,1,1,5306109.85856486,396562.168037467,170.432966582116,0,0,84.8868316831682,10801.2702312156,45.9262816281188,24.6293991285974,24.4074013517684,-0.243069306930693,-0.228429098000836,-0.16750875359563,2.30253608564981,1.82675000948256,1.88649016436983,53.4154273467208,0.00151204266880697,1368.37187875644,1367.60096766363,1367.53954841994,1.06023587150341,3099.79862360766,117.09269203552,0,3099.79862360766,84.8756728752082,84.8756728752082,0.00467138297988131,84.8758645921734,25.1,1015.1,38.7,597.764782004738 +45686,2874.00478673267,456.977353366337,45,84.8818415841584,87.4282968316832,19.5714202417822,-0.513366336633663,1836.57920792079,690.69229110198,685.994868250495,20,40,10,32,5306121.250942,396583.243203578,1,1,5306124.72315629,396580.414551057,193.967862727194,0,0,84.8818415841583,10824.8503621562,39.1428404835643,20.9915675103658,21.5214833302643,-0.513366336633663,-0.498726127703807,-0.378065244481347,2.96282075153901,2.3505963140819,2.29800833141813,53.4239235864789,0.00244806908283032,1376.68715935248,1375.56732683927,1375.47810868322,1.06029829542249,3119.31273086337,-2.12125548181718,0,3119.31273086337,84.8918676600332,84.8918676600332,-0.000104837216386159,84.891567939651,25.1,1015.1,38.74,464.322060494168 +45687,2874.01258029703,456.992297920792,45,84.9139405940594,87.4613588118812,19.9240511552475,-0.887821782178218,1837.46534653465,692.730443677228,667.735945029703,20,40,10,32,5306135.35370682,396602.117142865,1,1,5306139.59107788,396598.665152473,217.508031470882,0,0,84.9139405940593,10848.4302212045,39.8481023104951,21.3697861339917,21.8232530886421,-0.887821782178218,-0.873181573248359,-0.673753798249282,2.86867366139225,2.27590337055315,2.43543674059025,53.4497003138804,0.00460813003826886,1360.46638870693,1360.02720362073,1359.99221331372,1.05989707028961,3082.87853098863,172.534231492169,0,3082.87853098863,84.9083388883442,84.9083388883442,0.00686343386813586,84.9079580386609,25.1,1015.1,38.78,478.215301121824 +45688,2874.02036960396,457.007254653466,45,84.9389405940594,87.4871088118812,18.6579603961386,-1.06168316831683,1838.5396039604,678.467308113861,656.155560441584,20,40,10,32,5306149.44837431,396621.006017792,1.07920792079208,1,5306154.46306959,396616.920744113,221.158850869824,0,0,84.9389405940593,10872.0187421891,37.3159207922772,20.0118249172913,20.7473101050125,-1.06168316831683,-1.04704295938697,-0.804116992798953,3.76434229990499,2.98649492396832,2.83319753904647,53.4809491957025,-0.00259207314652623,1334.62286855545,1335.26811564003,1335.31952310879,1.05958507717103,3025.19671335064,285.217218480252,0,3025.19671335064,84.9291830212723,84.9291830212723,0.0114299796316212,84.9293386138613,25.1,1015.1,38.82,430.47816545882 +45689,2874.02816445545,457.022213366337,45,84.9502376237624,87.4987447524753,20.507100109901,-0.489009900990099,1837.77227722772,661.016345455445,661.900666684159,20,40,10,32,5306163.55332884,396639.897450764,2,1,5306169.34071756,396635.182281935,13.4250954574755,0,0,84.9502376237623,10895.6169091033,41.014200219802,21.9951424618542,22.3213647027973,-0.489009900990099,-0.474369692060242,-0.368196839058159,2.36400412293035,1.87551655797876,1.90402016097767,53.4586285658296,-0.00921626007653772,1322.9170121396,1324.05345420073,1324.14399565569,1.05944392190083,2997.01292091526,103.528624467765,0,2997.01292091526,84.9591905695519,84.9591905695519,0.00421663453472972,84.9592449787835,25.1,1015.1,38.86,499.885491051916 +45690,2874.03598049505,457.037147623762,45,84.9795841584158,87.5289716831684,20.2622651265347,-0.270792079207921,1838.64356435644,656.4218903,679.689239564357,20,40,10,32,5306177.69813741,396658.75903219,2,1,5306184.22018658,396653.445312237,36.982193628533,0,0,84.9795841584157,10919.2184927942,40.5245302530693,21.7325416889547,22.1145509499843,-0.270792079207921,-0.256151870278063,-0.192072770951175,2.37836691431613,1.88691148440953,1.89896144789915,53.4839732810401,0.00388810971978935,1336.11112986436,1336.69392731057,1336.74035935557,1.05907807453379,3027.27974459065,72.0015981012448,0,3027.27974459065,84.9749090285265,84.9749090285265,0.00284830463246134,84.974852522395,25.1,1015.1,38.8873762376238,490.01437371597 +45691,2874.04382990099,457.052052079208,45,84.9775445544555,87.5268708910891,18.8270522550495,-0.272970297029703,1838.77227722772,668.908063521782,693.166547218812,20,40,10,32,5306191.90547728,396677.584506181,2,1,5306199.10692193,396671.717261215,60.5507958115043,0,0,84.9775445544553,10942.8239237898,37.654104510099,20.1931864704096,20.8935797247868,-0.272970297029703,-0.258330088099845,-0.197565920885175,3.59995894001135,2.85607902902709,2.84475472443321,53.4877173866962,0.00532815035674837,1362.07461074059,1361.56794228974,1361.52757551667,1.05910371535492,3086.41094433535,-49.9428044573278,0,3086.41094433535,84.976700225468,84.976700225468,-0.00204092191397195,84.9765782178217,25.1,1015.1,38.84,436.662176041981 +45692,2874.05168465346,457.066949603961,45,84.9632079207921,87.5121041584159,19.2961551153465,-0.758613861386139,1839.31683168317,686.995135051485,689.941615135643,20,40,10,32,5306206.12293571,396696.401431745,2,1,5306213.99350817,396689.989027167,84.1191619142913,0,0,84.9632079207919,10966.4262229922,38.5923102306931,20.6963285132241,21.2914106443418,-0.758613861386139,-0.743973652456281,-0.579445721709959,3.18429650425943,2.52630727726882,2.52730539865665,53.5035578337027,-0.0100802844587131,1376.93675018713,1375.80644447481,1375.71639190874,1.05928267878726,3121.53422891972,165.812094190817,0,3121.53422891972,84.9796502303695,84.9796502303695,0.00671502793843931,84.9796871287128,25.1,1015.1,38.78,454.077146137735 +45693,2874.05954544555,457.081841683168,45,84.9783564356436,87.5277071287129,18.8494735976238,-1.03821782178218,1839.63366336634,694.053934725743,672.97943100495,20,40,10,32,5306220.35176329,396715.211681726,2,1,5306228.88136133,396708.262348145,107.689533811551,0,0,84.9783564356435,10990.0310428217,37.6989471952475,20.2172347571719,20.9120889263869,-1.03821782178218,-1.02357761285232,-0.787998624981036,3.60156509494712,2.85735329506898,2.86014647462098,53.5127740937793,-0.00237606705098238,1367.03336573069,1366.31862061853,1366.26167617343,1.05909507718639,3099.08791327861,-208.286681642191,0,3099.08791327861,84.9738006077834,84.9738006077834,-0.00831209358561365,84.9741284299857,25.1,1015.1,38.72,437.462992240298 +45694,2874.06739653465,457.096746039604,45,84.9677425742574,87.5167748514851,18.6799191417822,-1.20148514851485,1838.70297029703,683.594634689109,657.874948693069,20,40,10,32,5306234.56240423,396734.036809591,2,1,5306243.76924419,396726.535705569,131.259952719569,0,0,84.9677425742573,11013.6363358635,37.3598382835644,20.0353770400256,20.767908129047,-1.20148514851485,-1.18684493958499,-0.911751519313498,3.74072146416438,2.96775499533828,2.94332684267767,53.4857013298044,0.0038161076879414,1341.46958338218,1341.8275322263,1341.85605036229,1.05922707906242,3039.95348883512,47.4064240104082,0,3039.95348883512,84.9674879913733,84.9674879913733,0.00186528553846959,84.9675783121168,25.1,1015.1,38.66,431.338490237709 +45695,2874.07522673267,457.111669207921,45,84.9656732673268,87.5146434653465,18.8091105606931,-1.74118811881188,1837.93069306931,665.233467154455,658.515159574258,20,40,10,32,5306248.73398874,396752.884584077,2,1,5306258.65263474,396744.803549142,154.823259427734,0,0,84.9656732673266,11037.2384536027,37.6182211213861,20.1739428854433,20.8775402031731,-1.74118811881188,-1.72654790988202,-1.32529524670691,3.62461224669324,2.87563808327844,2.73250939132447,53.4632366958679,0.00100802844587131,1323.74862672871,1324.85017301533,1324.93793428977,1.05925219590982,2998.6074786769,-5.91980257756756,0,2998.6074786769,84.9720545044602,84.9720545044602,-0.000245074012340189,84.9719949080621,25.1,1015.1,38.6,436.13213355157 +45696,2874.08304069307,457.126612376238,45,84.9852673267326,87.5348253465346,21.24339879,-2.15980198019802,1839.00495049505,655.851604877228,674.311456717822,20,40,10,32,5306262.8751104,396771.756639496,2,1,5306273.53576178,396763.071069285,178.386148949946,0,0,84.9852673267325,11060.8418240373,42.48679758,22.7848686677274,22.9497244848818,-2.15980198019802,-2.14516177126816,-1.68555877922366,2.02605686018317,1.60740125273967,1.77500357893105,53.4944855776899,-0.00129603657326312,1330.16306159505,1330.99544874755,1331.0617658494,1.05900817145674,3014.21352540225,74.9531936425337,0,3014.21352540225,84.9767395353396,84.9767395353396,0.00300896426276288,84.9767560584629,25.1,1015.1,38.54,528.330233367037 +45697,2874.09084475248,457.14157029703,45,85.002495049505,87.5525699009901,19.718394389505,-1.56920792079208,1840.72772277228,664.074688763366,690.740797380198,20,40,10,32,5306276.997624,396790.646649666,2,1,5306288.42025708,396781.340268833,201.951204702514,0,0,85.0024950495049,11084.4493559405,39.4367887790099,21.1492064402997,21.6532674554541,-1.56920792079208,-1.55456771186222,-1.19891135589194,2.83909021356987,2.25243291815639,2.34798013978253,53.5445989918561,-0.000864024382175412,1354.81548614356,1354.61342125421,1354.59732254595,1.05879298935312,3072.31183841682,229.923599313137,0,3072.31183841682,85.002220566611,85.002220566611,0.00920389068610064,85.002077416313,25.1,1015.1,38.48,470.028344920838 +45698,2874.09864148515,457.156542079208,45,85.0328811881188,87.5838676237624,18.9536512644555,-0.943069306930693,1840.5198019802,682.342453419802,692.698121526733,20,40,10,32,5306291.10631797,396809.553589968,2,1,5306303.30752931,396799.612876776,225.52065687081,0,0,85.0328811881187,11108.0652320956,37.9073025289109,20.3289717951259,21.0039363189499,-0.943069306930693,-0.928429098000835,-0.715683750096484,3.51476923814745,2.78849255789312,2.64845763928977,53.5385508211809,0.00496814019750861,1375.04057494653,1373.98983553914,1373.9061220988,1.05841473181243,3116.72511327522,59.6966810750287,0,3116.72511327522,85.0212480149004,85.0212480149004,0.00234726442940939,85.021215841584,25.1,1015.1,38.42,441.368247831735 +45699,2874.10644663366,457.171516039604,45,85.0348019801981,87.585846039604,19.9860830586139,-1.52524752475248,1840.38118811881,662.866051115842,649.342116276238,20,40,10,32,5306305.23061339,396828.463429508,1.10891089108911,0.554455445544555,2942115.16464142,220015.561583399,135.173715037981,0,0,85.0348019801979,11131.6856653464,39.9721661172277,21.4363192149446,21.8825619132618,-1.52524752475248,-1.51060731582262,-1.16695303549702,2.77260894750297,2.1996890527399,2.17680340859812,53.5345187073974,0.00496814019750861,1312.20816739208,1309.23095369841,1308.80320935886,1.05839081733528,2974.16950768172,-38.6020013137009,0,2974.16950768172,85.0317810998921,85.0317810998921,-0.0015848119465498,85.031245355964,25.1,1015.1,38.36,480.261271751392 +45700,2874.11424277227,457.186487722772,45,85.0346336633663,87.5856726732673,21.211394939505,-2.18277227722772,1838.77227722772,608.112871287128,564.021782178218,20,40,10,32,5306319.33833097,396847.370041439,0,0,0,0,0,0,0,85.0346336633662,11155.3026472496,42.4227898790099,22.750542544229,22.9252938889651,-2.18277227722772,-2.16813206829787,-1.71648733915116,2.61755463749603,2.07667449325448,2.1380301683157,53.4877173866962,-0.00849623975805821,1172.13465346535,1171.16958562634,1171.7390830231,1.05839369616699,2654.45010167097,79.6554644529117,0,2654.45010167097,85.0300614645622,85.0300614645622,0.00325539979742053,85.0297313531352,25.1,1015.1,38.3050495049505,528.915041565979 +45701,2874.12203504951,457.201445841584,45,84.9840495049505,87.5335709900991,20.252397139604,-0.325346534653465,1837.33663366337,603.943564356436,568.964356435643,20,40,10,32,5306333.43925885,396866.259537477,0,0,0,0,0,0,0,84.9840495049504,11178.9177965896,40.5047942792079,21.7219576581952,22.1067417700332,-0.325346534653465,-0.310706325723608,-0.244405515945797,2.46260807754093,1.95374541881725,1.93610860726469,53.4459562082244,0.0042481198790291,1172.90792079208,1177.91607685521,1178.3982272513,1.05902266092107,2655.49932907041,-175.284601334363,0,2655.49932907041,85.0077284579942,85.0077284579942,-0.00704587785511215,85.0079894389437,25.1,1015.1,38.28,489.926229787598 +45702,2874.12985910891,457.216393465347,45,84.9822277227723,87.5316945544554,20.1243575359406,-0.260495049504951,1840.77722772277,654.712871287129,616.268316831683,20,40,10,32,5306347.59935271,396885.136920754,0,0,0,0,0,0,0,84.9822277227721,11202.5277891638,40.2487150718812,21.5846272063886,21.9975080263072,-0.260495049504951,-0.245854840575093,-0.190996641646581,2.64954723669473,2.10205628042986,2.08359712635185,53.546039032493,0.0100802844587131,1270.98118811881,1262.33310459759,1261.86670438472,1.05904781465654,2883.47378715,-247.238081660389,0,2883.47378715,84.9730016665031,84.9730016665031,-0.00997178925814016,84.9736037718056,25.1,1015.1,38.26,485.491396325765 +45703,2874.13769019802,457.231337722773,45,85.0152673267327,87.5657253465347,20.2380055006931,-1.61475247524752,1837.78217821782,666.446534653465,608.062376237624,20,40,10,32,5306361.77260366,396904.01025088,0,0,0,0,0,0,0,85.0152673267326,11226.1356642738,40.4760110013862,21.7065217288629,22.0960247728117,-1.61475247524752,-1.60011226631767,-1.24944999468715,2.58983298821837,2.05468112542132,2.20523641393235,53.458916573957,-0.0187205282804672,1274.50891089109,1276.44519164788,1276.55765205092,1.05863468728491,2885.43892871353,169.251752896799,0,2885.43892871353,84.9964599549063,84.9964599549063,0.00692334084894108,84.995861103253,25.1,1015.1,38.24,490.005290853402 +45704,2874.14553009901,457.246271881188,45,85.028801980198,87.579666039604,18.8791551157426,-1.15811881188119,1840.04455445545,685.976237623762,616.673267326733,20,40,10,32,5306375.96246266,396922.871200733,0,0,0,0,0,0,0,85.0288019801979,11249.7481021726,37.7583102314852,20.2490700345153,20.9405552192487,-1.15811881188119,-1.14347860295133,-0.881279530651672,3.57491655668259,2.83621129524069,2.66196559132796,53.524726431066,0.00201605689174262,1302.6495049505,1297.91592000784,1297.64265912306,1.05846603522897,2952.05385601569,507.508846240556,0,2952.05385601569,85.0303224193705,85.0303224193705,0.0202839590889682,85.0302239509664,25.1,1015.1,38.22,438.65513458808 +45705,2874.15340217822,457.261182079208,45,85.0543564356435,87.6059871287129,18.8546474140594,-2.25049504950495,1839.60891089109,658.409900990099,581.414851485149,20,40,10,32,5306390.21252051,396941.703278163,0,0,0,0,0,0,0,85.0543564356435,11273.3730754675,37.7092948281188,20.2227839976284,20.9206692085921,-2.25049504950495,-2.23585484057509,-1.7164874077775,3.62741365105185,2.87786061758336,2.91978637421252,53.5120540734608,0.00986427836316927,1239.82475247525,1237.64111361631,1237.5130504479,1.05814711514135,2808.25771669575,187.315555731015,0,2808.25771669575,85.0679959807861,85.0679959807861,0.00741212735137435,85.0683891560583,25.1,1015.1,38.2,437.81284212538 +45706,2874.16129316832,457.276073168317,45,85.0877722772277,87.6404054455446,19.6213795378218,-1.62346534653465,1841.28712871287,582.431683168317,544.926732673267,20,40,10,32,5306404.49809336,396960.512086741,0,0,0,0,0,0,0,85.0877722772276,11297.007375715,39.2427590756435,21.0451519678364,21.57553894201,-1.62346534653465,-1.6088251376048,-1.24692003119359,2.96556173351232,2.3527709114213,2.44075116400283,53.5608714510537,-0.0110883129045844,1127.35841584158,1133.27461033232,1133.52023573786,1.05773145280548,2554.66593486809,203.844284493182,0,2554.66593486809,85.1011160670521,85.1011160670521,0.0082440174710405,85.101344365865,25.1,1015.1,38.18,466.462625109776 +45707,2874.1691990099,457.290954950495,45,85.1350792079208,87.6891315841584,19.4196727176238,-0.186831683168317,1840.55940594059,567.830693069307,536.339603960396,20,40,10,32,5306418.81144354,396979.309700959,0,0,0,0,0,0,0,85.1350792079206,11320.6502220021,38.8393454352475,20.828808836823,21.4067037036835,-0.186831683168317,-0.17219147423846,-0.126149887257417,3.26691193391485,2.59185141264504,2.43048626702176,53.5397028536904,0.00129603657326312,1104.1702970297,1102.45537692383,1102.3168505422,1.05714548748741,2499.93411512466,10.0338514311748,0,2499.93411512466,85.124259778453,85.124259778453,0.000390756897464366,85.124241395568,25.1,1015.1,38.16,459.683737997159 +45708,2874.17711564357,457.305832277228,45,85.1633069306931,87.7182061386139,20.2177508248515,-0.225445544554456,1843.08910891089,515.313861386139,525.647524752475,20,40,10,32,5306433.14494366,396998.102029182,0,0,0,0,0,0,0,85.163306930693,11344.3007302805,40.435501649703,21.6847973271549,22.0869259655124,-0.225445544554456,-0.210805335624598,-0.177203105044772,2.57257987465957,2.04099312046297,2.25589136582459,53.613288930239,0.0111603149364324,1040.96138613861,1037.97529653956,1037.78191419142,1.05679431974685,2358.89614221417,116.70840664231,0,2358.89614221417,85.1482567395353,85.1482567395353,0.00457743794183154,85.1476405469117,25.1,1015.1,38.14,489.292438553586 +45709,2874.18501237624,457.320733663366,45,85.1343069306931,87.6883361386138,18.8788663360396,-2.20217821782178,1841.72772277228,441.655445544555,492.571287128713,20,40,10,32,5306447.44110555,397016.923573121,0,0,0,0,0,0,0,85.134306930693,11367.9520083608,37.7577326720792,20.2487603002929,20.9462470716176,-2.20217821782178,-2.18753800889193,-1.68473864981977,3.60964066016143,2.86376016049174,2.76525431317578,53.5736878127226,-0.00892825194914591,934.226732673267,942.677306146456,942.949486091466,1.05715377557548,2116.41445699853,26.6985724214716,0,2116.41445699853,85.1395597490441,85.1395597490441,0.00114095567972483,85.1396914662894,25.1,1015.1,38.12,438.902562023046 +45710,2874.19288247525,457.335666930693,45,85.1365841584159,87.6906816831684,18.8006897691089,-1.91792079207921,1842.36138613861,441.917821782178,469.322772277228,20,40,10,32,5306461.68728437,397035.783852709,0,0,0,0,0,0,0,85.1365841584157,11391.6028318756,37.6013795382178,20.1649110618533,20.880099803675,-1.91792079207921,-1.90328058314935,-1.46102154948456,3.67496421986622,2.91558554297059,2.81950273843804,53.5921203328757,0.000720020318479515,911.240594059406,913.134516223899,913.2600660066,1.05712517874818,2065.21526033064,38.0957338829604,0,2065.21526033064,85.1425268110968,85.1425268110968,0.00151809735426871,85.142668269684,25.1,1015.1,38.1164108910891,436.069945451981 +45711,2874.20073376238,457.350621386139,45,85.1249405940594,87.6786888118812,20.4910682072277,-1.30792079207921,1843.03465346535,445.013861386139,479.808910891089,20,40,10,32,5306475.8982068,397054.669807975,0,0,0,0,0,0,0,85.1249405940593,11415.2523374312,40.9821364144555,21.9779472474483,22.3175676910965,-1.30792079207921,-1.29328058314935,-1.01380050452376,2.52431202447941,2.00269912962225,2.09167685793868,53.6117048855384,0.00504014222935656,924.822772277228,923.11131261641,922.888854314003,1.05726987064098,2096.50619094615,73.5913590635255,0,2096.50619094615,85.136097245368,85.136097245368,0.0029027655241003,85.1367813295614,25.1,1015.1,38.21,499.943136299212 +45712,2874.2085680198,457.365593267327,45,85.1150198019802,87.6684703960396,19.5343102312871,-2.27841584158416,1840.64356435644,440.191089108911,460.90594059406,20,40,10,32,5306490.07725789,397073.576811744,0,0,0,0,0,0,0,85.11501980198,11438.9008700494,39.0686204625743,20.9517647121532,21.5025011837181,-2.27841584158416,-2.2637756326543,-1.75240728911262,3.05924505942277,2.4270959209453,2.44921460332681,53.5421509227732,-0.00626417677077173,901.09702970297,903.462915400451,903.460311173974,1.05739595922665,2040.5369645798,-378.587359408234,0,2040.5369645798,85.1283804528967,85.1283804528967,-0.0150924745940107,85.1284581801036,25.1,1015.1,38.32,463.35554743424 +45713,2874.21639346535,457.380562673267,45,85.1066435643564,87.6598428712871,18.9762090213861,-0.804158415841584,1840.23267326733,434.740594059406,438.874257425742,20,40,9.9009900990099,32,5306504.24010223,397092.480348259,0,0,0,0,0,0,0,85.1066435643563,11462.54247533,37.9524180427723,20.3531663947842,21.0277776893707,-0.804158415841584,-0.789518206911727,-0.609740398264394,3.49667307602744,2.77413570827398,2.73509163253214,53.5301985854865,0.00792022350327459,873.614851485149,880.504381923341,880.756548797737,1.05749872580522,1978.26723234658,-172.761083979476,0,1978.26723234658,85.0999678462894,85.0999678462894,-0.0069750786959979,85.0996549740687,25.1,1015.1,38.43,442.50100782265 +45714,2874.22421871287,457.395522673267,45,85.0909801980198,87.6437096039604,18.825890539505,-2.64623762376238,1841.55445544554,467.779207920792,461.523762376238,20,40,10,32,5306518.40284958,397111.372069834,0,0,0,0,0,0,0,85.0909801980197,11486.1776147689,37.6517810790099,20.1919404581131,20.8983339217626,-2.64623762376238,-2.63159741483252,-2.02249818759984,3.65980649270584,2.90355994284795,2.8534182717076,53.5686476704933,0.000504014222935655,929.30297029703,929.906332712479,929.806506364922,1.05769224107066,2106.41869621909,-0.573097264097505,0,2106.41869621909,85.083220566611,85.083220566611,-2.72304458175321E-05,85.0831123998113,25.1,1015.1,38.54,436.856899360779 +45715,2874.23203712871,457.410496138614,45,85.1091584158416,87.6624331683168,19.4183052809901,-1.17851485148515,1840.31683168317,490.718811881188,480.245544554455,20,40,10,32,5306532.55270408,397130.280244339,0,0,0,0,0,0,0,85.1091584158415,11509.8143219746,38.8366105619802,20.8273421758419,21.4041844946314,-1.17851485148515,-1.16387464255529,-0.900869031409584,3.05808779089446,2.42617778536938,2.52501921929537,53.5326466545693,-0.00223206298728648,970.964356435643,964.015821978238,963.718887317303,1.05746598926733,2198.95875946491,152.444659078929,0,2198.95875946491,85.0988251151847,85.0988251151847,0.00611595813046731,85.0985767090994,25.1,1015.1,38.65,458.522072786176 +45716,2874.23988207921,457.425447821782,45,85.1242673267327,87.6779953465347,18.7662293734653,-2.04118811881188,1839.67326732673,486.971287128713,437.606930693069,20,40,10,32,5306546.75225449,397149.162071823,0,0,0,0,0,0,0,85.1242673267326,11533.456820847,37.5324587469307,20.1279501406402,20.8498377477038,-2.04118811881188,-2.02654790988203,-1.55574741622627,3.71408539829956,2.9466228906671,2.8895937579994,53.5139261262888,0.0042481198790291,924.578217821782,928.005254386825,928.176388495993,1.05727812788874,2092.74989419312,78.4342844156198,0,2092.74989419312,85.1140273502596,85.1140273502596,0.00310290930085369,85.1137919849127,25.1,1015.1,38.76,434.812631094618 +45717,2874.24774386139,457.440362475248,45,85.1065148514852,87.6597102970297,19.8850594053465,-2.10178217821782,1841.62376237624,486.39504950495,430.550495049505,20,40,10,32,5306560.98386579,397167.998240536,0,0,0,0,0,0,0,85.1065148514851,11557.0982625962,39.7701188106931,21.3279650530337,21.800928900786,-2.10178217821782,-2.08714196928797,-1.62507801661736,2.97887611296689,2.36333406521788,2.33602575893446,53.570663727385,0.00439212394272501,916.945544554455,920.229497108127,920.345431400283,1.05749851199665,2078.1972344168,56.3750021322336,0,2078.1972344168,85.1163480050974,85.1163480050974,0.00221928133404277,85.1163361621876,25.1,1015.1,38.87,477.473771020521 +45718,2874.25561772277,457.455244257426,45,85.1111287128713,87.6644625742575,19.290306380099,-1.91009900990099,1842.22772277228,504.20495049505,432.151485148515,20,40,10,32,5306575.23864205,397186.793773,0,0,0,0,0,0,0,85.1111287128712,11580.7417721397,38.580612760198,20.6900553802944,21.294909607661,-1.91009900990099,-1.89545880097113,-1.46592017500084,3.26126538288617,2.58737164044538,2.58348983289116,53.5882322231559,-0.00626417677077173,936.356435643564,928.372365454367,928.117369165488,1.05744129565638,2122.63129730224,-271.333746360245,0,2122.63129730224,85.1029011861581,85.1029011861581,-0.0108023178555377,85.1028919377651,25.1,1015.1,38.98,454.397569006128 +45719,2874.26351534654,457.470115544555,45,85.0976039603961,87.6505320792079,19.0433173817822,-2.26950495049505,1842.27227722772,480.182178217822,418.609900990099,20,40,10,32,5306589.53772755,397205.57692493,0,0,0,0,0,0,0,85.0976039603959,11604.3789229648,38.0866347635644,20.4251442921652,21.0836843259659,-2.26950495049505,-2.25486474156519,-1.73857870015536,3.45816119141073,2.74358175256087,2.68163583141147,53.5895282597292,0.00360010159239754,898.792079207921,901.239564748554,901.592032060349,1.05760935560797,2037.57764088274,-67.860189622165,0,2037.57764088274,85.0885793549651,85.0885793549651,-0.00274346741604391,85.0881555869872,25.1,1015.1,39.09,444.843011344629 +45720,2874.27142920792,457.484974158416,45,85.0595742574258,87.6113614851486,20.7572178217822,-2.38673267326733,1840.09900990099,495.371287128713,440.753465346535,20,40,10,32,5306603.86723205,397224.344734703,0,0,0,0,0,0,0,85.0595742574256,11628.0118329483,41.5144356435643,22.2634092902004,22.5397189956152,-2.38673267326733,-2.37209246433747,-1.8599873501611,1.9910654173104,1.57964028994824,1.71538617983237,53.5263104757667,0.00172804876435083,936.124752475248,935.276512106656,935.222781706743,1.05808252439271,2120.94687468198,178.336587687388,0,2120.94687468198,85.0720276443485,85.0720276443485,0.00711940005882221,85.0725403111739,25.1,1015.1,39.1810643564356,508.540723774238 +45721,2874.27935564356,457.499820891089,45,85.065900990099,87.617878019802,19.6178157315842,-2.18435643564356,1839.13366336634,491.372277227723,464.679207920792,20,40,10,32,5306618.22035202,397243.098067832,0,0,0,0,0,0,0,85.0659009900988,11651.6437944719,39.2356314631683,21.0413295636212,21.5705924632792,-2.18435643564356,-2.16971622671371,-1.68719615839161,2.98375078232447,2.36720145402915,2.35086141220018,53.498229683346,-0.00403211378348525,956.051485148515,950.498000196059,950.352880716643,1.05800357668851,2164.41177071448,-50.0390776529559,0,2164.41177071448,85.0818784432897,85.0818784432897,-0.00196876123256956,85.0823395568127,25.1,1015.1,39.16,466.280411205833 +45722,2874.28728712871,457.514666039604,45,85.0718118811881,87.6239662376238,18.8676622662376,-0.531386138613862,1841.23762376238,485.046534653465,438.264356435643,20,40,10,32,5306632.58292047,397261.849501032,0,0,0,0,0,0,0,85.071811881188,11675.2769719197,37.7353245324752,20.2367432374158,20.9331354518722,-0.531386138613862,-0.516745929684003,-0.400827628337987,3.60278547317474,2.85832149962949,2.82083605904483,53.5594314104167,0.00201605689174263,923.310891089109,921.905048524654,922.193003300331,1.05793099373808,2092.61964990437,21.7893029943392,0,2092.61964990437,85.0783417312027,85.0783417312027,0.000855035998660298,85.078869589816,25.1,1015.1,39.12,438.379935287935 +45723,2874.29522693069,457.52950049505,45,85.0540198019802,87.6056403960396,19.5705616062376,-1.66247524752475,1841.24257425743,480.010891089109,462.964356435643,20,40,10,32,5306646.96119161,397280.58779679,0,0,0,0,0,0,0,85.0540198019801,11698.9103818757,39.1411232124753,20.9906465702512,21.5300629936558,-1.66247524752475,-1.6478350385949,-1.27891043092049,3.10331786934009,2.46206171645928,2.52723649501101,53.5595754144805,0.00367210362424549,942.975247524752,943.454778943241,943.388279113625,1.0581544675158,2137.85202450908,-177.745501694167,0,2137.85202450908,85.0704926967943,85.0704926967943,-0.00713982289319709,85.0708781706741,25.1,1015.1,39.08,464.773198585523 +45724,2874.3031609901,457.544338811881,45,85.0730000000001,87.62519,19.8885121012871,-1.65891089108911,1842.33168316832,465.518811881188,474.290099009901,20,40,10,32,5306661.32879972,397299.330619063,0,0,0,0,0,0,0,85.0729999999999,11722.5400077008,39.7770242025743,21.3316682845332,21.8017873719409,-1.65891089108911,-1.64427068215925,-1.27212478490133,2.74931724534642,2.18121024695678,2.12446089448434,53.5912563084935,-0.00518414629305246,939.808910891089,939.658964807372,939.639566242339,1.05791866602207,2131.29751285338,-313.828861737488,0,2131.29751285338,85.0611584158415,85.0611584158415,-0.0125110283305565,85.0604933521922,25.1,1015.1,39.04,476.409214483782 +45725,2874.31108356436,457.559187524753,45,85.0728613861386,87.6250472277228,20.5199724970297,-1.17425742574257,1839.20792079208,450.623762376238,487.776237623762,20,40,10,32,5306675.67496274,397318.0859175,0,0,0,0,0,0,0,85.0728613861385,11746.1639109461,41.0399449940594,22.0089488990005,22.3390691027683,-1.17425742574257,-1.15961721681272,-0.902491512670981,2.21257915223704,1.75538138686294,1.72557180246231,53.5003897443014,5.49615358725325E-19,938.4,938.560788158024,938.819217350306,1.05791724691855,2124.54924508622,-53.2017642728115,0,2124.54924508622,85.0385057347318,85.0385057347318,-0.00212805934058297,85.0378381895331,25.1,1015.1,39,499.931233396096 +45726,2874.31898287129,457.574063960396,45,85.0512079207921,87.6027441584159,21.0529900990099,-1.6219801980198,1843.94554455446,473.516831683169,521.923762376238,20,40,10,32,5306689.9774721,397336.874884201,0,0,0,0,0,0,0,85.051207920792,11769.786809516,42.1059801980198,22.5806434841637,22.7912524483482,-1.6219801980198,-1.60733998908994,-1.26443256304977,1.87520379252898,1.48771980909794,1.57439286706183,53.6382016332584,0.010224288522409,995.440594059406,988.062395843545,987.518340405469,1.05818729973236,2259.81778838324,376.704478777108,0,2259.81778838324,85.0482402705616,85.0482402705616,0.0149849143330131,85.0479379537953,25.1,1015.1,38.96,520.394927250697 +45727,2874.32687326733,457.588956138614,45,85.0686633663366,87.6207232673268,19.6319130916832,-2.17445544554455,1840.33168316832,453.352475247525,481.728712871287,20,40,10,32,5306704.26318669,397355.683071203,0,0,0,0,0,0,0,85.0686633663365,11793.413909736,39.2638261833663,21.056449860594,21.5829263223755,-2.17445544554455,-2.1598152366147,-1.67691379309181,2.933951913827,2.32769280785985,2.26356341042744,53.5330786667604,-0.0104402946179529,935.081188118812,940.146750318596,940.418340405469,1.0579703001107,2118.53509821969,81.3927066896219,0,2118.53509821969,85.0767057151259,85.0767057151259,0.00334117570173754,85.0765485148514,25.1,1015.1,38.92,466.530812725389 +45728,2874.33475980198,457.603854752475,45,85.0733168316832,87.6255163366337,19.3726738174257,-0.423762376237624,1838.25742574257,345.132673267327,362.085148514851,20,40,10,32,5306718.54166634,397374.499053226,0,0,0,0,0,0,0,85.073316831683,11817.0454613311,38.7453476348515,20.7783995883253,21.3631030516049,-0.423762376237624,-0.409122167307766,-0.312832022370581,3.24385889069522,2.57356195035061,2.59174762540757,53.4727409640718,-0.00972027429947336,707.217821782178,531.11110675424,520.008165959453,1.0579115253387,1602.73583395785,-697.016260437975,0,1602.73583395785,85.0549838251151,85.0549838251151,-0.0278022851790207,85.0540618576142,25.1,1015.1,38.88,457.652546614165 +45729,2874.34263267327,457.618736831683,45,84.6869504950495,87.227559009901,19.0929752477228,-0.652673267326733,1820.58910891089,-1393.57425742574,-1313.9198019802,20,40,10,32,5306732.79526327,397393.293898183,0,0,0,0,0,0,0,84.6869504950494,11840.6434971397,38.1859504954456,20.4784054470755,21.1027770717331,-0.652673267326733,-0.638033058396876,-0.490283772180968,3.29272746611653,2.61233253517255,2.6313174978791,52.9587904607411,-0.0041041158153332,-2707.49405940594,-2890.28076659151,-2904.88995959409,1.06274544561928,-6075.72346401707,-7547.14005784194,0,-6075.72346401707,84.5983889814723,84.5983889814723,-0.301852214924464,84.590296869313,25.1,1015.1,38.84,445.718716202005 +45730,2874.35040871287,457.633408613862,45,82.5999702970297,85.0779694059406,18.365799229703,-1.69435643564356,1767.33168316832,-4392.0801980198,-3980.39504950495,20,40,10,32,5306746.87421199,397411.823539314,0,0,0,0,0,0,0,82.5999702970296,11863.9221302531,36.7315984594059,19.6984638646249,20.3644946380007,-1.69435643564356,-1.67971622671371,-1.29165880771764,3.4571167773121,2.74275315166447,2.66103429525306,51.4095947435006,-0.0115923271275201,-8372.47524752475,-7980.44567199294,-7925.88400836983,1.08969851970855,-18759.0081751043,-18676.9028009123,0,-18759.0081751043,82.5885857268894,82.5885857268894,-0.746982866603482,82.5859983914053,25.1,1015.1,38.8126237623762,415.282246055939 +45731,2874.35793178218,457.647633564356,45,79.8103267326732,82.2046365346535,18.688799229901,-2.16574257425743,1707.10891089109,-4381.94653465347,-3897.98514851486,20,40,10,32,5306760.49452493,397429.788238721,0,0,0,0,0,0,0,79.8103267326731,11886.4741519252,37.377598459802,20.0449014877632,20.4793385101766,-2.16574257425743,-2.15110236532757,-1.67648203600685,2.45320905011451,1.9462885656772,2.01722382050253,49.65778530864,-0.0221766258091689,-8279.93168316832,-8281.83775120086,-8283.40953917937,1.12779056071529,-18546.3965916798,-19028.2451278764,0,-18546.3965916798,79.823641897853,79.823641897853,-0.760950723785253,79.8250346165676,25.1,1015.1,38.86,419.758863659132 +45732,2874.36518405941,457.661401782178,45,77.1061683168317,79.4193533663366,18.6638910891089,-1.96346534653465,1648.88118811881,-4377.39504950495,-3860.13069306931,20,40,10,32,5306773.62340403,397447.175086324,0,0,0,0,0,0,0,77.1061683168316,11908.2649411992,37.3277821782178,20.0181859549846,20.3027098236247,-1.96346534653465,-1.9488251376048,-1.52043904173271,1.96464067406652,1.5586758411076,1.61237005560339,47.9640095114488,-0.00921626007653772,-8237.52574257426,-8251.13845701402,-8253.06396670526,1.16735421669828,-18446.4943463341,-18708.7136400383,0,-18446.4943463341,77.1123830016664,77.1123830016664,-0.74827495125749,77.1134811112616,25.1,1015.1,38.92,412.867682361322 +45733,2874.37217108911,457.674714554456,45,74.4043564356436,76.6364871287129,16.968397139703,-2.02425742574257,1590.11386138614,-4424.51584158416,-3883.21881188119,20,40,10,32,5306786.27108608,397463.985876141,0,0,0,0,0,0,0,74.4043564356435,11929.3070254126,33.9367942794059,18.1996630648373,18.7051940866176,-2.02425742574257,-2.00961721681272,-1.56324676781166,2.75035955822436,2.18203718081964,2.15134819423318,46.2545372713147,-0.0198725607900344,-8307.73465346535,-8299.97212038035,-8298.6117226668,1.20976650763591,-18592.3865267382,-18751.6895078046,0,-18592.3865267382,74.4174910302911,74.4174910302911,-0.749907416484233,74.4179827799134,25.1,1015.1,38.98,350.736990928781 +45734,2874.37889821782,457.687566633663,45,71.7206930693069,73.8723138613861,15.9814653463366,-1.35980198019802,1538.16831683168,-4431.41089108911,-3886.20891089109,20,40,10,32,5306798.44758594,397480.214256515,0,0,0,0,0,0,0,71.7206930693068,11949.599234681,31.9629306926733,17.1411172305219,17.7116032067656,-1.35980198019802,-1.34516177126816,-1.04225588407642,3.02424016647673,2.39932428734545,2.25668024588926,44.7435026309536,-0.0162724591976369,-8317.6198019802,-8318.06892461523,-8317.95240954374,1.25505241804247,-18681.6094217722,-18706.9215434111,0,-18681.6094217722,71.7192537006175,71.7192537006175,-0.748145606639862,71.7215546967405,25.1,1015.1,39.04,314.57455385954 +45735,2874.38538574257,457.699936633663,45,69.0440297029703,71.1153505940594,16.5077722772277,0.79019801980198,1478.61386138614,-4441.59207920792,-3873.12079207921,20,40,10,32,5306810.1909692,397495.834267358,0,0,0,0,0,0,0,69.0440297029702,11969.1468506876,33.0155445544555,17.7056142028667,18.0055231909694,0.79019801980198,0.804838228731838,0.626523704119621,2.08679560647697,1.65558920777745,1.84652379915919,43.011133744692,-0.0208085872040578,-8314.71287128713,-8312.28046269973,-8310.48779907515,1.30372692423827,-18645.9133212518,-18783.374370666,0,-18645.9133212518,69.0325794529948,69.0325794529948,-0.751166824603257,69.0329573897877,25.1,1015.1,39.1,325.499081938394 +45736,2874.39162712871,457.71182970297,45,66.3837326732673,68.3752446534653,16.011603960396,-0.915445544554455,1419.09405940594,-4454.91683168317,-3883.36435643565,20,40,9.97029702970297,32,5306821.48901261,397510.852113194,0,0,0,0,0,0,0,66.3837326732672,11987.9459605886,32.0232079207921,17.1734427717387,17.4312226482978,-0.915445544554455,-0.900805335624597,-0.707197872089893,2.0413275112473,1.61951644266006,1.50605557602658,41.2797728868761,-0.0234006603505841,-8338.28118811881,-8420.72992843839,-8464.65555544524,1.35594812599827,-18663.6949635581,-18817.4383819666,0,-18663.6949635581,66.3534042740907,66.3534042740907,-0.752509285582014,66.3424148653863,25.1,1015.1,39.16,305.147428406749 +45737,2874.39762029703,457.723238217822,45,63.5211188118812,65.4267523762376,16.3276336633663,-1.8280198019802,1479.71782178218,-5070.67623762376,-4342.52475247525,20,40,10,32,5306832.33802881,397525.258237531,0,0,0,0,0,0,0,63.5211188118811,12005.9871303906,32.6552673267327,17.5124043168502,17.5357915696278,-1.8280198019802,-1.81337959305034,-1.43727300334077,1.37362064338853,1.08978162773388,1.09629537112014,43.0432466508961,0.055729572650314,-9413.20099009901,-9309.81255759239,-9268.81097458101,1.4170942922508,-23012.2678153908,-20332.9048161948,0,-23012.2678153908,63.5176566022938,63.5176566022938,-0.813799573026614,63.5084584899315,25.1,1015.1,39.22,308.111108123292 +45738,2874.40332762376,457.734145346535,45,60.4703168316832,62.2844263366337,15.8363069306931,-0.540594059405941,1532.56930693069,-5195.78514851485,-4445.18316831683,20,40,10,32,5306842.66869333,397539.030446172,0,0,0,0,0,0,0,60.4703168316831,12023.2114161991,31.6726138613861,16.9854257863632,16.9428345667506,-0.540594059405941,-0.525953850476084,-0.42046264118207,1.15186796164446,0.913850958936366,0.918838581095153,44.5806340349136,-0.0209525912677537,-9640.96831683168,-9651.12156651308,-9636.34839066436,1.48868234989394,-25589.9029398446,-21376.8736662027,0,-25589.9029398446,60.4821932163513,60.4821932163513,-0.85487397749676,60.4888268304116,25.1,1015.1,39.28,287.573792347454 +45739,2874.40873584158,457.744537623762,45,57.4794455445544,59.2038289108911,14.8760099009901,-0.117920792079208,1437.07920792079,-5180.29405940594,-4390.34455445545,20,40,10,32,5306852.45672386,397552.151539232,0,0,0,0,0,0,0,57.4794455445544,12039.5852861386,29.7520198019802,15.9554473954246,15.9543987178473,-0.117920792079208,-0.103280583149351,-0.0810636274222601,0.975860589647023,0.774212987367042,0.784092660449838,41.8029396502833,-0.0198725607900345,-9570.63861386139,-9573.39465738653,-9573.86820918057,1.56614072464813,-25057.2039357362,-20975.8633811554,0,-25057.2039357362,57.4644263307518,57.4644263307518,-0.838847498611243,57.456689086225,25.1,1015.1,39.34,254.87785920236 +45740,2874.41385366337,457.754417029703,45,54.4479900990099,56.0814298019802,14.0611188118812,-0.493861386138614,1359.69801980198,-5114.68910891089,-4356.99900990099,20,40,10,32,5306861.71821147,397564.624276573,0,0,0,0,0,0,0,54.4479900990099,12055.1223303906,28.1222376237624,15.0814259345749,15.0871209860931,-0.493861386138614,-0.479221177208757,-0.379161917738538,0.955502387168844,0.758061515604303,0.760127009830307,39.5520121306527,-0.0240486786372156,-9471.68811881188,-9461.17816880698,-9448.86347353486,1.65332657342562,-24769.3656071114,-20561.3472594289,0,-24769.3656071114,54.4532378198215,54.4532378198215,-0.822227396006922,54.4588461723217,25.1,1015.10126237624,39.3835891089109,227.850470292068 +45741,2874.41868732673,457.763788019802,45,51.5171881188119,53.0627037623762,12.7249504950495,0.603069306930693,1287.71782178218,-4977.07425742574,-4247.7405940594,20,40,10,32,5306870.46460778,397576.454418924,0,0,0,0,0,0,0,51.5171881188118,12069.8351956271,25.449900990099,13.6483021713794,13.7821244914345,0.603069306930693,0.61770951586055,0.495448224585519,1.26864848348843,1.00650045994328,0.991217899929015,37.4581930445143,-0.0154804368473094,-9224.81485148514,-9228.14787765905,-9236.55468468507,1.74742337358197,-24146.4388867949,-20287.5693311385,0,-24146.4388867949,51.5147700225468,51.5147700225468,-0.811357002036833,51.5219910035143,25.1,1015.11,39.33,190.689385896275 +45742,2874.42324544554,457.772657821782,45,48.6377128712871,50.0968442574257,12.3493861386139,1.16,1215.30198019802,-5057.24257425742,-4266.80099009901,20,40,10,32,5306878.71170497,397587.65125744,0,0,0,0,0,0,0,48.6377128712871,12083.7387182619,24.6987722772277,13.2454860014126,13.2974624044186,1.16,1.17464020892986,0.921466085262767,1.00201496760926,0.794962938035913,0.827834076864433,35.3517016007706,-0.0289448168028763,-9324.04356435644,-9520.77750220567,-9838.81579959094,1.85089043408247,-24393.4341559716,-20289.0311432216,0,-24393.4341559716,48.624978139398,48.624978139398,-0.811288925922303,48.5853263903818,25.1,1015.12,39.26,177.189533368792 +45743,2874.42752267327,457.78100990099,45,45.3394950495049,46.6996799009901,10.9482475247525,0.503465346534653,1416.54455445545,-6570.71188118812,-5532.67227722772,20,40,10,32,5306886.44996129,397598.194028855,0,0,0,0,0,0,0,45.3394950495049,12096.8132308581,21.896495049505,11.742677546998,11.9159515936912,0.503465346534653,0.518105555464511,0.416007583095097,1.21608657960896,0.964799720046664,0.925454027282925,41.2056107940727,0.102746899447026,-12103.3841584158,-11925.2526909126,-11636.1256983297,1.98623149315763,-39924.5500190521,-25784.7268776898,0,-39924.5500190521,45.3207269875502,45.3207269875502,-1.03252812905052,45.2508600575524,25.1,1015.13,39.19,142.465311312024 +45744,2874.4314560396,457.78872049505,45,41.446801980198,42.690206039604,10.1645643564356,1.96980198019802,1432.5396039604,-6918.37920792079,-5873.43069306931,20,40,10,32,5306893.56546619,397607.926528309,0,0,0,0,0,0,0,41.446801980198,12108.8664210671,20.3291287128713,10.9021285254538,11.0260098921373,1.96980198019802,1.98444218912788,1.55823329462897,0.931963439664589,0.73938655418042,0.768650311358341,41.6708879238742,-0.0450012699049693,-12791.8099009901,-12770.126046466,-12711.1485436733,2.17322285714365,-46297.6617136725,-27544.4040304939,0,-46297.6617136725,41.4466130771492,41.4466130771492,-1.10118969817774,41.435890299025,25.1,1015.14,39.12,121.745000569184 +45745,2874.4350229703,457.79574069307,45,37.5012376237624,38.6262747524753,8.76109900990099,2.46623762376238,1291.75742574257,-7223.61584158416,-6107.59207920792,20,40,10,32,5306900.01748142,397616.787103759,0,0,0,0,0,0,0,37.5012376237623,12119.8237870187,17.522198019802,9.39682450529144,9.60548608221616,2.46623762376238,2.48087783269223,1.92819343274825,1.25117881409814,0.992640647311779,0.944104091155829,37.5757003604901,-0.0462973064782324,-13331.2079207921,-13323.83076169,-13794.3787664962,2.40220089900873,-48069.5844216729,-28539.3365903071,0,-48069.5844216729,37.4586000392118,37.4586000392118,-1.14097337951617,37.3528073149242,25.1,1015.15,39.05,92.8230248844215 +45746,2874.4382049505,457.802031485149,45,32.9993762376238,33.9893575247525,7.90961386138614,2.57584158415842,1398.72772277228,-8649.46930693069,-7195.5504950495,20,40,10,32,5306905.77256928,397624.726567773,0,0,0,0,0,0,0,32.9993762376237,12129.6274855886,15.8192277227723,8.48355363591605,8.62271921024795,2.57584158415842,2.59048179308827,2.02475424510262,0.919902796190005,0.729818069795366,0.781394382337285,40.6873401688312,0.0824423264659037,-15845.0198019802,-15695.0577100284,-14766.223826931,2.73215997933624,-71104.7997513828,-33693.3518749415,0,-71104.7997513828,32.9751115576904,32.9751115576904,-1.34897313988824,32.8404357850324,25.1,1015.16,38.98,74.706788438611 +45747,2874.44093316832,457.807479306931,45,27.9368118811881,28.7749162376238,6.25778217821782,2.56019801980198,1459.51485148515,-8521.83267326732,-7048.04752475247,20,40,10,32,5306910.70577234,397631.601225719,0,0,0,0,0,0,0,27.9368118811881,12138.0872464247,12.5155643564356,6.71186124647138,6.92680074156871,2.56019801980198,2.57483822873184,1.98459621631332,1.14097046211191,0.905205271470928,0.906736761348973,42.4555660669532,0.00698419708925123,-15569.8801980198,-14812.960788158,-11917.4112143229,3.2299515674153,-85227.178239666,-32648.6151635061,0,-85227.178239666,28.0044559356925,28.0044559356925,-1.30612875644,28.6303467237115,25.1,1015.17,38.91,48.3445684646703 +45748,2874.44322445545,457.812155643564,45,24.506900990099,25.242108019802,5.22555445544555,2.48435643564356,1553.37128712871,-2874.41782178218,-2265.32277227723,20,40,10,32,5306914.84668527,397637.500667354,0,0,0,0,0,0,0,24.506900990099,12145.286314109,10.4511089108911,5.60473270592801,5.85167485582846,2.48435643564356,2.49899664457342,1.91092901152887,1.28171322851846,1.01686556269073,1.01467098397716,45.1857391105638,0.0167764734205726,-5139.74059405941,-5914.18352122341,-7223.53053315982,3.67349937419942,-33837.3666261469,-13356.8816859974,0,-33837.3666261469,24.6187748259974,24.6187748259974,-0.534668442091733,25.7685884305207,25.1,1015.18,38.84,34.4082783485718 +45749,2874.44529861386,457.816517227723,45,23.5076732673267,24.2129034653465,4.57943564356436,2.30267326732673,1588.55940594059,-240.838613861386,-116.29702970297,20,40,10,32,5306918.59236177,397643.000957077,0,0,0,0,0,0,0,23.5076732673267,12151.9271647415,9.15887128712872,4.91173002693151,5.24470079433724,2.30267326732673,2.31731347625659,1.73363385979069,1.65270712173567,1.31119888592343,1.31169370657199,46.2093199953142,0.00165604673250286,-357.135643564356,-510.716919909813,-3056.32908938183,3.82866380137033,-2453.33764245775,-2573.59171987545,0,-2453.33764245775,23.5674262327223,23.5674262327223,-0.102980099990196,24.114038448734,25.1,1015.19,38.77,27.6067554391788 +45750,2874.44724861386,457.820898316832,45,23.5105643564356,24.2158812871287,4.44131683168317,2.99594059405941,1580.94554455446,2.55049504950493,52.1544554455445,20,40,10,32,5306922.1076279,397648.521451462,0,0,0,0,0,0,0,23.5105643564356,12158.4542520628,8.88263366336634,4.76358899637585,5.12726925585199,2.99594059405941,3.01058080298926,2.2349383347096,1.79830747140489,1.42671301045618,1.38532624400165,45.9878417453499,0.00799222553512255,54.7049504950496,180.200274482894,-90.5116637748355,3.82810329546566,389.073188075415,-1035.60528062113,0,389.073188075415,23.4772960494069,23.4772960494069,-0.0416271825202345,23.5055151120316,25.1,1015.19747524752,38.7025247524753,26.3686142540453 +45751,2874.44902633663,457.825395643564,45,23.2114653465347,23.9078093069307,4.69034653465347,3.30514851485149,1569.84653465347,267.860396039604,317.317821782178,20,40,10,32,5306925.3012135,397654.181044934,0,0,0,0,0,0,0,23.2114653465346,12164.9392960947,9.38069306930693,5.03068886738201,5.32186606240914,3.30514851485149,3.31978872378134,2.49988673494899,1.46193132414054,1.15984417220671,1.18241197529066,45.6649846345437,-0.0222486278410168,585.178217821782,662.442338986374,989.13016405143,3.87741400359036,4111.69182101234,-91.289233132173,0,4111.69182101234,23.2556958141358,23.2556958141358,-0.00308929407792,23.5013803113804,25.1,1015.19,38.65,28.4135703173276 +45752,2874.45055732673,457.830086831683,45,23.5843762376238,24.2919075247525,4.77966336633663,3.38207920792079,1328.20792079208,1095.20099009901,1317.91584158416,20,40,10,32,5306928.03348656,397660.073967439,0,0,0,0,0,0,0,23.5843762376237,12171.4265372938,9.55932673267327,5.126486733808,5.41921795959322,3.38207920792079,3.39671941685064,2.56426458230626,1.47129522137426,1.1672731543048,1.15372085712302,38.636002281483,-0.0921626007653771,2413.11683168317,2126.16412116459,1264.22127800627,3.8162851220537,14380.6134447242,3633.90643737637,0,14380.6134447242,23.5936332712479,23.5936332712479,0.147363003627093,23.6754252540325,25.1,1015.18,38.6,29.4430149534053 +45753,2874.45182059406,457.835058811881,45,24.0217524752475,24.7424050495049,4.99561386138614,3.38207920792079,1109.60891089109,731.226732673267,903.880198019802,20,40,10,32,5306930.26364623,397666.307797504,0,0,0,0,0,0,0,24.0217524752475,12178.0489983224,9.99122772277228,5.3581070934818,5.62807339925211,3.38207920792079,3.39671941685064,2.57798296967395,1.36828305269405,1.08554697364419,1.08311595812099,32.2772148408631,-0.103178911638114,1635.10693069307,1497.35445544555,1136.67989358997,3.74664233455958,7520.67483219269,2362.46114307962,0,7520.67483219269,24.0304079011861,24.0304079011861,0.096152065701621,23.9138668403052,25.1,1015.17,38.55,31.7513692069337 +45754,2874.45277752475,457.840258811881,45,24.3328811881188,25.0628676237624,5.36953465346535,3.46594059405941,858.094059405941,132.240594059406,215.052475247525,20,40,10,32,5306931.92133318,397672.815542718,0,0,0,0,0,0,0,24.3328811881188,12184.7730838009,10.7390693069307,5.75916043828215,5.96401549540859,3.46594059405941,3.48058080298926,2.67431935290448,1.08934384331181,0.864246553398971,0.879638607467989,24.9609443807291,-0.00115203250956721,347.29306930693,519.933967258112,299.212613989064,3.69876010281855,1282.2465639255,-124.410202555253,0,1282.2465639255,24.2854506420939,24.2854506420939,-0.00496138722783225,24.0327332303128,25.1,1015.16,38.5,35.6724320358298 +45755,2874.45336534653,457.84557009901,45,24.0131188118812,24.7335123762376,5.39555445544554,3.5,851.10396039604,-662.752475247525,-561.529702970297,20,40,10,32,5306932.89285089,397679.449758523,0,0,0,0,0,0,0,24.0131188118812,12191.4904260177,10.7911089108911,5.78706829694168,5.96778884376282,3.5,3.51464020892985,2.70994712292682,0.996245185114864,0.790385398386462,0.810569522748757,24.7576106427905,-0.00360010159239755,-1224.28217821782,-1162.80996961082,-447.478488461866,3.74801404340386,-4543.44722129107,-2890.73691084603,0,-4543.44722129107,23.9977728654053,23.9977728654053,-0.115580988791948,23.8632752772234,25.1,1015.15,38.45,35.7280382254934 +45756,2874.45365891089,457.850862772277,45,23.4422772277228,24.1455455445545,5.35110891089109,3.48970297029703,834.381188118812,-645.686138613861,-537.646534653465,20,40,10,32,5306933.31972024,397686.051122078,0,0,0,0,0,0,0,23.4422772277227,12198.0899636414,10.7022178217822,5.73939768144602,5.89724749744366,3.48970297029703,3.50434317922688,2.71040238248457,0.905297331366483,0.718230614914139,0.704784013147006,24.2711649156258,-0.00583216457968402,-1183.33267326733,-1192.57747279678,-1124.3283593931,3.83953345421189,-4410.53725728444,-3882.67332094676,0,-4410.53725728444,23.4647524752475,23.4647524752475,-0.155228517901298,23.4835453276191,25.1,1015.14,38.4,34.8877835233482 +45757,2874.45387633663,457.856029108911,45,23.0578415841584,23.7495768316832,5.42194059405941,3.47108910891089,808.658415841584,-645.864356435644,-534.316831683169,20,40,10,32,5306933.6083524,397692.49263817,0,0,0,0,0,0,0,23.0578415841584,12204.5416325083,10.8438811881188,5.81536907446359,5.93547628007455,3.47108910891089,3.48572931784074,2.71235529511555,0.759843008687244,0.602832342987126,0.614529957292957,23.5229198006619,-0.00374410565609344,-1180.18118811881,-1216.34817174787,-1666.19390471065,3.90336993534478,-4334.39847583407,-3226.87747786375,0,-4334.39847583407,23.0290099009901,23.0290099009901,-0.129026021414021,22.8803570890158,25.1,1015.13,38.35,35.3406057373664 +45758,2874.45439623762,457.861010693069,45,22.358297029703,23.0290459405941,4.63125742574258,3.48742574257426,764.742574257426,-808.619801980198,-881.839603960396,20,40,10,32,5306934.46136162,397698.713990866,0,0,0,0,0,0,0,22.3582970297029,12210.8578905116,9.26251485148515,4.96731211681884,5.22261170227531,3.48742574257426,3.50206595150411,2.6510536367729,1.30401905384725,1.0345622089604,1.05380143398682,22.2454597516155,-0.0171364835798123,-1690.45940594059,-1909.05249485345,-2261.29862848253,4.02588641617694,-6047.10653613041,-6364.34324503186,0,-6047.10653613041,22.3391517498284,22.3391517498284,-0.254352786763823,21.9466056829227,25.1,1015.12,38.3,27.5061199299783 +45759,2874.45541930693,457.865596633663,45,20.9413465346535,21.5695869306931,3.31030693069307,2.52069306930693,689.29702970297,-1793.71683168317,-2202.73267326733,20,40,10,32,5306936.25515807,397704.459118211,0,0,0,0,0,0,0,20.9413465346534,12216.8993427668,6.62061386138614,3.55051041555622,4.01761930042357,2.52069306930693,2.53533327823678,1.82853156592546,2.28214762347193,1.8105745307533,1.75004005232298,20.05083782089,-0.0166324693568767,-3996.4495049505,-3721.22661503774,-2637.02130839193,4.30163842533956,-13717.9657365746,-12532.6946750178,0,-13717.9657365746,20.9431820409763,20.9431820409763,-0.501102833055581,20.8474238825544,25.1,1015.11,38.25,16.2740971480623 +45760,2874.45693485149,457.869425346535,45,19.3403465346535,19.9205569306931,2.96175247524753,-3.47079207920792,709.183168316832,-1423.55643564356,-1729.92277227723,20,40,9.85148514851485,32,5306938.97791826,397709.277335079,0,0,0,0,0,0,0,19.3403465346534,12222.4732022553,5.92350495049505,3.17666404712027,3.62912419977912,-3.47079207920792,-3.45615187027807,-2.43087670229023,2.21120184368831,1.75428867938264,1.71473208102667,20.6293021447564,0.024984705051239,-3153.47920792079,-3145.7197529654,-3084.40212771577,4.65539667598035,-12112.753283652,-8503.37863161037,0,-12112.753283652,19.3687095382805,19.3687095382805,-0.340503109716915,19.6846323372614,25.1,1015.10126237624,38.2050495049505,13.3191217621395 +45761,2874.45883752475,457.872455049505,45,18.4076435643564,18.9598728712871,3.81392079207921,-3.5,798.183168316832,-1188.53663366337,-1460.34455445545,20,40,10,32,5306942.43542415,397713.113143308,0,0,0,0,0,0,0,18.4076435643564,12227.7043703521,7.62784158415842,4.0906676570769,4.30065081207128,-3.5,-3.48535979107015,-2.63933550950539,1.07034874531066,0.849176520112644,0.908464829529911,23.2182072018813,0.00972027429947338,-2648.88118811881,-2784.03962356632,-3654.73183184518,4.890264722507,-12034.4025426529,-5803.02722580433,0,-12034.4025426529,18.3946964023135,18.3946964023135,-0.232277064340094,18.4120075276072,25.1,1015.1,38.19,18.5963855456455 +45762,2874.46107188119,457.874592079208,45,17.4312376237624,17.9541747524752,4.09149504950495,-3.5,791.024752475248,-1718.53861386139,-2106.90594059406,20,40,9.97029702970297,32,5306946.52703768,397715.848070287,0,0,0,0,0,0,0,17.4312376237624,12232.6884342135,8.1829900990099,4.38838334106456,4.48082693545216,-3.5,-3.48535979107015,-2.7106301577502,0.579449022211187,0.459714187940824,0.467672445563673,23.0099773257771,-0.0136803860511107,-3825.44455445544,-3743.54862268405,-4270.07393130518,5.1653755371209,-18187.7403258853,-8372.5902738959,0,-18187.7403258853,17.4085418096265,17.4085418096265,-0.334668986700653,16.8940786325512,25.1,1015.1,38.18,20.1536192048675 +45763,2874.46340891089,457.87581019802,45,15.9942574257426,16.4740851485149,4.18346534653466,-3.5,722.252475247525,-2229.95346534653,-2610.23762376238,20,40,9.8019801980198,32,5306950.8291307,397717.441918794,0,0,0,0,0,0,0,15.9942574257425,12237.3406243125,8.36693069306931,4.48702721438582,4.47667891777734,-3.5,-3.48535979107015,-2.76709874652296,0.477745630775729,0.379026344468134,0.372425203934856,21.0094728729136,-0.0257767274015664,-4840.19108910891,-4921.41881188119,-4601.69820842839,5.63270668479522,-22863.1765793196,-12539.7594850111,0,-22863.1765793196,15.9537371826291,15.9537371826291,-0.501151847858049,14.9589324689923,25.1,1015.1,38.17,20.1627828630351 +45764,2874.46558861386,457.876210891089,45,13.5768811881188,13.9841876237624,3.27482178217822,-3.5,618.341584158416,-3266.7495049505,-3731.08415841584,20,40,10,32,5306954.85785082,397718.012545412,0,0,0,0,0,0,0,13.5768811881188,12241.4774751651,6.54964356435644,3.51245038304643,3.56493561152105,-3.5,-3.48535979107015,-2.72538888228771,0.426094793366791,0.338048412215693,0.329945167052124,17.9868275759366,-0.0259927334971103,-6997.83366336634,-6738.04882854622,-4907.87260029581,6.66008408892945,-33463.5801621709,-21024.7966367407,0,-33463.5801621709,13.5260859719635,13.5260859719635,-0.840543955385639,12.4080831454455,25.1,1015.1,38.16,12.8145279020445 +45765,2874.46732079208,457.876071089109,45,10.3200396039604,10.6296407920792,2.61037623762376,-3.5,539.19801980198,-2454.45643564356,-2650.01386138614,20,40,10,32,5306958.06953475,397717.895320949,0,0,0,0,0,0,0,10.3200396039604,12244.7888053631,5.22075247524753,2.79979114150094,2.8128328584438,-3.5,-3.48535979107015,-2.74688921159448,0.338350649021644,0.268435337522315,0.283998197432063,15.6846346096302,-0.00986427836316927,-5104.4702970297,-5336.1317125772,-4314.95784292862,8.78334885889154,-27841.2557789687,-21736.6772421345,0,-27841.2557789687,10.3434264287815,10.3434264287815,-0.869291137034493,9.68566027218011,25.1,1015.1,38.15,8.05706505447915 +45766,2874.46855980198,457.875739108911,45,7.23519801980198,7.45225396039604,2.18873267326733,-3.5,528.10396039604,-2418.32871287129,-2440.68712871287,20,40,9.81188118811881,32,5306960.37194312,397717.522553751,0,0,0,0,0,0,0,7.23519801980197,12247.2308706821,4.37746534653466,2.34755215030071,2.27718419330279,-3.5,-3.48535979107015,-2.84137209995247,0.383619519791693,0.304350045058859,0.30622674505695,15.3619215028877,-0.00180005079619877,-4859.01584158416,-4939.6431036173,-3714.80134123302,10,-38062.3431434469,-24127.0662227047,0,-38062.3431434469,7.17480786197431,7.17480786197431,-0.965052445838642,7.74623556641378,25.1,1015.1,38.14,5.27260976934422 +45767,2874.46933227723,457.87538009901,45,3.19526732673267,3.29112534653465,1.33387128712871,-3.5,559.613861386139,-3102.58613861386,-3100.47722772277,20,40,10,32,5306961.81076388,397717.100800534,0,0,0,0,0,0,0,3.19526732673267,12248.6933369087,2.66774257425743,1.43066005573396,1.31817088780362,-3.5,-3.48535979107015,-2.99943753523588,0.549336061888657,0.435823639211723,0.444099300655674,16.2785073683121,0.0151924287199176,-6203.06336633664,-5924.36102342908,-3177.62817182817,10,-133614.151134818,-27476.5294967529,0,-133614.151134818,3.25291628271738,3.25291628271738,-1.1001249877463,6.00135283528352,25.1,1015.1,38.13,1.82641746124424 +45768,2874.46968613862,457.875276336634,45,0.418148514851485,0.43069297029703,0.856376237623762,-3.5,562.405940594059,-1262.31287128713,-1427.4900990099,20,40,10,32,5306962.46852963,397716.983193173,0,0,0,0,0,0,0,0.418148514851485,12249.1128587459,1.71275247524752,0.918516867159933,0.752678551660291,-3.5,-3.48535979107015,-3.36828093042786,0.802630742287721,0.636778604784082,0.612461984932372,16.3597256602366,-0.0082082316306664,-2689.80297029703,-2913.34556416037,-2698.29255496978,10,-698435.382850952,-8911.56970706075,0,-698435.382850952,0.524051563572198,0.524051563572198,-0.340236251347907,4.37418003778399,25.1,1015.1,38.12,0.584108657184702 +45769,2874.46981752475,457.875282970298,45,0.0676831683168317,0.0697136633663366,0.64270297029703,-3.5,563.09900990099,-474.657425742574,-414.744554455446,20,40,10,32,5306962.71175599,397716.99577015,0,0,0,0,0,0,0,0.0676831683168316,12249.1611550055,1.28540594059406,0.689338976090282,0.550774810488101,-3.5,-3.48535979107015,-3.45713307121545,0.670574087562931,0.532009564778932,0.547020474245228,16.379886229154,0.00374410565609345,-889.401980198019,-813.783482011567,-2023.90432438848,10,-1570971.65327796,1959.02985855439,0,-1570971.65327796,0.0879059896088618,0.0879059896088618,-0.0286518750884989,2.89583757826332,25.1,1015.1,38.11,0.314072186897135 +45770,2874.46985920792,457.875293663366,45,0.0358910891089109,0.0369678217821782,0.622534653465347,-3.5,569.866336633663,-489.632673267327,-396.472277227723,20,40,10,32,5306962.78873159,397717.0104567,0,0,0,0,0,0,0,0.0358910891089109,12249.1745201871,1.24506930693069,0.667707199800541,0.531791405998528,-3.5,-3.48535979107015,-3.46951165061097,0.657756262632636,0.521840359632098,0.518725078346867,16.5767397842263,-0.00316808940130984,-886.10495049505,-771.561278306049,-1300.75323488393,10,-2144712.81342959,-1612.59830493867,0,-2144712.81342959,0.0387286540535241,0.0387286540535241,0.000144321362829349,1.70991625206477,25.1,1015.1,38.1088366336634,0.291806674637801 +45771,2874.46987683168,457.8753,45,0.168326732673267,0.173376534653465,0.650910891089109,-3.5,543.425742574257,1079.03762376238,874.874257425742,20,40,10,32,5306962.82123701,397717.018927395,0,0,0,0,0,0,0,0.168326732673267,12249.1920763477,1.30182178217822,0.698142482493911,0.563526069112192,-3.5,-3.48535979107015,-3.42143355727817,0.651483252831175,0.516863577385026,0.5113640937355,15.8076140800265,-0.0118083332230639,1953.91188118812,1580.6182629154,-846.192415505286,10,538697.54770688,2353.84238600614,0,538697.54770688,0.213714243701598,0.213714243701598,0.132015924364713,0.838471548253727,25.1,1015.1,38.16,0.328943043702974 +45772,2874.46994990099,457.875262178218,45,0.665811881188119,0.685786237623762,0.866158415841584,-3.5,546.767326732673,778.536633663366,296.39702970297,20,40,10,32,5306962.95742199,397716.974222648,0,0,0,0,0,0,0,0.665811881188118,12249.327109076,1.73231683168317,0.929008862729037,0.775194557598407,-3.5,-3.48535979107015,-3.2920941940076,0.744498640448453,0.590658668489509,0.597808590502975,15.9048168230213,0.00273607721022214,1074.93366336634,1340.1163513381,-300.949190413547,10,93699.1578096866,-237.918596061537,0,93699.1578096866,0.60684089795118,0.60684089795118,-0.00999357361478722,0.313196892216694,25.1,1015.1,38.22,0.614225801411982 +45773,2874.47001990099,457.87523039604,45,0.258445544554456,0.266198910891089,0.893148514851485,-3.5,560.504950495049,485.349504950495,11.6188118811881,20,40,10,32,5306963.08778817,397716.936939032,0,0,0,0,0,0,0,0.258445544554455,12249.4588464247,1.78629702970297,0.957957425402494,0.774817441767878,-3.5,-3.48535979107015,-3.41051706616818,0.886314968896655,0.70317068554414,0.718372068306891,16.3044280997774,0.0036721036242455,496.968316831683,469.718076659151,175.718512180888,10,204543.988632327,-2413.12678903695,0,204543.988632327,0.267644544652485,0.267644544652485,-0.108695770567156,0.163036953145864,25.1,1015.1,38.28,0.618210426654723 +45774,2874.47003,457.875220000001,45,0.0542970297029703,0.0559259405940594,1.04838613861386,-3.5,562.495049504951,907.832673267327,463.304950495049,20,40,10,32,5306963.10672462,397716.924323122,0,0,0,0,0,0,0,0.0542970297029703,12249.4917988725,2.09677227722772,1.12445944820408,0.895216887374529,-3.5,-3.48535979107015,-3.47089883365287,1.10940535026344,0.880162637512713,0.85662717437524,16.3623177333831,0.00374410565609345,1371.13762376238,1137.55360258798,291.973763859903,10,3072138.83403124,-5828.60192108438,0,3072138.83403124,0.0668368787373786,0.0668368787373786,-0.0028251587534991,0.148851771990386,25.1,1015.1,38.34,0.825236097334495 +45775,2874.47003445544,457.875220000001,45,0.115970297029703,0.119449405940594,1.13806930693069,-3.5,593.207920792079,29.1990099009901,-101.263366336634,20,40,10,32,5306963.11497767,397716.924469454,0,0,0,0,0,0,0,0.115970297029703,12249.5146557206,2.27613861386139,1.22065023349248,0.975064757989248,-3.5,-3.48535979107015,-3.45773818984204,1.1884976028731,0.942911609876341,0.932636144768043,17.2557189445525,0.0080642275669705,-72.0643564356436,160.41487109107,364.455754146844,10,-43001.8293477179,751.503212104842,0,-43001.8293477179,0.105145868052152,0.105145868052152,0.00407231317191123,0.147659291203846,25.1,1015.1,38.4,0.963377047108057 +45776,2874.47003999999,457.875220000001,45,0.0716534653465346,0.0738030693069307,1.15989108910891,-3.5,573.321782178218,-27.5445544554455,-172.69801980198,20,40,10,32,5306963.12524812,397716.924651556,0,0,0,0,0,0,0,0.0716534653465346,12249.5421896316,2.31978217821782,1.2440554543774,0.991094515514581,-3.5,-3.48535979107015,-3.46806003103803,1.22418934404622,0.971228164362849,0.971598700195816,16.6772546206861,-0.010224288522409,-200.242574257426,-196.341162631115,356.096179068456,10,-228442.255630493,-2453.14818002191,0,-228442.255630493,0.0715411234192725,0.0715411234192725,-0.0144688973847879,0.144623495316565,25.1,1015.1,38.46,1.00592494898359 +45777,2874.4700390099,457.875220000001,46.7821782178218,0.0382376237623763,0.0393847524752475,1.11833663366337,-3.5,557.039603960396,-9.41287128712871,-146.645544554455,20,40,10,32,5306963.12341411,397716.924619037,0,0,0,0,0,0,0,0.0382376237623762,12249.5553225248,2.23667326732673,1.19948571206614,0.95381993789081,-3.5,-3.48535979107015,-3.47603382164218,1.18888401756864,0.943218177514147,0.958574403253602,16.2036252551903,0.00079202235032746,-156.058415841584,-156.908116851289,131.405033580281,10,-372843.257041401,649.164717472477,0,-372843.257041401,0.0373199686305264,0.0373199686305264,-0.00344737444041434,0.0997705166121012,25.1,1015.1,38.52,0.926715171430275 +45778,2874.47002910891,457.875220000001,46.7821782178218,0.0315544554455446,0.0325010891089109,1.15851485148515,-3.5,556.445544554455,9.05940594059406,-151.650495049505,20,40,10,32,5306963.10507402,397716.924293856,0,0,0,0,0,0,0,0.0315544554455445,12249.5650305281,2.3170297029703,1.2425793537862,0.98762599326807,-3.5,-3.48535979107015,-3.47796632163465,1.2338305862903,0.978877182100531,0.95616219591925,16.1863447675468,0.00518414629305246,-142.591089108911,-140.6063523184,70.0077002205713,10,-Infinity,Infinity,0,-Infinity,0.0341107734535829,0.0341107734535829,0.000309065560021351,0.0548302093945656,25.1,1015.1,38.58,0.991301487617221 +45779,2874.47002,457.875220000001,45,0.0400990099009901,0.0413019801980198,1.04539603960396,-3.5,559.836633663366,13.2237623762376,-152.554455445545,20,40,10,32,5306963.08820115,397716.923994687,0,0,0,0,0,0,0,0.0400990099009901,12249.5748576184,2.09079207920792,1.12125238073255,0.891859052255155,-3.5,-3.48535979107015,-3.47461667802226,1.1101346540869,0.880741241155331,0.915440068781343,16.2849875511784,-0.00388810971978935,-139.330693069307,-139.55318106068,-15.0465109148277,10,-283070.432572269,-2152.73976694184,0,-283070.432572269,0.0376129791196941,0.0376129791196941,0.000491509546994306,0.0455875807360953,25.1,1015.1,38.64,0.813384593189595 +45780,2874.47000960396,457.875227920792,48.5643564356436,0.0311188118811881,0.0320523762376238,1.3700297029703,-3.5,557.153465346535,16.7881188118812,-149.887128712871,20,40,10,32,5306963.06876914,397716.933518081,0,0,0,0,0,0,0,0.0311188118811881,12249.5849953521,2.74005940594059,1.46944220939628,1.1675859305517,-3.5,-3.48535979107015,-3.47919609874534,1.46081420752858,1.15895789172919,1.14664279009131,16.2069373486553,-0.00122403454141517,-133.09900990099,-125.773943731007,-104.609809002878,10,-660651.372554345,-4282.66921964575,0,-660651.372554345,0.0326307224781884,0.0326307224781884,-0.00139011425895065,0.0404307870347472,25.1,1015.1,38.6848514851485,1.39272060213021 +45781,2874.46999861386,457.87523,46.7821782178218,0.0331287128712871,0.0341225742574257,1.60836633663366,-3.5,550.628712871287,61.2138613861386,-95.3198019801981,20,40,10,32,5306963.04836575,397716.935746649,0,0,0,0,0,0,0,0.0331287128712871,12249.5937424368,3.21673267326733,1.72507309739167,1.37050951211547,-3.5,-3.48535979107015,-3.47970534366501,1.71588781892992,1.36132419771247,1.34720151339569,16.0171399927041,0.00367210362424549,-34.1059405940594,-43.2909910793059,-90.8197673613516,10,-Infinity,NaN,0,-Infinity,0.032601607685521,0.032601607685521,-0.000117090917012488,0.0334481656956902,25.1,1015.1,38.64,1.91567426220619 +45782,2874.46999000001,457.875236336634,45,0.0302673267326733,0.0311753465346535,1.47207920792079,-3.5,559.569306930693,58.1128712871287,-97.6871287128713,20,40,10,32,5306963.03226996,397716.943355608,0,0,0,0,0,0,0,0.0302673267326733,12249.6026770628,2.94415841584158,1.57889666114804,1.25437440367344,-3.5,-3.48535979107015,-3.47979164125793,1.57050473062257,1.24598244059551,1.24473193206316,16.2772113317389,0.00108003047771926,-39.5742574257426,-39.0010685226939,-78.6270264389077,10,-Infinity,Infinity,0,-Infinity,0.0300239192236055,0.0300239192236055,-0.000510570859066108,0.0317812286723175,25.1,1015.1,38.58,1.60562998330148 +45783,2874.46998118811,457.875240000001,46.7821782178218,0.0280495049504951,0.0288909900990099,1.36621782178218,-3.5,558.60396039604,56.1653465346534,-98.7148514851486,20,40,10,32,5306963.01586638,397716.947628682,0,0,0,0,0,0,0,0.028049504950495,12249.6105869638,2.73243564356436,1.46535372934151,1.16416642539465,-3.5,-3.48535979107015,-3.47966987859944,1.45757671107917,1.15638937751284,1.17306982950783,16.2491305393182,-0.00432012191087705,-42.549504950495,-43.7824232918341,-69.9846411014728,10,-173412.140562155,7297.58540750803,0,-173412.140562155,0.0283044799529458,0.0283044799529458,-0.000578646973608249,0.0311718182807289,25.1,1015.1,38.52,1.38908189290193 +45784,2874.46997207921,457.875245841584,46.7821782178218,0.0287623762376238,0.0296252475247525,1.47689108910891,-3.5,558.623762376238,53.4633663366337,-102.340594059406,20,40,10,32,5306962.99886451,397716.954604831,0,0,0,0,0,0,0,0.0287623762376237,12249.6184068483,2.95378217821782,1.58405770350289,1.25838276728897,-3.5,-3.48535979107015,-3.48002798009506,1.5760830333366,1.25040806701642,1.27070344272986,16.2497065555729,0.00403211378348525,-48.8772277227723,-47.4233800607784,-61.7636650478234,10,-Infinity,NaN,0,-Infinity,0.028973433977061,0.028973433977061,0.00123490071779455,0.0305101037576283,25.1,1015.1,38.46,1.62814531122126 +45785,2874.46996148514,457.875249999999,46.7821782178218,0.0296435643564356,0.0305328712871287,1.53070297029703,-3.5,560.321782178218,53.6673267326733,-103.741584158416,20,40,10,32,5306962.97914881,397716.959435924,0,0,0,0,0,0,0,0.0296435643564356,12249.6267536304,3.06140594059406,1.64177429856167,1.30422354047475,-3.5,-3.48535979107015,-3.48003302229839,1.63355530177525,1.29600451502417,1.29739221217729,16.2990999494206,0.00172804876435082,-50.0742574257426,-50.6066562101755,-53.9985074331609,10,-Infinity,-Infinity,0,-Infinity,0.0298427605136751,0.0298427605136751,-0.00114912481347145,0.0296407058288244,25.1,1015.1,38.4,1.78450192415484 +45786,2874.46994940594,457.875257326733,48.5643564356436,0.0315841584158416,0.0325316831683168,1.65212871287129,-3.5,560.727722772277,52.2178217821782,-106.607920792079,20,40,10,32,5306962.95661211,397716.968164176,0,0,0,0,0,0,0,0.0315841584158416,12249.6349950771,3.30425742574257,1.77201097230608,1.40765985545282,-3.5,-3.48535979107015,-3.47992882446943,1.76325393241138,1.39890278281724,1.3505626796258,16.3109082826437,-0.00518414629305246,-54.390099009901,-54.26031761592,-51.7682930930455,10,-265725.783727689,19487.3165771951,0,-265725.783727689,0.0306616018037447,0.0306616018037447,0.00134382250106198,0.029226872137763,25.1,1015.1,38.34,2.04442172603111 +45787,2874.46993762377,457.875260000001,46.7821782178218,0.0282178217821782,0.0290643564356435,1.41492079207921,-3.5,559.232673267327,50.8821782178218,-106.882178217822,20,40,10,32,5306962.9347284,397716.97110659,0,0,0,0,0,0,0,0.0282178217821782,12249.6435857811,2.82984158415842,1.51759069918404,1.20561901726664,-3.5,-3.48535979107015,-3.4798611307885,1.50976700979793,1.19779529912839,1.22003040086864,16.2674190554075,0.0036721036242455,-56,-56.1001372414469,-62.8895737925441,10,-233887.024452467,2025.07183287787,0,-233887.024452467,0.0289687285560239,0.0289687285560239,-0.00115593242492566,0.0296572734196495,25.1,1015.1,38.28,1.48400553596287 +45788,2874.46992673267,457.875260000001,46.7821782178218,0.0308118811881188,0.0317362376237624,1.57688118811881,-3.5,559.574257425743,50.7891089108911,-108.323762376238,20,40,10,32,5306962.9145543,397716.97074889,0,0,0,0,0,0,0,0.0308118811881188,12249.6516178493,3.15376237623762,1.69130331408221,1.34358503183384,-3.5,-3.48535979107015,-3.48001096498337,1.68276039592076,1.33504208179981,1.33813208831133,16.2773553358026,0.000864024382175412,-57.5346534653465,-58.2307322811489,-78.2466721397415,10,-Infinity,Infinity,0,-Infinity,0.0300211743946671,0.0300211743946671,1.36152229084041E-06,0.0297169563110156,25.1,1015.1,38.22,1.83333172563053 +45789,2874.46991742574,457.875266138613,46.7821782178218,0.0275445544554455,0.0283708910891089,1.718,-3.5,560.628712871287,49.2247524752475,-110.066336633663,20,40,10,32,5306962.89717907,397716.978088466,0,0,0,0,0,0,0,0.0275445544554455,12249.6595812707,3.436,1.84266203153811,1.46348044337147,-3.5,-3.48535979107015,-3.48090410969599,1.83502499361283,1.45584338303082,1.46029810525659,16.3080282013698,-0.0036721036242455,-60.8415841584158,-59.5314184883835,-92.8274052679994,10,-Infinity,-Infinity,0,-Infinity,0.0278235467111067,0.0278235467111067,-0.000182443986972946,0.0298213766431587,25.1,1015.1,38.16,2.18822106854012 +45790,2874.46990881188,457.875269999999,46.7821782178218,0.0273960396039604,0.0282179207920792,1.50712871287129,-3.5,559.277227722772,50.1940594059406,-109.661386138614,20,40,10,32,5306962.88113794,397716.982614666,0,0,0,0,0,0,0,0.0273960396039604,12249.6673265402,3.01425742574257,1.61648943879443,1.28403466750437,-3.5,-3.48535979107015,-3.48018499598109,1.60889359513254,1.27643879654349,1.29517235306832,16.2687150919808,0.00172804876435082,-59.4673267326733,-60.9576512106656,-106.033502141423,10,-Infinity,NaN,0,-Infinity,0.0270549946083717,0.0270549946083717,-0.000351272751037488,0.0294562763968703,25.1,1015.1,38.1189356435644,1.74261671421158 +45791,2874.4699,457.875269999999,45,0.0326039603960396,0.0335820792079208,1.64654455445545,-3.5,560.965346534653,41.960396039604,-116.320792079208,20,40,10,32,5306962.86481525,397716.982325253,0,0,0,0,0,0,0,0.0326039603960396,12249.6749173543,3.29308910891089,1.76602161451157,1.40296654052652,-3.5,-3.48535979107015,-3.47996792538422,1.7569818290157,1.39392671968019,1.34420248000123,16.3178204777011,0.00237606705098238,-74.360396039604,-89.7333398686403,-120.367204083046,10,-342227.477292756,1840.86918936991,0,-342227.477292756,0.0325153416331732,0.0325153416331732,0.00326629197573222,0.0295455930208404,25.1,1015.1,38.19,2.00301177543656 +45792,2874.46989425743,457.875269999999,46.7821782178218,0.0319603960396039,0.0329192079207921,1.54143564356436,-3.5,559.707920792079,-13.8861386138614,-188.252475247525,20,40,10,32,5306962.85417802,397716.982136647,0,0,0,0,0,0,0,0.0319603960396039,12249.6850566832,3.08287128712871,1.65328575928728,1.3134890620111,-3.5,-3.48535979107015,-3.4797351846667,1.64442440813969,1.30462767636268,1.33093810055756,16.2812434455224,-0.00460813003826886,-202.138613861386,-185.217733555534,-134.009193776521,10,-Infinity,-Infinity,0,-Infinity,0.0323847661993922,0.0323847661993922,-0.00274074437146685,0.029224478491805,25.1,1015.1,38.28,1.74692881307254 +45793,2874.46988891089,457.875269999999,46.7821782178218,0.0296138613861386,0.0305022772277228,1.65316831683168,-3.5,559.084158415842,-12.2336633663366,-185.059405940594,20,40,10,32,5306962.84427438,397716.981961048,0,0,0,0,0,0,0,0.0296138613861386,12249.6931386964,3.30633663366337,1.77312601232102,1.40843160347983,-3.5,-3.48535979107015,-3.48047178279821,1.76491524875095,1.40022081194955,1.39187616266465,16.2630989334967,0.00194405485989467,-197.293069306931,-196.801803744731,-148.090381895332,10,-1107335.35725773,-16104.1574502984,0,-1107335.35725773,0.0295572983040878,0.0295572983040878,0.000560947183827289,0.02919109603268,25.1,1015.1,38.37,2.00739700347611 +45794,2874.46987999999,457.875269999999,45,0.0276831683168317,0.0285136633663366,1.62358415841584,-3.5,560.688118811881,-2.93168316831683,-175.249504950495,20,40,10,32,5306962.82776831,397716.981668383,0,0,0,0,0,0,0,0.0276831683168316,12249.7012469472,3.24716831683168,1.74139515932458,1.38314686116294,-3.5,-3.48535979107015,-3.48067267599692,1.73371969899129,1.37547137537202,1.357524137265,16.3097562501341,0.00208805892359058,-178.181188118812,-179.735731791001,-161.817324259899,10,-Infinity,NaN,0,-Infinity,0.0277282619351044,0.0277282619351044,-0.00136288381313379,0.0288323656541476,25.1,1015.1,38.46,1.94239190252173 +45795,2874.4698719802,457.875269999999,46.7821782178218,0.0267425742574257,0.0275448514851485,1.55146534653465,-3.5,560.995049504951,-10.4594059405941,-184.758415841584,20,40,10,32,5306962.81291284,397716.981404984,0,0,0,0,0,0,0,0.0267425742574257,12249.7085761001,3.10293069306931,1.66404324057423,1.32172471835708,-3.5,-3.48535979107015,-3.48060617188002,1.65662857152935,1.31431002432966,1.33009838600581,16.3186845020833,-0.00360010159239754,-195.217821782178,-193.122478188413,-175.521285645048,10,-Infinity,-Infinity,0,-Infinity,0.027996568963827,0.027996568963827,0.00166922632857345,0.0286630696036634,25.1,1015.1,38.55,1.80635133657454 +45796,2874.46986811881,457.875269999999,46.7821782178218,0.030059405940594,0.0309611881188119,1.56606930693069,-3.5,643.534653465347,-12.0851485148515,-178.760396039604,20,40,10,32,5306962.80576021,397716.981278162,0,0,0,0,0,0,0,0.030059405940594,12249.717060506,3.13213861386139,1.67970689792689,1.33434173717995,-3.5,-3.48535979107015,-3.48009327012914,1.67137260987505,1.3260074185011,1.33292849579121,18.7196642560851,0.0888505073003714,-190.845544554455,-191.890510734242,-188.441702851604,10,-1408938.40128578,57274.6521690111,0,-1408938.40128578,0.0297852171355749,0.0297852171355749,-0.000684845712294004,0.0286558293191954,25.1,1015.1,38.64,1.82893079738072 +45797,2874.46986000001,457.875269999999,45,0.029,0.02987,1.55256435643564,-3.5,1143.83663366337,-14.5871287128713,-180.851485148515,20,40,10,32,5306962.79072135,397716.981011513,0,0,0,0,0,0,0,0.029,12249.7247676842,3.10512871287129,1.66522199716145,1.32278923663761,-3.5,-3.48535979107015,-3.4801608060482,1.6571814361163,1.3147486473748,1.29056566760417,33.2728589372566,0.103034907574418,-195.438613861386,-195.200882266445,-194.361319868251,10,-Infinity,NaN,0,-Infinity,0.0283269287324772,0.0283269287324772,0.000206951388208125,0.0277381826094695,25.1,1015.1,38.73,1.78827154788676 +45798,2874.46985217821,457.875269999999,46.7821782178218,0.0256039603960396,0.0263720792079208,1.53471287128713,-3.5,1096.12871287129,-14.4851485148515,-183.680198019802,20,40,10,32,5306962.77623267,397716.980754619,0,0,0,0,0,0,0,0.0256039603960396,12249.7326997249,3.06942574257426,1.6460751671907,1.30740425499849,-3.5,-3.48535979107015,-3.48075665006993,1.63897618822969,1.30030525299903,1.32074947990833,31.8850917754192,-0.0973467470584296,-198.165346534654,-197.922066464072,-198.658761040939,10,-Infinity,NaN,0,-Infinity,0.0265941574355455,0.0265941574355455,-0.00149222843076387,0.0273149622654572,25.1,1015.1,38.82,1.7514162408371 +45799,2874.46984544554,457.875269999999,46.7821782178218,0.0248019801980198,0.0255460396039604,1.70805940594059,-3.5,699.826732673267,-10.4762376237624,-183.89702970297,20,40,10,32,5306962.76376143,397716.980533495,0,0,0,0,0,0,0,0.0248019801980198,12249.7396747524,3.41611881188119,1.83200012510959,1.45486453693351,-3.5,-3.48535979107015,-3.48138448377326,1.82512349497491,1.44798788715242,1.43722580855464,20.3571344643712,-0.082154318338512,-194.373267326733,-196.525713165376,-200.250228978942,10,-Infinity,-Infinity,0,-Infinity,0.025203215371042,0.025203215371042,0.000963957781916808,0.0268565098268067,25.1,1015.1,38.91,2.15671152483323 +45800,2874.46984,457.875269999999,45,0.0272178217821782,0.0280343564356436,1.68164356435644,-3.5,555.554455445545,-12.2207920792079,-183.925742574257,20,40,10,32,5306962.75367439,397716.980354644,0,0,0,0,0,0,0,0.0272178217821782,12249.7469496974,3.36328712871287,1.80366748930153,1.43252484516038,-3.5,-3.48535979107015,-3.48094473114396,1.79612104498757,1.42497837771646,1.41394966976279,16.1604240360815,-0.0200885668855783,-196.146534653465,-195.358053132046,-32.4939773098189,10,-Infinity,Infinity,0,-Infinity,0.026746985589648,0.026746985589648,-0.000125260050757555,0.0324273251500972,25.1,1015.1,38.9861138613861,2.09476572711574 +45801,2874.46983346534,457.875269999999,46.7821782178218,0.0286930693069307,0.0295538613861386,1.56186138613861,-3.5,554.772277227723,-11.9207920792079,-184.307920792079,20,40,10,32,5306962.74156995,397716.980140023,0,0,0,0,0,0,0,0.0286930693069306,12249.754505913,3.12372277227723,1.67519364072358,1.33068279825264,-3.5,-3.48535979107015,-3.48024753089259,1.6672381818617,1.32272731077134,1.34846517746734,16.1376713940175,0.00892825194914591,-196.228712871287,-195.964895598471,1085.88277267287,10,-Infinity,NaN,0,-Infinity,0.0274662288010979,0.0274662288010979,-6.67145922513026E-05,0.228245665225863,25.1,1015.1,38.98,1.81251727303333 +45802,2874.46982950495,457.875269999999,46.7821782178218,0.0265247524752475,0.027320495049505,1.77916831683168,-3.5,561.975247524752,-27.6940594059406,-192.329702970297,20,40,10,32,5306962.73423391,397716.980009949,0,0,0,0,0,0,0,0.0265247524752475,12249.762095462,3.55833663366337,1.90826886213115,1.51547213547706,-3.5,-3.48535979107015,-3.48128921689089,1.90091457577371,1.50811782753892,1.47277995285059,16.3471973066951,0.00108003047771927,-220.023762376238,-219.356994412312,1822.74784423497,10,-Infinity,NaN,0,-Infinity,0.0268506028820703,0.0268506028820703,-0.000114367872430805,0.740302667629399,25.1,1015.1,38.96,2.3408025523974 +45803,2874.46982,457.875269999999,45,0.0230693069306931,0.0237613861386139,1.7929900990099,-3.5,559.772277227723,-38.2118811881188,-196.564356435644,20,40,10,32,5306962.71662742,397716.979697774,0,0,0,0,0,0,0,0.023069306930693,12249.7690072056,3.5859801980198,1.92309358461543,1.52703556880979,-3.5,-3.48535979107015,-3.48180552736358,1.91669735580647,1.52063932231774,1.5367135512358,16.2831154983504,-0.00532815035674837,-234.776237623762,-232.51210665621,2590.43791851713,10,-Infinity,NaN,0,-Infinity,0.0234124105479855,0.0234124105479855,-0.000302257948567138,1.45933199473793,25.1,1015.1,38.94,2.3949360527764 +45804,2874.46981188119,457.875269999999,46.7821782178218,0.0255544554455445,0.0263210891089109,1.85618811881188,-3.5,561.158415841584,-9.79108910891089,-181.095049504951,20,40,10,32,5306962.70158857,397716.979431125,0,0,0,0,0,0,0,0.0255544554455445,12249.775846067,3.71237623762376,1.99087739809476,1.58095520941543,-3.5,-3.48535979107015,-3.48157641639755,1.98379212518658,1.57386991938209,1.58088483550315,16.3234366361852,0.0126003555733914,-190.886138613861,-163.600254876973,3602.87187663821,10,-Infinity,NaN,0,-Infinity,0.0254831879227526,0.0254831879227526,0.000846866864904309,2.47431715808943,25.1,1015.1,38.92,2.54356057859288 +45805,2874.46981118812,457.875270495049,46.7821782178218,0.393970297029703,0.405789405940594,1.68143564356436,-3.5,769.851485148515,3507.1495049505,3041.6702970297,20,40,10,32,5306962.70029382,397716.980024914,0,0,0,0,0,0,0,0.393970297029702,12249.7986677941,3.36287128712871,1.80344448129854,1.45336370539618,-3.5,-3.48535979107015,-3.41303645071126,1.6942776375607,1.34417945054991,1.26209167970596,22.3940719453497,0.0829463406888394,6548.8198019802,6523.85998431526,4265.31013738736,10,-Infinity,Infinity,0,-Infinity,0.59753514361337,0.59753514361337,0.518701870187018,3.75327264814393,25.1,1015.1,38.9,2.19504393387942 +45806,2874.47008069307,457.875118118812,45,3.84471287128713,3.96005425742574,1.20777227722772,-3.5,850.613861386139,5765.03564356436,4724.13366336634,20,40,10,32,5306963.20287562,397716.799101606,0,0,0,0,0,0,0,3.84471287128712,12250.35162676,2.41554455445545,1.2954110116367,1.24811228437921,-3.5,-3.48535979107015,-2.85320221066994,0.345459543385146,0.274075280768752,0.371211543770729,24.7433542404846,-0.00691219505740328,10489.1693069307,10228.1480541123,4919.68859754107,10,289482.738295718,23084.1140726513,0,289482.738295718,3.73929653955494,3.73929653955494,0.923771089980283,5.19686968477067,25.1,1015.1,38.88,1.62943543513878 +45807,2874.47078722772,457.874695643564,45,6.14155445544555,6.32580108910892,1.22770297029703,-3.5,902.920792079208,3083.62277227723,2477.70891089109,20,40,10,32,5306964.52095301,397716.296141112,0,0,0,0,0,0,0,6.14155445544553,12251.7831398238,2.45540594059406,1.31678792163731,1.39678177054814,-3.5,-3.48535979107015,-2.58438875736914,0.45558636553409,0.36144597374449,0.339917642240712,26.2649011774955,0.0475933430514955,5561.33168316832,6077.31102833056,5680.77481231639,10,86010.8891910669,13270.3632690128,0,86010.8891910669,6.14973012449759,6.14973012449759,0.528199849687939,6.79821067051759,25.1,1015.1,38.86,2.07463182263854 +45808,2874.47175564356,457.873935940594,45,8.5839108910891,8.84142821782178,1.99071287128713,-3.5,1075.72772277228,5379.45445544555,4348.5297029703,20,40,10,32,5306966.33157247,397715.381786884,0,0,0,0,0,0,0,8.5839108910891,12253.7903822881,3.98142574257426,2.13516357602736,2.18603670482267,-3.5,-3.48535979107015,-2.70260956322467,0.382846078620381,0.30373642441863,0.396427829794266,31.2916510289284,0.0266407517837418,9727.98415841584,9391.90923438879,6641.88860124443,9.75164545330555,128043.54602534,21323.144953071,0,128043.54602534,8.60791843936868,8.60791843936868,0.851555947673973,8.57051862083762,25.1,1015.1,38.84,4.83413850356787 +45809,2874.47297485149,457.872601980198,45,11.6987326732673,12.0496946534654,2.12205940594059,-3.5,930.009900990099,4948.5801980198,3914.60792079208,20,40,10,32,5306968.61942769,397713.760470383,0,0,0,0,0,0,0,11.6987326732673,12256.6195821781,4.24411881188119,2.27604091734287,2.47644003105183,-3.5,-3.48535979107015,-2.49376501452181,1.10028918280818,0.872930195385477,0.784518655213164,27.0528914140395,-0.0984987795679968,8863.18811881188,8612.95008332517,7834.10580163282,7.73687463450108,77356.7004786692,18478.6775382442,0,77356.7004786692,11.6392953631997,11.6392953631997,0.742112701369145,10.7537416342007,25.1,1015.1,38.82,6.79780726662815 +45810,2874.47418504951,457.870471782178,45,13.7067524752475,14.117955049505,4.07746534653465,-3.5,746.767326732673,2938.00792079208,2388.0099009901,20,40,10,32,5306970.90817777,397711.147197865,0,0,0,0,0,0,0,13.7067524752475,12260.1830572056,8.15493069306931,4.3733356105773,4.25532093618635,-3.5,-3.48535979107015,-2.82984853648652,0.68054140975361,0.539917282716477,0.558064426491629,21.7225809963357,-0.0216006095543853,5326.01782178218,5772.22116459171,7741.88135317999,6.57399425010113,30139.4948266181,11297.9810092192,0,30139.4948266181,13.6878319772571,13.6878319772571,0.452342635253625,13.0510422031348,25.1,1015.1,38.8012623762376,18.3013053563522 +45811,2874.4751450495,457.867664851485,45,15.2447623762376,15.7021052475247,5.13512871287129,-3.5,679.153465346535,3758.29306930693,3109.63861386139,20,40,10,32,5306972.74842053,397707.682883737,0,0,0,0,0,0,0,15.2447623762376,12264.2046110835,10.2702574257426,5.50774546348608,5.24344510264386,-3.5,-3.48535979107015,-2.88970827222509,1.30998846919437,1.03929813019521,1.0039882429149,19.7557734943771,0.00921626007653771,6867.93168316832,6840.46489559847,8091.15172744223,5.90957617013393,32087.4318505745,10718.3278291387,0,32087.4318505745,15.2555934712283,15.2555934712283,0.428586794322997,15.2127691721774,25.1,1015.1,38.79,27.6891690200056 +45812,2874.47576306931,457.864291188119,45,16.8942475247525,17.401074950495,5.6440198019802,-3.5,755.10396039604,4490.50495049505,3670.8099009901,20,40,10,32,5306973.96771556,397703.501510729,0,0,0,0,0,0,0,16.8942475247525,12268.6648242298,11.2880396039604,6.05356286051115,5.77102400088717,-3.5,-3.48535979107015,-2.88718619304452,1.40125950763715,1.11170931687756,1.09975680819886,21.9650838395996,0.024984705051239,8161.31485148514,8127.08559945104,8218.23188594533,5.33296209559837,38202.2503452458,12632.3910746139,0,38202.2503452458,16.9068646211156,16.9068646211156,0.504874249801214,17.1559463011011,25.1,1015.1,38.78,33.4398004843255 +45813,2874.47573316832,457.860392079208,116.287128712871,18.8644851485148,19.4304197029703,6.00293069306931,-3.5,852.871287128713,5136.03267326733,4235.32277227723,20,40,9.87128712871287,32,5306973.99844407,397698.644448227,0,0,0,0,0,0,0,18.8644851485148,12273.6298531627,12.0058613861386,6.43851715138159,6.18937885945898,-3.5,-3.48535979107015,-2.86535635648479,1.25211130612156,0.99338045322546,1.03296383016091,24.80902009353,0.0344169712233205,9371.35544554456,9354.48522693854,9326.57618237691,4.77593286105191,44369.3165631405,14405.3921420134,0,44369.3165631405,18.8791528281541,18.8791528281541,0.575628478689456,19.0497304663568,25.1,1015.1,38.77,38.4345181990112 +45814,2874.47494643564,457.856141782178,221.435643564356,20.9524356435644,21.5810087128713,7.02684158415842,-3.5,973.673267326733,5801.40198019802,4721.04158415841,20,40,9.75247524752475,32,5306972.63501789,397693.325141428,0,0,0,0,0,0,0,20.9524356435643,12279.1612048404,14.0536831683168,7.53672537180549,7.18031746105932,-3.5,-3.48535979107015,-2.88879877526983,1.76590710520233,1.40100771548311,1.36337617011108,28.3230072558373,0.0387370931341976,10522.4435643564,10541.1443093814,10323.9194360915,4.29935536613403,51212.1296837631,14951.7443203354,0,51212.1296837631,20.9637048328595,20.9637048328595,0.597391050986285,21.1724735817136,25.1,1015.1,38.76,51.8054872603448 +45815,2874.47350811881,457.851683564356,225,23.3474455445544,24.0478689108911,7.60347524752475,-3.5,1120.89108910891,6465.99603960396,5315.23663366337,20,40,10,32,5306970.06922871,397687.725473932,0,0,0,0,0,0,0,23.3474455445544,12285.3044799229,15.2069504950495,8.15520090008947,7.80828309022912,-3.5,-3.48535979107015,-2.87594095371597,1.73314568765428,1.37501597524957,1.36236487123301,32.6054001020261,0.0441372455227939,11781.2326732673,11711.4575139692,10680.4485044169,3.85925376617591,59221.6905825857,18491.8685449053,0,59221.6905825857,23.3642110577394,23.3642110577394,0.738876362883815,23.4526386377709,25.1,1015.1,38.75,61.1359257859406 +45816,2874.47154366337,457.846909108911,225,26.0212079207921,26.8018441584158,8.03954455445545,-3.48782178217822,1263.27227722772,5900.23960396039,4785.48118811881,20,40,10,32,5306966.53583881,397681.714661808,0,0,0,0,0,0,0,26.021207920792,12292.1737684542,16.0790891089109,8.62291239892551,8.33264197638443,-3.48782178217822,-3.47318157324837,-2.84087705251033,1.48623764200593,1.17912793790654,1.16902822022562,36.7471009779839,0.00669618896185942,10685.7207920792,10755.7866483678,10543.1844396617,3.46117977458368,54393.528099077,16452.9277988458,0,54393.528099077,25.9843157533575,25.9843157533575,0.657977431406503,25.8320782619347,25.1,1015.1,38.74,69.7582735710914 +45817,2874.46914623762,457.842142475248,225,28.1660792079208,29.0110615841584,8.4010198019802,-2.75544554455445,1057.84158415842,5243.46336633663,4231.16435643564,20,40,10,32,5306962.20027067,397675.699357805,0,0,0,0,0,0,0,28.1660792079207,12299.7019177392,16.8020396039604,9.01061712183279,8.76364773439782,-2.75544554455445,-2.7408053356246,-2.23018272023269,1.28198699675942,1.01708276064906,1.05511117308009,30.7713643467951,-0.0541455279496591,9474.62772277227,9398.53120282325,9755.1637343849,3.19728216756032,37349.3603673706,15742.3771092845,0,37349.3603673706,28.1920944025095,28.1920944025095,0.630544118768309,28.2542961852456,25.1,1015.1,38.73,77.012512550969 +45818,2874.46651514852,457.836995742574,225,30.5945346534653,31.5123706930693,8.98048514851485,-3.03643564356436,1084.18316831683,4962.08415841584,4038.60099009901,20,40,10,32,5306957.44028031,397669.20297749,0,0,0,0,0,0,0,30.5945346534653,12307.8648074531,17.9609702970297,9.63212980672887,9.39578136773951,-3.03643564356436,-3.0217954346345,-2.4499889563543,1.27231891368179,1.00941244835132,0.999317583589284,31.537609969721,0.0224646339365607,9000.68514851485,9004.35199490246,9099.15381135355,2.94331305577832,33400.0772144482,16962.4671064453,0,33400.0772144482,30.5905037741397,30.5905037741397,0.678198760470105,30.6098250029289,25.1,1015.1,38.72,88.5603994203933 +45819,2874.46365415842,457.83136990099,225,33.047,34.03841,9.72664356435643,-3.04009900990099,1172.48514851485,4820.67821782178,4068.91683168317,20,40,10,32,5306952.26502607,397662.102331176,0,0,0,0,0,0,0,33.0469999999999,12316.7061013475,19.4532871287129,10.4324311934483,10.1712349039931,-3.04009900990099,-3.02545880097114,-2.45556369104075,1.39756241095566,1.1087761722289,1.11552364964343,34.1062104538648,0.0300248472805955,8889.59504950495,8906.36688559945,8941.2446045003,2.72472291606267,33028.3017138611,17211.3850010752,0,33028.3017138611,33.047700225468,33.047700225468,0.688053458811227,33.0612031003815,25.1,1015.1,38.71,103.787507920426 +45820,2874.46056049505,457.825301683168,225,35.5544653465347,36.6210993069307,10.1465445544554,-2.38752475247525,1262.17821782178,4817.12079207921,4135.88118811881,20,40,10,32,5306946.66856328,397654.443072906,0,0,0,0,0,0,0,35.5544653465346,12326.2354176567,20.2930891089109,10.8828011651949,10.6727107501035,-2.38752475247525,-2.37288454354539,-1.91523376797958,1.18154267655557,0.937393819386246,0.953987819148544,36.7152760799071,0.0216726115862332,8953.00198019802,8933.59073620233,8916.5545550414,2.53247630165506,33284.1741572624,17382.8994406171,0,33284.1741572624,35.5494256445446,35.5494256445446,0.695025814462638,35.541504564212,25.1,1015.1,38.7025247524753,114.112734366234 +45821,2874.45721772277,457.818806633663,225,38.027198019802,39.168013960396,10.4074851485149,-2.48772277227723,1349.27722772277,4775.0099009901,4116.76831683168,20,40,10,32,5306940.62010611,397646.244019015,0,0,0,0,0,0,0,38.0271980198019,12336.4586027227,20.8149702970297,11.1626762089436,11.0363304806405,-2.48772277227723,-2.47308256334737,-1.98412641692338,0.956198523059757,0.758613804992187,0.754120475317716,39.2488835765728,0.0264967477200459,8891.77821782178,8898.79452014508,8894.90284605241,2.3676620175762,33039.4023336993,17417.1033179442,0,33039.4023336993,38.031842662484,38.031842662484,0.696330152817258,38.0356618847711,25.1,1015.1,38.71,122.008590329887 +45822,2874.45363544554,457.811874950495,225,40.5096435643564,41.7249328712871,10.1274851485149,-2.01584158415842,1434.83168316832,4775.54653465347,4056.44158415842,20,40,10,32,5306934.13766332,397637.493273746,0,0,0,0,0,0,0,40.5096435643564,12347.3740584982,20.2549702970297,10.8623587649211,10.9403882042148,-2.01584158415842,-2.00120137522856,-1.56740312818747,1.30907266391765,1.03857156295122,1.00910818854411,41.7375618053654,0.0262807416245021,8831.98811881189,8832.12476227821,8819.2744019356,2.2223628959493,32761.0607922262,16958.736758482,0,32761.0607922262,40.517513381041,40.517513381041,0.677998616693348,40.5063363272835,25.1,1015.1,38.72,120.84768590217 +45823,2874.44982643564,457.804500891089,225,42.950495049505,44.2390099009901,10.6548712871287,-1.40415841584158,1522.61386138614,4707.78118811881,3976.69207920792,20,40,10,32,5306927.24502296,397628.184101054,0,0,0,0,0,0,0,42.9504950495049,12358.9702229922,21.3097425742574,11.4280132547833,11.5291830536706,-1.40415841584158,-1.38951820691173,-1.0762521993825,1.40195806405032,1.11226352662148,1.00689845574527,44.2910418628211,0.0360010159239754,8684.47326732673,8679.71372414469,8658.64550396967,2.09597506690132,32238.2726666672,16662.4272846601,0,32238.2726666672,42.9430859719635,42.9430859719635,0.666014497489352,42.9362736416003,25.1,1015.1,38.73,134.121009048415 +45824,2874.44574683168,457.796784554455,225,45.3139900990099,46.6734098019802,11.6528415841584,-1.24009900990099,1606.18811881188,4505.24653465346,3890.99108910891,20,40,10,32,5306919.85872865,397618.439722858,0,0,0,0,0,0,0,45.3139900990098,12371.2347625687,23.3056831683168,12.4983985719774,12.5140053122415,-1.24009900990099,-1.22545880097113,-0.977490193184943,0.972938620603546,0.771894801341143,0.968915150440881,46.7221184661353,0.0177124998345959,8396.23762376238,8388.97640427409,8373.51838741598,1.98655900693393,31167.8307519201,15969.5059927864,0,31167.8307519201,45.3023369277521,45.3023369277521,0.638544423749303,45.2849660863638,25.1,1015.1,38.74,156.949676043611 +45825,2874.44145465346,457.788668811881,225,47.5322475247525,48.9582149504951,11.5195148514852,-0.868910891089109,1685.61386138614,4291.41089108911,3715.60297029703,20,40,10,32,5306912.08751823,397608.190891793,0,0,0,0,0,0,0,47.5322475247524,12384.1346870736,23.0390297029703,12.3553973449191,12.5277635810671,-0.868910891089109,-0.854270682159251,-0.67184967488615,1.45217474219347,1.15210364806231,1.07045366286291,49.0325196640724,0.0270727639748295,8007.01386138614,8006.38373688854,8023.65555539515,1.89379151036112,29736.6057719597,15097.1071475467,0,29736.6057719597,47.5294595627879,47.5294595627879,0.603521985861958,47.5168313302805,25.1,1015.1,38.75,157.99540120244 +45826,2874.43692742574,457.780219207921,225,49.6451089108911,51.1344621782178,11.7755462046139,-1.02663366336634,1757.9900990099,4152.52871287129,3587.06732673267,20,40,10,32,5306903.88831334,397597.518497137,0,0,0,0,0,0,0,49.645108910891,12397.6379407865,23.5510924092277,12.6300069219236,12.8669184294961,-1.02663366336634,-1.01199345443648,-0.801923015966343,1.56655270343709,1.24284704317718,1.31564872413902,51.1378590753065,0.0156244409110053,7739.59603960396,7743.39800019606,7756.82553078584,1.8131272914569,28700.8751977421,14225.9583487955,0,28700.8751977421,49.6409517694343,49.6409517694343,0.568829036368981,49.6297215075803,25.1,1015.1,38.76,166.217091226866 +45827,2874.43220326733,457.771417425743,225,51.6529900990099,53.2025798019802,12.7948118811683,0.161782178217822,1830.59405940594,4076.47821782178,3521.73465346535,20,40,10,32,5306895.33213054,397586.400975541,0,0,0,0,0,0,0,51.6529900990098,12411.7108845433,25.5896237623366,13.7232328603618,13.8494448321164,0.161782178217822,0.176422387147679,0.115429676742099,1.6998196594619,1.34857629306789,1.33294158204108,53.2498226734705,0.0210245932996017,7598.21287128713,7589.31283207529,7572.26646518208,1.74261893396312,28200.0437039766,13672.757290775,0,28200.0437039766,51.6456546417017,51.6456546417017,0.54662941541679,51.6372902345755,25.1,1015.1,38.77,194.521181655472 +45828,2874.42729653465,457.762268712871,225,53.5436039603961,55.1499120792079,13.2520297029703,-0.417029702970297,1898.93564356436,3833.98712871287,3473.20792079208,20,40,10,32,5306886.44544945,397574.845330668,0,0,0,0,0,0,0,53.5436039603959,12426.3281674091,26.5040594059406,14.2136274589515,14.3468703129216,-0.417029702970297,-0.40238949404044,-0.30859736344437,1.37292707098992,1.08923137212935,1.03011905229906,55.2377987727925,0.0254167172423267,7307.19504950495,7305.98823644741,7286.28010020854,1.68104044793291,27138.711812622,12651.623787238,0,27138.711812622,53.5396897363003,53.5396897363003,0.505725201232995,53.5334949840675,25.1,1015.1,38.78,206.765437199585 +45829,2874.42226415842,457.752729108911,225,55.3293564356435,56.9892371287129,14.4514158415842,0.418811881188119,1951.09900990099,3227.93663366336,3128.22871287129,20,40,10,32,5306877.33470032,397562.798680391,0,0,0,0,0,0,0,55.3293564356435,12441.4542425741,28.9028316831683,15.5000438144677,15.4697449453946,0.418811881188119,0.433452090117976,0.337972990853133,0.999829798977005,0.793229303177995,0.835988019697076,56.7551695919562,-0.0275767781977652,6356.16534653465,6594.83845701402,6662.1779111642,1.62676221115447,23498.2581894679,11554.248063978,0,23498.2581894679,55.3087719831388,55.3087719831388,0.462522737422257,55.2869074681609,25.1,1015.1,38.79,239.578557490127 +45830,2874.41712,457.742844950495,225,56.8740594059406,58.5802811881188,15.3966435643564,-0.811980198019802,1524.25247524752,3427.98712871287,3326.7603960396,20,40,10,32,5306868.02453732,397550.319187199,0,0,0,0,0,0,0,56.8740594059405,12457.0407839933,30.7932871287129,16.5138594349041,16.3627941481308,-0.811980198019802,-0.797339989089944,-0.635237252763,1.29778636228059,1.02961741376286,1.02048655683977,44.3387072079045,-0.111603149364324,6754.74752475248,6533.29473581021,6502.21234057338,1.58256791197009,19024.1558936965,11166.1421777862,0,19024.1558936965,56.8924251543966,56.8924251543966,0.447885011273398,56.9024798587648,25.1,1015.1,38.7936881188119,268.249243446411 +45831,2874.41182356436,457.732695742574,225,58.5212871287128,60.2769257425743,15.6536237623762,0.00405940594059404,1501.82178217822,3351.88613861386,3151.69801980198,20,40,10,32,5306858.43819368,397537.504535492,0,0,0,0,0,0,0,58.5212871287128,12473.074125715,31.3072475247525,16.7894867071673,16.6759299297216,0.00405940594059404,0.0186996148704515,0.022537031937739,1.23067726609351,0.97637545032083,0.979140373983891,43.6862247952983,0.014688414496982,6503.58415841584,6501.77285560239,6503.43356823692,1.53799665986904,17478.0283358727,10970.1003065882,0,17478.0283358727,58.515903440839,58.515903440839,0.438662059275236,58.5116863294973,25.1,1015.1,38.76,278.523823615585 +45832,2874.40640267327,457.72223039604,225,60.1124059405941,61.9157781188119,16.9340891089109,-0.171485148514852,1532.84158415842,3410.06138613861,3063.95940594059,20,40,10,32,5306848.62833743,397524.292007724,0,0,0,0,0,0,0,60.1124059405939,12489.5497886138,33.8681782178218,18.1628655644198,17.8565387161931,-0.171485148514852,-0.156844939584994,-0.129015335481841,1.78431883682209,1.41561492668845,1.34671162952584,44.5885542584168,0.014616412465134,6474.02079207921,6469.10786197432,6466.57964456538,1.49730123426562,17288.4422740983,11287.0630318005,0,17288.4422740983,60.1128023723164,60.1128023723164,0.451341916369863,60.1099801042689,25.1,1015.1,38.72,319.227254896861 +45833,2874.40080306931,457.711523960396,225,61.6520792079208,63.5016415841584,17.3323168316832,-0.536435643564356,1571.59405940594,3393.4603960396,2973.66435643564,20,40,10,32,5306838.49280707,397510.773286177,0,0,0,0,0,0,0,61.6520792079207,12506.4699954619,34.6646336633663,18.5899896067122,18.2835371100687,-0.536435643564356,-0.521795434634499,-0.421781720069896,1.79798097958225,1.42645398348856,1.43859625015729,45.7158180690284,0.00331209346500574,6367.12475247525,6368.20003921184,6366.2261543691,1.45987500810078,16996.0805178104,10364.7596216237,0,16996.0805178104,61.660874914224,61.660874914224,0.41455903016043,61.6627138716629,25.1,1015.1,38.68,334.68985474512 +45834,2874.39500831683,457.700632574257,225,63.1676534653465,65.0626830693069,17.4961188118812,0.51019801980198,1608.4801980198,3302.61782178218,2933.88415841584,20,40,10,32,5306827.9999179,397497.01774473,0,0,0,0,0,0,0,63.1676534653465,12523.8098605059,34.9922376237624,18.7656774353511,18.5105700496122,0.51019801980198,0.524838228731837,0.42222873199865,1.57201831358357,1.24718326333423,1.27917529090284,46.7887923476265,0.0141123982421984,6236.50198019802,6235.88959905892,6236.74099626453,1.42484029625996,16629.3924653544,10261.2989180644,0,16629.3924653544,63.1633537888441,63.1633537888441,0.410316526702178,63.1586910914489,25.1,1015.1,38.64,342.943276352704 +45835,2874.38911128713,457.689429009901,225,64.6010198019802,66.5390503960396,18.0573465346535,1.03792079207921,1645.05445544554,3229.55544554455,2871.81188118812,20,40,10,32,5306817.32451733,397482.869978608,0,0,0,0,0,0,0,64.6010198019801,12541.5578623486,36.1146930693069,19.3676291325566,19.0693985676034,1.03792079207921,1.05256100100907,0.84786384553264,1.83531845699171,1.45607620640913,1.41298143735544,47.8526943702119,0.00878424788545001,6101.36732673267,6099.12823252623,6098.53269429749,1.39322319879627,16270.0857517331,9926.09892626449,0,16270.0857517331,64.6057942358591,64.6057942358591,0.396959993029015,64.6053806684654,25.1,1015.1,38.6,364.19858429654 +45836,2874.38307594059,457.677985247525,225,66.0169702970297,67.9974794059406,18.2450693069307,1.20059405940594,1681.39108910891,3119.18811881188,2838.67920792079,20,40,10,32,5306806.39825697,397468.418446941,0,0,0,0,0,0,0,66.0169702970296,12559.7038479647,36.4901386138614,19.5689735009677,19.310687339626,1.20059405940594,1.2152342683358,0.977927056873778,1.6745876600721,1.32855812466138,1.34499017828567,48.9096841977398,0.0170644815479644,5957.86732673267,5958.81099892168,5959.11308675879,1.36333013152478,15889.2954296917,9448.61183349858,0,15889.2954296917,66.0115033820213,66.0115033820213,0.377780228517891,66.0092005481812,25.1,1015.1,38.56,373.347067486174 +45837,2874.37687247525,457.666357821782,225,67.3963861386138,69.4182777227723,18.2662178217822,1.30247524752475,1716.4900990099,3042.23663366337,2791.47920792079,20,40,10,32,5306795.16468387,397453.732577232,0,0,0,0,0,0,0,67.3963861386138,12578.2323976346,36.5324356435644,19.5916566007001,19.4078017952748,1.30247524752475,1.31711545645461,1.05277194410828,1.41947313702964,1.12615936084117,1.16502435006348,49.9306730093437,0.016128455133941,5833.71584158416,5836.02927164003,5836.57865582548,1.33543275384866,15558.660181606,9462.98768423017,0,15558.660181606,67.3780849916674,67.3780849916674,0.378364321580668,67.3752755965821,25.1,1015.1,38.52,376.958881655513 +45838,2874.37057554456,457.65442970297,225,68.7292277227723,70.7911045544554,18.6497920792079,2.14772277227723,1751.42079207921,3029.3594059406,2707.87326732673,20,40,10,32,5306783.76467519,397438.669066609,0,0,0,0,0,0,0,68.7292277227722,12597.1378831132,37.2995841584158,20.0030638884963,19.8102113343032,2.14772277227723,2.16236298120708,1.7291980161308,1.55168332439967,1.23105020817126,1.19433627604491,50.946765682782,-0.00194405485989468,5737.23267326733,5738.32755612195,5739.00457466379,1.30954146236561,15310.6600588917,9261.9801928392,0,15310.6600588917,68.7206701303793,68.7206701303793,0.370498807306475,68.7186605748824,25.1,1015.1,38.48,392.825329430566 +45839,2874.36415683168,457.642271089109,225,70.0080792079208,72.1083215841584,18.4215841584158,1.95237623762376,1783.10891089109,2950.4099009901,2694.17623762376,20,40,10,32,5306772.14422667,397423.314408926,0,0,0,0,0,0,0,70.0080792079207,12616.4105682617,36.8431683168317,19.758296676075,19.6895111493174,1.95237623762376,1.96701644655362,1.56418447426554,1.3164836428106,1.04445116928936,1.06468177842223,51.8685356944995,0.00979227633132132,5644.58613861386,5644.60299970591,5643.52711588866,1.28561263713398,15055.6823065078,8938.52968576578,0,15055.6823065078,70.0194527987451,70.0194527987451,0.357447254626448,70.0198990737198,25.1,1015.1,38.44,388.143684098858 +45840,2874.35761851485,457.629904257426,225,71.283900990099,73.422418019802,19.0990495049505,1.38148514851485,1814.89108910891,2900.30396039604,2636.39504950495,20,40,10,32,5306760.306882,397407.696418256,0,0,0,0,0,0,0,71.2839009900989,12636.0401086358,38.198099009901,20.484920466379,20.3393394018901,1.38148514851485,1.39612535744471,1.11371353544756,1.41709918418898,1.12427595132537,1.12703094339762,52.7930417834272,0.010296290554257,5536.69900990099,5536.31452798745,5537.21010892648,1.26259154449976,14762.4456189932,8679.38259334061,0,14762.4456189932,71.2852771296931,71.2852771296931,0.347076539337103,71.2867073560457,25.1,1015.1,38.4138861386139,414.093600375388 +45841,2874.35094217822,457.617329504951,225,72.5136633663367,74.6890732673268,19.5619603960396,2.23732673267327,1847.29702970297,2868.5504950495,2563.71089108911,20,40,10,32,5306748.21852418,397391.814854431,0,0,0,0,0,0,0,72.5136633663366,12656.0163199669,39.1239207920792,20.9814212364577,20.8034835928554,2.23732673267327,2.25196694160312,1.79719083626611,1.51787341595967,1.20422663265889,1.25620283230289,53.7356923843805,-0.00165604673250287,5432.26138613861,5432.51614547594,5432.80445927715,1.24117279664418,14492.0959484297,8521.73533098622,0,14492.0959484297,72.5221937064993,72.5221937064993,0.340885697480643,72.5228517008773,25.1,1015.1,38.47,433.226444692803 +45842,2874.34412247525,457.604585247525,225,73.714702970297,75.926144059406,20.5987821782178,2.3560396039604,1876.73762376238,2796.54653465346,2532.20495049505,20,40,10,32,5306735.8684006,397375.717383967,0,0,0,0,0,0,0,73.7147029702969,12676.3312757424,41.1975643564356,22.0934771919243,21.7542379541325,2.3560396039604,2.37067981289025,1.90821904580967,2.08256362420498,1.6522317039782,1.56542281413627,54.5920845511801,0.0162724591976369,5328.75148514851,5327.74238800117,5325.28050683117,1.2209443318589,14207.0493540493,7873.17028307795,0,14207.0493540493,73.7143852563473,73.7143852563473,0.314770338419976,73.7129421660568,25.1,1015.1,38.54,473.752932132644 +45843,2874.33723386139,457.591592772277,225,74.842594059406,77.0878718811881,20.2986732673267,2.53415841584158,1864.66336633663,2658.42871287129,2513.57425742574,20,40,10,32,5306723.39617453,397359.308421072,0,0,0,0,0,0,0,74.8425940594059,12696.9663388888,40.5973465346535,21.7715916881843,21.5637973137628,2.53415841584158,2.54879862477144,2.04257294877331,1.70521769915489,1.35285890523706,1.38374768814467,54.2408586398257,-0.0631457819306529,5172.00297029703,5175.16287618861,5184.72792733819,1.20254415046486,13479.3775090722,7682.194832223,0,13479.3775090722,74.8385557298303,74.8385557298303,0.307857889749367,74.8363997217903,25.1,1015.1,38.61,465.695186881134 +45844,2874.33025564356,457.578380792079,225,75.9646930693069,78.2436338613861,20.2373267326733,1.16485148514852,1655.52475247525,2643.51782178218,2535.20297029703,20,40,10,32,5306710.76288149,397342.6230422,0,0,0,0,0,0,0,75.9646930693068,12717.9087728271,40.4746534653465,21.7057937078744,21.5758444565367,1.16485148514852,1.17949169407837,0.943856456483599,1.85036851159735,1.46801638296702,1.46505536935335,48.1572629649287,-0.0126723576052394,5178.72079207921,5171.0840701892,5163.15482752835,1.18478752642188,11822.1666529742,7748.98751944777,0,11822.1666529742,75.9528635427898,75.9528635427898,0.310064917382827,75.9515838750355,25.1,1015.1,38.68,466.94445192968 +45845,2874.32319326733,457.564956831683,225,77.0281782178218,79.3390235643565,21.0801485148515,2.19752475247525,1691.07920792079,2587.74059405941,2437.75247524753,20,40,10,32,5306697.97844408,397325.670795672,0,0,0,0,0,0,0,77.0281782178217,12739.1606154289,42.160297029703,22.6097725771253,22.354685687542,2.19752475247525,2.2121649614051,1.77492135707802,1.81922659035546,1.4433094933428,1.43423160935808,49.1915001503926,0.00244806908283034,5025.49306930693,5028.34674051564,5028.85454006939,1.16842606117746,11551.9480504275,7389.97654250299,0,11551.9480504275,77.0289322615429,77.0289322615429,0.295578320208256,77.0295440467122,25.1,1015.1,38.75,500.522997997115 +45846,2874.31604326733,457.551334158416,225,78.0897326732673,80.4324246534653,21.3954059405941,1.81544554455446,1696.28217821782,2555.41386138614,2391.5297029703,20,40,10,32,5306685.03615147,397308.468088512,0,0,0,0,0,0,0,78.0897326732672,12760.7078829207,42.7908118811881,22.9479058067972,22.6835144161294,1.81544554455446,1.83008575348431,1.46740585190358,1.80385247886591,1.43111222161084,1.5522449198006,49.3428484213371,0.00633617880261967,4946.94356435644,4949.25270071562,4949.65926281592,1.15253953800442,11253.1088310974,7057.82385193424,0,11253.1088310974,78.0810110773453,78.0810110773453,0.282261270681536,78.0799254471266,25.1,1015.1,38.82,514.960126397589 +45847,2874.30881188119,457.537520495049,225,79.0889603960396,81.4616292079208,22.0086336633663,0.506732673267327,1719.66831683168,2491.91089108911,2402.04554455446,20,40,10,32,5306671.94738887,397291.024742019,0,0,0,0,0,0,0,79.0889603960395,12782.5376697743,44.0172673267327,23.6056307436069,23.2628757817773,0.506732673267327,0.521372882197184,0.420625619191438,2.35706863454862,1.87001418885367,1.82563919544467,50.0231236182365,-0.00108003047771926,4893.95643564356,4893.82338986374,4893.50036365853,1.13798075419094,11143.9918929557,6950.38411729278,0,11143.9918929557,79.085846877757,79.085846877757,0.278024213312411,79.0853955702688,25.1,1015.1,38.89,542.262312530672 +45848,2874.30150930693,457.523503564356,225,80.082396039604,82.4848679207921,21.8799108910891,1.4760396039604,1740.47524752475,2462.89900990099,2375.49405940594,20,40,10,32,5306658.73132096,397273.325798249,0,0,0,0,0,0,0,80.0823960396039,12804.6458595158,43.7598217821782,23.4675675509005,23.210374373782,1.4760396039604,1.49067981289025,1.20225068651195,2.12599119622632,1.68668559075818,1.72481214246925,50.6283726979504,0.0036721036242455,4838.39306930693,4838.06032741888,4838.11066327872,1.12386397175058,11012.2598392581,6911.3622551397,0,11012.2598392581,80.0824607391431,80.0824607391431,0.276424424620676,80.0820183124506,25.1,1015.1,38.96,540.230353538795 +45849,2874.29413049505,457.509297227723,225,81.0433465346535,83.474646930693,23.3779603960396,1.13118811881188,1761.56930693069,2464.39504950495,2320.24752475248,20,40,10,32,5306645.37828916,397255.3883521,0,0,0,0,0,0,0,81.0433465346534,12827.027261496,46.7559207920792,25.0743189735645,24.5400800679907,1.13118811881188,1.14582832774174,0.929576888101103,2.90443008158803,2.30427123906943,2.22646784939449,51.2419740133586,0.0120243393186078,4784.64257425742,4785.87687481619,4785.81726552258,1.11053517957223,10890.7565524484,6612.52117299389,0,10890.7565524484,81.0505650426428,81.0505650426428,0.264402182792543,81.051085538611,25.1,1015.1,39.03,602.853367191069 +45850,2874.2866639604,457.494921485149,225,81.9906831683168,84.4504036633664,23.5029504950495,0.63980198019802,1785.32178217822,2423.3801980198,2228.21386138614,20,40,10,32,5306631.86657748,397237.236931851,0,0,0,0,0,0,0,81.9906831683167,12849.6744854509,47.005900990099,25.2083786416458,24.7004950125244,0.63980198019802,0.654442189127877,0.526193482538842,2.83986299576022,2.25304601598463,2.13657404831019,51.9329055109715,-0.00446412597457296,4651.59405940594,4616.85745515146,4611.33608865474,1.09770161937881,10606.9692967777,6225.01290157737,0,10606.9692967777,81.9816523870207,81.9816523870207,0.249037403740379,81.9814339177036,25.1,1015.09873762376,39.0924257425743,610.805140469683 +45851,2874.27911514851,457.480398415842,225,82.818,85.3025400000001,22.8897623762376,-0.157623762376238,1797.15841584158,2031.39306930693,1871.16237623762,20,40,10,32,5306618.20578504,397218.899214109,0,0,0,0,0,0,0,82.8179999999999,12872.5715639988,45.7795247524752,24.550696182551,24.2268121665555,-0.157623762376238,-0.14298355344638,-0.112946617359615,2.09395689899107,1.66127072184777,1.77547501148788,52.2772192272684,0.000288008127391804,3902.55544554455,3905.72724242721,3906.5947497502,1.08672858647945,8868.02001344099,4962.3664816772,0,8868.02001344099,82.8061245956278,82.8061245956278,0.198492250215115,82.804230992824,25.1,1015.09,39.11,587.528343684258 +45852,2874.27147415842,457.465767029703,225,83.3881287128713,85.8897725742574,23.414504950495,0.576732673267327,1808.82673267327,1635.94653465347,1527.84356435644,20,40,10,32,5306604.37670774,397200.423456757,0,0,0,0,0,0,0,83.3881287128712,12895.6621037127,46.8290099009901,25.1135152849467,24.7060431744295,0.576732673267327,0.591372882197185,0.482597834771453,2.397653501293,1.90221277465312,1.88378061412959,52.6166368053997,0.004392123942725,3163.7900990099,3177.01936084698,3179.61900263421,1.07929368497067,7186.58845701328,3230.86905539546,0,7186.58845701328,83.3843440839132,83.3843440839132,0.129198934744948,83.3832396221273,25.1,1015.08,39.12,610.972428399107 +45853,2874.2637770297,457.451068019802,225,83.7975643564356,86.3114912871287,20.6932574257426,0.0635643564356435,1817.64851485149,1417.93663366337,1358.92376237624,20,40,10,32,5306590.44520149,397181.861530876,0,0,0,0,0,0,0,83.7975643564356,12918.8849464245,41.3865148514851,22.1948077807101,22.4133988303703,0.0635643564356435,0.0782045653655004,0.068218455535038,1.78979267635299,1.41995767574558,1.42956195757241,52.8732520469057,0.00403211378348525,2776.8603960396,2784.5845897461,2785.4586055759,1.07401917211395,6307.5470052604,2559.94202961254,0,6307.5470052604,83.794279874522,83.794279874522,0.102364691914753,83.7939888103445,25.1,1015.07,39.13,503.014065208748 +45854,2874.25603861386,457.436317722772,225,84.1075940594059,86.6308218811881,22.3479702970297,2.05128712871287,1822.38613861386,1293.93267326733,1249.33663366337,20,40,10,32,5306576.4384145,397163.234272813,0,0,0,0,0,0,0,84.1075940594058,12942.2091537677,44.6959405940594,23.9695904239104,23.8393679718036,2.05128712871287,2.06592733764273,1.64696700814289,1.95721993385521,1.55278849048763,1.48620230302496,53.0110639358627,7.20020318479523E-05,2543.26930693069,2545.62587001275,2545.28526880726,1.07005900933075,5770.52009761396,1970.23770667491,0,5770.52009761396,84.120069208901,84.120069208901,0.0788089947608362,84.1195884149162,25.1,1015.06,39.14,569.842239357178 +45855,2874.24826336634,457.421530495049,225,84.384099009901,86.915621980198,23.705396039604,1.64811881188119,1827.71287128713,1148.83465346535,1156.55346534653,20,40,10,32,5306562.36428163,397144.559709797,0,0,0,0,0,0,0,84.3840990099009,12965.6119412815,47.4107920792079,25.4255141005542,25.010611489357,1.64811881188119,1.66275902081104,1.34396456010561,2.38411205679098,1.89146947554627,1.89284328640969,53.1660123083996,7.20020318479517E-05,2305.38811881188,2304.45190667582,2305.0749749501,1.06655330819243,5229.01692219566,1410.62220501852,0,5229.01692219566,84.3686462111557,84.3686462111557,0.0564242067771261,84.3684271834392,25.1,1015.05,39.15,626.169006779913 +45856,2874.2404539604,457.406728415842,225,84.5427722772277,87.0790554455445,22.3590594059406,0.65990099009901,1830.0099009901,1010.6603960396,1097.67128712871,20,40,10,32,5306548.2272648,397125.865429381,0,0,0,0,0,0,0,84.5427722772276,12989.075196562,44.7181188118812,23.9814841840697,23.8738784742688,0.65990099009901,0.674541199028867,0.548587188064242,1.78360375660701,1.41504760754943,1.44330290832275,53.2328301939544,0.000648018286631557,2108.33168316832,2114.252357612,2114.59794172208,1.06455216997685,4778.81377827035,1101.36558703444,0,4778.81377827035,84.5400550926378,84.5400550926378,0.0440493306756397,84.5408524201684,25.1,1015.04,39.16,571.149232814034 +45857,2874.23265306931,457.391866435643,225,84.6681881188118,87.2082337623762,22.0414158415842,-0.830693069306931,1832.96534653465,948.89603960396,1012.55742574257,20,40,10,32,5306534.10741057,397107.096730009,0,0,0,0,0,0,0,84.6681881188117,13012.5793946368,44.0828316831683,23.6407916720779,23.6101457626224,-0.830693069306931,-0.816052860377073,-0.645892730404249,1.50594954866465,1.19476666161653,1.31690606521804,53.3188006199809,0.00590416661153197,1961.45346534654,1958.40820507793,1958.61581038745,1.06297425706531,4446.69948735394,802.999612056831,0,4446.69948735394,84.6705714145671,84.6705714145671,0.0320720190830993,84.6708691967727,25.1,1015.03,39.17,557.895514852479 +45858,2874.22484356436,457.376987029703,225,84.7665148514851,87.3095102970297,20.6331133112871,-0.536930693069307,1835.55445544554,882.860396039604,970.180198019802,20,40,10,32,5306519.9720476,397088.305949654,0,0,0,0,0,0,0,84.766514851485,13036.1149817105,41.2662266225742,22.1302994709735,22.4177757966907,-0.536930693069307,-0.52229048413945,-0.409405905982058,2.34264309433587,1.85856947974154,1.74975484235472,53.3941147452938,0.00136803860511107,1853.04059405941,1846.40041172434,1846.14556341348,1.06174022868922,4201.97538224722,436.337604957317,0,4201.97538224722,84.7703638858934,84.7703638858934,0.0174424620679847,84.7701461574728,25.1,1015.02,39.18,504.361776796298 +45859,2874.21703861386,457.362094752475,225,84.8431089108911,87.3884021782178,21.9747722772277,0.351089108910891,1837.93564356436,833.216831683169,906.619801980198,20,40,10,32,5306505.84546728,397069.499195928,0,0,0,0,0,0,0,84.843108910891,13059.6709585257,43.9495445544555,23.5693122974062,23.5644744484861,0.351089108910891,0.365729317840748,0.292772563239286,1.36208794812873,1.08063199863294,1.21282476824364,53.4633806999316,0.00676819099370739,1739.83663366337,1744.44400548966,1745.0697689769,1.06078173453599,3947.10320715293,453.170419915517,0,3947.10320715293,84.8349955886676,84.8349955886676,0.0180714853663681,84.8347711456858,25.1,1015.01,39.19,555.69028725392 +45860,2874.20923792079,457.347159306931,225,84.8866633663366,87.4332632673267,21.2713888889109,0.385346534653466,1838.35148514851,844.524752475247,893.356435643565,20,40,10,32,5306491.72779284,397050.638722793,0,0,0,0,0,0,0,84.8866633663365,13083.2440997248,42.5427777778218,22.8148897925947,22.9676080314379,0.385346534653466,0.399986743583323,0.308237709389608,2.25587093546689,1.78972754365871,1.7269391864434,53.475477041282,-0.00813622959881845,1737.88118811881,1729.14744632879,1728.59239981141,1.06023812948549,3941.45576060053,261.682223027734,0,3941.45576060053,84.8865362219389,84.8865362219389,0.0105340979642444,84.8862596888259,25.1,1015.00252475248,39.1962128712871,529.839103811276 +45861,2874.20143168317,457.332214059406,225,84.9304356435644,87.4783487128713,22.2760198019802,0.0744554455445544,1837.70792079208,804.248514851485,852.49207920792,20,40,10,32,5306477.60012645,397031.765765109,0,0,0,0,0,0,0,84.9304356435643,13106.8274989272,44.5520396039604,23.8924190354482,23.8257400815981,0.0744554455445544,0.0890956544744124,0.0766074549913806,1.50697482177608,1.19558007673635,1.18913694196899,53.4567565130016,-0.00576016254783607,1656.74059405941,1666.7686599353,1667.35239981141,1.0596914295273,3753.96495234195,247.23345959978,0,3753.96495234195,84.9231594941671,84.9231594941671,0.00993638967855861,84.9229175860442,25.1,1015.01,39.18,568.325553463868 +45862,2874.19362158416,457.317264158416,225,84.952603960396,87.5011820792079,20.9000154017822,-0.161287128712871,1838.34158415842,801.710891089109,876.879207920792,20,40,10,32,5306463.46547161,397012.886791042,0,0,0,0,0,0,0,84.9526039603959,13130.4219731847,41.8000308035644,22.4165685910511,22.6559512838162,-0.161287128712871,-0.146646919783014,-0.105640276175124,2.26614157434813,1.79787590224063,1.79001894628403,53.4751890331547,0.0086402438217541,1678.5900990099,1674.984119204,1674.51364450731,1.05941460456825,3804.04680992596,86.4052488997605,0,3804.04680992596,84.9501349867659,84.9501349867659,0.00338610593733802,84.9497615275812,25.1,1015.02,39.16,515.390869229076 +45863,2874.18581910891,457.30229970297,225,84.9764554455446,87.5257491089109,20.0479504951485,-0.337425742574257,1839.69306930693,757.147524752475,871.371287128713,20,40,10,32,5306449.34532298,396993.989848132,0,0,0,0,0,0,0,84.9764554455444,13154.0202274476,40.095900990297,21.5026758949743,21.9319617316279,-0.337425742574257,-0.3227855336444,-0.243132463503615,2.77089362970501,2.19832818077649,2.29824631968289,53.5145021425437,-0.00525614832490042,1628.51881188119,1632.83326144496,1633.22066006601,1.05911834103677,3691.90078847882,276.478602714432,0,3691.90078847882,84.9711628271737,84.9711628271737,0.0111018527595384,84.9710797736915,25.1,1015.03,39.14,482.700295875621 +45864,2874.17800980198,457.287340990099,225,84.984099009901,87.533621980198,19.2353905388119,-0.53950495049505,1838.60891089109,751.707920792079,866.661386138614,20,40,10,32,5306435.21245283,396975.099739238,0,0,0,0,0,0,0,84.9840990099009,13177.6281589933,38.4707810776238,20.6311547192526,21.2414891231131,-0.53950495049505,-0.524864741565192,-0.402109688817535,3.2698330904864,2.59416895408469,2.56083105333821,53.4829652525942,-0.00280807924207008,1618.36930693069,1619.16336633663,1619.27771805752,1.05902419071933,3666.56107974474,147.054976211326,0,3666.56107974474,84.98730516616,84.98730516616,0.00590492217537558,84.9878082036774,25.1,1015.04,39.12,452.220272534476 +45865,2874.17019237624,457.272387227723,225,85.0080891089109,87.5583317821782,21.8488250826733,-0.161683168316832,1840.9603960396,786.066336633663,841.970297029703,20,40,10,32,5306421.06449455,396956.215435146,0,0,0,0,0,0,0,85.0080891089108,13201.2413899064,43.6976501653466,23.4342260847262,23.4658513671407,-0.161683168316832,-0.147042959386974,-0.101895764236979,2.19516319654371,1.74156418876289,1.63044057705311,53.5513671828498,0.00712820115294714,1628.03663366337,1625.37457112048,1624.96486562942,1.05872343856803,3692.37237806009,143.247559727408,0,3692.37237806009,85.0140769532398,85.0140769532398,0.00567210186365407,85.0143038189532,25.1,1015.05,39.1,553.180327616816 +45866,2874.16239049505,457.257406336634,225,85.0251782178218,87.5759335643564,21.6670891089109,-0.471089108910891,1841.63861386139,762.163366336633,820.578217821782,20,40,10,32,5306406.94599448,396937.297762203,0,0,0,0,0,0,0,85.0251782178217,13224.8575931517,43.3341782178218,23.2393029307003,23.3133858788583,-0.471089108910891,-0.456448899981034,-0.358498792344312,1.68409685687905,1.33610238225871,1.50087720011959,53.5710957395761,0.00244806908283033,1582.74158415842,1584.99988236447,1585.12115040075,1.05851013234418,3590.02500119611,41.7543767239589,0,3590.02500119611,85.031665228899,85.031665228899,0.00165016501651735,85.0316156529938,25.1,1015.06,39.08,544.674124226734 +45867,2874.1546019802,457.242397128713,225,85.0554356435643,87.6070987128713,18.9357541253465,-1.1660396039604,1841.4603960396,762.573267326733,807.524752475248,20,40,10,32,5306392.85294461,396918.345168483,0,0,0,0,0,0,0,85.0554356435643,13248.478606683,37.8715082506931,20.3097759984384,20.9902987938169,-1.1660396039604,-1.15139939503054,-0.885304942393607,3.53009978334629,2.80065526568384,2.58792706663414,53.5659115932831,-0.00993628039501722,1570.09801980198,1572.32835996471,1572.45738802452,1.05813354675237,3560.15375501613,312.548513142362,0,3560.15375501613,85.054982354671,85.054982354671,0.0125831890119569,85.0550845827439,25.1,1015.07,39.06,440.860939928963 +45868,2874.14678257426,457.227418910891,225,85.1025742574257,87.6556514851485,19.7770104507921,-0.0873267326732674,1842.42079207921,744.770297029703,812.289108910891,20,40,10,32,5306378.7020452,396899.430059631,0,0,0,0,0,0,0,85.1025742574256,13272.1119596258,39.5540209015842,21.2120758178155,21.7087371945903,-0.0873267326732674,-0.0726865237434098,-0.0492168508239236,2.98283339112988,2.36647362857449,2.39544399192709,53.5938483816401,0.00748821131218689,1557.05940594059,1545.57907067934,1544.63709570957,1.05754754170946,3530.19859519434,427.169420062009,0,3530.19859519434,85.1048323693754,85.1048323693754,0.017025836246987,85.1050766619518,25.1,1015.08,39.04,472.750342990223 +45869,2874.13894287129,457.212456336634,225,85.1642376237624,87.7191647524753,19.6540863585148,-1.01881188118812,1843.88118811881,627.190099009901,702.341584158416,20,40,10,32,5306364.51326143,396880.533670988,0,0,0,0,0,0,0,85.1642376237623,13295.7623849284,39.3081727170297,21.0802320706673,21.6073475571466,-1.01881188118812,-1.00417167225826,-0.769423062830372,2.95876899799027,2.34738179732374,2.37620005521536,53.6363295804303,-0.00309608736946189,1329.53168316832,1338.16474855406,1338.34683639792,1.05678183321192,3014.34705449575,41.5728024449898,0,3014.34705449575,85.1580653857464,85.1580653857464,0.00168828764065564,85.1574825082508,25.1,1015.09,39.02,467.782767353572 +45870,2874.13111732673,457.197472673267,225,85.1347425742575,87.6887848514852,19.4982167216832,-1.32891089108911,1841.09900990099,578.286138613861,585.768316831683,20,40,10,32,5306350.35123431,396861.611390075,0,0,0,0,0,0,0,85.1347425742572,13319.4139277502,38.9964334433663,20.9130521744744,21.473136192517,-1.32891089108911,-1.31427068215925,-1.0253463314448,3.22536141551587,2.55888671326318,2.57231526581663,53.5553992966333,-0.00993628039501722,1164.05445544554,1170.73763356534,1171.44986327204,1.05714787418264,2636.20242328103,-248.393809152777,0,2636.20242328103,85.1302402705616,85.1302402705616,-0.00985469834113533,85.1302087694482,25.0987376237624,1015.09873762376,38.9974752475247,462.511009117234 +45871,2874.12326079208,457.182515049505,225,85.0839108910891,87.6364282178218,18.6626215623762,-0.894158415841585,1840.5,607.086138613861,591.050495049505,20,40,10,32,5306336.13128394,396842.720423984,0,0,0,0,0,0,0,85.083910891089,13343.0562239548,37.3252431247524,20.0168243084722,20.7595896016234,-0.894158415841585,-0.879518206911725,-0.675765380478222,3.79847990168897,3.01357847969248,3.0047317884911,53.5379748049261,0.0183605181212275,1198.13663366337,1199.79004019214,1200.16481848185,1.05777954975734,2714.15259911359,-326.354161665798,0,2714.15259911359,85.0877982550729,85.0877982550729,-0.0132040431765704,85.0878037718056,25.09,1015.1,38.96,430.973778459408 +45872,2874.11538623762,457.16759980198,225,85.050405940594,87.6019181188119,20.9481710674257,-0.360594059405941,1840.73762376238,655.70499499505,655.583547648515,20,40,10,32,5306321.87707162,396823.881550659,0.574257425742574,0.574257425742574,1523596.0385714,113937.471429966,0.948816033365553,0,0,85.0504059405939,13366.685286166,41.8963421348515,22.4682185425556,22.7021040628718,-0.360594059405941,-0.345953850476083,-0.276679680458291,3.20128807872721,2.53978778644025,2.4572398066079,53.5448869999835,-0.00972027429947337,1311.28854264356,1308.87729382524,1308.48506521006,1.05819613204599,2971.60257331026,-225.796618167101,0,2971.60257331026,85.0487613959415,85.0487613959415,-0.00895200906229826,85.0487604903347,25.08,1015.1,38.92,520.482537259265 +45873,2874.10752336634,457.152696534654,225,85.0390891089109,87.5902617821782,22.8442574257426,-1.45108910891089,1839.69801980198,665.215765076238,691.47433989307,20,40,10,32,5306307.64429414,396805.057893427,2,2,5306307.70407499,396805.00918808,18.3982145567893,0,0,85.0390891089108,13390.3069175467,45.6885148514851,24.501889288183,24.3148967374648,-1.45108910891089,-1.43644889998103,-1.14905411134784,1.9398905954872,1.53904001148424,1.68603554344077,53.5146461466073,-0.00820823163066639,1356.69010496931,1356.49483828197,1356.50481428117,1.05833693578121,3073.52924556188,-92.8650673097746,0,3073.52924556188,85.0320492108616,85.0320492108616,-0.00364751821717108,85.031785667138,25.07,1015.1,38.88,592.364746243214 +45874,2874.0996480198,457.137806930693,225,85.0257821782179,87.5765556435644,20.0461413639604,-0.386138613861386,1842.05940594059,683.576234311881,692.134273623762,20,40,10,32,5306293.38816412,396786.250748668,2,2,5306292.80684978,396786.724363869,41.9834242315907,0,0,85.0257821782177,13413.9253964245,40.0922827279208,21.500735489066,21.9332162988366,-0.386138613861386,-0.371498404931529,-0.301820170930959,2.70019593181282,2.14223914873056,2.23086846025541,53.5833360849903,0.0121683433823037,1375.71050793564,1374.63165715562,1374.54570405448,1.05850293295976,3121.10801907117,84.8906891104054,0,3121.10801907117,85.0239208901087,85.0239208901087,0.003296245466139,85.023940405469,25.06,1015.1,38.84,482.684859287511 +45875,2874.09174990099,457.12294029703,225,85.005801980198,87.5559760396039,19.6921556655446,-1.46742574257426,1842.07920792079,694.051753282178,677.041035204951,20,40,10,32,5306279.08940034,396767.471367632,2,2,5306277.9062108,396768.435349612,65.5740385601157,0,0,85.0058019801979,13437.5419089933,39.3843113310891,21.1210637741776,21.6302384965347,-1.46742574257426,-1.4527855336444,-1.11788822139001,3.03904542950714,2.41107025499813,2.40649003481664,53.583912101245,-0.00518414629305246,1371.09278848713,1370.20770401599,1370.13718846694,1.05875138223081,3111.40222523112,-78.5277577253685,0,3111.40222523112,85.0186267032643,85.0186267032643,-0.00309882473395604,85.0188936350777,25.05,1015.1,38.8,469.364698474127 +45876,2874.08386693069,457.108058415842,225,85.0218316831683,87.5724866336634,20.5519339933663,-1.5339603960396,1838.9603960396,687.011178138614,660.071278436634,20,40,10,32,5306264.81909678,396748.673403372,2,2,5306263.00782644,396750.149102663,89.1610833940492,0,0,85.0218316831682,13461.1580047028,41.1038679867327,22.0432295950254,22.3636666070607,-1.5339603960396,-1.51932018710975,-1.17585615941592,2.54716378859853,2.02082890425704,1.99193951109735,53.4931895411166,-0.00885624991729796,1347.08245657525,1347.20488099424,1347.21463466791,1.05855242864091,3051.15374343298,-52.3808018283312,0,3051.15374343298,85.0157341437113,85.0157341437113,-0.0020232221241968,85.0157997171144,25.04,1015.1,38.76,502.47475946179 +45877,2874.07599623762,457.093158514851,225,85.0087326732673,87.5589946534653,20.449298129802,-1.77168316831683,1837.80198019802,668.927581208911,656.826919421782,20,40,10,32,5306250.57199679,396729.853307694,2,2,5306248.10786199,396731.860916325,112.750629806425,0,0,85.0087326732672,13484.7734658965,40.898596259604,21.93314623713,22.2752424195899,-1.77168316831683,-1.75704295938698,-1.37433483550089,2.69883692882188,2.14116096422693,1.93081447369109,53.4594925902118,0.0104402946179529,1325.75450063069,1326.77187749501,1326.85293290887,1.05871548356119,3001.4197510513,-19.6663555736068,0,3001.4197510513,85.0108879521614,85.0108879521614,-0.000871374266145349,85.010950212164,25.03,1015.1,38.72,498.595078126021 +45878,2874.06813564356,457.078245643565,225,85.0262277227722,87.5770145544555,20.2092150714852,-1.19465346534653,1840.65841584158,656.426938111881,670.290806882178,20,40,10,32,5306236.34395319,396711.017298053,2,2,5306233.2077075,396713.572496715,136.340477111471,0,0,85.0262277227722,13508.3891275301,40.4184301429703,21.6756421998914,22.0725972665306,-1.19465346534653,-1.18001325641668,-0.921294259553063,2.38246815794749,1.89016526483415,1.82274546200123,53.5425829349644,0.00100802844587132,1326.71774499406,1327.69470270773,1327.77253788807,1.05849739255658,3007.655511515,246.507642508908,0,3007.655511515,85.0249368689343,85.0249368689343,0.00985197529653169,85.0250285714285,25.02,1015.1,38.68,488.277663614797 +45879,2874.06028831683,457.063314950495,225,85.0096237623762,87.5599124752475,22.5061485148515,-0.711782178217822,1839.66336633663,661.002282462376,688.084304780198,20,40,10,32,5306222.14094315,396692.159436592,2,2,5306218.30683993,396695.28320188,159.931453350973,0,0,85.0096237623761,13532.008186221,45.012297029703,24.13924641704,24.0257133607054,-0.711782178217822,-0.697141969287963,-0.552232816375637,2.2034068209688,1.74810438636959,1.89869353358533,53.5136381181615,-0.00453612800642091,1349.08658724257,1349.12491538393,1349.12796902475,1.05870421746529,3057.32187894297,-446.41730702649,0,3057.32187894297,85.0144598568767,85.0144598568767,-0.0178196037425383,85.0143576614803,25.01,1015.1,38.64,579.490618817912 +45880,2874.05247712871,457.048354455445,225,85.0073465346535,87.5575669306931,24.0737821782178,-1.9380198019802,1842.19306930693,678.447063759406,693.8481532,20,40,10,32,5306208.00559962,396673.26555947,2,2,5306203.41533238,396677.005395522,183.507610845627,0,0,85.0073465346533,13555.6180147413,48.1475643564357,25.8206311847036,25.3588440773836,-1.9380198019802,-1.92337959305034,-1.54934062206327,2.791567790031,2.21473032222693,2.14209776729153,53.5872241947101,0.00280807924207008,1372.29521695941,1371.35967681959,1371.28514141785,1.05873210386114,3114.26504765857,163.684429748848,0,3114.26504765857,84.9987074796587,84.9987074796587,0.00652441481771464,84.998471570014,25.0012623762376,1015.1,38.6063118811881,644.361995116137 +45881,2874.04470861386,457.03333,225,84.9898514851485,87.539547029703,24.3948811881188,-2.21168316831683,1839.69801980198,692.722630539604,682.28309649901,20,40,10,32,5306193.95078942,396654.293335944,2,2,5306188.51758951,396658.719935934,207.093640079959,0,0,84.9898514851484,13579.2289697743,48.7897623762376,26.1650298773166,25.6312138446192,-2.21168316831683,-2.19704295938698,-1.77802670095106,3.21686974889514,2.55214972782498,2.64517997903454,53.5146461466073,0.00122403454141517,1375.00572703861,1373.95644990099,1373.87285296105,1.05895007110559,3116.82133210681,-91.4822711834257,0,3116.82133210681,84.9928402117439,84.9928402117439,-0.00366930257381846,84.9929916077321,25,1015.1,38.61,658.924352955763 +45882,2874.0369319802,457.018332277228,225,84.9788613861386,87.5282272277228,25.0578118811881,-3.31108910891089,1840.02475247525,690.704092528713,664.021994456436,20,40,10,32,5306179.88040521,396635.354048806,2,2,5306173.62976165,396640.446646017,230.663971912254,0,0,84.9788613861385,13602.8374043453,50.1156237623762,26.8760643462689,26.1938497189786,-3.31108910891089,-3.29644889998104,-2.67640026392698,3.60960022746601,2.86372808263324,2.85839117546883,53.5241504148113,-0.0083522356943623,1354.72608698515,1354.5277734155,1354.5119735786,1.0590871189496,3071.79628581999,-210.121044844511,0,3071.79628581999,84.9763136947357,84.9763136947357,-0.00833660098684707,84.9762839226779,25,1015.1,38.62,686.438087125681 +45883,2874.02918821782,457.003296831683,225,84.9490594059406,87.4975311881188,25.2960396039604,-3.47990099009901,1838.18811881188,674.247284274257,655.854020090099,20,40,10,32,5306165.87181294,396616.368772126,1.36633663366337,2,5306158.74406296,396622.175616162,95.070886172407,0,0,84.9490594059405,13626.4377570405,50.5920792079208,27.1315784205484,26.3945668832245,-3.47990099009901,-3.46526078116916,-2.81856196806891,3.85585078018138,3.05909448853299,3.08222796376508,53.4707249071801,0.00403211378348525,1330.10130436436,1330.93628294019,1331.00280650333,1.05945883174911,3014.01635121722,-13.2418603058773,0,3014.01635121722,84.9544922066463,84.9544922066463,-0.000562308706110123,84.9546447901932,25,1015.1,38.63,696.82541970463 +45884,2874.02141504951,456.988308316832,225,84.9410693069307,87.4893013861386,24.1696732673267,-3.1119801980198,1839.06930693069,658.482519385149,665.288771352475,20,40,10,32,5306151.80776457,396597.440884443,1,2,5306143.86501487,396603.911475578,26.614018919151,0,0,84.9410693069306,13650.0346294552,48.3393465346535,25.9234803517955,25.4362521063836,-3.1119801980198,-3.09733998908995,-2.49883663235454,3.72223372538665,2.95308748276465,2.91143120299528,53.4963576305179,0.000288008127391805,1323.77129073762,1324.8718860102,1324.95957151643,1.05955881122531,3001.39396862885,0.875438856387115,0,3001.39396862885,84.9480861680226,84.9480861680226,3.26765349818178E-05,84.9484562942008,25,1015.1,38.64,651.618965821899 +45885,2874.01357940594,456.973382970297,225,84.9813861386139,87.5308277227723,22.3037057205941,-0.0819801980198018,1838.80198019802,657.90385000198,683.651981448515,20,40,10,32,5306137.62664129,396578.589513635,1,2,5306128.97688607,396585.636069496,50.186181459251,0,0,84.9813861386137,13673.6333551978,44.6074114411881,23.9221139079965,23.8517298241532,-0.0819801980198018,-0.0673399890899449,-0.037041546106506,2.40449946861271,1.90764412096042,1.89260318143906,53.4885814110784,0.00158404470065492,1341.5558314505,1341.91016120228,1341.93839100136,1.05905616683625,3039.83267631458,89.505551510462,0,3039.83267631458,84.9754882854621,84.9754882854621,0.00356718840202617,84.9750671381423,25,1015.1,38.65,572.277404784258 +45886,2874.00569683168,456.958492673267,225,85.0120792079208,87.5624415841585,24.0594455445545,-0.825940594059406,1838.31188118812,673.043302089109,694.0605997,20,40,10,32,5306123.35786409,396559.780150006,1,2,5306114.0743606,396567.342991294,73.7811380246875,0,0,85.0120792079207,13697.241797167,48.1188910891089,25.8052542519262,25.347931948414,-0.825940594059406,-0.811300385129549,-0.656735950746502,2.65649132279027,2.10756547067446,2.19073573964497,53.4743250087724,-0.00475213410196476,1367.10390178911,1366.38619687537,1366.32901662037,1.05867330525689,3095.77083912286,414.055577723005,0,3095.77083912286,85.0057407116949,85.0057407116949,0.0166010412922351,85.0055700141441,25,1015.1,38.66,643.404287919811 +45887,2873.99775960396,456.94366019802,225,85.0433267326733,87.5946265346534,20.1859856985149,0.0991089108910891,1841.25247524752,689.981733209901,686.944990492079,20,40,10,32,5306108.98661874,396541.040902252,1,2,5306099.16529298,396549.041882495,97.386452695552,0,0,85.0433267326731,13720.8605730196,40.3719713970297,21.650727250189,22.0534945796204,0.0991089108910891,0.113749119820947,0.0898196925037278,2.74958140415038,2.18141982113052,2.00251872819133,53.5598634226078,-0.00244806908283033,1376.92672370198,1375.79683871696,1375.70681967047,1.05828424786571,3121.85928582856,103.624487209843,0,3121.85928582856,85.0387148318791,85.0387148318791,0.00416489668768462,85.0387064592172,25,1015.1,38.67,488.338538429269 +45888,2873.9898039604,456.928874554456,225,85.0836831683168,87.6361936633663,21.2134279427723,-0.854455445544554,1842.18316831683,693.146027908911,668.847212112871,20,40,10,32,5306094.58027462,396522.359284154,1,2,5306084.27044372,396530.758226957,120.969255628556,0,0,85.0836831683167,13744.4870750548,42.4268558855446,22.7527230668895,22.9299894658988,-0.854455445544554,-0.839815236614697,-0.659464953851004,1.79705643273886,1.42572048099735,1.67427803706236,53.5869361865827,0.00698419708925124,1361.99324002178,1361.4899860062,1361.44989126453,1.05778306026093,3088.10108598022,330.743121886622,0,3088.10108598022,85.0780910695029,85.0780910695029,0.0131727281638885,85.0776958981611,25,1015.1,38.68,526.58464449886 +45889,2873.98183970297,456.914077920792,225,85.0481683168317,87.5996133663366,20.3988492851485,-1.43148514851485,1842.00495049505,679.626948238614,656.406278535643,20,40,10,32,5306080.15827964,396503.66359688,1,2,5306069.36246176,396512.458450818,144.572851393428,0,0,85.0481683168316,13768.1197116059,40.797698570297,21.8790367082721,22.2349413717886,-1.43148514851485,-1.41684493958499,-1.10658710183867,2.58069536138714,2.04743165819054,1.8601041289944,53.5817520402896,-0.00360010159239754,1336.03322677426,1336.61929314816,1336.66598563192,1.05822396803285,3030.2170450441,-300.778392868359,0,3030.2170450441,85.063101460641,85.063101460641,-0.0120018189937659,85.0634130127298,25,1015.1,38.69,496.324334227031 +45890,2873.97383504951,456.899315940594,225,85.0478217821782,87.5992564356436,20.7818685369307,-1.31257425742574,1838.9504950495,661.853873691089,661.060326726733,20,40,10,32,5306065.66074244,396485.009639288,1,2,5306054.4447788,396494.146766562,168.191806602558,0,0,85.0478217821781,13791.7442029151,41.5637370738614,22.2898487179387,22.5609318702992,-1.31257425742574,-1.29793404849588,-1.01840632169706,2.49701859898569,1.98104549926649,2.05889261012463,53.4929015329893,0.00223206298728647,1322.91420041782,1324.05076046487,1324.14131131965,1.05822875117802,2995.4841846647,-206.838175846298,0,2995.4841846647,85.0401986079795,85.0401986079795,-0.00829167075123095,85.0400565770861,25,1015.1,38.7050495049505,511.597749157313 +45891,2873.96586752475,456.884557722772,225,85.0306336633663,87.5815526732673,19.8499603959406,-0.203366336633663,1841.57425742574,656.167287049505,678.530446234653,20,40,10,32,5306051.23195557,396466.361508458,1,2,5306039.55737466,396475.872250028,191.762821776482,0,0,85.0306336633662,13815.3654385586,39.6999207918812,21.2903191787747,21.767381810454,-0.203366336633663,-0.188726127703806,-0.136001345496891,2.66880066633714,2.11733126482687,2.21945497489773,53.569223686748,0.00540015238859631,1334.69773328416,1335.33983893333,1335.39099612107,1.05844359549911,3027.08662397263,131.063127798454,0,3027.08662397263,85.0206896382707,85.0206896382707,0.00519829210643138,85.0211504950494,25,1015.1,38.75,474.742023176089 +45892,2873.95792861386,456.869753960396,225,85.0254356435643,87.5761987128713,18.8975258524752,0.373564356435644,1841.21287128713,667.795409837624,692.754689760396,20,40,10,32,5306036.85724875,396447.65750335,1,2,5306024.66418366,396457.590630022,215.342999220862,0,0,85.0254356435643,13838.9845644112,37.7950517049505,20.2687737941595,20.9558573353403,0.373564356435644,0.388204565365501,0.299511691334899,3.56568105640566,2.82888417870879,2.49640488233625,53.5587113900983,-0.00208805892359058,1360.55009959802,1360.1074018792,1360.07213171721,1.05850756440063,3085.30950844653,-165.915773238551,0,3085.30950844653,85.0349136359179,85.0349136359179,-0.00661972137807795,85.0345507779348,25,1015.1,38.8,439.355081102695 +45893,2873.95001277228,456.854909405941,225,85.0132079207921,87.5636041584158,20.7988514851485,-0.481089108910891,1841.81683168317,684.968647561386,690.645331274258,20,40,10,32,5306022.52624578,396428.903359604,0.99009900990099,1.98019801980198,5253475.0875652,392514.249310595,236.451868224773,0,0,85.013207920792,13862.6007692517,41.597702970297,22.3080639879413,22.5736765284722,-0.481089108910891,-0.466448899981034,-0.365168424137024,1.83752440385908,1.45782632597773,1.71413107942432,53.5762798858692,-0.000864024382175412,1375.61397883564,1378.19474008218,1378.16985158955,1.05865952257878,3120.94048958674,-71.6558747756451,0,3120.94048958674,85.012193020292,85.012193020292,-0.00285919681077037,85.0120708156529,25,1015.1,38.85,510.036765237475 +45894,2873.9421419802,456.839975643564,225,85.0159603960396,87.5664392079208,21.5097354234654,-0.705346534653465,1840.62376237624,628.784158415842,753.90198019802,20,40,10,32,5306008.28074478,396410.03949915,0,0,0,0,0,0,0,85.0159603960395,13886.2146240647,43.0194708469307,23.0705312999126,23.1781098112609,-0.705346534653465,-0.690706325723607,-0.534628166504948,2.66027629874544,2.1105683356046,2.11712542966555,53.5415749065185,0.00691219505740329,1382.68613861386,1379.17740492925,1379.05639858522,1.05862546336017,3134.82638900164,97.373777452846,0,3134.82638900164,85.012149103029,85.012149103029,0.00383813133789184,85.0121291843469,25,1015.1,38.9,540.999684868798 +45895,2873.93433069307,456.824987524752,225,84.9966633663366,87.5465632673268,19.7591820687129,-1.4509900990099,1841.4900990099,626.353465346535,745.3,20,40,10,32,5305994.14674368,396391.109815449,0,0,0,0,0,0,0,84.9966633663365,13909.8283237071,39.5183641374257,21.1929537673259,21.6878221172707,-1.4509900990099,-1.43634989008004,-1.11498031702087,3.10257913520451,2.46147563114336,2.44679465326441,53.5667756176652,-0.0041041158153332,1371.65346534653,1373.19616704245,1373.47388024517,1.05886539772731,3111.74545693852,-133.346250007339,0,3111.74545693852,85.0054740711694,85.0054740711694,-0.00530040627825103,85.0056068835454,25,1015.1,38.95,472.441136574486 +45896,2873.92655891089,456.809976039604,225,85.0214158415841,87.5720583168317,20.3912222221782,-0.99,1839.5198019802,683.022772277228,736.346534653465,20,40,10,32,5305980.08650309,396372.152246608,0,0,0,0,0,0,0,85.021415841584,13933.4411237071,40.7824444443564,21.8708562080698,22.2268943554928,-0.99,-0.975359791070142,-0.771185359552179,2.22956175671875,1.76885477956734,1.71571639395308,53.5094620003143,-0.00331209346500574,1419.36930693069,1424.59195176943,1424.47306930693,1.05855729091757,3216.00583704657,-59.0803469116058,0,3216.00583704657,85.0062214488774,85.0062214488774,-0.00233637225108473,85.005823008015,25,1015.1,39,494.912039037825 +45897,2873.9188009901,456.794949405941,225,84.9991188118812,87.5490923762376,20.1725170519802,-1.61138613861386,1846.23762376238,694.60594059406,753.885148514851,20,40,10,32,5305966.05233869,396353.176176516,0,0,0,0,0,0,0,84.999118811881,13957.0532591857,40.3450341039604,21.6362812876828,22.0390415800092,-1.61138613861386,-1.596745929684,-1.2341922945983,2.74097402451844,2.17459103311618,2.08989676735238,53.7048755147496,0.00403211378348525,1448.49108910891,1447.37284579943,1447.21388967468,1.05883594033512,3293.62849613987,82.6221413823426,0,3293.62849613987,84.9985264189784,84.9985264189784,0.00327173806490166,84.9984658180103,25,1015.1,39.05,487.714701726599 +45898,2873.91105316832,456.779915148515,225,84.994396039604,87.5442279207921,20.6468927393069,-2.24762376237624,1840.33663366337,694.116831683168,742.447524752475,20,40,10,32,5305952.03711308,396334.190853354,0,0,0,0,0,0,0,84.9943960396038,13980.6636293452,41.2937854786139,22.1450787659842,22.4422793911458,-2.24762376237624,-2.23298355344638,-1.73609627890785,2.60808292616284,2.06915997529511,2.05970363384883,53.5332226708241,-0.00151204266880697,1436.56435643564,1437.93425154397,1438.29937765205,1.05889424567849,3257.35183003463,82.6437843660849,0,3257.35183003463,85.0015189687284,85.0015189687284,0.00331802982278052,85.0017892503535,25,1015.1,39.1,505.991865271066 +45899,2873.90331594059,456.764868712871,225,84.9976435643564,87.5475728712871,23.9348712871287,-1.2690099009901,1839.29207920792,716.390099009901,769.543564356436,20,40,10,32,5305938.0418453,396315.190620398,0,0,0,0,0,0,0,84.9976435643564,14004.27572742,47.8697425742574,25.6716405998509,25.2406321386879,-1.2690099009901,-1.25436969206024,-1.0110516832739,2.64849606736502,2.10122232017405,2.0155884511031,53.5028378133843,-0.00900025398099386,1485.93366336634,1475.17504166258,1474.34796793965,1.05885336990831,3367.30720430841,45.515968567321,0,3367.30720430841,85.0089115772963,85.0089115772963,0.0018938775065479,85.0092711928335,25,1015.1,39.15,638.338309352356 +45900,2873.89557485148,456.74981910891,225,85.0443267326733,87.5956565346534,22.3997332233663,-1.94029702970297,1840.02475247525,684.617821782178,687.768316831683,20,40,10,32,5305924.03955733,396296.186219826,0,0,0,0,0,0,0,85.0443267326732,14027.8933536026,44.7994664467327,24.025109387241,23.9369856736144,-1.94029702970297,-1.92565682077311,-1.52551983762688,2.43428238082903,1.93127282129335,1.97914352577289,53.5241504148112,0.00828023366251435,1372.38613861386,1380.54758357024,1381.13155115512,1.05827262685112,3109.56832918418,50.2965546360572,0,3109.56832918418,85.0329082442896,85.0329082442896,0.00194425383132635,85.0326331918905,25,1015.1,39.1962128712871,576.51065910922 +45901,2873.88782277228,456.734770990099,225,85.0218613861386,87.5725172277228,21.5873465346535,-1.20722772277228,1838.88613861386,692.277227722772,670.60198019802,20,40,10,32,5305910.01694019,396277.183210873,0,0,0,0,0,0,0,85.0218613861385,14051.5140270625,43.1746930693069,23.1537740518404,23.2446429577322,-1.20722772277228,-1.19258751384242,-0.940926888788692,2.09276875100411,1.66032808761069,1.91990690798545,53.4910294801612,-0.00302408533761394,1362.87920792079,1363.94983825115,1364.18418670438,1.05855194687952,3087.2780787456,-109.673915133797,0,3087.2780787456,85.0207208116851,85.0207208116851,-0.00436231741985585,85.0207345591701,25,1015.1,39.22,542.295570611808 +45902,2873.88002613861,456.719788811881,225,84.9955247524752,87.5453904950495,20.7629279428713,1.79871287128713,1839.35148514851,821.836633663366,788.277227722772,20,40,10,32,5305895.91037773,396258.260765902,0,0,0,0,0,0,0,84.9955247524752,14075.1269431791,41.5258558857426,22.2695337508094,22.5410876330067,1.79871287128713,1.81335308021698,1.41229455048065,3.18138220903816,2.52399517937978,2.30856330979082,53.5045658621486,-0.0103682925861049,1610.11386138614,1659.3900499951,1663.80609146629,1.05887950693841,3648.56596696413,471.56239263878,0,3648.56596696413,85.0218815802372,85.0218815802372,0.0189469441993642,85.0228746817538,25,1015.1,39.24,512.676314089708 +45903,2873.87218930693,456.704828415842,225,85.2099702970297,87.7662694059406,20.9422447746535,0.175841584158416,1846.20297029703,1101.4702970297,1034.86633663366,20,40,10,32,5305881.72892786,396239.364022837,0,0,0,0,0,0,0,85.2099702970296,14098.7630725245,41.8844895493069,22.4618622243489,22.7062028576744,0.175841584158416,0.190481793088273,0.135297776879982,2.5148433657008,1.99518703345081,2.19699970570009,53.7038674863038,0.0171364835798123,2136.33663366337,2066.87481619449,2057.4689203206,1.05621532852049,4848.21735099535,1355.57355028581,0,4848.21735099535,85.1910959709831,85.1910959709831,0.0540823884368653,85.1906098066948,25,1015.1,39.26,518.24237496725 +45904,2873.86429277228,456.689895445545,225,85.173396039604,87.7285979207921,22.7089455444554,-0.822079207920792,1837.28217821782,-8.44356435643553,-20.5445544554457,20,40,10,32,5305867.436334,396220.499361503,0,0,0,0,0,0,0,85.1733960396039,14122.4435297577,45.4178910889109,24.3567588655615,24.207842897025,-0.822079207920792,-0.807438998990933,-0.641760188562103,2.88806076828353,2.29128440971176,2.44242324311344,53.4443721635237,-0.00273607721022214,-28.9881188118815,-9.8991373394767,-5.25099481376712,1.05667186616046,-57.5847119347597,-2990.86473203309,0,-57.5847119347597,85.1371975296539,85.1371975296539,-0.119612456295133,85.1339807637906,25,1015.1,39.28,590.761897797642 +45905,2873.85641217822,456.675068118812,225,84.3905940594059,86.9223118811881,22.6195869088119,-1.88613861386139,1819.61386138614,-722.426732673267,-642.417821782178,20,40,10,32,5305853.17096112,396201.766735859,0,0,0,0,0,0,0,84.3905940594058,14146.0031508523,45.2391738176238,24.2609161617836,24.0866636120272,-1.88613861386139,-1.87149840493153,-1.49030113767018,2.98884108938429,2.37123992210257,2.0932088893655,52.930421660193,-0.0100082824268652,-1364.84455445545,-1471.81338104107,-1484.18761569882,1.06648035758853,-3081.29798130243,-6271.99142205054,0,-3081.29798130243,84.3938355063228,84.3938355063228,-0.250797852062421,84.393745022406,25,1015.1,39.3,585.275467425747 +45906,2873.8486270297,456.660382079208,225,83.3414653465347,85.8417093069307,20.2120368536634,-0.713069306930693,1789.31683168317,-2187.3099009901,-1884.78613861386,20,40,10,32,5305839.07927964,396183.213197128,0,0,0,0,0,0,0,83.3414653465345,14169.3131197192,40.4240737073267,21.6786687370748,21.9785825362558,-0.713069306930693,-0.698429098000836,-0.542945954031883,2.10777289564409,1.67223184083923,1.73278967372198,52.0491167903741,-0.0111603149364324,-4072.09603960396,-4096.26160180375,-4098.33147433323,1.07993035563022,-9139.82431467598,-11309.2181965626,0,-9139.82431467598,83.2626072934025,83.2626072934025,-0.452278643705957,83.2514683432331,25,1015.1,39.32,484.561346478448 +45907,2873.84103376238,456.645930495049,225,81.0590693069307,83.4908413861386,21.4884851485149,0.562079207920792,1738.33663366337,-3711.81188118812,-3156.19603960396,20,40,10,32,5305825.33783144,396164.958021043,0,0,0,0,0,0,0,81.0590693069306,14192.1633322605,42.9769702970297,23.0477390561344,22.9331729330641,0.562079207920792,0.576719416850649,0.460183722495036,1.99094203531767,1.57954240307568,1.75830750488797,50.5661629424337,-0.00921626007653772,-6868.00792079208,-6739.13385942555,-6719.2824039527,1.11038491055824,-15423.4095934471,-17195.7129017248,0,-15423.4095934471,81.0708925595529,81.0708925595529,-0.68775392390724,81.0711522928479,25,1015.1,39.34,527.759123625052 +45908,2873.83366128713,456.631921683168,225,78.6321386138614,80.9911027722773,22.4103069306931,-0.208514851485149,1687.9504950495,-3590.19900990099,-3048.09702970297,20,40,10,32,5305811.99549668,396147.261674664,0,0,0,0,0,0,0,78.6321386138613,14214.3382213969,44.8206138613861,24.0364503470917,23.5782469588642,-0.208514851485149,-0.193874642555291,-0.153171627085068,2.6273632834374,2.08445632311508,2.0183890931552,49.1004895821369,-0.0147604165288299,-6638.29603960396,-6634.40114694637,-6634.50432020791,1.1446569989739,-14922.7094521001,-16620.6044622941,0,-14922.7094521001,78.6351104793647,78.6351104793647,-0.664704713045569,78.6359313219687,25,1015.1,39.36,557.180493800572 +45909,2873.82652792079,456.61831039604,225,76.224504950495,78.5112400990099,20.2519581958416,0.342772277227723,1633.17821782178,-3602.54653465347,-3036.4198019802,20,40,10,32,5305799.08721393,396130.06841177,0,0,0,0,0,0,0,76.2245049504949,14235.8450535751,40.5039163916832,21.7214868636638,21.6038621800961,0.342772277227723,0.357412486157579,0.285714145077214,2.50138054181587,1.98450610913751,1.8942668800962,47.5072286214054,-0.00691219505740329,-6638.96633663367,-6637.97957063033,-6637.41057549547,1.18082570893601,-14895.7304412736,-16594.2243594579,0,-14895.7304412736,76.2372492892853,76.2372492892853,-0.663713524817829,76.2393917908979,25,1015.1,39.38,470.102096920412 +45910,2873.81960029703,456.605136435644,225,73.8427227722772,76.0580044554456,21.0025742574257,-0.873960396039604,1582.41089108911,-3754.22079207921,-3042.01584158416,20,40,10,32,5305786.55028026,396113.426708085,0,0,0,0,0,0,0,73.8427227722771,14256.6883558853,42.0051485148515,22.5265693531538,22.1057578021995,-0.873960396039604,-0.859320187109746,-0.689481785516415,2.57903845792732,2.04611713007964,2.04635477713439,46.0304669482039,-0.0202325709492742,-6796.23663366337,-6801.55393588864,-6806.26102638148,1.21893653677174,-15251.4070936072,-17037.1330345816,0,-15251.4070936072,73.8373283011468,73.8373283011468,-0.681322092605303,73.8359879011137,24.9987376237624,1015.1,39.4025247524752,489.906221009802 +45911,2873.81288148515,456.592417029703,225,71.3583465346535,73.4990969306931,21.1317425742574,-0.713861386138614,1526.86138613861,-3866.15445544554,-3167.46435643564,20,40,10,32,5305774.38999006,396097.358133367,0,0,0,0,0,0,0,71.3583465346534,14276.8520245047,42.2634851485149,22.6651104201523,22.073736406545,-0.713861386138614,-0.699221177208757,-0.564558490158022,3.04925940638054,2.41917365996391,2.41825804463902,44.4145973494722,-0.0158404470065492,-7033.61881188119,-6958.02528183511,-6928.43051726621,1.26138566115737,-15759.987373298,-17320.7660594906,0,-15759.987373298,71.3558493284971,71.3558493284971,-0.692703057434453,71.3573133595787,24.99,1015.1,39.44,487.543950622926 +45912,2873.80638405941,456.580139405941,225,68.9494554455446,71.0179391089109,21.1294851485148,0.72,1476.69306930693,-3441.41386138614,-2873.30198019802,20,40,10,32,5305762.6299169,396081.847203391,0,0,0,0,0,0,0,68.9494554455445,14296.328532508,42.2589702970297,22.6626891904055,21.9331406654996,0.72,0.734640208929858,0.602402010148285,3.68981386790399,2.92736672410511,2.95935742472109,42.9552601679779,-0.0118803352549119,-6314.71584158416,-6377.33516321929,-6389.75628454553,1.30542825212739,-14163.2620975313,-15895.9343768002,0,-14163.2620975313,68.9558868738358,68.9558868738358,-0.635741049352458,68.9592548868342,24.98,1015.1,39.48,481.480082131571 +45913,2873.80007534653,456.568310891089,225,66.7265742574258,68.7283714851485,20.7328613861386,0.58049504950495,1430.46534653465,-3253.5,-2668.32574257426,20,40,10,32,5305751.20936994,396066.901961724,0,0,0,0,0,0,0,66.7265742574257,14315.1656475795,41.4657227722772,22.2372854955647,21.4679085241107,0.58049504950495,0.595135258434808,0.488812953796532,3.87538081423203,3.07458892100229,2.95578823637723,41.6105502211856,-0.0191525404715549,-5921.82574257426,-5940.50774433879,-5961.93378126485,1.34890349061601,-13292.9437053422,-15024.2868533238,0,-13292.9437053422,66.7267812959513,66.7267812959513,-0.600816641070047,66.731623494315,24.97,1015.1,39.52,461.310618343009 +45914,2873.79396663366,456.556822178218,225,64.561198019802,66.498033960396,19.8302277227723,0.861287128712871,1384.19801980198,-3564.05742574257,-2925.39603960396,20,40,10,32,5305740.15170511,396052.386626856,0,0,0,0,0,0,0,64.5611980198019,14333.4000592682,39.6604554455445,21.2691546574546,20.5757073950253,0.861287128712871,0.875927337642729,0.7219604895688,3.517408939379,2.79058680270423,2.78714733537221,40.2646882418837,-0.0196565546944906,-6489.45346534653,-6503.36329771591,-6540.54831249991,1.39417202152806,-14567.5659957189,-16017.4805179671,0,-14567.5659957189,64.5434296637584,64.5434296637584,-0.640540415427686,64.5256222843792,24.96,1015.1,39.56,423.872540821301 +45915,2873.78811178218,456.545704059406,225,62.0276930693069,63.8885238613861,19.1928514851485,2.30693069306931,1327.9801980198,-4118.46138613861,-3450.56831683168,20,40,10,32,5305729.55599792,396038.341359238,0,0,0,0,0,0,0,62.0276930693069,14350.9878827005,38.385702970297,20.5855289340122,19.887786961146,2.30693069306931,2.32157090199916,1.90134840560749,3.53343254439378,2.80329935943466,2.77630822708418,38.629378094553,-0.016128455133941,-7569.0297029703,-7252.21299872562,-6949.73526599876,1.45118747502794,-16968.6213995206,-17707.2319882238,0,-16968.6213995206,62.0458974610331,62.0458974610331,-0.708159058480095,62.0632673773882,24.95,1015.1,39.6,395.965694881813 +45916,2873.78247623762,456.535042673267,225,59.9028712871287,61.6999574257426,17.5838415841584,1.02227722772277,1389.63861386139,-1728.90297029703,-1477.00495049505,20,40,10,32,5305719.35630507,396024.872315237,0,0,0,0,0,0,0,59.9028712871286,14367.8896255498,35.1676831683168,18.8597655737542,18.3972993774105,1.02227722772277,1.03691743665263,0.845784777622106,2.43897224596416,1.93499359302565,1.99483695735766,40.4229487078855,0.0552975604592263,-3205.90792079208,-3429.06182727183,-3633.35474019198,1.50249183702689,-7592.58273804364,-9722.57353445838,0,-7592.58273804364,59.9730142142927,59.9730142142927,-0.3893940136588,60.0473867276576,24.94,1015.1,39.64,338.931545750141 +45917,2873.77700326733,456.524587029703,225,59.0622178217822,60.8340843564357,17.5505544554455,0.836633663366337,1505.67326732673,-692.59900990099,-612.908910891089,20,40,10,32,5305709.45316818,396011.664945755,0,0,0,0,0,0,0,59.0622178217821,14384.3961520625,35.1011089108911,18.8240630544188,18.3205413204519,0.836633663366337,0.851273872296196,0.683456039413012,2.67275896097242,2.12047163461633,2.1508999819039,43.7982599568537,-0.00784822147142665,-1305.50792079208,-1371.81482207627,-1446.22465540672,1.52383348141307,-3485.07513722512,-5004.829769403,0,-3485.07513722512,59.0510100970492,59.0510100970492,-0.200117907830369,59.0494128648158,24.93,1015.1,39.68,336.415567760511 +45918,2873.77162227723,456.514240891089,225,58.3130297029703,60.0624205940594,17.8628118811881,0.453069306930693,1469.92574257426,-712.942574257426,-604.59702970297,20,40,10,32,5305699.71798151,395998.597013149,0,0,0,0,0,0,0,58.3130297029702,14400.6967032451,35.7256237623762,19.1589785971905,18.5435169517856,0.453069306930693,0.46770951586055,0.38157543604918,3.11358938397201,2.47021076983056,2.46474691708884,42.7584066129056,-0.00914425804468976,-1317.5396039604,-1431.36843446721,-1639.17600806842,1.54340938332675,-3478.09365988939,-5272.39771183328,0,-3478.09365988939,58.3095603372218,58.3095603372218,-0.210808580858099,58.3018680926599,24.92,1015.1,39.72,344.315605479234 +45919,2873.76632405941,456.504038217822,225,57.2667128712871,58.9847142574257,17.5787425742574,1.09227722772277,1434.83663366337,-2748.90099009901,-2395.21584158416,20,40,10,32,5305690.1329254,395985.71051686,0,0,0,0,0,0,0,57.266712871287,14416.7734930691,35.1574851485149,18.8542965679666,18.2417992362725,1.09227722772277,1.10691743665263,0.901487244065337,3.09931717798817,2.45888771062692,2.36775463896918,41.7377058094291,-0.0203045729811222,-5144.11683168317,-5161.82090971473,-5186.32614650371,1.57172668779738,-13479.7010453496,-13229.8573652659,0,-13479.7010453496,57.1604791687089,57.1604791687089,-0.529003147839534,57.032252222926,24.91,1015.1,39.76,333.101530072192 +45920,2873.76119970297,456.49418009901,225,54.4059504950495,56.038129009901,16.1564653465347,0.152772277227723,1359.31683168317,-5027.64059405941,-4282.46930693069,20,40,10,32,5305680.86221141,395973.259000657,0,0,0,0,0,0,0,54.4059504950494,14432.3123478545,32.3129306930693,17.3288156332483,16.8677656131715,0.152772277227723,0.16741248615758,0.136094294236926,2.38610187361166,1.89304812524418,1.92718959729634,39.5409238177481,-0.019080538439707,-9310.1099009901,-9179.81293990785,-8876.56326723666,1.65468704477245,-24359.8867953235,-21791.1007702919,0,-24359.8867953235,54.4296704244681,54.4296704244681,-0.871464126610684,54.4269754884428,24.9012623762377,1015.10126237624,39.8037871287129,284.957564035232 +45921,2873.75636821782,456.484843762376,225,51.2887326732673,52.8273946534654,14.3599504950495,1.31405940594059,1280.05445544554,-5052.69405940594,-4263.36831683168,20,40,10,32,5305672.12230385,395961.467218825,0,0,0,0,0,0,0,51.2887326732672,14446.9920103408,28.719900990099,15.4019415320108,15.1599187587445,1.31405940594059,1.32869961487045,1.07113130264704,1.46209390696324,1.15997315961966,1.22554017234668,37.235274753913,-0.0311768797901627,-9316.06237623762,-9316.7090579355,-9379.29097371046,1.7553799909878,-24348.359320735,-21698.1577923595,0,-24348.359320735,51.3020669542201,51.3020669542201,-0.867632802884249,51.3073727935138,24.9,1015.11,39.87,230.191235573481 +45922,2873.75179247525,456.476094455446,225,48.2123861386139,49.6587577227723,13.4110396039604,2.1609900990099,1217.87128712871,-5437.32079207921,-4575.31782178218,20,40,10,32,5305663.84295823,395950.415217882,0,0,0,0,0,0,0,48.2123861386138,14460.8080193617,26.8220792079208,14.384175484093,14.1764160195543,2.1609900990099,2.17563030793976,1.74910756747271,1.30715356339746,1.037049017044,1.00849468354584,35.4264397098288,0.0252007111467828,-10012.6386138614,-10154.0456327811,-10355.3570516326,1.86748881607532,-26536.5843186189,-22724.9764566657,0,-26536.5843186189,48.1782786981668,48.1782786981668,-0.909259985404478,48.1119188843564,24.9,1015.12,39.94,201.335293639988 +45923,2873.74754118812,456.467894455446,225,44.5672970297029,45.904315940594,12.1011881188119,1.22891089108911,1468.0297029703,-6756.79702970297,-5655.04257425743,20,40,10,32,5305656.15229746,395940.058306601,0,0,0,0,0,0,0,44.5672970297029,14473.7060635311,24.2023762376238,12.9792781624184,12.8526579145247,1.22891089108911,1.24355110001897,1.00183720216705,1.18416397748144,0.939473466051084,1.00481149918967,42.7032530565101,0.0491053857203026,-12411.8396039604,-12269.2780217626,-11963.3855569063,2.0208103297416,-42922.0730906475,-27409.4833149045,0,-42922.0730906475,44.5475507303205,44.5475507303205,-1.09692541036282,44.4960366469348,24.9,1015.13,40.01,166.104567244187 +45924,2873.74363435643,456.460406831683,225,40.5201287128713,41.7357325742574,11.4407425742574,1.87613861386139,1398.5495049505,-6875.62673267327,-5711.43069306931,20,40,10,32,5305649.0837015,395930.600298475,0,0,0,0,0,0,0,40.5201287128712,14485.5170752473,22.8814851485149,12.2709091700732,12.0585831938588,1.87613861386139,1.89077882279124,1.52436569515863,1.25050541219135,0.992106394256075,0.951318320936255,40.6821560225381,-0.0320409041723382,-12587.0574257426,-11955.191069503,-10450.3597552638,2.22290177645969,-45494.5682281718,-27103.5822912257,0,-45494.5682281718,40.5293988824624,40.5293988824624,-1.08372681327538,40.7134426816474,24.9,1015.14,40.08,145.742657834184 +45925,2873.74006752475,456.453591881188,225,37.5322475247525,38.658214950495,10.5387128712871,0.541485148514851,1319.81188118812,-2039.79504950495,-1688.0495049505,20,40,10,32,5305642.62980501,395921.991591953,0,0,0,0,0,0,0,37.5322475247524,14496.2830571505,21.0774257425743,11.3034261171145,11.1199170894351,0.541485148514851,0.556125357444709,0.445827485687667,1.08703613359651,0.862415698816247,0.882024677041973,38.3917713894548,-0.00648018286631558,-3727.84455445545,-4323.64241741006,-5678.64479561034,2.39808508160991,-13708.4202663303,-10132.826957183,0,-13708.4202663303,37.6665995490638,37.6665995490638,-0.405227156379003,38.1178841595365,24.9,1015.15,40.15,123.874623977531 +45926,2873.7366450495,456.447058712871,225,36.8525643564356,37.9581412871287,9.63307920792079,1.15514851485149,1293.26237623762,-870.141584158416,-721.806930693069,20,40,10,32,5305636.43698778,395913.738712638,0,0,0,0,0,0,0,36.8525643564356,14506.6071617159,19.2661584158416,10.3320775921041,10.3103544979059,1.15514851485149,1.16978872378134,0.946967222160207,0.994307519726922,0.78884812377528,0.835834104636638,37.6194775958537,-0.00691219505740328,-1591.94851485148,-1520.31289089305,-1595.88669986971,2.44222194287907,-5849.97130295133,-4595.31562183267,0,-5849.97130295133,36.8498715812175,36.8498715812175,-0.183721094881767,36.87975918565,24.9,1015.16,40.22,106.862862319084 +45927,2873.73331059406,456.440603465347,225,36.3115247524753,37.4008704950495,10.1610198019802,1.32029702970297,1281.29207920792,32.3534653465347,67.1752475247525,20,40,10,32,5305630.40547414,395905.585824596,0,0,0,0,0,0,0,36.3115247524752,14516.755382398,20.3220396039604,10.8983267699743,10.7285592136279,1.32029702970297,1.33493723863283,1.07886252311447,1.03116090349022,0.818086284062383,0.768184522876052,37.271275769837,-0.00907225601284181,99.5287128712872,-28.837996274875,-390.205378341843,2.47855973801043,369.442850713156,-1405.03791365154,0,369.442850713156,36.347782374277,36.347782374277,-0.0560811031598219,36.4445956296424,24.9,1015.17,40.29,115.31359741285 +45928,2873.73009257426,456.434084752475,225,36.2335346534653,37.3205406930693,9.87052475247525,0.467029702970297,1272.21782178218,1.30990099009898,14.5534653465346,20,40,10,32,5305624.59107666,395897.357749265,0,0,0,0,0,0,0,36.2335346534653,14526.8372895762,19.7410495049505,10.5867527315153,10.4769298769173,0.467029702970297,0.481669911900155,0.38985492546731,0.869191702794922,0.689585696927171,0.674675516047403,37.0073163210824,7.2002031847955E-05,15.8633663366337,8.24849524556426,-201.882603102513,2.48390706978574,60.8533153092854,-1958.46141646295,0,60.8533153092854,36.2125432800705,36.2125432800705,-0.0783392695705229,36.1395696313936,24.9,1015.18,40.36,109.988324859566 +45929,2873.72710227723,456.427398811881,225,35.8116831683168,36.8860336633663,9.88735643564357,2.15594059405941,1261.65841584158,-529.444554455446,-461.612871287128,20,40,10,32,5305619.20226933,395888.928946056,0,0,0,0,0,0,0,35.8116831683168,14536.8446054178,19.7747128712871,10.6048057603285,10.4668125399722,2.15594059405941,2.17058080298926,1.7477794902941,0.938974608127981,0.744948965183143,0.736900434681396,36.700155653219,0.00266407517837418,-991.057425742574,-936.088648171748,-747.581377458013,2.51317356431304,-3655.41691674214,-2971.01849246467,0,-3655.41691674214,35.8119058915792,35.8119058915792,-0.118875872735791,35.7983938056543,24.9,1015.19,40.43,109.755562381351 +45930,2873.72445039604,456.420506633663,225,35.3322178217822,36.3921843564356,9.56565346534653,2.7470297029703,1245.0297029703,-591.49504950495,-508.469306930693,20,40,10,32,5305614.44497125,395880.2545195,0,0,0,0,0,0,0,35.3322178217821,14546.7301452143,19.1313069306931,10.259759282564,10.1653863884538,2.7470297029703,2.76166991190015,2.21142910222516,0.891203434706898,0.707049019968895,0.738217309021751,36.2164460032645,-0.00792022350327459,-1099.96435643564,-1102.58631506715,-1138.45988393905,2.54731816760917,-4058.38483426779,-4263.60611222814,0,-4058.38483426779,35.3157358102146,35.3157358102146,-0.170439444934586,35.2822361911179,24.9,1015.19873762376,40.4810643564357,103.616500508515 +45931,2873.72223574257,456.413419009901,225,34.6859405940594,35.7265188118812,9.37642574257426,0.332871287128713,1225.05445544554,-758.431683168317,-648.442574257426,20,40,10,32,5305610.50197438,395871.351218241,0,0,0,0,0,0,0,34.6859405940594,14556.4511171064,18.7528514851485,10.0568007609884,9.96783305283966,0.332871287128713,0.347511496058571,0.289735231303312,1.0728440468189,0.851156203333355,0.85021401644615,35.6353896062516,-0.00640818083446763,-1406.87425742574,-1398.63290853838,-1358.13549894788,2.5947632603076,-5203.17768906607,-4060.52984808878,0,-5203.17768906607,34.6923897657092,34.6923897657092,-0.1623356642595,34.7012139700056,24.9,1015.2,40.42,100.005284048603 +45932,2873.72061217822,456.40604990099,225,34.0876930693069,35.1103238613861,9.1599900990099,-0.0892079207920793,1207.78712871287,-829.242574257426,-708.457425742574,20,40,9.59405940594059,32,5305607.66021782,395862.117005736,0,0,0,0,0,0,0,34.0876930693069,14566.0029491746,18.3199801980198,9.82466004930767,9.74904717495964,-0.0892079207920793,-0.0745677118622222,-0.0669034328955046,0.98323982815278,0.780067412014012,0.816325380718484,35.1331034320802,-0.00525614832490042,-1537.7,-1533.65057347319,-1712.83622452997,2.64030098956043,-5705.5044505414,-3677.08544622423,0,-5705.5044505414,34.1098080580335,34.1098080580335,-0.14701309239835,34.1193142494913,24.9,1015.2,40.34,95.5231781523356 +45933,2873.71957475248,456.398707623762,189.356435643564,33.5742277227723,34.5814545544554,9.75420792079208,0.127524752475248,1182.14356435644,-1097.99405940594,-1066.83861386139,20,40,10,32,5305605.90360198,395852.935802037,0,0,0,0,0,0,0,33.5742277227722,14575.4080037951,19.5084158415842,10.4619956829871,10.2252391649132,0.127524752475248,0.142164961405105,0.110031363367549,1.37727057082875,1.09267734998882,0.956239394124678,34.3871623821355,-0.0125283535415435,-2164.83267326733,-2635.54034898539,-4263.10257808802,2.68078572791034,-7975.75325011119,-6637.56787178253,0,-7975.75325011119,33.5159900009802,33.5159900009802,-0.265336187084053,33.1011386734741,24.9,1015.2,40.26,104.951417135401 +45934,2873.71901980198,456.391502772277,94.9009900990099,31.4401287128713,32.3833325742574,6.83485148514852,-2.56178217821782,1090.63861386139,-5543.9702970297,-4678.48910891089,20,40,10,32,5305605.03762021,395843.941917688,0,0,0,0,0,0,0,31.4401287128712,14584.5100300327,13.669702970297,7.33080402961876,7.61863007835723,-2.56178217821782,-2.54714196928797,-1.9508933182179,1.78335150541356,1.41484748044918,1.55364092304817,31.7253912687804,-0.0329769305863615,-10222.4594059406,-9248.083374179,-6345.02878169693,2.86689679103311,-37088.4308996997,-24122.5696687244,0,-37088.4308996997,31.342227036565,31.342227036565,-0.964473798865036,31.034920861343,24.9,1015.2,40.18,60.0584767629991 +45935,2873.71893772277,456.384959306931,45,27.9843465346535,28.8238769306931,5.73840594059406,-1.25019801980198,1240.22772277228,-3279.61683168317,-2653.26930693069,20,40,9.71287128712871,32,5305605.03270093,395835.787751464,0,0,0,0,0,0,0,27.9843465346534,14592.7096792627,11.4768118811881,6.15479787443854,6.48766599362296,-1.25019801980198,-1.23555781087213,-0.984676570931782,2.23980848301058,1.77698416675367,1.62098162493293,36.0767620614795,0.0988587897272366,-5932.88613861386,-6696.4471228311,-7910.26353282852,3.21746847436916,-26027.5009966269,-14778.9224966084,0,-26027.5009966269,28.136734241741,28.136734241741,-0.592746898452222,28.5514790696981,24.9,1015.2,40.1,44.3511831089732 +45936,2873.71907544555,456.378911683168,45,26.3000891089109,27.0890917821782,7.28447524752475,-1.62960396039604,1296.25742574257,-4521.0702970297,-3793.45247524753,20,40,9.72277227722772,32,5305605.42379223,395828.258621124,0,0,0,0,0,0,0,26.3000891089109,14600.2777202143,14.5689504950495,7.81305352636382,7.70657560082838,-1.62960396039604,-1.61496375146618,-1.29679102549006,0.798539092489201,0.633532435764265,0.800732945273427,37.7066000543897,-0.0398891256437648,-8314.52277227723,-7873.3004215273,-8271.0225368792,3.42726793666183,-42812.6255179719,-19685.3632160824,0,-42812.6255179719,26.1481311636114,26.1481311636114,-0.786678048993014,25.6667776491454,24.9,1015.2,40.02,59.8261998150818 +45937,2873.71948287129,456.373499009901,45,22.7893564356436,23.4730371287129,4.66814851485149,-0.876831683168317,1208,-5266.85247524753,-4320.25544554455,20,40,9.79207920792079,32,5305606.30019705,395821.52948951,0,0,0,0,0,0,0,22.7893564356435,14607.0792907588,9.33629702970297,5.00688010820597,5.27902409791315,-0.876831683168317,-0.86219147423846,-0.688377467829216,1.67192235951694,1.32644357025994,1.29883463256634,35.1392956068192,0.0139683941785025,-9587.10792079208,-9745.35179884325,-7084.342007751,3.95421999006709,-53472.5272403152,-21677.5276318242,0,-53472.5272403152,22.8363574159396,22.8363574159396,-0.867431297585204,23.1252383521251,24.9,1015.2,39.94,29.0821910828464 +45938,2873.71999950495,456.368828217822,45,20.1145841584158,20.7180216831683,5.15989108910891,-1.45930693069307,1333.69801980198,-3762.70792079208,-3012.25643564356,20,40,10,32,5305607.36221625,395815.728198419,0,0,0,0,0,0,0,20.1145841584158,14613.0159156763,10.3197821782178,5.53430465469896,5.54381665423,-1.45930693069307,-1.44466672176321,-1.25573058266842,1.61500939233383,1.28129085192063,1.16814515730725,38.7957027881218,0.00295208330576598,-6774.96435643564,-6664.46531712578,-5990.99766789669,4.47833806740084,-46684.4464221831,-14563.090208754,0,-46684.4464221831,20.1728961866483,20.1728961866483,-0.582558627149845,21.0955355335296,24.9,1015.2,39.86,32.0965008739407 +45939,2873.72061386139,456.364654356436,45,18.7513663366337,19.3139073267327,5.74434653465346,-3.23871287128713,1274.89603960396,-1518.68712871287,-1220.43366336634,20,40,10,32,5305608.59408145,395810.549220777,0,0,0,0,0,0,0,18.7513663366336,14618.3840202418,11.4886930693069,6.16116953166674,5.96293820818849,-3.23871287128713,-3.22407266235728,-2.63085798802682,1.08047262962452,0.857208448854873,0.915176161086836,37.0852225195419,-0.0123123474459996,-2739.12079207921,-2927.7719341241,-3007.73466315921,4.80052818391681,-19499.1414140312,-5464.36927136025,0,-19499.1414140312,18.7884137829624,18.7884137829624,-0.218260192355867,19.7157526514232,24.9,1015.2,39.78,35.8381754880218 +45940,2873.72140118812,456.360714950495,45,18.2745940594059,18.8228318811881,5.83477227722772,-3.36009900990099,1243.16831683168,-428.933663366337,-266.517821782179,20,40,10,32,5305610.14107844,395805.668098887,0,0,0,0,0,0,0,18.2745940594059,14623.5142519524,11.6695445544554,6.25815677410867,6.01253322682176,-3.36009900990099,-3.34545880097114,-2.75078035877176,1.27845651338213,1.01428180105362,1.01333303724012,36.1623004753149,-0.00885624991729796,-695.451485148515,-438.808910891089,208.56201116336,4.9251106312824,-4761.07122835331,-805.345634815063,0,-4761.07122835331,18.3319540241153,18.3319540241153,-0.0319876047010655,19.2978242600765,24.9,1015.2,39.7037871287129,36.41461786512 +45941,2873.72233980198,456.356857722772,45,18.8389504950495,19.404119009901,5.87356435643565,-3.5,1246.62871287129,2339.13069306931,2814.02277227723,20,40,10,32,5305611.9664668,395800.894411353,0,0,0,0,0,0,0,18.8389504950495,14628.633713201,11.7471287128713,6.29976369580881,6.07784179147103,-3.5,-3.48535979107015,-2.85368324026924,1.13607731389867,0.901323222194639,0.887445838475131,36.2629593158383,-0.0189365343760111,5153.15346534653,4933.7817370846,2657.80104306512,4.77941120021045,35586.2060907106,8927.21845156546,0,35586.2060907106,18.9004068228605,18.9004068228605,0.35750716160725,19.6231808577647,24.9,1015.2,39.65,37.1899933580849 +45942,2873.72352772277,456.352845841584,45,20.4719207920792,21.0860784158416,5.93734653465346,-3.5,1068.24257425743,2682.36237623762,3336.04455445545,20,40,9.87128712871287,32,5305614.25713954,395795.936408118,0,0,0,0,0,0,0,20.4719207920792,14634.0921985146,11.8746930693069,6.36817405558226,6.22574454175868,-3.5,-3.48535979107015,-2.81821135293525,0.875797554685855,0.694826544217082,0.753931919402843,31.0739168846202,-0.0215286075225373,6018.40693069307,5989.87782570336,4260.33734969268,4.39833320581668,32996.2665491413,10655.2851281906,0,32996.2665491413,20.4453410449956,20.4453410449956,0.426675217026653,20.4791033624251,24.9,1015.2,39.6,39.0616434748211 +45943,2873.72495574257,456.348637623763,45,21.912405940594,22.5697781188119,6.46873267326733,-3.5,973.856435643564,2390.71287128713,2972.73069306931,20,40,10,32,5305616.99697853,395790.741856542,0,0,0,0,0,0,0,21.912405940594,14639.9806583331,12.9374653465347,6.93811879464478,6.76047918328949,-3.5,-3.48535979107015,-2.82893660303,0.97712658578033,0.775217383546947,0.75090143356484,28.3283354061941,-0.0730100602938222,5363.44356435644,5180.9075188707,4290.16957832373,4.10889779843148,25138.4479724938,9663.22895281087,0,25138.4479724938,21.9022841878247,21.9022841878247,0.387723425807929,21.636029991424,24.9,1015.2,39.55,45.8609354519328 +45944,2873.72664643564,456.344293762376,45,23.030495049505,23.7214099009901,6.56292079207921,-3.49861386138614,815.727722772277,1285.04059405941,1615.44851485149,20,40,9.92079207920792,32,5305620.22643438,395785.387120556,0,0,0,0,0,0,0,23.0304950495049,14646.2439778875,13.1258415841584,7.03914141999789,6.90473323763491,-3.49861386138614,-3.48397365245629,-2.80969467046929,0.860232841015704,0.682478055512934,0.660698609445264,23.7285576036196,-0.00187205282804673,2900.48910891089,2986.9666993432,2641.69462631954,3.90813964454002,10768.2844534849,4634.81327242242,0,10768.2844534849,22.9840731300853,22.9840731300853,0.185420274700736,22.5420611995737,24.9,1015.2,39.5,47.9088457613757 +45945,2873.72857683168,456.339960990099,45,23.3046435643564,24.0037828712871,6.59570297029703,-3.4519801980198,819.816831683168,-76.4811881188117,23.1514851485147,20,40,10,32,5305623.89965776,395780.054222848,0,0,0,0,0,0,0,23.3046435643564,14652.6945938666,13.1914059405941,7.07430234846885,6.94837298030066,-3.4519801980198,-3.43733998908995,-2.76982140505064,0.830773502884869,0.659106067319027,0.666488202251883,23.8475049602324,-0.00280807924207008,-53.3297029702971,67.0773159494169,792.529649513048,3.8619437066853,-168.298858010619,-525.049979501913,0,-168.298858010619,23.2756363101656,23.2756363101656,-0.0209647202343996,22.8863888287118,24.9,1015.2,39.45,48.5148538533311 +45946,2873.73072574257,456.335754059406,45,22.8489801980198,23.5344496039604,6.44830693069307,-3.5,804.653465346535,-626.954455445544,-523.358415841584,20,40,10,32,5305627.97481933,395774.885406435,0,0,0,0,0,0,0,22.8489801980198,14659.1201456268,12.8966138613861,6.91621091320848,6.79680243113852,-3.5,-3.48535979107015,-2.80632021226563,0.801139927963979,0.635595845870115,0.626939488565159,23.4064205131319,-0.00590416661153197,-1150.31287128713,-1205.16806195471,-943.840127926918,3.93920595457267,-4240.97915312626,-4295.59658535789,0,-4240.97915312626,22.8540174492696,22.8540174492696,-0.171745144811511,22.6678934989127,24.9,1015.2,39.4,46.4024166416231 +45947,2873.73286504951,456.331740990099,45,22.1972178217822,22.8631343564356,5.88588118811881,-3.40108910891089,820.178217821782,-1383.78514851485,-1134.20198019802,20,40,10,32,5305632.02783422,395769.957774765,0,0,0,0,0,0,0,22.1972178217822,14665.380632618,11.7717623762376,6.31297426512862,6.28090599237025,-3.40108910891089,-3.38644889998104,-2.6942058614715,0.602996946729023,0.478396271407112,0.510265485971012,23.8580172568822,0.0321129062041861,-2517.98712871287,-2436.81498872659,-2092.75275958648,4.05516048093731,-9836.23449688173,-5682.53735049895,0,-9836.23449688173,22.178294284874,22.178294284874,-0.227769064035116,22.0580541334225,24.9,1015.2,39.35,39.6202115150344 +45948,2873.73481613861,456.327822178218,45,21.3074455445544,21.9466689108911,5.8350198019802,-3.47089108910891,967.064356435644,-1451.52376237624,-1278.8198019802,20,40,10,32,5305635.73008887,395765.141272135,0,0,0,0,0,0,0,21.3074455445544,14671.4187500547,11.6700396039604,6.25842225982651,6.1866021200543,-3.47089108910891,-3.45625088017906,-2.76784944178513,0.609167893554313,0.483292080529007,0.48148424418024,28.1307618308033,0.0295208330576599,-2730.34356435644,-2850.67705126948,-2313.3101717317,4.22433664667238,-13022.4711126932,-6159.31917307193,0,-13022.4711126932,21.2995851387119,21.2995851387119,-0.24686986025335,21.2553445911376,24.9,1015.2,39.3,38.4371986783201 +45949,2873.73643039604,456.323848118812,45,20.2885148514851,20.8971702970297,5.40581188118812,-3.5,991.173267326733,-1250.47425742574,-1505.10891089109,20,40,10,32,5305638.80966323,395760.244682705,0,0,0,0,0,0,0,20.2885148514851,14677.2024330855,10.8116237623762,5.79807002508903,5.76296316692099,-3.5,-3.48535979107015,-2.77760939535529,0.5556975392408,0.440870608458275,0.451326166416388,28.8320616210024,-0.00684019302555533,-2755.58316831683,-2700.24340750907,-2322.67141448525,4.43713524919132,-14074.3107253403,-6677.67755243622,0,-14074.3107253403,20.3157738457014,20.3157738457014,-0.266979544489102,20.4755486981479,24.9,1015.2,39.25,33.3450525514939 +45950,2873.73751188119,456.31979970297,45,19.6431287128713,20.2324225742574,5.42215841584158,-3.5,943.470297029703,-752.328712871287,-937.020792079208,20,40,9.7029702970297,32,5305640.90403839,395755.237644426,0,0,0,0,0,0,0,19.6431287128713,14682.7324504673,10.8443168316832,5.8156027018953,5.73986452899904,-3.5,-3.48535979107015,-2.79554993969742,0.603244773474014,0.478592888307747,0.481151740467146,27.4444384632287,-0.0166324693568767,-1689.34950495049,-1683.50287226742,-1616.79527514118,4.58196982679726,-8500.08282200303,-3613.25756063884,0,-8500.08282200303,19.6330762670326,19.6330762670326,-0.144227417791285,19.7613565541437,24.9,1015.19873762376,39.2025247524753,33.0747224275197 +45951,2873.73791613862,456.315623564356,53.9108910891089,19.0318118811881,19.6027662376238,5.57280198019802,-3.5,892.079207920792,-713.670297029703,-884.991089108911,20,40,9.81188118811881,32,5305641.74683459,395750.048841335,0,0,0,0,0,0,0,19.0318118811881,14688.1058798402,11.145603960396,5.97717730977374,5.83298936383709,-3.5,-3.48535979107015,-2.82457260748454,0.814210407923276,0.645965498505917,0.625667595758465,25.9495322780015,-0.014616412465134,-1598.66138613861,-1382.70482305656,-519.874016888376,4.72939867636361,-7849.19749671113,-4005.85266185135,0,-7849.19749671113,19.0493102636996,19.0493102636996,-0.159976146129465,19.2242053701139,24.9,1015.19,39.17,34.1640789408396 +45952,2873.7376319802,456.311355940594,164.405940594059,18.6382376237624,19.1973847524753,5.41816831683168,-3.5,857.207920792079,706.938613861386,530.070297029703,20,40,9.86138613861386,32,5305641.31651252,395744.72303788,0,0,0,0,0,0,0,18.6382376237623,14693.33142808,10.8363366336634,5.81132307212369,5.67884961368341,-3.5,-3.48535979107015,-2.82042761975789,0.786497302889098,0.623978909370794,0.612731585485181,24.9351676533276,-0.00136803860511106,1237.00891089109,1037.94943632977,549.001653453283,4.82899691321038,5963.65271681273,-1531.61211415971,0,5963.65271681273,18.6478212920302,18.6478212920302,-0.0612399111198234,18.9132290523803,24.9,1015.18,39.14,32.4130292208502 +45953,2873.73658277228,456.307512376238,225,18.5992871287129,19.1572657425743,4.97782178217822,-3.5,837.019801980198,1184.00396039604,959.336633663366,20,40,10,32,5305639.45951826,395739.899894177,0,0,0,0,0,0,0,18.5992871287128,14698.49337841,9.95564356435644,5.33902398008334,5.3019408657163,-3.5,-3.48535979107015,-2.77944794471125,0.503020222227845,0.399078303897812,0.432296809845245,24.3479190815757,-0.00597616864337992,2143.34059405941,2152.22778159004,1559.55093364437,4.8389337184308,10099.8620095052,564.167789212935,0,10099.8620095052,18.6095204391726,18.6095204391726,0.0226693461425335,18.7580486583768,24.9,1015.17,39.11,28.2363954573066 +45954,2873.73488524752,456.304302277228,225,18.7056138613861,19.2667822772277,5.03,-3.5,827.79702970297,1455.65346534653,1180.51881188119,20,40,10.8019801980198,32,5305636.38736658,395735.84417669,0,0,0,0,0,0,0,18.7056138613861,14703.6712285475,10.06,5.39498836940436,5.35243433391566,-3.5,-3.48535979107015,-2.78166075229252,0.53413712842389,0.423765347476828,0.41451069937271,24.0796395109102,-0.00374410565609344,2636.17227722772,2631.04332908538,2575.79980029426,4.81169980848716,12213.6586174034,923.319763072482,0,12213.6586174034,18.6936234682874,18.6936234682874,0.0369952836867845,18.8335042248598,24.9,1015.16,39.08,28.7924126056274 +45955,2873.73262425742,456.30186980198,225,18.8034752475247,19.3675795049505,5.32457425742574,-3.46485148514852,827.673267326733,1799.77722772277,1479.28316831683,20,40,11,32,5305632.25398524,395732.738306289,0,0,0,0,0,0,0,18.8034752475247,14708.8850745871,10.6491485148515,5.71093761249339,5.60871115578563,-3.46485148514852,-3.45021127621866,-2.77916262606855,0.695166659718311,0.551520434423072,0.55325623994095,24.0760394093178,0.00273607721022213,3279.0603960396,3262.0495049505,3170.6237680976,4.78652366443394,15120.9241127738,2155.00215768724,0,15120.9241127738,18.8626291540045,18.8626291540045,0.0861544075199549,19.1014614509713,24.9,1015.15,39.05,31.6311390528053 +45956,2873.72993069307,456.300807326732,225,19.4588712871287,20.0426374257426,5.8360297029703,-3.19108910891089,847.430693069307,1983.11386138614,1631.37425742574,20,40,11,32,5305627.28849527,395731.324605011,0,0,0,0,0,0,0,19.4588712871287,14714.1948463968,11.6720594059406,6.25950544155531,6.08155857569894,-3.19108910891089,-3.17644889998104,-2.58409248339425,0.970971146884623,0.770333877863288,0.778561824320922,24.6507596275282,0.00907225601284181,3614.48811881188,3636.47604156455,3641.68929332675,4.62540914064441,16487.4897831444,3950.69041892234,0,16487.4897831444,19.42293794726,19.42293794726,0.157878040279278,19.5698398674195,24.9,1015.14,39.02,37.1643478419574 +45957,2873.72704405941,456.300986237624,225,19.9678712871287,20.5669074257426,6.03091089108911,-2.8190099009901,885.955445544554,2297.85247524753,1911.1297029703,20,40,11,32,5305621.93743531,395731.450873817,0,0,0,0,0,0,0,19.9678712871287,14719.6594220294,12.0618217821782,6.46852765692641,6.27661967517814,-2.8190099009901,-2.80436969206025,-2.28500638335483,0.998388924385614,0.792086164666555,0.815883214920396,25.7713992512097,0.0148324185606779,4208.98217821782,4188.13637878639,3821.1390538544,4.50801103027824,19559.6833909371,5702.27260016967,0,19559.6833909371,20.0060242133124,20.0060242133124,0.227843947761112,20.2196390489806,24.9,1015.13,38.99,39.5308081035728 +45958,2873.7241880198,456.302408217822,225,21.0713267326733,21.7034665346535,6.44215841584158,0.72009900990099,945.212871287129,2471.22277227723,2053.22376237624,20,40,11,32,5305616.61506872,395733.126698928,0,0,0,0,0,0,0,21.0713267326732,14725.3533722769,12.8843168316832,6.90961624797729,6.68993767207881,0.72009900990099,0.734739218830847,0.589425476089918,1.13542640148264,0.900806811498809,0.865773707318672,27.4951278936496,0.0140403962103504,4524.44653465346,4286.66186648368,3901.93472416079,4.27229844091703,21253.8960328784,7223.8310757439,0,21253.8960328784,21.040904715224,21.040904715224,0.288714886340118,20.9723214943324,24.9,1015.12,38.96,44.8933775675573 +45959,2873.72159257426,456.30514960396,225,21.8825247524753,22.5390004950495,5.64678217821782,1.0980198019802,933.470297029703,1787.12376237624,1467.29405940594,20,40,11,32,5305611.74571759,395736.454876599,0,0,0,0,0,0,0,21.8825247524752,14731.330232783,11.2935643564356,6.05652568112227,6.05977157447954,1.0980198019802,1.11266001091006,0.88509372762954,0.835704345224623,0.66301802177092,0.744731906408671,27.1535502545629,-0.042553200822139,3254.41782178218,3502.68542299775,3899.58560876853,4.11322401568996,14420.7643038314,4957.30844852183,0,14420.7643038314,21.8861041074404,21.8861041074404,0.198942914093394,21.725695090376,24.9,1015.11,38.93,37.1960760097487 +45960,2873.7195280198,456.308943762376,225,22.4696138613861,23.1437022772277,4.76789108910891,3.44623762376238,756.866336633663,2022.14059405941,1682.3198019802,20,40,10.9306930693069,32,5305607.83606789,395741.112300322,0,0,0,0,0,0,0,22.4696138613861,14737.501237761,9.53578217821782,5.11386023306745,5.3452525866456,3.44623762376238,3.46087783269223,2.62914757152671,1.22497307430181,0.971849947995577,0.896914912519654,22.0163492862753,-0.020592581108514,3704.4603960396,3715.77892363494,3719.85325975684,4.00545502452494,13076.357545335,3087.75846751506,0,13076.357545335,22.4583320262719,22.4583320262719,0.123781437549694,22.4589846420393,24.9,1015.10126237624,38.9113613861386,28.8717032094964 +45961,2873.71792277228,456.313390594059,225,23.0386930693069,23.7298538613861,5.05144554455446,3.5,772.351485148515,2098.23960396039,1758.0297029703,20,40,11,32,5305604.76252807,395746.598157613,0,0,0,0,0,0,0,23.0386930693069,14743.8102127885,10.1028910891089,5.41799005199817,5.61913065036152,3.5,3.51464020892985,2.6944230570323,1.09120960156532,0.865726779454298,0.864757873733821,22.4667939975161,0.0123123474459996,3856.26930693069,3818.4309675522,3612.9641260137,3.90690016670656,13539.947171319,5169.59573195526,0,13539.947171319,23.0485928830507,23.0485928830507,0.206627345902905,23.0744447315689,24.9,1015.1,38.96,31.7357059371841 +45962,2873.71678,456.31836940594,194.70297029703,23.727801980198,24.439636039604,4.94189108910891,3.18643564356436,803.60396039604,1890.0504950495,1607.75742574257,20,40,11,32,5305602.53368515,395752.76220162,0,0,0,0,0,0,0,23.727801980198,14750.3117655113,9.88378217821782,5.30048607328144,5.56554389923208,3.18643564356436,3.20107585249421,2.43056501011663,1.3544887121909,1.07460303586967,1.03352979177813,23.3758916516283,0.00446412597457295,3497.80792079208,3502.21095970983,3426.0960346523,3.79322546403442,12405.0813312174,3770.10259061928,0,12405.0813312174,23.7176438584452,23.7176438584452,0.150747748042128,23.6513833754657,24.9,1015.1,39.02,31.1022761622043 +45963,2873.71615643564,456.323602178218,119.851485148515,24.2183465346535,24.9448969306931,5.57705940594059,3.06910891089109,829.881188118812,1711.10495049505,1415.28118811881,20,40,10.7821782178218,32,5305601.26088525,395759.259989244,0,0,0,0,0,0,0,24.2183465346534,14756.9711070404,11.1541188118812,5.98174366412062,6.13419881278912,3.06910891089109,3.08374911982094,2.38766934907356,0.972050718668099,0.771190371612938,0.819514101678726,24.1402652217262,0.00748821131218689,3126.38613861386,3118.74547593373,3026.55733356161,3.71640140707644,11218.6194791742,3852.57626561145,0,11218.6194791742,24.2210012743848,24.2210012743848,0.154005870884121,24.2008433821555,24.9,1015.1,39.08,37.8777760742732 +45964,2873.71593504951,456.329070792079,55.6930693069307,24.7417128712871,25.4839642574257,5.4249702970297,3.36168316831683,851.440594059406,1367.34653465347,1127.80693069307,20,40,10,32,5305600.72775808,395766.065030888,0,0,0,0,0,0,0,24.7417128712871,14763.7805172714,10.8499405940594,5.81861861964998,6.03469689555981,3.36168316831683,3.37632337724668,2.5909608367122,1.13250312568213,0.89848758873849,0.919178147835859,24.7674029191218,0.00576016254783607,2495.15346534653,2499.50229389276,2495.11461606451,3.63762399652745,8988.71457818862,2466.02186956935,0,8988.71457818862,24.7346372904617,24.7346372904617,0.0985660447232793,24.6414307657579,24.9,1015.1,39.14,36.4997099979184 +45965,2873.71596920792,456.334655742574,45,25.0139603960396,25.7643792079208,5.35415841584158,3.35673267326733,871.663366336634,1122.80495049505,910.703960396039,20,40,10,32,5305600.66537754,395773.023547062,0,0,0,0,0,0,0,25.0139603960396,14770.6897971119,10.7083168316832,5.74266846548983,5.99003712973543,3.35673267326733,3.37137288219718,2.57514942288343,1.27419017273906,1.01089703854816,0.974391346388931,25.3556595193196,0.0129603657326312,2033.50891089109,1980.737966866,1501.10207095379,3.5980331212329,7419.57343037644,2044.17084903109,0,7419.57343037644,25.0139834329967,25.0139834329967,0.0815960308902223,24.9799704264307,24.9,1015.1,39.2,35.9739310393414 +45966,2873.71610990099,456.340288217822,45,25.3382475247525,26.098394950495,5.65577227722772,3.44841584158416,883.683168316832,221.365346534654,126.776237623762,20,40,10,32,5305600.7992749,395780.044830097,0,0,0,0,0,0,0,25.3382475247524,14777.6842963143,11.3115445544554,6.06616812239428,6.26522196436521,3.44841584158416,3.46305605051401,2.66557655932309,1.07578148937349,0.853486665491102,0.860267677126499,25.7053013859732,-0.00324009143315779,348.141584158416,364.754014312323,382.676893395384,3.5519819110431,1283.74018326445,676.851647663772,0,1283.74018326445,25.2910212724242,25.2910212724242,0.0271174394667112,25.07933484142,24.9,1015.1,39.26,39.3856153307708 +45967,2873.71621663367,456.345878712871,45,25.0388316831683,25.7899966336634,5.74658415841584,3.47336633663366,879.886138613861,-617.567326732673,-651.411881188119,20,40,10,32,5305600.87121883,395787.012680372,0,0,0,0,0,0,0,25.0388316831683,14784.6943871284,11.4931683168317,6.16356952255603,6.32529641207611,3.47336633663366,3.48800654556352,2.70125020198112,0.950384433273566,0.754001113517665,0.770710776809757,25.5948502691185,-0.00273607721022213,-1268.97920792079,-1212.17133614351,-1202.41325392065,3.59448838496841,-4669.43946905064,-2611.08542860937,0,-4669.43946905064,25.0568340358788,25.0568340358788,-0.104406975350997,24.8628584988622,24.9,1015.1,39.32,40.1615863421824 +45968,2873.71624940594,456.35140980198,55.6930693069307,24.6764455445545,25.4167389108911,5.5209603960396,3.42574257425743,874.485148514852,-1300.64158415842,-1160.97623762376,20,40,10,32,5305600.80750746,395793.904052407,0,0,0,0,0,0,0,24.6764455445544,14791.6070968919,11.0419207920792,5.92157398102898,6.1125835597558,3.42574257425743,3.44038278318728,2.65013451251786,1.03708940325102,0.822789744330283,0.796003478526332,25.4377418356263,0.016128455133941,-2461.61782178218,-2600.33001666503,-2830.20402300633,3.64753426321454,-9210.53337941545,-7076.41783792745,0,-9210.53337941545,24.5775650426428,24.5775650426428,-0.283281050877364,23.7940367362567,24.9,1015.1,39.38,37.4801040488107 +45969,2873.71610217822,456.356700693069,84.2079207920792,22.4242772277228,23.0970055445545,5.33903960396039,3.5,1003.92574257426,-2588.17821782178,-2226.66732673267,20,40,10.8316831683168,32,5305600.41578517,395800.490181076,0,0,0,0,0,0,0,22.4242772277227,14798.2042113033,10.6780792079208,5.72645259784406,5.82859243854871,3.5,3.51464020892985,2.74193864788985,0.710982431539566,0.564068103710217,0.598310040049389,29.203016089083,0.0324729163634258,-4814.84554455445,-4737.40160768552,-3922.44778047589,4.02064826301912,-22501.7408345814,-21427.3074073196,0,-22501.7408345814,22.391833251642,22.391833251642,-0.85760791425677,21.8463603649904,24.9,1015.1,39.44,34.1291142814896 +45970,2873.71584079208,456.361268613861,100.247524752475,19.1985544554455,19.7745110891089,4.58093069306931,3.48594059405941,956.292079207921,-3089.6396039604,-2647.41089108911,20,40,11,32,5305599.82886998,395806.171862542,0,0,0,0,0,0,0,19.1985544554455,14803.9780796751,9.16186138613862,4.91333356066727,4.99859317416838,3.48594059405941,3.50058080298926,2.73257047386829,0.589124537660856,0.467390396817456,0.478099241812618,27.817408988201,-0.0397451215800689,-5737.0504950495,-5366.11718458975,-3170.5809373082,4.69854484389264,-29895.5578250654,-20612.9819107493,0,-29895.5578250654,19.2264557396334,19.2264557396334,-0.823774085329322,19.8880896644846,24.9,1015.1,39.4924257425743,25.0677185398368 +45971,2873.71549376238,456.36519039604,114.504950495049,16.898495049505,17.4054499009901,3.9230099009901,3.5,932.262376237624,-2266.29504950495,-1884.87128712871,20,40,11,32,5305599.09785064,395811.045762789,0,0,0,0,0,0,0,16.8984950495049,14808.9448402637,7.8460198019802,4.20767252264409,4.30690051128913,3.5,3.51464020892985,2.72759267880599,0.604976207123803,0.479966546013215,0.463259697826265,27.1184132630211,0.0346329773188644,-4151.16633663367,-4263.49175571023,-341.218229646756,5.32849798258355,-23973.0509445265,-10497.4585045912,0,-23973.0509445265,16.9606827761984,16.9606827761984,-0.420639588711348,18.8752348227743,24.9,1015.1,39.5,18.6267225468492 +45972,2873.71511851485,456.368821782178,103.811881188119,16.2498415841584,16.7373368316832,3.54788118811881,3.5,1117.35643564356,1336.00594059406,1665.10099009901,20,40,10.8118811881188,32,5305598.32109699,395815.556963654,0,0,0,0,0,0,0,16.2498415841584,14813.4974450492,7.09576237623763,3.80532360754066,3.95052993789659,3.5,3.51464020892985,2.69207218457138,0.790590479730206,0.627226289891737,0.626217017834421,32.5025812005472,0.0350649895099521,3001.10693069307,2876.60139202039,2737.64235140247,5.54084925245745,22017.0442054838,5843.03699019187,0,22017.0442054838,16.4200984217233,16.4200984217233,0.23283120391247,18.7423062870592,24.9,1015.1,39.5,15.6895668799822 +45973,2873.71482009901,456.372593366337,100.247524752475,18.3800792079208,18.9314815841584,4.08330693069307,3.5,1247.64356435644,3994.44653465347,4721.27623762376,20,40,10.1089108910891,32,5305597.68351279,395820.245384511,0,0,0,0,0,0,0,18.3800792079208,14818.2763045926,8.16661386138614,4.37960107351836,4.52825226716991,3.5,3.51464020892985,2.69675785950813,0.87337454458083,0.692904214417383,0.710857195520778,36.2924801488959,0.0520574690260685,8715.72277227723,8798.81589059895,6142.44174635777,4.90374050994721,61997.1669794332,16688.6193493373,0,61997.1669794332,18.3541038133516,18.3541038133516,0.666214641266107,19.3329553186988,24.9,1015.1,39.5,20.8252652260372 +45974,2873.71447336634,456.376914653465,112.722772277228,20.8882772277228,21.5149255445545,4.45733663366337,3.31435643564356,1183.29207920792,5484.13168316832,5709.51386138614,20,40,10.7623762376238,32,5305596.9440722,395825.616975839,0,0,0,0,0,0,0,20.8882772277228,14823.7173919414,8.91467326732673,4.78077123203457,4.99035749607597,3.31435643564356,3.32899664457342,2.54768577156395,1.16185737285084,0.921776201511158,0.898676807508464,34.4205713249129,-0.0551535563955304,11193.6455445545,11099.1856680718,9330.64777295277,4.31676006388095,66092.7986578343,20461.5065999127,0,66092.7986578343,20.9366117047348,20.9366117047348,0.819727641080937,21.2914630564353,24.9,1015.1,39.5,25.1667912477389 +45975,2873.71411940594,456.381915841584,103.811881188119,24.1716930693069,24.8968438613861,5.17519801980198,3.06970297029703,1222.59405940594,6474.14752475248,5496.95346534653,20,40,11,32,5305596.1759607,395831.835304323,0,0,0,0,0,0,0,24.1716930693069,14829.9734931515,10.350396039604,5.5507222914903,5.78955175039187,3.06970297029703,3.08434317922688,2.35764494545625,1.2684127081253,1.00631340417919,0.99249608152128,35.5638195865947,0.0652338408542435,11971.100990099,11529.1441819429,10629.2408545388,3.72956874881445,63379.7442031547,22677.4052881262,0,63379.7442031547,24.1560190177433,24.1560190177433,0.905848010543625,24.0255107767622,24.9,1015.1,39.5,33.9188030892298 +45976,2873.71385792079,456.387667227723,75.2970297029703,27.0036336633663,27.8137426732673,5.95871287128713,3.18623762376238,1708.90099009901,5046.50198019802,3942.67920792079,20,40,11,32,5305595.5622845,395838.991275162,0,0,0,0,0,0,0,27.0036336633663,14837.1140344056,11.9174257425743,6.39109078274635,6.61853125788305,3.18623762376238,3.20087783269223,2.46176289032506,1.24447365692577,0.987321014753339,1.00238751693436,49.7099147796979,0.160060516797995,8989.18118811882,9549.71611606705,10630.5801645514,3.33464640005776,59748.3090673399,17691.1256291073,0,59748.3090673399,27.0092278208018,27.0092278208018,0.703972377435761,26.9758594528783,24.9,1015.1,39.5,43.9995355967461 +45977,2873.7138549505,456.394011881188,45,29.8359405940594,30.7310188118812,6.37028712871287,3.17960396039604,1977.85148514851,6146.70495049505,4861.39801980198,20,40,11,32,5305595.41413734,395846.894944173,0,0,0,0,0,0,0,29.8359405940594,14844.9895649887,12.7405742574257,6.83252981494478,7.13124168629899,3.17960396039604,3.19424416932589,2.4358744930708,1.53878257528205,1.22081521393172,1.21406197206495,57.5333675521687,0.0201605689174263,11008.102970297,10708.5070385256,10440.2072465008,3.01928909669729,76572.4754616627,20518.4337945812,0,76572.4754616627,29.8079592196843,29.8079592196843,0.820227319761686,29.8360391941027,24.9,1015.1,39.5,51.0456486336958 +45978,2873.71425336634,456.400935247525,45,32.6684851485149,33.6485397029703,6.31944554455446,-0.301980198019802,1801.76732673267,6024.9702970297,4823.47425742574,20,40,11,32,5305595.99649597,395855.532954085,0,0,0,0,0,0,0,32.6684851485148,14853.6735058302,12.6388910891089,6.7779990485001,7.250501365509,-0.301980198019802,-0.287339989089943,-0.16673735075198,2.35193733893738,1.86594320192542,1.79737486604612,52.4112870105693,-0.0881304869818919,10848.4445544554,10932.1829624547,10834.1362361872,2.75713700207155,61969.557220615,20823.2415512123,0,61969.557220615,32.694020096069,32.694020096069,0.834843261553877,32.7320563485104,24.9,1015.1,39.5,52.9102045439998 +45979,2873.71523980198,456.408401287129,45,35.6947326732673,36.7655746534653,6.8666303630297,-1.75990099009901,1781.85643564356,6038.97821782178,4823.90297029703,20,40,11,32,5305597.65588316,395864.866643402,0,0,0,0,0,0,0,35.6947326732673,14863.1839367983,13.7332607260594,7.36488885597299,7.88993550860994,-1.75990099009901,-1.74526078116915,-1.27482551317564,2.60535823372126,2.06699830148921,2.18329471083449,51.8321026663844,0.0460092983508406,10862.8811881188,10803.9650622488,10475.3907874219,2.52256061253313,56783.4723387302,19330.6454536138,0,56783.4723387302,35.6784564258406,35.6784564258406,0.772360280582507,35.5911671689708,24.9,1015.1,39.5,62.9388605831267 +45980,2873.71688158416,456.416274059406,45,38.3363069306931,39.4863961386139,6.83382123211881,-0.917326732673267,1913.16831683168,5059.16732673267,4091.53366336634,20,40,11,32,5305600.52006971,395874.728910369,0,0,0,0,0,0,0,38.336306930693,14873.471838256,13.6676424642376,7.32969901905956,8.0133616323594,-0.917326732673267,-0.90268652374341,-0.630007120507863,3.36993365214565,2.6735851695785,2.42613128232364,55.6518104559182,0.0311768797901627,9150.70099009901,9217.62279188315,9508.25978836298,2.34853535054552,47832.990521937,16620.6553706157,0,47832.990521937,38.2862737966865,38.2862737966865,0.664237710899799,38.2096338373451,24.9,1015.1,39.4911633663366,65.0778499733709 +45981,2873.71920405941,456.424346534653,45,40.5483762376237,41.7648275247525,9.20388118811882,0.118613861386139,1618.93069306931,4973.04752475248,4020.48316831683,20,40,11,32,5305604.64066139,395884.862690915,0,0,0,0,0,0,0,40.5483762376237,14884.428983498,18.4077623762376,9.87173597679536,10.1569693854426,0.118613861386139,0.133254070315996,0.112318534597337,1.57421096947504,1.24892283831656,1.46364409588262,47.0927849260886,-0.137667884893282,8993.53069306931,9023.71720419567,8984.72148903766,2.22038447593302,37216.246545036,16259.4396031336,0,37216.246545036,40.5686523870208,40.5686523870208,0.652598056835396,40.5874160986657,24.9,1015.1,39.43,103.608368072651 +45982,2873.72217623762,456.432437821782,45,42.8853267326733,44.1718865346535,9.51479207920792,-0.156534653465347,1517.5198019802,4950.68613861386,3992.43762376238,20,40,11,32,5305609.96432025,395895.041600408,0,0,0,0,0,0,0,42.8853267326732,14896.0264885035,19.0295841584158,10.2052072772619,10.5553978638088,-0.156534653465347,-0.141894444535489,-0.108333293362894,1.83235464116406,1.45372482063715,1.63043668340844,44.142861681278,0.0294488310258119,8943.12376237624,8990.46322909519,8988.45237508124,2.09916850270915,33143.5180629999,16485.8589016864,0,33143.5180629999,42.9154777962944,42.9154777962944,0.65904214183794,42.9295942747621,24.9,1015.1,39.36,111.652766262403 +45983,2873.72564821782,456.440795742574,45,45.3010396039604,46.6600707920792,7.8376001099703,0.0797029702970297,1604.91584158416,4829.10891089109,3810.98217821782,20,40,11,32,5305616.20781016,395905.569343716,0,0,0,0,0,0,0,45.3010396039604,14908.2854077554,15.6752002199406,8.40631440106007,9.2668718219146,0.0797029702970297,0.0943431792268868,0.0705615922949966,4.21920149198572,3.34736398422985,3.11777928020031,46.6851094217655,0.0301688513442914,8640.09108910891,8633.8991079306,8624.34981676514,1.98705495841936,32051.9773092273,16523.8413677165,0,32051.9773092273,45.313484364278,45.313484364278,0.660550708536191,45.3202243564883,24.9,1015.1,39.29,86.1379642904056 +45984,2873.72962762376,456.449347722772,45,47.7407128712871,49.1729342574258,8.44519801981188,-2.00960396039604,1688.0495049505,4579.97524752475,3676.54158415841,20,40,10.5940594059406,32,5305623.38688523,395916.355761495,0,0,0,0,0,0,0,47.7407128712871,14921.2106386135,16.8903960396238,9.05800101276379,9.92371805736061,-2.00960396039604,-1.99496375146618,-1.45791796619147,4.24963165508633,3.3715061903299,3.36439557689764,49.1033696634108,0.0139683941785025,8256.51683168317,8251.91671404764,8259.38106560332,1.88549618294788,30571.0160809075,15831.5620266761,0,30571.0160809075,47.7060506813057,47.7060506813057,0.633076550229286,47.6697230268354,24.9,1015.1,39.22,98.570681443577 +45985,2873.73402366337,456.458099504951,45,49.9333267326732,51.4313265346535,9.38265566555446,-0.691881188118812,1768.73762376238,4470.76237623763,3450.12079207921,20,40,11,32,5305631.33323987,395927.4049686,0,0,0,0,0,0,0,49.9333267326732,14934.773193619,18.7653113311089,10.0634827415094,10.8477926139492,-0.691881188118812,-0.677240979188955,-0.498701079459039,3.85774154948559,3.06059455746391,3.01991462891571,51.4504918975903,0.0227526420639525,7920.88316831683,7919.10134300558,7911.19831999628,1.80274938229198,29381.4202467931,15277.9932452073,0,29381.4202467931,49.9150298009998,49.9150298009998,0.610815660774005,49.905583087956,24.9,1015.1,39.15,118.237309253691 +45986,2873.73866920792,456.467150891089,45,52.0380891089109,53.5992317821782,10.3626798680099,-1.23435643564356,1842.71287128713,4071.21881188119,3364.07128712871,20,40,11,32,5305639.73505417,395938.835703479,0,0,0,0,0,0,0,52.0380891089108,14948.9411713693,20.7253597360198,11.1146197542295,11.8019225645634,-1.23435643564356,-1.21971622671371,-0.916120464539,3.44432686646561,2.73260609255616,2.74685145373768,53.6023446213981,0.0254887192741746,7435.2900990099,7442.35284776002,7435.58465628405,1.72978245881751,27573.2651572864,14416.2801612478,0,27573.2651572864,52.0369999019703,52.0369999019703,0.576310601357159,52.0296822720747,24.9,1015.1,39.08,140.527779972836 +45987,2873.74349455446,456.476543267327,45,54.0165742574258,55.6370714851485,12.3559504950495,-1.66762376237624,1914.15841584158,3742.43465346535,3260.16336633663,20,40,11,32,5305648.46228703,395950.697189696,0,0,0,0,0,0,0,54.0165742574257,14963.6812312978,24.711900990099,13.2525266826497,13.6117033715608,-1.66762376237624,-1.65298355344638,-1.28255012057551,1.92280404355886,1.52548415058302,1.71224715740043,55.6806112686574,0.0244086887964553,7002.59801980198,6978.23518282521,6915.62276632149,1.66634017149221,25986.2588020611,13155.6222313936,0,25986.2588020611,54.0191533183021,54.0191533183021,0.525898877016409,54.0095110740773,24.9,1015.1,39.01,185.589942048632 +45988,2873.74850089109,456.486225049505,45,55.8246336633663,57.4993726732673,12.7177101210891,-1.72386138613861,1893.01485148515,3334.66633663366,2998.06633663366,20,40,11,32,5305657.5183003,395962.925203362,0,0,0,0,0,0,0,55.8246336633662,14978.9462173539,25.4354202421782,13.640536419231,14.0229660168052,-1.72386138613861,-1.70922117720876,-1.32857045274927,2.0974638066134,1.66405297728006,1.53867154966398,55.0655699126122,-0.119955385058686,6332.73267326733,6370.95774924027,6534.30312768094,1.61231435027755,22377.9359045062,11823.5274637322,0,22377.9359045062,55.8228184491716,55.8228184491716,0.474328497206152,55.8166511390623,24.9,1015.1,38.94,197.606455994371 +45989,2873.75365930693,456.496227128713,45,57.5856039603961,59.3131720792079,13.9507920792079,-2.61663366336634,1474.88613861386,3487.00693069307,3205.76633663366,20,40,11,32,5305666.84884976,395975.557257051,0,0,0,0,0,0,0,57.585603960396,14994.6939524474,27.9015841584158,14.9630936404185,15.1726038620875,-2.61663366336634,-2.60199345443648,-2.03878570029024,1.4415421602978,1.14366813680158,1.1462522947947,42.9026986847289,-0.0212405993951455,6692.77326732673,6671.88202137046,6593.29516257723,1.56304146234495,17957.0950495455,12525.3051378006,0,17957.0950495455,57.5804656406234,57.5804656406234,0.501225370061757,57.5770411532741,24.9,1015.1,38.87,230.485094398751 +45990,2873.75900752475,456.506552970297,45,59.3500396039604,61.1305407920792,14.9062376237624,-2.50128712871287,1507.34158415842,3395.97524752475,3090.24752475248,20,40,11,32,5305676.52373569,395988.598923186,0,0,0,0,0,0,0,59.3500396039603,15010.9387077279,29.8124752475248,15.9878685112874,16.0868922780816,-2.50128712871287,-2.48664691978302,-1.96197907712855,1.20518440112506,0.956150320468098,0.959772224057011,43.8467893263193,0.0229686481594963,6486.22277227723,6488.1885599451,6489.31267425802,1.51655703695653,17249.6983020153,12171.9532720017,0,17249.6983020153,59.3493969218703,59.3493969218703,0.486658443072029,59.3485917818583,24.9,1015.1,38.820198019802,259.162741592979 +45991,2873.76454920792,456.517146930693,45,61.0202574257426,62.8508651485149,15.6197326732673,-1.96574257425743,1554.82178217822,3334.8900990099,3014.21881188119,20,40,11,32,5305686.55099578,396001.98100358,0,0,0,0,0,0,0,61.0202574257425,15027.6659513748,31.2394653465346,16.7531364026804,16.7900104912896,-1.96574257425743,-1.95110236532757,-1.54332931601175,1.13517153748954,0.90060461149651,0.909392979464471,45.2279323012267,0.0167764734205726,6349.10891089109,6351.0250857759,6349.20120480619,1.47500519885085,16941.385414683,11508.2799220888,0,16941.385414683,61.0388221742966,61.0388221742966,0.460170026903688,61.0436552066065,24.9,1015.1,38.89,282.183286319567 +45992,2873.77022425743,456.528040990099,45,62.7078712871287,64.5891074257426,15.6712475247525,-2.67336633663366,1596.89108910891,3242.47821782178,2937.3396039604,20,40,11,32,5305696.81859056,396015.7413263,0,0,0,0,0,0,0,62.7078712871286,15044.8561137785,31.3424950495049,16.8083892902776,16.9303140214045,-2.67336633663366,-2.65872612770381,-2.09580435895938,1.31180672738083,1.04074067139145,1.04394990965942,46.4516788345144,0.0134643799555668,6179.81782178218,6177.74167238506,6179.6354473235,1.43529079356115,16479.8513007291,11191.5418253587,0,16479.8513007291,62.6982544848543,62.6982544848543,0.447532377000071,62.6943010435825,24.9,1015.1,38.98,286.937817640822 +45993,2873.77606158416,456.539206237624,45,64.3072772277228,66.2364955445544,16.0036930693069,-3.06188118811881,1634.9900990099,3154.21188118812,2872.23366336634,20,40,11,32,5305707.38072441,396029.844837773,0,0,0,0,0,0,0,64.3072772277227,15062.4975377884,32.0073861386138,17.1649578481965,17.304809519338,-3.06188118811881,-3.04724097918896,-2.39738744076324,1.40121751215553,1.11167599916023,1.11626824101223,47.5599341087181,0.00489613816566066,6026.44554455446,6028.54063327125,6027.31703581541,1.39959687385463,16044.9154633343,11014.8261657053,0,16044.9154633343,64.2995705323006,64.2995705323006,0.44054640612576,64.2945070216893,24.9,1015.1,39.07,299.878803547056 +45994,2873.78204623762,456.550642673268,45,65.8468514851485,67.822257029703,16.1979906491089,-2.55237623762376,1677.70297029703,3086.05445544554,2775.30495049505,20,40,11,32,5305718.20970635,396044.291035084,0,0,0,0,0,0,0,65.8468514851484,15080.5771180415,32.3959812982178,17.3733541072889,17.5588185960473,-2.55237623762376,-2.53773602869391,-1.98729992230727,1.59666373024738,1.26673605792663,1.22767209144866,48.8024011702863,0.0180725099938357,5861.35940594059,5865.43227134595,5867.1041498505,1.36686847269571,15639.6843878022,10727.9851448376,0,15639.6843878022,65.8484608371727,65.8484608371727,0.428946236207782,65.8494485242197,24.9,1015.1,39.16,309.073994525398 +45995,2873.78819693069,456.562341287129,45,67.3670693069307,69.3880813861386,16.8014257425743,-3.03861386138614,1714.38118811881,3021.89108910891,2711.82475247525,20,40,11,32,5305729.34040374,396059.069314925,0,0,0,0,0,0,0,67.3670693069306,15099.0839136685,33.6028514851485,18.0205758390853,18.1589206040171,-3.03861386138614,-3.02397365245629,-2.38309228703917,1.51559485945037,1.20241890719004,1.20910338330982,49.8693272782093,0.0113763210319762,5733.71584158416,5730.50599941182,5731.12292077829,1.33601371810103,15280.4276404102,10227.8951881225,0,15280.4276404102,67.3646191549847,67.3646191549847,0.409006742258386,67.3624641129776,24.9,1015.1,39.25,330.411878561474 +45996,2873.79449356436,456.574288910891,45,68.8122871287128,70.8766557425742,17.4472079207921,-1.50752475247525,1752.99504950495,2948.06732673267,2677.48712871287,20,40,11,32,5305740.7358842,396074.162598766,0,0,0,0,0,0,0,68.8122871287128,15118.0009094881,34.8944158415842,18.7132174575056,18.7919205046117,-1.50752475247525,-1.49288454354539,-1.17778837124131,1.26227439272822,1.00144348366863,1.01591921670952,50.9925589750373,0.0169924795161164,5625.55445544554,5629.42474267229,5630.16739955509,1.30795117534501,15007.3324679921,10034.789799923,0,15007.3324679921,68.8193693755513,68.8193693755513,0.4012283654108,68.8180858077174,24.9,1015.1,39.34,353.412815744702 +45997,2873.80093217822,456.586474752475,45,70.2501089108911,72.3576121782178,17.5052871287129,-1.1750495049505,1787.88613861386,2851.37821782178,2681.5504950495,20,40,11,32,5305752.38905625,396089.557306853,0,0,0,0,0,0,0,70.250108910891,15137.3181122384,35.0105742574257,18.7755110263399,18.923630920102,-1.1750495049505,-1.16040929602064,-0.91846577720152,1.4171507093734,1.12431682956903,1.1896991564436,52.007499615966,0.00086402438217541,5532.92871287128,5531.11362611509,5530.93394003564,1.28117713906559,14746.3616430064,9603.81799143514,0,14746.3616430064,70.2413886873835,70.2413886873835,0.384145345227586,70.238422235558,24.9,1015.1,39.43,358.364437409604 +45998,2873.80747653465,456.598929306931,45,71.6173663366337,73.7658873267326,16.647099009901,-1.53415841584158,1823.32673267327,2759.88118811881,2662.40099009901,20,40,11,32,5305764.23211383,396105.290214523,0,0,0,0,0,0,0,71.6173663366336,15157.0220544001,33.294198019802,17.8550508037254,18.2720141770622,-1.53415841584158,-1.51951820691173,-1.18048937295584,2.31517485160457,1.83677715562441,1.73579115278638,53.038424707965,0.010224288522409,5422.28217821782,5425.04056465052,5425.65523330475,1.25671994550016,14456.5395247621,9666.77533244004,0,14456.5395247621,71.61627291442,71.61627291442,0.38657293947217,71.6172460902782,24.9,1015.1,39.52,334.163901289973 +45999,2873.81412881188,456.611651584158,45,72.990396039604,75.1801079207921,16.254497249703,-2.33069306930693,1862.47524752475,2755.08514851485,2580.27524752475,20,40,11,32,5305776.26911668,396121.360157357,0,0,0,0,0,0,0,72.9903960396039,15177.11060363,32.5089944994059,17.4339609567918,18.0168501040352,-2.33069306930693,-2.31605286037708,-1.78047678917045,3.06518637374884,2.43180954783225,2.5237724668647,54.1772088436722,0.0125283535415435,5335.3603960396,5331.27525732771,5330.17480835268,1.23307309530704,14256.6508054372,9200.77607155597,0,14256.6508054372,72.9863898637388,72.9863898637388,0.367910553431576,72.98405203954,24.9,1015.1,39.61,325.401365341534 +46000,2873.82089534654,456.624616237624,45,74.2885544554456,76.5172110891089,16.7719449945545,-1.79277227722772,1889.36633663366,2710.64653465347,2503.63564356436,20,40,11,32,5305788.51237344,396137.735768832,0,0,0,0,0,0,0,74.2885544554454,15197.5678107807,33.5438899891089,17.9889559001811,18.5309152637737,-1.79277227722772,-1.77813206829787,-1.3870037755163,2.94166266418644,2.33381024218803,2.32975232355947,54.9594389176683,0.00194405485989467,5214.28217821782,5215.01922360553,5214.8406595205,1.21152446033733,13887.3615692929,9002.5677459603,0,13887.3615692929,74.2877549259876,74.2877549259876,0.360084523303831,74.2877756321085,24.9,1015.1,39.7050495049505,344.429324153111 +46001,2873.82778267327,456.637798514851,45,75.5520693069307,77.8186313861386,17.1992293730693,-2.48970297029703,1921.90594059406,2651.40297029703,2445.21782178218,20,40,11,32,5305800.97454593,396154.386429095,0,0,0,0,0,0,0,75.5520693069306,15218.3838154287,34.3984587461386,18.4472450159894,18.9673603341269,-2.48970297029703,-2.47506276136717,-1.91531662575672,2.80307159367141,2.22385702974746,2.12078605391491,55.9059776283415,0.00842423772621026,5096.62079207921,5091.1618860896,5091.68801610725,1.1912561152347,13576.7444763702,8467.96586710725,0,13576.7444763702,75.5495849426526,75.5495849426526,0.33863782417845,75.5487947801302,24.9,1015.1,39.83,360.394743260879 +46002,2873.83480178218,456.651175148515,45,76.7760099009901,79.0792901980198,17.7647326732673,-2.19673267326733,1951.57425742574,2611.00198019802,2364.08712871287,20,40,11,32,5305813.67651544,396171.28351689,0,0,0,0,0,0,0,76.77600990099,15239.540798432,35.5294653465347,19.0537825363529,19.5187277619737,-2.19673267326733,-2.18209246433747,-1.69066063211026,2.56380597789171,2.0340322236919,2.07899764232315,56.768993982071,0.00612017270707583,4975.08910891089,4960.97638466817,4958.85562325463,1.17226704577202,13243.3584313579,8502.29845563672,0,13243.3584313579,76.773469463778,76.773469463778,0.340033384526561,76.7725980367266,24.9,1015.1,39.96,381.388607871686 +46003,2873.84194178218,456.664767029703,45,77.9435346534654,80.2818406930693,17.9366331132673,-1.78415841584158,1856.65841584158,2611.4,2341.76930693069,20,40,11,32,5305826.59764191,396188.452689333,0,0,0,0,0,0,0,77.9435346534653,15261.0348868258,35.8732662265347,19.2381564676641,19.7318100023575,-1.78415841584158,-1.76951820691173,-1.36845546145878,2.70352584903029,2.14488098628806,2.11041597402782,54.0080040688295,-0.0711380074657755,4953.16930693069,4952.00475443584,4950.08585074561,1.1547007755689,12326.5446307637,8145.72674665783,0,12326.5446307637,77.9544294676992,77.9544294676992,0.326465814898326,77.9560711296547,24.9,1015.1,40.09,389.727170609636 +46004,2873.84918891089,456.678567029703,45,79.1434851485148,81.5177897029703,17.7946430143564,-1.20336633663366,1721.18316831683,2551.19405940594,2323.42673267327,20,40,11,32,5305839.71259478,396205.884603983,0,0,0,0,0,0,0,79.1434851485147,15282.8557437015,35.5892860287129,19.0858632405876,19.6803563931409,-1.20336633663366,-1.18872612770381,-0.916158002503219,3.12433849070481,2.47873872774116,2.50596148664834,50.0671888617274,7.20020318479482E-05,4874.62079207921,4897.55363199687,4902.75033466794,1.13719107065123,11101.7707712813,8039.35462348984,0,11101.7707712813,79.1432042936966,79.1432042936966,0.321573865307316,79.1418404412968,24.9,1015.1,40.22,387.718633437634 +46005,2873.85656069307,456.692547227723,45,80.278495049505,82.6868499009901,17.8032222221782,-0.912079207920792,1743,2533.02574257426,2286.69207920792,20,40,11,32,5305853.05446372,396223.545060699,0,0,0,0,0,0,0,80.2784950495049,15304.9995094881,35.6064444443564,19.0950649754618,19.7525847339147,-0.912079207920792,-0.897438998990934,-0.693077266631554,3.41156346692097,2.70661277987721,2.72910704912249,50.7018147704353,0.00230406501913443,4819.71782178218,4821.51754729928,4821.71054179563,1.1211120862809,10958.5149653709,7873.78168971778,0,10958.5149653709,80.2754052543867,80.2754052543867,0.314932359572603,80.2760469939841,24.9,1015.1,40.35,390.523462358745 +46006,2873.86407277228,456.706681881188,45,81.4126732673268,83.8550534653466,17.6239801982178,-0.774158415841584,1771.00495049505,2496.82673267327,2274.17227722772,20,40,11,32,5305866.65280461,396241.402509902,0,0,0,0,0,0,0,81.4126732673266,15327.459433223,35.2479603964356,18.9028167379718,19.6651000055844,-0.774158415841584,-0.759518206911726,-0.581672397666411,3.87736316446518,3.07616164697595,3.02729768935684,51.516445758763,0.00633617880261968,4770.99900990099,4768.02512498775,4767.7168865932,1.10549198325561,10868.2210578623,7657.65092815344,0,10868.2210578623,81.4070054896578,81.4070054896578,0.306254016490758,81.4057379711439,24.9,1015.1,40.48,386.723644734398 +46007,2873.87168960396,456.720999603961,45,82.5092079207921,84.9844841584158,18.2772909792079,-1.19613861386139,1794.05445544554,2414.05049504951,2200.16732673267,20,40,11,32,5305880.44113777,396259.491407771,0,0,0,0,0,0,0,82.509207920792,15350.2247545101,36.5545819584158,19.6035332518978,20.2837631643641,-1.19613861386139,-1.18149840493153,-0.908470643989334,3.52791936132742,2.7989253966197,2.84260360439414,52.1869286793311,0.0167764734205726,4614.21782178218,4411.7344672091,4391.16004178399,1.09080438061665,10506.4855434407,7109.36302645731,0,10506.4855434407,82.4916340554847,82.4916340554847,0.284236839525534,82.4889914615313,24.9,1015.1,40.61,411.756054359427 +46008,2873.87940623762,456.735486930693,45,83.2692673267327,85.7673453465347,18.2085385038614,-0.888514851485149,1807.35643564356,1329.59603960396,1208.08118811881,20,40,11,32,5305894.41059679,396277.794812676,0,0,0,0,0,0,0,83.2692673267325,15373.2668808852,36.4170770077228,19.5297919388039,20.2697554963904,-0.888514851485149,-0.87387464255529,-0.669930746661642,3.74990817071702,2.97504340066958,2.96728431297093,52.573867598482,-0.00223206298728648,2537.67722772277,2733.04031957651,2752.05938777364,1.08083353030624,5768.05870536455,3273.78099807629,0,5768.05870536455,83.2487751200861,83.2487751200861,0.130970275245342,83.2453172858569,24.9,1015.1,40.74,410.900163451062 +46009,2873.88715019802,456.750084851485,45,83.6108118811882,86.1191362376238,18.2478151817822,-1.76772277227723,1814.22277227723,1171.66732673267,1085.36435643564,20,40,11,32,5305908.42825557,396296.236802019,0,0,0,0,0,0,0,83.610811881188,15396.4449251371,36.4956303635644,19.5719186228142,20.3217619041335,-1.76772277227723,-1.75308256334737,-1.34441777544835,3.83851308573923,3.04533938011841,3.01300077932759,52.7736012348282,-0.00928826210838566,2257.03168316832,2267.79697088521,2269.32022678132,1.0764180875163,5128.55276156344,2393.45398845064,0,5128.55276156344,83.6154697578667,83.6154697578667,0.0958144081734933,83.6156649529738,24.9,1015.1,40.87,412.981388456701 +46010,2873.89495069307,456.764714257425,45,83.9272772277228,86.4450955445544,18.4508388337624,-2.51643564356436,1818.5099009901,1103.7603960396,1032.69702970297,20,40,11,32,5305922.54998917,396314.719803208,0,0,0,0,0,0,0,83.9272772277227,15419.7179004672,36.9016776675247,19.7896741379528,20.5126095253886,-2.51643564356436,-2.5017954346345,-1.92169509198794,3.72050160376305,2.9517132792453,2.96168899209246,52.8983087539889,0.0108003047771926,2136.45742574257,2136.10177433585,2135.88277967984,1.07235877970217,4847.98851237057,2031.71397947561,0,4847.98851237057,83.9284614253503,83.9284614253503,0.0811807665915142,83.9289388359395,24.9,1015.1,40.959603960396,420.836820411754 +46011,2873.90278811881,456.779383861386,45,84.2061089108911,86.7322921782178,18.503405390297,-1.35772277227723,1825.05445544554,973.99702970297,989.057425742574,20,40,11,32,5305936.73928973,396333.254015903,0,0,0,0,0,0,0,84.2061089108909,15443.0735274199,37.006810780594,19.8460550447369,20.5735145692786,-1.35772277227723,-1.34308256334737,-1.03340845456206,3.73746054854634,2.96516790118879,2.83967558959827,53.0886821261948,-0.000360010159239757,1963.05445544554,1955.46284677973,1954.88414916258,1.06880688698245,4455.48741252733,1535.34977174755,0,4455.48741252733,84.201605920988,84.201605920988,0.0614169090176242,84.2010998426944,24.9,1015.1,40.81,423.321052178271 +46012,2873.91062762376,456.794117524752,45,84.4378910891089,86.9710278217822,18.9809405938614,0.287524752475248,1827.34158415842,870.739603960396,880.735643564357,20,40,11,32,5305950.93106696,396351.86800268,0,0,0,0,0,0,0,84.4378910891088,15466.4939974419,37.9618811877228,20.3582413010412,20.9929728910891,0.287524752475248,0.302164961405106,0.227287078430074,3.36341521172422,2.66841367143092,2.76629800453774,53.1552120036223,0.00144004063695902,1751.47524752475,1752.96481717479,1753.51396608019,1.06587331048676,3969.40833658202,1321.82134603973,0,3969.40833658202,84.4154940692088,84.4154940692088,0.0528611029419858,84.4146291433681,24.9,1015.1,40.62,441.401760722837 +46013,2873.91847316832,456.808896435644,45,84.5664851485149,87.1034797029703,18.6543987894059,0.312376237623762,1832.4801980198,805.483168316832,816.792079207921,20,40,11,32,5305965.13307839,396370.53846152,0,0,0,0,0,0,0,84.5664851485147,15489.9665008247,37.3087975788119,20.0080048721821,20.722962846766,0.312376237623762,0.32701644655362,0.252347990718086,3.66845963966547,2.91042504102778,2.83375160344255,53.3046882217387,0.00612017270707583,1622.27524752475,1625.01897853152,1624.96445742839,1.06425227904194,3681.16092770204,1130.43121472032,0,3681.16092770204,84.5753394765218,84.5753394765218,0.0451671404764251,84.5753203047407,24.9,1015.1,40.43,429.540665727149 +46014,2873.92630415841,456.823729504951,45,84.7171188118812,87.2586323762376,19.9826787678218,-0.00851485148514842,1831.85148514851,759.20693069307,751.80198019802,20,40,11,32,5305979.30697806,396389.275806821,0,0,0,0,0,0,0,84.7171188118811,15513.4801651261,39.9653575356436,21.4326679009825,21.8617232687033,-0.00851485148514842,0.00612535744470914,0.00597751311751667,2.45596963787688,1.9484787175504,1.99285189868038,53.2863997056494,-0.00122403454141517,1511.00891089109,1504.93333986864,1504.66849599246,1.06235947436135,3421.46295044084,665.123351511958,0,3421.46295044084,84.7082718360944,84.7082718360944,0.026615037741419,84.708066289486,24.9,1015.1,40.24,478.293708289645 +46015,2873.93413128713,456.838613663366,45,84.7854851485149,87.3290497029703,21.1842277227723,1.40435643564356,1835.48514851485,670.754455445545,689.60297029703,20,40,11,32,5305993.47264242,396408.076570628,0,0,0,0,0,0,0,84.7854851485147,15537.0224324254,42.3684554455446,22.7214040117634,22.8883218300696,1.40435643564356,1.41899664457342,1.11967954459808,1.58769538321966,1.25962089125453,1.31963915269652,53.3920986884021,0.00734420724849099,1360.35742574257,1369.3579384427,1370.02719928975,1.06150311704063,3084.00058885835,513.096963071657,0,3084.00058885835,84.7888041368492,84.7888041368492,0.0204636800313584,84.7887445544554,24.9,1015.1,40.05,524.281219675718 +46016,2873.94194732673,456.853517326733,45,84.8320396039604,87.3770007920792,22.2283762376237,1.69613861386139,1836.83168316832,659.4855886,670.673889544555,20,40,11,32,5306007.61739006,396426.901169558,0.544554455445545,0.544554455445545,2889409.34681373,215880.441812351,3.46914332778395,0,0,84.8320396039603,15560.5827858082,44.4567524752475,23.841318344478,23.7791817188172,1.69613861386139,1.71077882279124,1.35849728926297,1.48024571699712,1.17437415830896,1.14067883742923,53.4312677937274,-0.00864024382175411,1330.15947814455,1333.17787799026,1333.35973349121,1.0609204205738,3016.09420309932,182.448222201628,0,3016.09420309932,84.8368475639642,84.8368475639642,0.00736855863803855,84.8368595002356,24.9,1015.1,39.86,565.900758420786 +46017,2873.94976980198,456.868423861386,45,84.8782277227723,87.4245745544554,21.9201386138614,1.31,1836.36633663366,658.387232545545,684.547307748515,20,40,11,32,5306021.77405489,396445.729466553,1,1,5306017.70314512,396449.045848622,24.4962022208332,0,0,84.8782277227722,15584.1526947466,43.8402772277228,23.5107142897641,23.5191075474618,1.31,1.32464020892986,1.04919755581378,1.45485741809317,1.15423198744242,1.16975573000836,53.41773141174,-0.0038161076879414,1342.93454029406,1343.23101739052,1343.25463801188,1.06034290490293,3042.61114655014,344.3360153229,0,3042.61114655014,84.8775879815703,84.8775879815703,0.0138044745068443,84.8775267326731,24.9,1015.1,39.67,553.489396273526 +46018,2873.95758326733,456.883342376238,45,84.8920891089109,87.4388517821782,22.8365049504951,1.95673267326733,1837.36633663366,674.057865889109,694.137594180198,20,40,11,32,5306035.91382293,396464.572294569,1,1,5306032.57059346,396467.29586912,48.0356216785564,0,0,84.8920891089107,15607.7337062428,45.6730099009901,24.4935742755002,24.2996576125269,1.95673267326733,1.97137288219718,1.57688457185227,1.69539478900386,1.34506575866125,1.37541303579147,53.4468202326065,0.00446412597457296,1368.19546006931,1367.43195176603,1367.37112230974,1.06016981045161,3101.01830522436,-62.1326144341113,0,3101.01830522436,84.9004576021957,84.9004576021957,-0.00252153928263534,84.900309570957,24.9,1015.1,39.48,590.816895896854 +46019,2873.96538287129,456.898292574257,45,84.9108415841584,87.4581668316832,22.5030594059406,1.84653465346535,1837.5099009901,690.594692996039,686.132864780198,20,40,11,32,5306050.0272674,396483.454035173,1,1,5306047.44659546,396485.55638935,71.5885840044321,0,0,84.9108415841583,15631.3177754122,45.0061188118812,24.1359331552813,24.0171744209141,1.84653465346535,1.8611748623952,1.49094458099063,1.65962690477776,1.31668879499219,1.27233286393099,53.4509963504537,0.000864024382175412,1376.72755777624,1375.60603008419,1375.51667687169,1.05993799849457,3119.92890039845,107.394513950571,0,3119.92890039845,84.8960686207233,84.8960686207233,0.00428879521615751,84.8963480433756,24.9,1015.1,39.29,577.496300436553 +46020,2873.97315772277,456.913261386139,45,84.9090891089109,87.4563617821782,22.2537524752475,2.01584158415842,1838.12376237624,692.793831277228,667.892630835644,20,40,11,32,5306064.09450661,396502.358046885,1,1,5306062.31507105,396503.807670809,95.1296298879522,0,0,84.9090891089107,15654.9043704067,44.5075049504951,23.8685359402712,23.8052460843099,2.01584158415842,2.03048179308827,1.6185367872072,1.47396013475441,1.1693874015354,1.19325558249149,53.468852854352,0.00864024382175411,1360.68646211287,1360.23804242615,1360.20231638905,1.0599576426478,3084.65052551585,140.843743221538,0,3084.65052551585,84.9156055288696,84.9156055288696,0.0055631800803859,84.9157077793492,24.9,1015.1,39.1252475247525,567.162846054024 +46021,2873.98098455446,456.928192277228,45,84.915594059406,87.4630618811882,21.5141386138614,1.78207920792079,1838.5297029703,678.633403145545,656.186879327722,20,40,11,32,5306078.258939,396521.216457597,1,1,5306077.19998886,396522.079135345,118.696708504953,0,0,84.9155940594058,15678.4922862208,43.0282772277228,23.0752539959315,23.1763621070788,1.78207920792079,1.79671941685065,1.42468185436155,1.59405958929163,1.26467002537007,1.27346569932042,53.4806611875751,-0.00576016254783607,1334.82028247327,1335.45724577681,1335.50799326889,1.05987621205985,3026.44821326491,113.22235203165,0,3026.44821326491,84.9274861288108,84.9274861288108,0.00457607641951214,84.9277972654407,24.9,1015.1,39.11,537.77909570313 +46022,2873.98881534654,456.943126138614,45,84.9594356435644,87.5082187128712,21.023801980198,2.50039603960396,1836.40099009901,661.132440918812,661.77782419703,20,40,11,32,5306092.43070166,396540.078606993,1,1,5306092.08966157,396540.356436593,142.27131548711,0,0,84.9594356435642,15702.0872957642,42.047603960396,22.5493374083159,22.7606995372468,2.50039603960396,2.51503624853381,1.98082277544166,1.90824722420494,1.51393528928241,1.46128521199787,53.4187394401859,-0.00907225601284181,1322.91026511584,1324.04699029221,1324.13755430324,1.05932947197835,2994.4369302072,157.005942638065,0,2994.4369302072,84.9580228408979,84.9580228408979,0.00635422453135898,84.9579020273455,24.9,1015.1,39.12,518.720887453439 +46023,2873.99666693069,456.958035544554,45,84.9695544554455,87.5186410891089,21.3204950495049,1.25851485148515,1838.4504950495,656.381248559406,679.525176526733,20,40,11,32,5306106.64158509,396558.910891691,1,1,5306106.98031617,396558.634943133,165.847477090612,0,0,84.9695544554454,15725.6881569303,42.6409900990099,22.8675592091496,23.0141863521324,1.25851485148515,1.27315506041501,1.00337264708908,1.57745729060366,1.25149835371867,1.28162379496234,53.4783571225559,0.0114483230638242,1335.90642508614,1336.4978122448,1336.54492864062,1.05920348190562,3026.86636454248,16.3173827175149,0,3026.86636454248,84.9687293402606,84.9687293402606,0.000559585661549474,84.9687130598773,24.9,1015.1,39.13,529.953629141642 +46024,2874.00449326733,456.972987524752,45,85.0157821782178,87.5662556435643,20.9021782178218,0.825742574257426,1839.90594059406,668.748050407921,693.112102420792,20,40,11,32,5306120.80481134,396577.795276647,1,1,5306121.87747178,396576.921429755,189.433931640305,0,0,85.0157821782178,15749.2958775023,41.8043564356436,22.4188883459972,22.6610877672327,0.825742574257426,0.840382783187283,0.667536814128941,1.88356802163065,1.49435569015362,1.52006569836216,53.5206943172825,-0.00554415645229222,1361.86015282871,1361.3624833476,1361.32283353132,1.05862735209614,3086.4530697065,313.453477500384,0,3086.4530697065,85.0007453190863,85.0007453190863,0.0125831890119647,85.0004033946251,24.9,1015.1,39.14,514.111077403136 +46025,2874.01231138614,456.987948712871,45,85.0306435643564,87.5815628712871,20.6207403739604,1.21623762376238,1839.10891089109,686.862865883168,690.046844875248,20,40,11,32,5306134.95267055,396596.690765486,1,1,5306136.77393454,396595.20706588,213.019289195059,0,0,85.0306435643563,15772.9101509072,41.2414807479208,22.1170287248555,22.4224128867486,1.21623762376238,1.23087783269223,0.97268070919109,2.14025002727646,1.69799803876643,1.72030316464454,53.4975096630275,-0.00482413613381271,1376.90971075842,1375.78053966164,1375.69057749142,1.05844297435544,3118.64815703441,332.765937184302,0,3118.64815703441,85.0389691206743,85.0389691206743,0.0133497260617337,85.0388606317773,24.9,1015.1,39.15,503.721118010728 +46026,2874.02015059406,457.002885346535,45,85.0337722772277,87.5847854455446,20.135105610495,0.0783168316831685,1840.95544554455,694.071017173267,673.147587546535,20,40,11,32,5306149.14020288,396615.55627601,1,1,5306151.67154388,396613.494109471,236.6064621406,0,0,85.0337722772276,15796.5343609457,40.2702112209901,21.5961551859542,22.0097548178681,0.0783168316831685,0.0929570406130247,0.0766847012652032,2.39962733038861,1.90377874026018,1.99819702592056,53.5512231787861,0.00799222553512254,1367.2186047198,1366.49608670203,1366.43852298224,1.05840334571779,3099.67565747625,-136.299187102311,0,3099.67565747625,85.0411494951474,85.0411494951474,-0.00551688832251681,85.0415900047146,24.9,1015.1,39.16,484.93767167379 +46027,2874.02795039604,457.017874554456,45,85.0542475247524,87.6058749504951,19.0930869087129,0.480990099009901,1840.47524752475,683.745363217822,657.951429681188,20,40,11,32,5306163.25362935,396634.485873116,1.89108910891089,1,5306166.57119897,396631.782969161,36.550622008033,0,0,85.0542475247523,15820.158343729,38.1861738174257,20.4785252104439,21.1240519316494,0.480990099009901,0.495630307939758,0.386310302999764,3.38891297852589,2.6886426902233,2.50317371770751,53.5372547846076,-0.00590416661153197,1341.69679289901,1342.04520769943,1342.0729662487,1.05814840492385,3040.29782250964,-127.893522994201,0,3040.29782250964,85.0413651602783,85.0413651602783,-0.00506758596649629,85.0410738330975,24.9,1015.1,39.17,446.659647305994 +46028,2874.03573930693,457.032868910892,45,85.043495049505,87.5947999009901,19.7223470847525,-0.769009900990099,1841.26237623762,665.379262660396,658.429648742574,20,40,11,32,5306177.34682795,396653.421429126,2,1,5306181.46628405,396650.065177816,32.7979760960627,0,0,85.0434950495049,15843.7791598456,39.444694169505,21.1534459522059,21.6589519286919,-0.769009900990099,-0.754369692060241,-0.598098548282861,2.83405402091868,2.24843738252476,2.39178761437418,53.5601514307352,-0.00403211378348525,1323.80891140297,1324.90792805827,1324.99548779432,1.05828226992622,3001.43884543289,-42.648771451394,0,3001.43884543289,85.0347373786883,85.0347373786883,-0.00167331089544896,85.034192173503,24.9,1015.1,39.18,469.934954933409 +46029,2874.04350247525,457.047893564356,45,85.0205841584158,87.5712016831684,18.6885154009901,0.139306930693069,1840.0099009901,655.858423645544,674.142572334654,20,40,11,32,5306191.39172771,396672.393776685,2,1,5306196.36013377,396668.345858958,56.3778417144105,0,0,85.0205841584158,15867.3968859732,37.3770308019802,20.0445970635737,20.777553430918,0.139306930693069,0.153947139622926,0.118048582002635,3.77322328176754,2.99354077823429,2.8972684627044,53.5237184026201,0.00604817067522787,1330.0009959802,1330.84018364449,1330.90704254975,1.05856766649509,3014.22714509916,91.0938260638785,0,3014.22714509916,85.0203418292324,85.0203418292324,0.00359441884781243,85.0205221122111,24.9,1015.1,39.19,431.758449788114 +46030,2874.05126455446,457.062928613862,45,85.0284851485148,87.5793397029703,18.6884504953465,-2.08970297029703,1839.32673267327,663.936261650495,690.643810964357,20,40,11,32,5306205.43443957,396691.378944854,2,1,5306211.25938867,396686.633174399,79.9662647756447,0,0,85.0284851485148,15891.0161380084,37.3769009906931,20.0445274482274,20.7780370436731,-2.08970297029703,-2.07506276136717,-1.59239532950778,3.76983569968005,2.99085319142555,3.01050132945151,53.5038458418301,0.00619217473892378,1354.58007261485,1354.38788602114,1354.37257432667,1.0584690771234,3068.50034217148,131.224975662129,0,3068.50034217148,85.033831487109,85.033831487109,0.00519829210644115,85.0340909005185,24.9,1015.1,39.2113613861386,431.766832439924 +46031,2874.05900574258,457.07799980198,45,85.0097821782178,87.5600756435644,18.6239180427723,-2.36940594059406,1840.41089108911,682.186049677228,692.762201939604,20,40,11,32,5306219.43770954,396710.408341915,2,1,5306226.16456597,396704.927758993,103.564064163233,0,0,85.0097821782177,15914.636164466,37.2478360855446,19.9753123724645,20.7217551955219,-2.36940594059406,-2.3547657316642,-1.8075976719001,3.84190306487704,3.04802886866138,3.01549091619937,53.5353827317795,-0.00324009143315779,1374.94825161683,1373.90138623175,1373.81798143858,1.05870200640171,3117.17555185267,-3.35215609512861,0,3117.17555185267,85.0320237231643,85.0320237231643,-0.000107560260985888,85.0326835454973,24.9,1015.1,39.3,429.398636961296 +46032,2874.06673584158,457.093086138614,45,85.0529009900991,87.604488019802,19.2042893289109,-2.05158415841584,1839.90594059406,693.829016766337,678.550106370297,20,40,11,32,5306233.42016263,396729.456147672,2,1,5306241.0704526,396723.223214211,127.162986550928,0,0,85.052900990099,15938.2588216992,38.4085786578218,20.597796734026,21.2180595695116,-2.05158415841584,-2.03694394948599,-1.5726358730012,3.29283063843259,2.61241438840843,2.69604843965168,53.5206943172825,-0.00165604673250287,1372.37912313663,1371.44006216741,1371.36524625785,1.05816577495315,3108.91501593643,105.077818054,0,3108.91501593643,85.0533007548279,85.0533007548279,0.00421663453475708,85.0534661008957,24.9,1015.1,39.4,450.601362267959 +46033,2874.07444970297,457.108164554456,45,85.0889405940593,87.6416088118812,18.7259092412871,-0.580891089108911,1839.74752475248,688.160672682178,661.074059372277,20,40,11,32,5306247.37277642,396748.493456506,2,1,5306255.9592943,396741.497748523,150.734923501226,0,0,85.0889405940593,15961.8895144385,37.4518184825743,20.0847042869316,20.8132232690459,-0.580891089108911,-0.566250880179053,-0.43408268593783,3.75333884958177,2.97776517892433,2.90571434078369,53.5160861872443,7.20020318479471E-05,1349.23473205446,1349.26684382446,1349.2694022007,1.0577172936455,3054.93179061662,122.723268519793,0,3054.93179061662,85.0806009214782,85.0806009214782,0.00490828785848875,85.0803351249409,24.9,1015.1,39.5,433.229455637387 +46034,2874.08220544555,457.123217227723,45,85.0693564356435,87.6214371287129,18.6303767887129,-2.10019801980198,1840.32178217822,670.392466816832,656.401457967327,20,40,11,32,5306261.40360405,396767.49999631,2,1,5306270.86427321,396759.792089606,174.332408788935,0,0,85.0693564356435,15985.5223636959,37.2607535774258,19.9822397798662,20.7312486059289,-2.10019801980198,-2.08555781087212,-1.60073297037662,3.82914632215433,3.03790812395952,3.04112543294424,53.532790658633,0.000864024382175408,1326.79392478416,1327.76768588349,1327.84526638629,1.05796117143304,3005.74616235928,-114.054655665169,0,3005.74616235928,85.0736613077148,85.0736613077148,-0.00456926880808902,85.0736628005657,24.9,1015.1,39.6,429.785226977056 +46035,2874.08997712871,457.138233366336,45,85.0639207920792,87.6158384158416,18.6288668876238,-0.567722772277228,1839.13366336634,656.860405716832,668.828270334654,20,40,11,32,5306275.46483476,396786.46146456,2,1,5306285.75931093,396778.074228887,197.91415523022,0,0,85.0639207920791,16009.1521158961,37.2577337752475,19.9806203168812,20.7293774205103,-0.567722772277228,-0.553082563347369,-0.424530889306939,3.8396156387665,3.04621410636725,3.04805186686482,53.498229683346,-0.000216006095543854,1325.68867605149,1326.7088150118,1326.79009048462,1.05802867766445,3001.510746644,-90.6526915057549,0,3001.510746644,85.0637810018624,85.0637810018624,-0.00362437233820038,85.0636272512964,24.9,1015.1,39.7,429.707572621239 +46036,2874.09775574257,457.153234356436,45,85.0565643564356,87.6082612871287,18.6413388343564,-1.00574257425743,1839.72277227723,660.005803944554,686.92934249901,20,40,11,32,5306289.53930224,396805.404201018,2,1,5306300.65045694,396796.351591495,221.489740340769,0,0,85.0565643564355,16032.7788376508,37.2826776687129,19.9939972567552,20.7394206819506,-1.00574257425743,-0.991102365327568,-0.760882610768972,3.83093323387271,3.03932579598596,3.02684830288898,53.5153661669258,-0.000288008127391801,1346.93514644356,1347.06375221233,1347.07399836012,1.05811971408396,3050.84291540232,-265.692522280365,0,3050.84291540232,85.0449722576217,85.0449722576217,-0.0106253199577335,85.0445670909947,24.9,1015.1,39.8,430.128256289613 +46037,2874.1055719802,457.168194554455,45,85.0414950495049,87.5927399009901,18.7892414743564,-0.224257425742574,1840.99504950495,657.812843467327,647.469744890099,20,40,11,32,5306303.68443161,396824.297281234,1.46534653465347,0.732673267326733,3887794.0742564,290733.665122572,177.223812096874,0,0,85.0414950495048,16056.3999324803,37.5784829487129,20.1526320525016,20.86521084528,-0.224257425742574,-0.209617216812717,-0.157959100387223,3.65060051826906,2.89625625106458,2.91125485070497,53.5523752112956,0.00712820115294714,1305.28258835743,1302.54278622134,1301.62446871583,1.05830725699261,2959.09386668892,-48.782621771141,0,2959.09386668892,85.0260947946279,85.0260947946279,-0.00200960690129194,85.0255261669023,24.9,1015.1,39.9,435.459231873122 +46038,2874.11343841584,457.183087029703,45,85.015396039604,87.5658579207922,19.8742937293069,0.48009900990099,1838.08415841584,622.344554455445,524.936633663366,20,40,11,32,5306317.92411398,396843.107577081,0,0,0,0,0,0,0,85.0153960396038,16080.0150758521,39.7485874586139,21.3164181947787,21.7870210037755,0.48009900990099,0.494739218830847,0.388768739970695,2.68536016261658,2.13046897857391,2.28164399820625,53.4677008218425,-0.00763221537588279,1147.28118811881,1149.3163034696,1150.22413382127,1.05863278106023,2597.40149956163,-32.0598458735619,0,2597.40149956163,85.0112509557885,85.0112509557885,-0.00121992397261287,85.0110342291371,24.9,1015.1,40,475.715140082682 +46039,2874.12133386139,457.197921683168,45,84.9686633663366,87.5177232673268,18.770693619703,0.0156435643564358,1837.78712871287,601.919801980198,553.161386138614,20,40,11,32,5306332.21888041,396861.846719179,0,0,0,0,0,0,0,84.9686633663365,16103.6263612757,37.541387239406,20.1327383228529,20.8444689064356,0.0156435643564358,0.0302837732862931,0.0254741180984509,3.68264248548292,2.92167720506246,2.77233594805979,53.4590605780207,-0.00475213410196476,1155.08118811881,1160.84574061367,1161.24652522395,1.05921476804095,2616.0767673268,210.679835114831,0,2616.0767673268,84.9914789726496,84.9914789726496,0.00846594560446276,84.9925350306458,24.9,1015.1,40.1,434.671123719502 +46040,2874.12925831683,457.212739405941,45,84.9598811881188,87.5086776237624,19.0061160618812,-0.0300990099009901,1840.57425742574,619.524752475247,620.025742574257,20,40,11,32,5306346.56781989,396880.56564028,0,0,0,0,0,0,0,84.9598811881187,16127.2352523648,38.0122321237624,20.3852435589261,21.044130519289,-0.0300990099009901,-0.0154588009711326,-0.0110277652977647,3.45635288225368,2.74214710456974,2.64753741242604,53.5401348658815,0.00993628039501722,1239.5504950495,1230.60178413881,1229.8318717586,1.05932583040294,2812.02588017676,-363.169829621166,0,2812.02588017676,84.9870906773844,84.9870906773844,-0.014607772658434,84.9878966525223,24.9,1015.1,40.1835891089109,443.091269201879 +46041,2874.13719960396,457.227539306931,45,85.0195148514852,87.5701002970297,19.865201870198,1.25722772277228,1840.86138613861,593.624752475248,597.933663366337,20,40,11,32,5306360.94839385,396899.262827083,0,0,0,0,0,0,0,85.019514851485,16150.8435596805,39.730403740396,21.3066666094609,21.7788754474825,1.25722772277228,1.27186793170214,0.993040096696567,2.75317523715361,2.18427104005979,2.24751267316195,53.5484871015759,-0.00266407517837418,1191.55841584158,1199.23913341829,1199.72559170203,1.05858308000619,2701.66973007844,29.0377717555619,0,2701.66973007844,84.9989047152239,84.9989047152239,0.00118316287073145,84.9983806694954,24.9,1015.1,40.17,475.517753330826 +46042,2874.14508930693,457.242422574257,45,85.0270099009901,87.5778201980198,20.6288058305941,0.297227722772277,1840.71287128713,610.848514851485,630.752475247525,20,40,11,32,5306375.23162052,396918.062051679,0,0,0,0,0,0,0,85.02700990099,16174.4567277223,41.2576116611881,22.1256794295737,22.4290858618862,0.297227722772277,0.311867931702134,0.261713820138581,2.28412959575044,1.81214695687124,2.0108407797313,53.544166979665,-0.00964827226762542,1241.60099009901,1234.51425350456,1233.99730315889,1.05848809400593,2814.71821996004,383.894474479233,0,2814.71821996004,85.017152828154,85.017152828154,0.0154342166890004,85.0170843941536,24.9,1015.1,40.14,504.790997692708 +46043,2874.15293742574,457.257366633664,45,85.0621980198019,87.6140639603961,19.5756776679208,0.869108910891089,1840.0297029703,581.379207920792,598.880198019802,20,40,11,32,5306389.43652656,396936.935527444,0,0,0,0,0,0,0,85.0621980198018,16198.0797126233,39.1513553358416,20.9961338651375,21.5353859938308,0.869108910891089,0.883749119820947,0.688725096894215,3.00850905997354,2.38684378850203,2.2294951208889,53.5242944188749,0.0139683941785025,1180.25940594059,1180.38635427899,1180.51070249882,1.05804937348091,2673.36050544211,369.215306417224,0,2673.36050544211,85.0682427213017,85.0682427213017,0.0146540644163461,85.0682055634134,24.9,1015.1,40.11,464.917045067548 +46044,2874.16078336634,457.272316633663,45,85.1078613861387,87.6610972277228,21.3674554455446,0.490693069306931,1842.13861386139,552.779207920792,541.447524752475,20,40,11,32,5306403.63732634,396955.816237408,0,0,0,0,0,0,0,85.1078613861385,16221.7153824253,42.7349108910891,22.9179271595385,23.0622451855948,0.490693069306931,0.505333278236788,0.402131443531534,1.79596200103513,1.42485219791695,1.52562034152566,53.5856401500094,-0.0045361280064209,1094.22673267327,1096.59765709244,1096.67964167845,1.05748187293481,2480.15475124023,279.112229756261,0,2480.15475124023,85.1102459562787,85.1102459562787,0.0112012438867427,85.1103987741631,24.9,1015.1,40.08,532.771396929759 +46045,2874.16864772277,457.28724009901,45,85.1356831683168,87.6897536633664,20.3118696369307,-0.146732673267327,1842.84158415842,549.350495049505,507.062376237624,20,40,11,32,5306417.87288949,396974.66441299,0,0,0,0,0,0,0,85.1356831683167,16245.3620006046,40.6237392738614,21.7857456167194,22.1660988849352,-0.146732673267327,-0.132092464337469,-0.0983260753453196,2.41585912477781,1.91665646701512,1.73748450250291,53.6060887270542,-0.00799222553512255,1056.41287128713,1054.62582099794,1054.4440641207,1.05713677745744,2394.58147581696,72.542971156009,0,2394.58147581696,85.1431025389666,85.1431025389666,0.00296675707175235,85.1429365393681,24.9,1015.1,40.05,492.609158829941 +46046,2874.17652940594,457.302166633663,45,85.1589108910892,87.7136782178218,19.5361892192079,-1.49277227722772,1842.39108910891,508.866336633663,468.544554455445,20,40,11,32,5306432.14054005,396993.516891406,0,0,0,0,0,0,0,85.158910891089,16269.0136186739,39.0723784384158,20.9537800437594,21.5071916916568,-1.49277227722772,-1.47813206829787,-1.14296822251081,3.07111916691039,2.43651641433118,2.49215805489239,53.5929843572579,0.00547215442044427,977.410891089109,973.709391236154,973.701452145215,1.05684847156615,2214.19522353575,6.33067215758722,0,2214.19522353575,85.148151063621,85.148151063621,0.000208312910511538,85.1481059877415,24.9,1015.1,40.02,463.538928935509 +46047,2874.18441930693,457.317083267327,45,85.1367920792079,87.6908958415842,19.8203245322772,-1.10881188118812,1842.22772277228,457.454455445545,431.349504950495,20,40,11,32,5306446.4236935,397012.357215981,0,0,0,0,0,0,0,85.1367920792078,16292.6663605331,39.6406490645545,21.2585328686791,21.7477062648485,-1.10881188118812,-1.09417167225826,-0.845995204862935,2.73794080280569,2.17218458319035,2.24531207965506,53.5882322231559,-0.000360010159239759,888.803960396039,895.407254190766,895.94402640264,1.05712279572685,2013.95395804151,-189.425641550108,0,2013.95395804151,85.1363193804528,85.1363193804528,-0.00757414850395426,85.1361765205091,24.9,1015.1,39.99,473.675849844267 +46048,2874.19230564356,457.33198980198,45,85.1156336633664,87.6691026732673,19.3010539054455,-1.56960396039604,1841.09900990099,471.106930693069,455.148514851485,20,40,11,32,5306460.70052952,397031.184750531,0,0,0,0,0,0,0,85.1156336633662,16316.3113575079,38.6021078108911,20.7015827708003,21.3046440499799,-1.56960396039604,-1.55496375146618,-1.19176008710954,3.20793574266353,2.54506180591573,2.39659237116756,53.5553992966333,-0.00684019302555533,926.255445544555,927.014792667385,926.966713814238,1.05738549663598,2098.2554987033,-102.823901345809,0,2098.2554987033,85.1110354867169,85.1110354867169,-0.00405733642672023,85.1111048561998,24.9,1015.1,39.96,454.601958311447 +46049,2874.20017435644,457.346905049505,45,85.128504950495,87.6823600990099,19.0462442243564,-1.21950495049505,1841.71287128713,474.942574257426,490.973267326733,20,40,11,32,5306474.94458698,397050.022461514,0,0,0,0,0,0,0,85.1285049504949,16339.9542789875,38.0924884487129,20.4282835131686,21.0887218793785,-1.21950495049505,-1.20486474156519,-0.928179357356715,3.43005081941548,2.72127998598752,2.78984692803594,53.5732558005316,0.010224288522409,965.915841584158,957.891451818449,957.562329090052,1.05722531981053,2188.34876343987,75.6465471291045,0,2188.34876343987,85.1181723360454,85.1181723360454,0.00294224967049156,85.1178410183874,24.9,1015.1,39.93,445.050839707074 +46050,2874.20801693069,457.361853861386,45,85.1002574257426,87.6532651485148,18.7548575357426,-1.85257425742574,1840.82673267327,451.049504950495,464.725742574258,20,40,11,32,5306489.13954131,397068.901021291,0,0,0,0,0,0,0,85.1002574257425,16363.5974642736,37.5097150714852,20.1157531362161,20.8387204363131,-1.85257425742574,-1.83793404849589,-1.41234263749321,3.72179514604616,2.95273952955801,2.94045781005973,53.54747907313,-0.000144004063695899,915.775247524753,921.078276639545,921.425535124941,1.0575775516418,2074.37049364191,-140.196988234913,0,2074.37049364191,85.1056464072149,85.1056464072149,-0.00560674879366112,85.1055451202262,24.9,1015.1,39.8974752475248,434.306062982481 +46051,2874.21584524753,457.376822574258,45,85.0722376237623,87.6244047524752,19.8787211218812,-0.854554455445545,1838.82178217822,464.365346534654,470.372277227723,20,40,11,32,5306503.30770455,397087.803804353,0,0,0,0,0,0,0,85.0722376237622,16387.2328858632,39.7574422437624,21.3211668491415,21.7937986453046,-0.854554455445545,-0.839914246515687,-0.651217265316513,2.74131749601877,2.17486353115449,2.24289346937942,53.4891574273331,-0.00460813003826886,934.737623762377,938.505901382218,938.65194719472,1.05792611490894,2115.778748305,-155.644915125738,0,2115.778748305,85.0805225958238,85.0805225958238,-0.00618811881188729,85.0805983026873,24.9,1015.1,39.85,476.262371403744 +46052,2874.22365732673,457.391821584158,45,85.0556831683168,87.6073536633663,19.7570429047525,-0.838316831683168,1840.57425742574,503.718811881188,510.10198019802,20,40,11,32,5306517.445178,397106.743693959,0,0,0,0,0,0,0,85.0556831683167,16410.8622578654,39.5140858095049,21.1906593807083,21.6885511391217,-0.838316831683168,-0.82367662275331,-0.645801311449137,3.05428970904877,2.42316452269312,2.38053612056669,53.5401348658815,0.00691219505740328,1013.82079207921,1007.75504362317,1007.23821782178,1.05813079328607,2297.11637558164,-25.2403364870434,0,2297.11637558164,85.0608059994117,85.0608059994117,-0.00106607195373444,85.061165959453,24.9,1015.1,39.8,472.2247866275 +46053,2874.23145752475,457.406818217822,45,85.0722772277228,87.6244455445545,18.7001512650495,-1.79079207920792,1839.73762376238,493.2,500.283168316832,20,40,11,32,5306531.56075724,397125.680138466,0,0,0,0,0,0,0,85.0722772277227,16434.4920946916,37.400302530099,20.0570772526927,20.7907940662398,-1.79079207920792,-1.77615187027806,-1.36390204847723,3.76005889616781,2.98309662421255,2.98995754093311,53.5157981791169,-0.0002880081273918,993.483168316832,997.108028624645,997.403922677982,1.05792417233711,2249.65432196599,59.9182079827918,0,2249.65432196599,85.071388295265,85.071388295265,0.00239900227647013,85.0714324375294,24.9,1015.1,39.75,432.287017322286 +46054,2874.23926366337,457.421802178218,45,85.0971485148515,87.6500629702971,18.6380968090099,-0.797722772277228,1842,511.113861386139,488.353465346535,20,40,11,32,5306545.68768306,397144.60090137,0,0,0,0,0,0,0,85.0971485148514,16458.1250994771,37.2761936180198,19.9905199825927,20.7392637493452,-0.797722772277228,-0.78308256334737,-0.601066071964037,3.83426103594566,3.04196595546325,3.03257732441934,53.5816080362259,-0.0079202235032746,999.467326732673,1003.15821978237,1003.08134842056,1.057614939073,2265.65041990848,99.0342692929239,0,2265.65041990848,85.0904421135182,85.0904421135182,0.00402602141401678,85.0902027345591,24.9,1015.1,39.7,430.117170753657 +46055,2874.24707217822,457.436801881188,45,85.1010792079208,87.6541115841585,18.917801980198,-1.33069306930693,1840.21287128713,508.210891089109,491.00099009901,20,40,11,32,5306559.81872199,397163.54125765,0,0,0,0,0,0,0,85.1010792079207,16481.7641848457,37.8356039603961,20.2905212043466,20.9776724237472,-1.33069306930693,-1.31605286037707,-1.01129603105381,3.55471434201485,2.82018357864339,2.84256513829438,53.5296225692317,0.00381610768794139,999.211881188119,991.856759141261,991.28008486563,1.05756611116966,2262.56939906937,282.314142616859,0,2262.56939906937,85.1039050093127,85.1039050093127,0.0112611508675576,85.1042535596416,24.9,1015.1,39.65,440.310253407085 +46056,2874.25486564356,457.451827722772,45,85.1073861386138,87.6606077227723,21.334400990198,-1.92792079207921,1841.90099009901,456.8,437.441584158416,20,40,11,32,5306573.921365,397182.51358034,0,0,0,0,0,0,0,85.1073861386137,16505.4077042901,42.6688019803961,22.8824741968842,23.0338094387501,-1.92792079207921,-1.91328058314935,-1.50418787760318,2.25873033565316,1.79199608978484,1.77155627311441,53.578727954952,0.00079202235032746,894.241584158416,899.532585040682,900.071230551627,1.05748835963351,2026.41893309984,-295.185855273303,0,2026.41893309984,85.1137831585138,85.1137831585138,-0.0118139289176312,85.1136286657236,24.9,1015.1,39.6,533.057164813704 +46057,2874.26266524753,457.466838316832,45,85.1068514851485,87.660057029703,21.972099009901,-2.25237623762376,1841.54455445545,463.793069306931,428.554455445545,20,40,11,32,5306588.03577851,397201.467021635,0,0,0,0,0,0,0,85.1068514851484,16529.0451727995,43.944198019802,23.5664450516535,23.5764451202569,-2.25237623762376,-2.23773602869391,-1.77529615667916,1.60041574704798,1.26971277423904,1.34445771574729,53.5683596623659,-0.0100082824268652,892.347524752475,894.54225075973,893.435106082037,1.0574943881523,2021.70542802857,-24.1231306093322,0,2021.70542802857,85.0981593961375,85.0981593961375,-0.000883627966775745,85.0977392739273,24.9,1015.1,39.55,556.492068491118 +46058,2874.27047287129,457.481818316831,45,85.0458217821782,87.5971964356436,20.0449664466337,-1.95009900990099,1833.72772277228,12.0663366336633,-22.9405940594058,20,40,11,32,5306602.16578756,397220.382529253,0,0,0,0,0,0,0,85.0458217821781,16552.6812594606,40.0899328932673,21.4994753170357,21.9333214464924,-1.95009900990099,-1.93545880097113,-1.50914051925705,2.51536650495745,1.99560207347906,1.9147353119269,53.3409772457901,0.00309608736946189,-10.8742574257426,-37.3462797764926,-40.4825553983971,1.05825386614885,-18.8726565603268,-1913.61196742832,0,-18.8726565603268,85.0009181452797,85.0009181452797,-0.0765692905924362,84.9988371522865,24.9,1015.1,39.5,481.760361051322 +46059,2874.27827128713,457.496727524752,45,84.4576237623762,86.9913524752475,20.4950539055445,-1.90089108910891,1824.09405940594,-674.186138613861,-679.647524752475,20,40,11,32,5306616.28037178,397239.209467895,0,0,0,0,0,0,0,84.4576237623761,16576.2335949117,40.9901078110891,21.9822221572025,22.2826911437337,-1.90089108910891,-1.88625088017905,-1.4592166533042,2.48251312445062,1.96953737311392,2.04998127360937,53.0607453378378,0.00237606705098239,-1353.83366336634,-1324.35862170375,-1320.59553419961,1.06562940927352,-3062.20484348562,-4704.8122381139,0,-3062.20484348562,84.4693019311831,84.4693019311831,-0.188211395396943,84.4694449884774,24.9,1015.1,39.45,498.892535286207 +46060,2874.2859839604,457.511556435644,45,83.7365346534653,86.2486306930693,20.0204807480198,-2.10940594059406,1804.33168316832,-1084.9099009901,-1056.89900990099,20,40,11,32,5306630.23797248,397257.93347517,0,0,0,0,0,0,0,83.7365346534652,16599.5975415014,40.0409614960396,21.4732128798113,21.8371229998666,-2.10940594059406,-2.0947657316642,-1.62685047012018,2.51564504863464,1.99582306009817,2.00683611232884,52.4858811155638,-0.011736331191216,-2141.80891089109,-2609.84321144986,-2658.48140416974,1.07481092129026,-4829.01931215697,-6998.0799284664,0,-4829.01931215697,83.7073559454954,83.7073559454954,-0.279828230347786,83.7012240690072,24.9,1015.1,39.4063118811882,478.605286280972 +46061,2874.29361693069,457.526178316832,45,81.9779108910891,84.4372482178218,18.7314917494059,-0.953564356435644,1751.91089108911,-4140.42178217822,-3849.26534653465,20,40,11,32,5306644.05258651,397276.396906298,0,0,0,0,0,0,0,81.977910891089,16622.6609216169,37.4629834988119,20.0906918746797,20.6396961507284,-0.953564356435644,-0.938924147505786,-0.711299308107272,3.03333610116299,2.40654067751537,2.35702583523934,50.9610220850879,-0.0174244917072041,-7989.68712871287,-7522.26007254191,-7460.92560791604,1.09798540424163,-17880.9446578734,-17865.7287174971,0,-17880.9446578734,81.9282912459562,81.9282912459562,-0.714488775610232,81.9219457519434,24.9,1015.1,39.4000000000001,427.070381672717 +46062,2874.3010570297,457.540320594059,45,79.1873762376238,81.5629975247525,18.6412893291089,-2.73653465346535,1693.07425742574,-4329.96435643564,-3921.09207920792,20,40,11,32,5306657.52062823,397294.256540689,0,0,0,0,0,0,0,79.1873762376236,16645.0351235145,37.2825786582178,19.9939441592931,20.4025109116614,-2.73653465346535,-2.72189444453549,-2.12008385877323,2.48085921339518,1.96822521906994,1.96588637932778,49.2495337880621,-0.0200885668855783,-8251.05643564357,-8261.31918439369,-8262.99802673729,1.13666263982108,-18473.888575583,-18934.7222793119,0,-18473.888575583,79.186490540143,79.186490540143,-0.757226960319791,79.1873190761068,24.9,1015.1,39.4000000000001,417.055640715159 +46063,2874.30823574257,457.554006237624,45,76.4704356435644,78.7645487128713,19.9731782178218,-2.89792079207921,1634.82178217822,-4294.05148514852,-3933.32475247525,20,40,11,32,5306670.51466968,397311.538736294,0,0,0,0,0,0,0,76.4704356435643,16666.6496856157,39.9463564356436,21.4224779692225,21.3799748022417,-2.89792079207921,-2.88328058314935,-2.29039313848054,1.74301687481704,1.38284742308466,1.32942064516964,47.5550379705524,-0.0149764226243738,-8227.37623762376,-8227.46415057347,-8228.69345937767,1.17704961554329,-18418.891282462,-18682.456857825,0,-18418.891282462,76.4786156259189,76.4786156259189,-0.747177564291081,76.4786475154361,24.9,1015.1,39.4000000000001,458.184410654041 +46064,2874.31515960396,457.567206534653,45,73.7538712871287,75.9664874257426,19.4652772277228,-2.18792079207921,1578.19801980198,-4296.19405940594,-3962.97326732673,20,40,11,32,5306683.04744663,397328.207954881,0,0,0,0,0,0,0,73.7538712871286,16687.5136707918,38.9305544554456,20.8777225150688,20.7926749872817,-2.18792079207921,-2.17328058314935,-1.72571627299923,1.48438684772881,1.1776595837364,1.19477347388706,45.9079194899987,-0.0150484246562217,-8259.16732673267,-8261.09517694343,-8260.86271373106,1.22042581006064,-18507.9036679178,-18951.6453568387,0,-18507.9036679178,73.7637808058032,73.7637808058032,-0.757944482567069,73.7651848193918,24.9,1015.1,39.4000000000001,433.006933173071 +46065,2874.32182287129,457.579922970297,45,71.0554257425743,73.1870885148515,18.5917425742574,-2.18465346534653,1520.61386138614,-4342.2,-3953.76930693069,20,40,11,32,5306695.10828371,397344.265864902,0,0,0,0,0,0,0,71.0554257425742,16707.6234258798,37.1834851485149,19.9408021779481,19.8942615392466,-2.18465346534653,-2.17001325641668,-1.72615644016722,1.56702580020204,1.24322238127731,1.2635841083578,44.232864221088,-0.011736331191216,-8295.96930693069,-8288.49838251153,-8286.58229464036,1.26679203278721,-18593.0735348899,-18788.6496870117,0,-18593.0735348899,71.051433486913,71.051433486913,-0.751451382762041,71.053769356586,24.9,1015.1,39.4000000000001,396.959016523907 +46066,2874.32823148515,457.592198019802,45,68.3709900990099,70.4221198019802,18.2789108910891,-2.54217821782178,1461.33168316832,-4192.88811881188,-3803.8198019802,20,40,11,32,5306706.70723875,397359.765572513,0,0,0,0,0,0,0,68.3709900990098,16726.9836290426,36.5578217821782,19.605270708311,19.4740018067515,-2.54217821782178,-2.52753800889193,-2.01675727497845,1.39618193528898,1.10768095207018,1.08414835361834,42.5084155583295,-0.0259927334971103,-7996.70792079208,-7731.04626017057,-7531.56412028986,1.31654020463578,-17896.8940900312,-17881.9062949165,0,-17896.8940900312,68.3865727869816,68.3865727869816,-0.715066061061545,68.4008815785035,24.9,1015.1,39.4000000000001,379.615238819657 +46067,2874.33443683168,457.603998217822,45,66.3612178217822,68.3520543564357,17.7352475247525,-2.53079207920792,1454.15841584158,-1489.35346534653,-1397.08811881188,20,40,11,32,5306717.94023373,397374.667097239,0,0,0,0,0,0,0,66.3612178217821,16745.6511367708,35.470495049505,19.0221578776436,18.8960314510377,-2.53079207920792,-2.51615187027807,-2.00995889636639,1.37736832381785,1.09275490372397,1.09217047636981,42.2997536700342,0.00165604673250288,-2886.44158415842,-3061.83139888246,-3209.35029259972,1.35624832852614,-6560.7299699194,-7852.53448594711,0,-6560.7299699194,66.42350122537,66.42350122537,-0.314114084675804,66.4830844795454,24.9,1015.1,39.4000000000001,357.38578117468 +46068,2874.34052178218,457.615601485149,45,65.8898910891089,67.8665878217822,17.4350198019802,-2.40544554455446,1428.14851485149,172.945544554455,146.619801980198,20,40,11,32,5306728.95461391,397389.319322475,0,0,0,0,0,0,0,65.8898910891088,16763.9961266223,34.8700396039604,18.700144940759,18.6137401927643,-2.40544554455446,-2.3908053356246,-1.90680033764944,1.2602185968891,0.999812488570647,1.02724361565647,41.5431563193759,0.00252007111467828,319.565346534654,238.073100676404,164.804444605044,1.36591790040138,725.531472112729,-607.002687986739,0,725.531472112729,65.9120838153121,65.9120838153121,-0.024300449846968,65.9302277227722,24.9,1015.1,39.4000000000001,346.787370193812 +46069,2874.34663277228,457.627138712871,45,65.9429702970297,67.9212594059406,17.6708811881188,-3.24544554455446,1425.87128712871,512.325742574258,486.825742574258,20,40,11,32,5306740.01872779,397403.890098078,0,0,0,0,0,0,0,65.9429702970296,16782.303883553,35.3417623762376,18.953120971576,18.817171683978,-3.24544554455446,-3.2308053356246,-2.57936057403065,1.35796359006669,1.07735988004341,1.04654239268239,41.4769144500758,-0.0101522864905611,999.151485148515,991.435761199882,979.316130664161,1.36481594209228,2262.35601880217,560.06575036519,0,2262.35601880217,65.9478501127339,65.9478501127339,0.0224855406332886,65.9478686854086,24.9,1015.1,39.4000000000001,354.346878625733 +46070,2874.35274940594,457.638695643565,45,66.031099009901,68.012031980198,17.5698613861386,-2.8560396039604,1428.9900990099,498.264356435643,486.629702970297,20,40,11,32,5306751.09289538,397418.485543321,0,0,0,0,0,0,0,66.0310990099009,16800.6338399337,35.1397227722772,18.8447709404105,18.7364725950303,-2.8560396039604,-2.84139939503054,-2.26511708718998,1.275073047098,1.01159747957647,1.01990979912455,41.5676370102042,0.0080642275669705,984.894059405941,991.903881972356,994.813153140131,1.36299451675039,2232.12105823996,655.958686221222,0,2232.12105823996,66.0364874031956,66.0364874031956,0.0261725429968587,66.0362890800028,24.9,1015.1,39.4075742574258,351.30992463607 +46071,2874.35885287129,457.650291683168,45,66.1172772277228,68.1007955445545,17.2856831683168,-3.36207920792079,1431.66336633663,535.779207920792,498.545544554455,20,40,11,32,5306762.14184095,397433.129208132,0,0,0,0,0,0,0,66.1172772277227,16818.9898611933,34.5713663366337,18.5399720974708,18.4992273984833,-3.36207920792079,-3.34743899899094,-2.65999463423742,1.27189939310582,1.00907961568872,1.01699863545101,41.6453992046,-0.00187205282804672,1034.32475247525,1029.07058131556,1025.89166726892,1.36121854210974,2345.37342060119,551.001042745683,0,2345.37342060119,66.1205808254092,66.1205808254092,0.0220552995893743,66.1225218616751,24.9,1015.1,39.46,342.499009713125 +46072,2874.36500277228,457.661854257426,45,66.2072277227723,68.1934445544555,16.9132079207921,-3.36930693069307,1431.17821782178,513.153465346535,494.40396039604,20,40,11,32,5306773.27757891,397447.732665451,0,0,0,0,0,0,0,66.2072277227722,16837.3692297302,33.8264158415842,18.1404691892626,18.1873801377164,-3.36930693069307,-3.35466672176322,-2.65469903004299,1.30880136169682,1.03835632144532,1.03553378773164,41.6312868063578,-0.000648018286631562,1007.55742574257,990.155494559357,980.420712582207,1.35936899604065,2280.82270306817,595.603302314355,0,2280.82270306817,66.2064206450347,66.2064206450347,0.0238293631343274,66.2069552648695,24.9,1015.1,39.52,331.098954611639 +46073,2874.37115821782,457.673433465346,45,66.259,68.24677,16.7393267326733,-2.79623762376238,1431.92079207921,326.334653465347,314.195049504951,20,40,11,32,5306784.42325546,397462.356965695,0,0,0,0,0,0,0,66.2589999999999,16855.7706290976,33.4786534653466,17.9539707821932,18.0431654379735,-2.79623762376238,-2.78159741483252,-2.19641832769945,1.40818008106024,1.11719985300642,1.13020518466643,41.6528874159122,0.00352809956054959,640.529702970297,516.103146750319,453.468569776686,1.35830805073387,1450.27392288445,-330.413601433585,0,1450.27392288445,66.25025556318,66.25025556318,-0.0132448888453241,66.2394949772348,24.9,1015.1,39.58,326.137643950238 +46074,2874.37729841584,457.685008118812,45,65.9976237623763,67.9775524752475,16.0964752475247,-3.10831683168317,1423.99504950495,-497.609900990099,-489.549504950495,20,40,11,32,5306795.54082552,397476.975034998,0,0,0,0,0,0,0,65.9976237623762,16874.1525969744,32.1929504950495,17.2644725146722,17.4807805317902,-3.10831683168317,-3.09367662275332,-2.42682240134336,1.64077298652818,1.30173076868552,1.291075935863,41.4223369099351,-0.0155524388791574,-987.159405940594,-848.772659543182,-778.097759629978,1.36370531486351,-2231.26343426056,-3259.34671675594,0,-2231.26343426056,65.9877619841191,65.9877619841191,-0.130247306908921,65.9782399364023,24.9,1015.1,39.64,305.957862909078 +46075,2874.38338594059,457.696521089109,45,65.4831089108911,67.4476021782178,15.9244158415842,-3.5,1412.92574257426,-603.523762376238,-552.207920792079,20,40,11,32,5306806.56222789,397491.51448966,0,0,0,0,0,0,0,65.483108910891,16892.4110270624,31.8488316831683,17.0799280824861,17.3043524750474,-3.5,-3.48535979107015,-2.73149140669875,1.66812846379635,1.32343362870603,1.31382558282732,41.100343823511,-0.00194405485989467,-1155.73168316832,-1153.2643172238,-1151.17876707379,1.37441789174468,-2611.23810145984,-3980.23012008657,0,-2611.23810145984,65.4679063817272,65.4679063817272,-0.159193270812211,65.4609798366697,24.9,1015.1,39.7,299.816640041564 +46076,2874.38941138614,457.707954653465,45,64.9174059405941,66.8649281188119,16.3646336633663,-3.05980198019802,1399.12376237624,-609.992079207921,-552.959405940594,20,40,11,32,5306817.47043108,397505.952948156,0,0,0,0,0,0,0,64.9174059405939,16910.5156550877,32.7292673267327,17.5520891219532,17.6468010968796,-3.05980198019802,-3.04516177126817,-2.4028279825251,1.3496988549063,1.07080293393224,1.07504113228371,40.6988604939268,0.000144004063695898,-1162.95148514852,-1197.39174590726,-1239.10193751193,1.38638331360708,-2624.81475277445,-3625.70626534544,0,-2624.81475277445,64.9112069404959,64.9112069404959,-0.145029354420592,64.9071615281309,24.9,1015.1,39.76,311.751133262567 +46077,2874.39535940594,457.719312277228,45,64.2386930693069,66.1658538613861,16.7632277227723,-3.30633663366337,1381.04455445545,-1794.32178217822,-1602.86138613861,20,40,11,32,5306828.23693057,397520.294222877,0,0,0,0,0,0,0,64.2386930693068,16928.4653405387,33.5264554455446,17.979606083108,17.9469309125762,-3.30633663366337,-3.29169642473351,-2.61627256060636,1.26364852881589,1.00253367423147,1.00844926496217,40.1729576533094,-0.00655218489816353,-3397.18316831683,-3454.52735025978,-3433.8388476074,1.40105299777709,-7628.9747597368,-8453.00910266086,0,-7628.9747597368,64.1577601215567,64.1577601215567,-0.338067346338595,64.1036615118269,24.9,1015.1,39.82,322.390064520655 +46078,2874.40118445545,457.730471287129,45,62.5098118811881,64.3851062376237,15.6074752475248,-3.31742574257426,1346.4702970297,-2005.43663366337,-1813.47821782178,20,40,11,32,5306838.78007498,397534.384032012,0,0,0,0,0,0,0,62.509811881188,16946.0763016498,31.2149504950495,16.7399895499329,16.8643663179891,-3.31742574257426,-3.3027855336444,-2.6026728729296,1.35307485351417,1.07348133082139,1.07416878762908,39.1672332724572,-0.00403211378348525,-3818.91485148515,-3677.42530144104,-3608.70678524041,1.43984160644854,-8592.69821311142,-9845.57227652683,0,-8592.69821311142,62.5847655131849,62.5847655131849,-0.393790369135917,62.6481589353291,24.9,1015.1,39.88,284.74524171289 +46079,2874.40688316832,457.741413960396,45,61.7617425742574,63.6145948514851,15.7379603960396,-3.15623762376238,1329.82178217822,-1068.55049504951,-972.403960396039,20,40,11,32,5306849.09401898,397548.200194638,0,0,0,0,0,0,0,61.7617425742574,16963.3116854782,31.4759207920792,16.8799430009503,16.9326592059789,-3.15623762376238,-3.14159741483252,-2.48240669163122,1.26811436607949,1.00607671024054,1.02707803801268,38.6829476062479,-0.0134643799555668,-2040.95445544554,-2538.38520733262,-2923.44242403551,1.45721800435551,-4592.89655051596,-5682.58797522449,0,-4592.89655051596,61.7067719831389,61.7067719831389,-0.22719450162839,61.6492030044383,24.9,1015.1,39.94,287.089823902786 +46080,2874.4124950495,457.752201386138,45,59.9594554455445,61.7582391089109,15.0306237623762,-3.45366336633663,1282.4801980198,-4202.39108910891,-3711.98910891089,20,40,11,32,5306859.2505864,397561.820097431,0,0,0,0,0,0,0,59.9594554455444,16980.2742831955,30.0612475247525,16.1212803942172,16.2272128740585,-3.45366336633663,-3.43902315740678,-2.7112442761644,1.28890261966885,1.02256936921694,1.00215488378517,37.305836745124,-0.0036721036242455,-7914.3801980198,-6963.72430153907,-6201.88506989567,1.5013252266444,-17724.2354363412,-17354.4174993498,0,-17724.2354363412,59.9543229095186,59.9543229095186,-0.694147632585038,59.9480631617328,24.9,1015.1,39.9924257425743,263.632411324363 +46081,2874.41787594059,457.762593861386,45,57.9341683168317,59.6721933663366,14.3458514851485,-3.20257425742574,1411.31188118812,-1945.49504950495,-1737.01485148515,20,40,11,32,5306868.98804495,397574.940461741,0,0,0,0,0,0,0,57.9341683168316,16996.5986724694,28.691702970297,15.3868194655226,15.5287327337408,-3.20257425742574,-3.18793404849589,-2.50788341516792,1.26316729582948,1.00215188114342,0.980833220656855,41.0533984987462,0.0466573166374722,-3682.5099009901,-4520.49007940398,-5343.07906151158,1.55352492433804,-9320.59811575156,-10270.5099246677,0,-9320.59811575156,57.9365179884324,57.9365179884324,-0.411227385114742,57.9411101173383,24.9,1015.1,40,241.398829098942 +46082,2874.42310940594,457.772693465346,45,55.9695940594059,57.6486818811881,14.4173069306931,-2.69653465346535,1398.4504950495,-4449.95445544555,-4027.87128712871,20,40,11,32,5306878.45892452,397587.691175907,0,0,0,0,0,0,0,55.9695940594059,17012.4625742846,28.8346138613861,15.4634598825491,15.4771114609191,-2.69653465346535,-2.68189444453549,-2.12603660086525,1.08640807125358,0.861917416553462,0.875725831241575,40.6792759412642,-0.0193685465670988,-8477.82574257426,-8096.36608175669,-7647.81292514013,1.60840223782876,-22183.2064521502,-19040.0091502223,0,-22183.2064521502,55.9257227722771,55.9257227722771,-0.761417725931009,55.8587681831964,24.9,1015.1,40,239.837611694215 +46083,2874.42809207921,457.782306336634,45,52.9543069306931,54.5429361386138,13.7276633663366,-2.70613861386139,1325.14851485149,-4587.35049504951,-4029.2504950495,20,40,11,32,5306887.47603807,397599.827399769,0,0,0,0,0,0,0,52.954306930693,17027.5880753022,27.4553267326733,14.7237741949273,14.7175260806667,-2.70613861386139,-2.69149840493153,-2.13517863000173,0.971778052837542,0.77097404826771,0.784060458080669,38.547007770119,-0.0150484246562217,-8616.60099009901,-8506.61939025586,-8357.46923547608,1.70005571800069,-22580.7804445179,-20227.4638544529,0,-22580.7804445179,52.9758552102735,52.9758552102735,-0.808956638238073,53.0072872816654,24.9,1015.1,40,216.893867136748 +46084,2874.43278019802,457.791416336634,45,50.3093465346535,51.8186269306931,13.3120198019802,-2.70663366336634,1260.82673267327,-3990.1099009901,-3417.88415841584,20,40,11,32,5306895.95867548,397611.327600368,0,0,0,0,0,0,0,50.3093465346534,17041.9123696642,26.6240396039604,14.2779705775276,14.212161072529,-2.70663366336634,-2.69199345443648,-2.14242408067904,0.997534865840917,0.791408585077532,0.799533439962227,36.6759629705181,-0.019080538439707,-7407.99405940594,-7649.73877070875,-8095.79202479581,1.78928930259972,-19435.4494467866,-17703.7554519612,0,-19435.4494467866,50.2987829624546,50.2987829624546,-0.707969806881684,50.275876588116,24.9,1015.1,40,202.26050619162 +46085,2874.43723415841,457.800108019802,45,47.4211881188119,48.8438237623762,12.4731683168317,-2.82574257425743,1183.59900990099,-5077.15247524752,-4469.72277227723,20,40,11,32,5306904.01683854,397622.299077401,0,0,0,0,0,0,0,47.4211881188118,17055.5079553077,24.9463366336634,13.3782500991908,13.3326043415135,-2.82574257425743,-2.81110236532757,-2.23714439710116,0.909561586202593,0.721613722614751,0.713677004865315,34.4294995768621,-0.029304826962116,-9546.87524752475,-9514.78797176748,-9476.38067073991,1.89879686682363,-24951.0287347825,-24039.6344606426,0,-24951.0287347825,47.3739997059111,47.3739997059111,-0.961309621061117,47.2411667651128,24.9,1015.1,40,178.157942777101 +46086,2874.44136178218,457.808198811881,45,43.3163168316832,44.6158063366337,11.3294158415842,-2.70732673267327,1176.87128712871,-6514.43762376238,-5626.77425742574,20,40,11,32,5306911.48381314,397632.511419112,0,0,0,0,0,0,0,43.3163168316831,17068.1372403737,22.6588316831683,12.1515043136167,12.1242659894729,-2.70732673267327,-2.69268652374341,-2.14112209657874,0.84592771451889,0.671128878348429,0.67850833921223,34.2337980542993,0.0658098571090271,-12141.2118811881,-12033.6928242329,-11464.4794362432,2.08008118336618,-35040.1970761461,-33562.625242255,0,-35040.1970761461,43.2511375355357,43.2511375355357,-1.34324249256608,43.0981384321402,24.9,1015.1,40,147.411674149405 +46087,2874.44499039604,457.815505445545,45,38.1782673267327,39.3236153465347,10.0733861386139,-2.47613861386139,1328.50495049505,-6054.51485148515,-5033.29405940594,20,40,11,32,5306918.04379433,397641.730706817,0,0,0,0,0,0,0,38.1782673267326,17079.4416510173,20.1467722772277,10.8043342064296,10.760685405577,-2.47613861386139,-2.46149840493153,-1.95651697143025,0.843147442807469,0.668923109932092,0.657044238271324,38.6446425253048,-0.0268567578792857,-11087.8089108911,-11090.5889030487,-11023.4058626554,2.36041012234358,-40338.7740100356,-30462.4620176375,0,-40338.7740100356,38.2982933045779,38.2982933045779,-1.21814310143886,38.6449923489876,24.9,1015.1,40,116.320095617573 +46088,2874.44804554455,457.822230495049,45,34.8277524752475,35.872585049505,8.84380198019802,-2.59792079207921,1215.48514851485,-5106.59405940594,-4098.20396039604,20,40,11,32,5306923.55438391,397650.206796144,0,0,0,0,0,0,0,34.8277524752475,17089.5438028325,17.687603960396,9.4855285933367,9.52225549521019,-2.59792079207921,-2.58328058314935,-2.03948271102753,0.808758934450284,0.64164049388143,0.763610712417656,35.3570297511274,-0.0369370423379988,-9204.79801980198,-9368.29228507009,-10116.2127758612,2.58608784793663,-33641.1373368598,-21880.2816139777,0,-33641.1373368598,34.7939826487599,34.7939826487599,-0.874724972497248,34.7855906870174,24.9,1015.1,40,91.1081650313237 +46089,2874.45048980198,457.828663861386,45,31.4071386138614,32.3493527722772,6.14347524752475,-3.0860396039604,1150.69801980198,-6100.67920792079,-4978.26732673267,20,40,11,32,5306927.93984772,397658.2995193,0,0,0,0,0,0,0,31.4071386138614,17098.749757673,12.2869504950495,6.58925994197209,7.02844865840064,-3.0860396039604,-3.07139939503054,-2.27704559792722,2.20785338871774,1.75163213463297,1.57408928148133,33.4724485695391,0.0485293694655189,-11078.9465346535,-10301.5858935399,-8118.72743163131,2.8691045191905,-42394.7833940883,-24292.0562305014,0,-42394.7833940883,31.4050182335065,31.4050182335065,-0.972445511877918,31.6466126994796,24.9,1015.1,40,50.7051040871013 +46090,2874.45218108911,457.834774653465,45,28.6896831683168,29.5503736633663,5.06338613861386,-1.94267326732673,1424.90099009901,-2074.61485148515,-1639.09207920792,20,40,11,32,5306930.9376866,397665.965740039,0,0,0,0,0,0,0,28.6896831683168,17107.0261869084,10.1267722772277,5.43079708302685,5.95363311654063,-1.94267326732673,-1.92803305839688,-1.45350656291112,2.58200763519204,2.04847276942457,1.9854844958326,41.4486896535914,0.0270007619429816,-3713.70693069307,-4344.1703460445,-6046.92290425472,3.13729457922723,-19146.3431198299,-9731.65695039226,0,-19146.3431198299,28.7957328693265,28.7957328693265,-0.389737117276084,29.3476104211442,24.9,1015.1,39.9949504950495,36.5357385404148 +46091,2874.45318,457.840876039604,45,27.738297029703,28.5704459405941,4.93832673267327,-1.92960396039604,1393.14356435644,-1703.22178217822,-1420.96336633663,20,40,10.8811881188119,32,5306932.65322175,397673.597488511,0,0,0,0,0,0,0,27.7382970297029,17114.869113311,9.87665346534653,5.29666307894452,5.79264872157038,-1.92960396039604,-1.91496375146619,-1.35870573432248,2.44234275431251,1.93766763413869,2.17744350216161,40.5249035849822,-0.0162724591976369,-3124.18514851485,-3294.03533967258,-4648.3836752795,3.24509541391814,-16430.5193729577,-7745.05094609671,0,-16430.5193729577,27.7298101166552,27.7298101166552,-0.309494439542966,27.623044326854,24.9,1015.1,39.96,34.133081463738 +46092,2874.4536040594,457.846895544554,45,26.4434851485148,27.2367897029703,4.16775247524753,-0.376831683168317,1321.58910891089,-3127.5099009901,-2665.18316831683,20,40,10.7128712871287,32,5306933.30575075,397681.108367301,0,0,0,0,0,0,0,26.4434851485148,17122.4063492571,8.33550495049505,4.47017418101722,5.0628946566425,-0.376831683168317,-0.36219147423846,-0.336201699316308,2.89981925162363,2.30061317102277,2.07534533946317,38.4434688483216,-0.0273607721022213,-5792.69306930693,-5641.64217233604,-5303.14227368906,3.40479858282087,-30316.7033395358,-12332.1836953808,0,-30316.7033395358,26.379835212234,26.379835212234,-0.492771678157913,26.0611992977747,24.9,1015.1,39.92,26.5485380982038 +46093,2874.45383960396,457.85253029703,45,24.2141881188119,24.9406137623762,4.70963366336634,-3.24960396039604,1213.03465346535,-4130.59900990099,-3487.83069306931,20,40,10.8415841584158,32,5306933.61759299,397688.133863878,0,0,0,0,0,0,0,24.2141881188118,17129.4491620184,9.41926732673267,5.05137551451623,5.39585038262476,-3.24960396039604,-3.23496375146619,-2.40761728773592,1.72946960755769,1.37209950440981,1.38626717590069,35.2857477395979,-0.0100082824268652,-7618.4297029703,-7250.90035290658,-5390.46500562055,3.71942534361506,-39941.1316124913,-15458.5717519692,0,-39941.1316124913,24.2337464954416,24.2337464954416,-0.618167881144554,24.2579379452742,24.9,1015.1,39.88,29.5334194952931 +46094,2874.45439683168,457.857594851485,45,22.1133069306931,22.7767061386139,5.56316831683168,-3.34683168316832,1335.86138613861,-2225.95346534654,-2339.50198019802,20,40,10.5049504950495,32,5306934.53790699,397694.459778247,0,0,0,0,0,0,0,22.1133069306931,17135.8771102307,11.1263366336634,5.96684460563534,6.00153356965316,-3.34683168316832,-3.33219147423846,-2.63005947759661,0.6957400098933,0.551975310003145,0.653238399333135,38.8586325639569,0.0446412597457296,-4565.45544554456,-4862.64466228801,-4371.30830873734,4.07289709458741,-28441.6336928195,-12736.3605444547,0,-28441.6336928195,22.1632995784727,22.1632995784727,-0.510427899225563,22.5325752523388,24.9,1015.1,39.84,36.2032910603671 +46095,2874.45546217822,457.862092475247,45,20.7115247524752,21.3328704950495,5.16437623762376,-3.5,1324.20297029703,-1010.32376237624,-1283.40099009901,20,40,11,32,5306936.41196193,397700.096302282,0,0,0,0,0,0,0,20.7115247524752,17141.8046815728,10.3287524752475,5.53911525590626,5.58179329505288,-3.5,-3.48535979107015,-2.74189311201174,0.630719862424695,0.500390643971163,0.491094407913681,38.5195029939531,-0.0313208838538586,-2293.72475247525,-2272.03803548672,-2245.40006713424,4.3467913691404,-15360.4211266253,-8183.67780486509,0,-15360.4211266253,20.7138954024115,20.7138954024115,-0.326589713426788,21.2629777891156,24.9,1015.1,39.8,31.3630074717863 +46096,2874.45704356436,457.865955346535,45,19.8667623762376,20.4627652475248,4.98152475247525,-3.5,1256.74752475248,597.095049504951,404.127722772277,20,40,10.8118811881188,32,5306939.25592564,397704.959226176,0,0,0,0,0,0,0,19.8667623762376,17147.4128624859,9.9630495049505,5.34299564642225,5.37777118530726,-3.5,-3.48535979107015,-2.74633824342083,0.538422554382787,0.427165251591183,0.428746631156223,36.5573036220327,-0.0108003047771926,1001.22277227723,904.205254386824,-151.653755163353,4.53039731138036,6657.66474440859,-1371.44978413603,0,6657.66474440859,19.924497010097,19.924497010097,-0.0545970438628016,20.6106796538794,24.9,1015.1,39.76,29.0200243609296 +46097,2874.45914732673,457.869108613861,45,20.214396039604,20.8208279207921,5.09914851485149,-3.5,1251.93069306931,1121.05247524752,907.874257425743,20,40,10.9207920792079,32,5306943.08318688,397708.955533827,0,0,0,0,0,0,0,20.2143960396039,17152.9668351206,10.198297029703,5.46915445954062,5.49778669804679,-3.5,-3.48535979107015,-2.74855330565719,0.572173823715374,0.453942304927114,0.451001094291493,36.4171876680566,-0.000720020318479506,2028.92673267327,2180.76299382413,872.883582057501,4.45251801795672,13188.4965118738,3002.7540633546,0,13188.4965118738,20.1912750710714,20.1912750710714,0.120127111721073,20.4755148126171,24.9,1015.1,39.72,30.3862200271157 +46098,2874.46174722772,457.871353960396,45,20.6587425742574,21.2785048514851,5.84746534653465,-3.5,1125.05445544554,1407.97128712871,1158.16336633663,20,40,11,32,5306947.84952215,397711.837371847,0,0,0,0,0,0,0,20.6587425742574,17158.63350363,11.6949306930693,6.27177088171958,6.15997896099842,-3.5,-3.48535979107015,-2.80750054776842,0.73950212641385,0.58669461245713,0.595578061165583,32.7265075195943,-0.0713540135613193,2566.13465346535,2281.72458582492,896.829989983927,4.35731613020143,14634.8576479503,4933.7562768403,0,14634.8576479503,20.6925130869522,20.6925130869522,0.198817654042634,20.6125940472259,24.9,1015.1,39.68,38.1433501091366 +46099,2874.46475069307,457.872522079208,45,21.2782574257426,21.9166051485148,6.32061386138614,-3.5,970.940594059406,-174.340594059406,-357.891089108911,20,40,10.8217821782178,32,5306953.38718897,397713.390839954,0,0,0,0,0,0,0,21.2782574257425,17164.4822213968,12.6412277227723,6.77925214108832,6.59808797599473,-3.5,-3.48535979107015,-2.83187669236484,0.975094653986464,0.773605321331356,0.744739470546316,28.2435170126772,-0.0112323169682803,-532.231683168317,-377.754612292912,65.1184211760581,4.22995329591597,-2454.3681221792,59.2956913256659,0,-2454.3681221792,21.2212971277325,21.2212971277325,0.00256919256281798,20.7373806264902,24.9,1015.1,39.64,43.6887123429946 +46100,2874.46780821782,457.872453465346,45,20.8373267326733,21.4624465346535,6.15005940594059,-3.5,948.440594059406,-772.359405940594,-980.628712871287,20,40,10.8316831683168,32,5306959.05230392,397713.405808865,0,0,0,0,0,0,0,20.8373267326732,17170.3406398786,12.3001188118812,6.59632186206668,6.42768559863156,-3.5,-3.48535979107015,-2.82925068096176,0.912332977622674,0.723812445724658,0.730354974863585,27.5890185431793,-0.0118083332230639,-1752.98811881188,-1782.93919223605,-550.088952873561,4.31951332517954,-8356.04331054743,-3995.17608687328,0,-8356.04331054743,20.8240186256249,20.8240186256249,-0.159604450544061,20.648579212069,24.9,1015.1,39.6012623762376,41.423280543327 +46101,2874.4706870297,457.871084455446,45,20.2696336633663,20.8777226732673,5.8249900990099,-3.5,920.371287128713,-764.290099009901,-969.216831683168,20,40,11,32,5306964.41509772,397711.795349011,0,0,0,0,0,0,0,20.2696336633663,17176.0416115233,11.6499801980198,6.24766477853956,6.11854413007145,-3.5,-3.48535979107015,-2.81511808723309,0.782941034763759,0.621157493075878,0.62725480397805,26.7725155020236,-0.00540015238859631,-1733.50693069307,-1640.58056072934,-510.972198975797,4.44021917518948,-8246.31311025179,-3399.0906718918,0,-8246.31311025179,20.2706450348005,20.2706450348005,-0.13587175549238,20.449689738427,24.9,1015.1,39.57,37.6104875228805 +46102,2874.47317376238,457.868594554456,45,19.8415643564356,20.4368112871287,5.54319801980198,-3.5,901.995049504951,218.7,69.7633663366335,20,40,11,32,5306969.07637884,397708.776017932,0,0,0,0,0,0,0,19.8415643564356,17181.6097771724,11.086396039604,5.94542521791988,5.85423094749567,-3.5,-3.48535979107015,-2.80187189004117,0.609950349884877,0.483912853475057,0.524865945764509,26.2379724175844,-0.004392123942725,288.463366336634,234.576178805999,795.024193842194,4.5361288634047,1368.22874015458,-162.851061932499,0,1368.22874015458,19.9271627291442,19.9271627291442,-0.00644000043568722,20.2894439629096,24.9,1015.1,39.54,34.3922200508521 +46103,2874.47504564356,457.865104950495,45,20.166603960396,20.7716020792079,5.97704950495049,-3.5,898.89603960396,1372.50495049505,1120.0900990099,20,40,10.8910891089109,32,5306972.62082126,397704.491431964,0,0,0,0,0,0,0,20.166603960396,17187.1693746696,11.954099009901,6.41075796472406,6.24201850861045,-3.5,-3.48535979107015,-2.83096672260913,0.912002312239788,0.723550107603189,0.689112146857998,26.1478258737108,0.00576016254783606,2492.59504950495,2547.10987158122,2719.09955227119,4.46291556524207,11677.4591881073,1539.54415699108,0,11677.4591881073,20.1383392804627,20.1383392804627,0.0614877081767555,20.4820454873613,24.9,1015.1,39.51,39.0853264182192 +46104,2874.47611821782,457.86088960396,45,20.5989504950495,21.216919009901,6.16137623762376,-3.5,924.292079207921,2900.6594059406,2440.17722772277,20,40,11,32,5306974.70070124,397699.276730879,0,0,0,0,0,0,0,20.5989504950495,17192.803198322,12.3227524752475,6.60845986908641,6.42364659178649,-3.5,-3.48535979107015,-2.83557693150549,0.976482997493958,0.774706783554375,0.776971260419488,26.8865667204707,0.0172804876435082,5340.83663366337,5305.10277423782,4618.18822213466,4.3702514091608,25094.341369253,6918.25098199277,0,25094.341369253,20.6424430938143,20.6424430938143,0.27643803984359,21.0786346683559,24.9,1015.1,39.48,41.3950391258045 +46105,2874.47616148515,457.856278712871,132.326732673267,21.9542277227723,22.6128545544554,6.77267326732673,-3.46762376237624,984.346534653465,4037.86633663366,3358.07326732673,20,40,11,32,5306974.88268797,397693.535595345,0,0,0,0,0,0,0,21.9542277227722,17198.7082603407,13.5453465346535,7.26411401729693,7.02151839537888,-3.46762376237624,-3.45298355344639,-2.82432109652855,1.23787160948715,0.982083185780201,0.982445122456952,28.6334800171657,0.0187925303123152,7395.9396039604,7119.26418978531,6214.45224245231,4.10090079625172,34730.5535680285,9662.35153932831,0,34730.5535680285,21.9611815508283,21.9611815508283,0.386176736485528,21.9373371037427,24.9,1015.1,39.45,49.4116016771432 +46106,2874.47519306931,457.851507524753,223.217821782178,23.1130396039604,23.8064307920792,7.12577227722772,-1.99722772277228,962.688118811881,3785.9297029703,3145.78316831683,20,40,10.8514851485149,32,5306973.19423186,397687.561583923,0,0,0,0,0,0,0,23.1130396039604,17204.9857986795,14.2515445544554,7.64283470351245,7.38865038328281,-1.99722772277228,-1.98258751384242,-1.62371119214598,1.28922099351505,1.02282195567159,1.01478258643667,28.0034622384961,-0.061561737229998,6931.71287128713,7105.69225566121,7358.96711933477,3.8942458915534,29979.2913843224,6424.21386689073,0,29979.2913843224,23.0957047348299,23.0957047348299,0.257872321885653,23.0822969389015,24.9,1015.1,39.42,54.7042123539566 +46107,2874.47343009901,457.84698049505,225,24.1618811881188,24.8867376237624,7.18253465346535,0.504158415841584,811.331683168317,4287.93762376238,3569.7297029703,20,40,11,32,5306970.02859708,397681.865547132,0,0,0,0,0,0,0,24.1618811881188,17211.5401851207,14.3650693069307,7.7037158883279,7.49710933070957,0.504158415841584,0.518798624771441,0.420338522368862,1.09203820773223,0.866384166034551,0.901735090231918,23.6006819950576,0.0192965445352508,7857.66732673267,7914.55624938732,7872.01918079233,3.72569091530393,27646.7504988778,9184.95284420133,0,27646.7504988778,24.1761958631506,24.1761958631506,0.367152185515579,24.4226050505943,24.9,1015.1,39.39,56.3633251676639 +46108,2874.47121455446,457.842531485149,225,25.7591287128713,26.5319025742574,6.67641584158416,3.48287128712871,892.490099009901,4751.34851485149,3888.37227722772,20,40,11,32,5306966.0229193,397676.251802569,0,0,0,0,0,0,0,25.7591287128713,17218.460558278,13.3528316831683,7.16087193134266,7.15775360573452,3.48287128712871,3.49751149605856,2.76422821703156,1.01824950176549,0.807842838424299,0.806702109671295,25.9614846152883,0.0259927334971103,8639.7207920792,8628.17946279777,7822.05411880549,3.49555770905029,31345.6853009055,12732.2481679438,0,31345.6853009055,25.7706569944123,25.7706569944123,0.50894928601771,25.9100619457012,24.9,1015.1,39.36,52.1164921522423 +46109,2874.46867425742,457.837953762376,225,27.7156732673267,28.5471434653465,8.38440594059406,3.44514851485149,1028.41584158416,4046.61683168317,3291.6099009901,20,40,11,32,5306961.41853594,397670.467075686,0,0,0,0,0,0,0,27.7156732673267,17225.884508168,16.7688118811881,8.99279772045126,8.72322799348987,3.44514851485149,3.45978872378134,2.81873740024779,1.42009376868713,1.12665174786315,1.09870174085928,29.9154041921866,0.0928106190520087,7338.22673267327,7422.1471718459,8397.85803545245,3.24898709070506,28074.0453709548,12937.1145822894,0,28074.0453709548,27.6851813547691,27.6851813547691,0.516113616312126,27.6812060627287,24.9,1015.1,39.33,76.5569009266533 +46110,2874.46594158416,457.83307,225,29.4398118811881,30.3230062376238,9.11813861386139,3.5,1471.19801980198,4853.01188118812,3924.98118811881,20,40,11,32,5306956.46457215,397664.29486495,0,0,0,0,0,0,0,29.4398118811881,17233.8217402637,18.2362772277228,9.77977172413499,9.4463513248497,3.5,3.51464020892985,2.87657178524199,1.70579554965935,1.35331735121803,1.34889187316103,42.7954156572755,0.0861144300901492,8777.99306930693,8766.56154298599,9240.46241424452,3.05870987613796,46206.1958051314,15921.167203227,0,46206.1958051314,29.5393550632291,29.5393550632291,0.635271324162119,29.9190387662885,24.9,1015.1,39.3113613861386,89.4204516863214 +46111,2874.46302148515,457.827742079208,225,32.509099009901,33.484371980198,9.44657425742574,3.5,1645.4504950495,6284.62574257426,5298.40099009901,20,40,11,32,5306951.17325097,397657.563312394,0,0,0,0,0,0,0,32.5090990099009,17242.4066283825,18.8931485148515,10.1320394134248,9.90179176699399,3.5,3.51464020892985,2.84584953993501,1.27698688026008,1.01311584654964,1.04110670612459,47.8642146953075,0.0448572658412734,11583.0267326733,11469.5569257916,10461.5455941086,2.77090100359431,61398.2214301456,22908.4190168701,0,61398.2214301456,32.5040573473188,32.5040573473188,0.915480780751339,32.5632447136365,24.9,1015.1,39.36,98.294669560283 +46112,2874.45984564356,457.82178019802,225,35.7036831683168,36.7747936633663,10.5393168316832,3.49049504950495,1804.86633663366,5323.09702970297,5339.07425742574,20,40,11,32,5306945.4222218,397650.033783198,0,0,0,0,0,0,0,35.7036831683168,17251.893298817,21.0786336633663,11.3040739022661,11.0147564383433,3.49049504950495,3.5051352584348,2.84616949714454,1.54382926591707,1.2248190782893,1.19485197431314,52.5014335544429,0.0484573674336709,10662.1712871287,10648.6957259092,10401.6628601517,2.52221784973519,56444.7725809321,21085.3734806692,0,56444.7725809321,35.689855308303,35.689855308303,0.842492293783835,35.6091388852224,24.9,1015.1,39.42,121.52820124184 +46113,2874.45640227723,457.815275148515,225,38.5261089108911,39.6818921782178,11.432495049505,2.92930693069307,1906.77227722772,4352.04851485148,4295.74851485149,20,40,11,32,5306939.18765663,397641.818962097,0,0,0,0,0,0,0,38.526108910891,17262.2190775574,22.8649900990099,12.2620631859547,11.9369724010877,2.92930693069307,2.94394713962292,2.39149191464892,1.70801849966069,1.35508096046668,1.2826860566906,55.4657572056231,-0.042481198790291,8647.79702970297,8944.01098911871,9322.21115415526,2.33688949497218,44922.4313234496,17436.0133587426,0,44922.4313234496,38.4934222135084,38.4934222135084,0.698155954209283,38.4040593202948,24.9,1015.1,39.48,142.842235163756 +46114,2874.45272970297,457.808318712871,225,40.8771881188119,42.1035037623762,11.4537821782178,3.2350495049505,1500.18316831683,4583.67920792079,4347.55148514851,20,40,11,32,5306932.53850599,397633.034413704,0,0,0,0,0,0,0,40.8771881188118,17273.2492822879,22.9075643564356,12.2848949576891,12.0897964993833,3.2350495049505,3.24968971388035,2.6146068528869,1.21209785759065,0.961635210256705,1.08681809322926,43.638559450215,-0.0714980176250152,8931.2306930693,8721.1655327909,8746.20592897661,2.20242561292457,34465.1022533397,16588.7510903274,0,34465.1022533397,40.8821950789138,40.8821950789138,0.664650252153923,40.897702499811,24.9,1015.1,39.54,146.411728510603 +46115,2874.44885821782,457.800914158416,225,43.3272178217822,44.6270343564357,12.8344752475248,2.49118811881188,1535.86633663366,4543.93663366337,4415.04653465347,20,40,11,32,5306925.53082088,397623.685199351,0,0,0,0,0,0,0,43.3272178217821,17284.9455815453,25.6689504950495,13.76577429181,13.4055358594203,2.49118811881188,2.50582832774174,2.03389174430893,1.89022051247239,1.4996335391237,1.49536040449822,44.6765407413351,0.0218166156499291,8958.98316831684,8894.65401431232,8821.55973085575,2.07785694036526,33255.9086965508,17272.6512845581,0,33255.9086965508,43.3302014508381,43.3302014508381,0.690614482240298,43.3255321757275,24.9,1015.1,39.6,180.214106595856 +46116,2874.44478019802,457.793053465346,225,45.7529801980198,47.1255696039604,14.3250396039604,2.57881188118812,1624.36633663366,4445.07722772277,4149.19702970297,20,40,11,32,5306918.15065942,397613.761076353,0,0,0,0,0,0,0,45.7529801980197,17297.3261019248,28.6500792079208,15.3644974263665,14.8130896564044,2.57881188118812,2.59345209011797,2.12912020425922,2.75740413413899,2.18762609610268,2.08566891691037,47.2509013880267,0.0311048777583148,8594.27425742574,8586.22071365552,8580.78609775792,1.96754512948901,31952.6206817261,16200.8110302764,0,31952.6206817261,45.747751102833,45.747751102833,0.647616246773197,45.7308612429714,24.9,1015.1,39.66,219.969097041854 +46117,2874.44048544554,457.784785346535,225,48.0283960396039,49.4692479207921,14.5210495049505,3.19693069306931,1705.58910891089,4309.53465346535,3862.56534653465,20,40,11,32,5306910.37805734,397603.322374578,0,0,0,0,0,0,0,48.0283960396039,17310.3578704067,29.042099009901,15.5747302566109,15.1097416594128,3.19693069306931,3.21157090199916,2.61869467959104,2.39911456256515,1.90337192855711,1.89939826484191,49.6135760610854,0.0163444612294849,8172.1,8178.08921674346,8193.17552612163,1.87424188656008,30391.4478365958,15318.1087292115,0,30391.4478365958,48.0234985785706,48.0234985785706,0.612503948414642,48.0059436889793,24.9,1015.1,39.72,228.615341973473 +46118,2874.43599762376,457.776119009901,225,50.1504059405941,51.6549181188119,13.9535445544554,3.25148514851485,1773.44059405941,4216.09207920792,3667.34257425742,20,40,11,32,5306902.25664662,397592.381335934,0,0,0,0,0,0,0,50.150405940594,17324.0005203792,27.9070891089109,14.9660458416009,14.748451974564,3.25148514851485,3.2661253574447,2.62561914957798,1.38096774667329,1.09561055744262,1.12864698246355,51.5872957581014,0.027864786325157,7883.43465346535,7882.32288991276,7879.04144354138,1.79486547107255,29194.0703958268,14335.4320863082,0,29194.0703958268,50.1454708361925,50.1454708361925,0.573045670903723,50.1383876906066,24.9,1015.1,39.78,217.735037768081 +46119,2874.43130643564,457.767107227723,225,52.1516930693069,53.7162438613861,14.2052871287129,3.24257425742574,1846.07425742574,4069.78712871287,3510.72178217822,20,40,11,32,5306893.76618945,397581.003342932,0,0,0,0,0,0,0,52.1516930693069,17338.2159774198,28.4105742574257,15.2360554360746,15.0773453110941,3.24257425742574,3.2572144663556,2.60774314760756,1.2362442144027,0.980792068561899,0.990976468625604,53.7001233806477,0.0221046237773209,7580.50891089108,7581.14420154887,7580.13057910138,1.72593129095452,28100.2173344974,13316.7716354923,0,28100.2173344974,52.1466264091755,52.1466264091755,0.532375638553951,52.1313352850347,24.9,1015.1,39.84,227.549047883609 +46120,2874.42638346535,457.757828712871,225,53.9970495049505,55.616960990099,14.8823663366337,1.58653465346535,1914.92574257426,3832.20693069307,3421.61188118812,20,40,11,32,5306884.85231176,397569.285490072,0,0,0,0,0,0,0,53.9970495049504,17352.9639326729,29.7647326732673,15.9622650686588,15.7598403023914,1.58653465346535,1.6011748623952,1.2793367445919,1.4100073122108,1.11864951303234,1.12414672857879,55.7029318985302,0.0137523880829586,7253.81881188119,7254.28061954711,7192.64807286178,1.66691382422063,26937.4129421984,12626.4519459009,0,26937.4129421984,53.997736202333,53.997736202333,0.504874249801216,53.9955453774771,24.9,1015.1,39.8911633663366,248.918220786437 +46121,2874.42130920792,457.748211980198,225,55.7357623762376,57.4078352475247,15.6289306930693,2.21653465346535,1917.72772277228,3387.4297029703,3094.08118811881,20,40,11,32,5306875.66570138,397557.141389475,0,0,0,0,0,0,0,55.7357623762375,17368.2151196641,31.2578613861386,16.7630018519554,16.4950057011002,2.21653465346535,2.2311748623952,1.79693120680189,1.59191408563121,1.26296785928614,1.26528835855762,55.7844381985821,-0.0986427836316927,6481.51089108911,6541.95275953338,6664.74114480556,1.61485598805101,23299.4069815353,11080.1946614704,0,23299.4069815353,55.7292149789236,55.7292149789236,0.444396791164272,55.7127671178022,24.9,1015.1,39.89,272.44711484438 +46122,2874.41609742574,457.738298316832,225,57.3167623762376,59.0362652475247,15.5860495049505,1.95138613861386,1478.04455445545,3496.02079207921,3148.39108910891,20,40,11,32,5306866.2309404,397544.622911465,0,0,0,0,0,0,0,57.3167623762375,17383.9147344055,31.172099009901,16.7170091061965,16.549177724305,1.95138613861386,1.96602634754372,1.57445111932516,1.29306370711533,1.02587062759012,1.02183917392543,42.9945732773669,-0.045505284127905,6644.41188118812,6588.58495245564,6544.36918275054,1.57033112141015,17974.4967164367,11327.1336408855,0,17974.4967164367,57.3186191549847,57.3186191549847,0.453563920748503,57.3202854037559,24.9,1015.1,39.88,274.207726882693 +46123,2874.4107290099,457.728105841584,225,58.9120396039604,60.6794007920792,15.6400891089109,3.01574257425743,1514.90594059406,3471.5504950495,3051.18613861386,20,40,11,32,5306856.51223404,397531.751990089,0,0,0,0,0,0,0,58.9120396039603,17400.0641335254,31.2801782178218,16.7749699481157,16.6861855723656,3.01574257425743,3.03038278318728,2.41509133953862,1.22392816067444,0.971020950790882,1.02122788506932,44.0668275356466,0.0149044205925258,6522.73663366337,6519.01761592001,6515.4033875102,1.52778182008825,17564.3569566755,10893.2003188911,0,17564.3569566755,58.9177382609547,58.9177382609547,0.435583657375648,58.920292747122,24.9,1015.1,39.87,278.855630823447 +46124,2874.40520316832,457.717647722772,225,60.5086237623763,62.3238824752475,16.5423366336634,2.71445544554455,1539.17821782178,3442.22178217822,3025.53465346535,20,40,11,32,5306846.5078261,397518.544996233,0,0,0,0,0,0,0,60.5086237623762,17416.6526275023,33.0846732673267,17.7426866285061,17.5454238939827,2.71445544554455,2.72909565447441,2.18498008942736,1.60319054613584,1.27191420087103,1.22890748560265,44.7728794599476,0.00619217473892378,6467.75643564357,6461.71564552495,6460.68374631607,1.48746437808398,17228.5761261842,10835.5588854953,0,17228.5761261842,60.49996029801,60.49996029801,0.433363014519267,60.4946410819548,24.9,1015.1,39.86,308.414209290735 +46125,2874.39952336634,457.706928316832,225,62.0262178217822,63.8870043564356,15.7425445544554,2.60138613861386,1579.52475247525,3362.88118811881,2985.7099009901,20,40,11,32,5306836.22404144,397505.00746602,0,0,0,0,0,0,0,62.0262178217821,17433.6737936189,31.4850891089109,16.8848597964448,16.9520956779305,2.60138613861386,2.61602634754372,2.06556043500534,1.22324717979213,0.970480684846315,0.971972898621727,45.9465125790692,0.0144004063695902,6348.59108910891,6351.59234388785,6350.34300213662,1.45106533074973,16930.119697489,10583.6357721662,0,16930.119697489,62.0284550534261,62.0284550534261,0.423207419751878,62.0285680562003,24.9,1015.1,39.85,287.740572572704 +46126,2874.39369009901,457.695954356436,225,63.5338217821782,65.4398364356436,17.2240891089109,3.08792079207921,1616.84158415842,3292.28910891089,2920.93762376238,20,40,11,32,5306825.66165038,397491.147797325,0,0,0,0,0,0,0,63.5338217821781,17451.1166343505,34.4481782178218,18.4739086314431,18.2988902809818,3.08792079207921,3.10256100100906,2.47816416028531,1.62014371348284,1.28536423920264,1.38489120242841,47.0320152112089,0.0181445120256836,6213.22673267327,6212.3492794824,6211.4641604586,1.41662268564158,16557.6403623444,9999.83641100071,0,16557.6403623444,63.5247197333594,63.5247197333594,0.399819189839782,63.5198513569851,24.9,1015.1,39.84,335.814035485959 +46127,2874.38772693069,457.68472019802,225,64.9580198019802,66.9067603960396,19.0258316831683,2.71217821782178,1654.09900990099,3186.65940594059,2887.11584158416,20,40,11,32,5306814.86442948,397476.959733223,0,0,0,0,0,0,0,64.9580198019801,17468.9631396035,38.0516633663367,20.4063897910414,19.9139324117314,2.71217821782178,2.72681842675164,2.21321983487402,2.61444540013075,2.07420773522107,1.93229797257707,48.1157897945843,0.0104402946179529,6073.77524752476,6073.65048524654,6074.90258389129,1.3855657610916,16197.1400075924,9812.65536593502,0,16197.1400075924,64.9470012743848,64.9470012743848,0.392405700966125,64.9449811641088,24.9,1015.1,39.83,397.008674131416 +46128,2874.38162811881,457.673244356436,225,66.3234752475247,68.3131795049505,18.2271683168317,3.29336633663366,1687.37128712871,3133.69207920792,2805.95148514851,20,40,11,32,5306803.82133397,397462.466140749,0,0,0,0,0,0,0,66.3234752475246,17487.1997102306,36.4543366336634,19.5497735738534,19.3121061810426,3.29336633663366,3.30800654556352,2.65308103112272,1.66707235264674,1.32259574778655,1.35972930187751,49.0836411066844,0.00100802844587131,5939.64356435643,5945.73023233016,5946.02037097997,1.35703335193091,15824.4814704556,9538.79772914394,0,15824.4814704556,66.3278102146847,66.3278102146847,0.381542114607494,66.32846656282,24.9,1015.1,39.82,373.292745978659 +46129,2874.37536554456,457.661577128713,225,67.6754158415842,69.7056783168317,18.175297029703,3.11851485148515,1722.22772277228,3109.96633663366,2724.81188118812,20,40,11,32,5306792.4791668,397447.728734016,0,0,0,0,0,0,0,67.6754158415841,17505.8151182339,36.3505940594059,19.4941383868225,19.3457184008311,3.11851485148515,3.133155060415,2.5018585381197,1.44309842740926,1.14490282362292,1.15245763207427,50.0975737191673,0.0181445120256836,5834.77821782178,5832.42916380747,5832.70731779945,1.32991477431212,15549.4532954454,9170.48015174854,0,15549.4532954454,67.6757328693265,67.6757328693265,0.366645699223404,67.6759493039529,24.9,1015.1,39.81,374.558273464027 +46130,2874.3690029703,457.649643564356,225,68.977504950495,71.0468300990099,18.5375445544554,2.98831683168317,1753.58415841584,3029.36732673267,2714.3396039604,20,40,11,32,5306780.95769949,397432.656260174,0,0,0,0,0,0,0,68.9775049504949,17524.7983776673,37.0750891089109,19.8826714251694,19.728847241125,2.98831683168317,3.00295704061302,2.398042939279,1.47246163087071,1.16819854199881,1.15692581272777,51.0096954586171,0.00208805892359057,5743.70693069307,5738.18352122341,5737.83528322135,1.30480528214967,15291.1082987866,8823.87657801232,0,15291.1082987866,68.9823716302322,68.9823716302322,0.352935169754582,68.9781234682825,24.9,1015.1,39.8138861386139,389.658228350524 +46131,2874.36252128713,457.637490396039,225,70.2626534653465,72.370533069307,18.0517227722772,3.10732673267327,1788.11386138614,2805.10198019802,2830.45445544555,20,40,11,32,5306769.22050328,397417.306290902,0,0,0,0,0,0,0,70.2626534653465,17544.1367379534,36.1034455445545,19.3615972970472,19.3889436449126,3.10732673267327,3.12196694160312,2.47321483423814,1.35143739190326,1.07218222718001,1.07503242229885,52.014123802896,0.0105122966498008,5635.55643564356,5637.65668071758,5637.80275690269,1.28094280660952,15019.0500663821,8766.29713006163,0,15019.0500663821,70.2461023429074,70.2461023429074,0.350551144223332,70.2450619182042,24.9,1015.1,39.9,376.313277967346 +46132,2874.3559629703,457.625068613862,225,71.4985247524753,73.6434804950495,18.7994752475248,2.88693069306931,1820.10891089109,2759.03366336634,2778.79801980198,20,40,11,32,5306757.34734487,397401.619181144,0,0,0,0,0,0,0,71.4985247524752,17563.8262908962,37.5989504950495,20.1636084117895,20.0960570934004,2.88693069306931,2.90157090199916,2.3088824562742,1.39502145368542,1.10676026735495,1.1290234452798,52.9448220665627,0.00842423772621025,5537.83168316832,5540.66207234585,5540.28020051454,1.25880276654427,14762.8543822058,8719.63906787899,0,14762.8543822058,71.5003316341534,71.5003316341534,0.348704919996945,71.4994888425975,24.9,1015.1,40,404.3026240701 +46133,2874.34934673267,457.612364752475,225,72.7249603960396,74.9067092079208,20.5823762376238,1.93970297029703,1851.94059405941,2762.5198019802,2671.11386138614,20,40,11,32,5306745.37318796,397385.578773318,0,0,0,0,0,0,0,72.7249603960395,17583.8606184264,41.1647524752475,22.0758807985457,21.6839448664297,1.93970297029703,1.95434317922688,1.57102177273935,2.29024934324877,1.81700214627316,1.71051403294304,53.8707681961273,0.0144724084014381,5433.63366336634,5430.97147338496,5430.66478885938,1.23756986028219,14489.8956843322,8257.32541464954,0,14489.8956843322,72.7252453681011,72.7252453681011,0.33015417878422,72.7238654849874,24.9,1015.1,40.1,471.106864503878 +46134,2874.34265009901,457.599418613861,225,73.8746930693069,76.0909338613861,20.7329504950495,1.79118811881188,1880.27722772277,2731.20396039604,2578.00396039604,20,40,11,32,5306733.25552162,397369.233896529,0,0,0,0,0,0,0,73.8746930693068,17604.2267803901,41.465900990099,22.2373810704232,21.8780475708162,1.79118811881188,1.80582832774174,1.45445090786389,2.10959609326717,1.6736783008083,1.74936782957101,54.6950474567226,0.017640497802748,5309.20792079208,5308.21908636408,5308.88966526364,1.21830221980093,14151.0038602071,7896.85382565473,0,14151.0038602071,73.8756295461228,73.8756295461228,0.315704342711497,73.8774226291808,24.9,1015.1,40.2,479.001131745342 +46135,2874.33586841584,457.586253465346,225,74.9884059405941,77.2380581188118,20.5564851485149,2.44980198019802,1909.83168316832,2688.68316831683,2493.09108910891,20,40,11,32,5306720.98521298,397352.613373438,0,0,0,0,0,0,0,74.988405940594,17624.9065855881,41.1129702970297,22.0481109924595,21.7915661619044,2.44980198019802,2.46444218912787,1.97742849879677,1.81068999390368,1.4365368621791,1.42847609342747,55.5547517169872,0.00878424788545,5181.77425742574,5187.08594255465,5186.37132886703,1.20020221457157,13819.6527205759,7468.18815277084,0,13819.6527205759,74.9912025291637,74.9912025291637,0.298643106884956,74.9906881239689,24.9,1015.1,40.3,475.36787496749 +46136,2874.32899306931,457.572884257426,225,76.089702970297,78.3723940594059,20.7479306930693,2.05415841584158,1933.90594059406,2680.34158415842,2390.3900990099,20,40,11,32,5306708.54597711,397335.735537697,0,0,0,0,0,0,0,76.089702970297,17645.890659378,41.4958613861386,22.253448266067,22.017511933611,2.05415841584158,2.06879862477144,1.65745839561989,1.73033336732682,1.3727847806043,1.39592626664336,56.2550434787403,0.0172084856116603,5070.73168316832,5067.05984707382,5067.58997100744,1.18283039625994,13496.0148610281,7294.06851348274,0,13496.0148610281,76.0725899421624,76.0725899421624,0.291597229029828,76.0692610112336,24.9,1015.1,40.4,485.145395691318 +46137,2874.32197029703,457.559391980198,225,77.1040792079208,79.4172015841584,20.1904455445545,0.724950495049505,1963.31188118812,2606.3900990099,2357.56732673267,20,40,11,32,5306695.83643436,397318.69948644,0,0,0,0,0,0,0,77.1040792079207,17667.1655908962,40.3808910891089,21.6555107129152,21.6026529361896,0.724950495049505,0.739590703979363,0.586565589030677,1.4367484790501,1.13986500106821,1.15400766380088,57.110427617094,0.0035280995605496,4963.95742574257,4964.57701205764,4957.1342895828,1.16727377124591,13236.4204837917,7380.36278744629,0,13236.4204837917,77.1052221350847,77.1052221350847,0.295180755699326,77.1055142591181,24.9,1015.1,40.5,467.331820829139 +46138,2874.3148509901,457.545718514851,225,78.1134257425743,80.4568285148515,19.5413564356436,1.91980198019802,1910.60396039604,2595.66138613861,2329.44158415842,20,40,11,32,5306682.95214258,397301.434507509,0,0,0,0,0,0,0,78.1134257425742,17688.7287100381,39.0827128712871,20.9593222053046,21.1071931177056,1.91980198019802,1.93444218912788,1.52604201257614,1.49645245292656,1.18723200457565,1.16671881924439,55.5772163509237,-0.0765381598543718,4925.10297029703,4886.88998137438,4896.556009913,1.1521852469423,12581.6743673039,6962.66974837559,0,12581.6743673039,78.1279287324771,78.1279287324771,0.279188314871091,78.1292274584032,24.9,1015.1,40.6,445.880825050798 +46139,2874.30762326733,457.531883267327,225,79.1691485148515,81.544222970297,19.8334752475248,2.48079207920792,1721.66831683168,2585.9297029703,2280.6495049505,20,40,11,32,5306669.8706654,397283.964376055,0,0,0,0,0,0,0,79.1691485148514,17710.5759921063,39.6669504950495,21.2726378300727,21.4163966927209,2.48079207920792,2.49543228813778,1.96623535684985,1.50081225235856,1.190690913951,1.17979485531985,50.0813012599696,0.00244806908283033,4866.57920792079,4905.4229781394,4904.05756593358,1.13681929613171,11082.7006487365,7102.0252299822,0,11082.7006487365,79.161439662778,79.161439662778,0.284061203150016,79.160856216595,24.9,1015.1,40.7,459.055801778474 +46140,2874.30028336634,457.517887524752,225,80.1631386138614,82.5680327722772,20.4349801980198,1.58851485148515,1743.31188118812,2537.41485148515,2259.45445544554,20,40,11,32,5306656.58500688,397266.290567936,0,0,0,0,0,0,0,80.1631386138613,17732.7068975793,40.8699603960396,21.9177893632854,21.9858199986973,1.58851485148515,1.60315506041501,1.26891275135539,1.40897574502886,1.11783110442145,1.11725960367845,50.7108870264481,-0.00086402438217541,4796.86930693069,4800.15154396628,4800.16595987032,1.12272335264904,10924.1488057138,6770.03054020075,0,10924.1488057138,80.1614958337417,80.1614958337417,0.270808145170959,80.1604768246735,24.8987376237624,1015.09873762376,40.7734900990099,483.929989527105 +46141,2874.29284217822,457.503726237624,225,81.1502376237624,83.5847447524752,21.324099009901,1.38782178217822,1762.61881188119,2502.66336633663,2255.71683168317,20,40,11,32,5306643.11545493,397248.407149995,0,0,0,0,0,0,0,81.1502376237623,17755.1103899886,42.648198019802,22.8714246812014,22.7985836962984,1.38782178217822,1.40246199110807,1.11433403472353,1.40500763861653,1.11468295031801,1.11254463969417,51.2725028748621,0.0173524896753562,4758.3801980198,4753.29104989707,4753.03607816489,1.10906924463066,10823.2861026787,6741.49179016227,0,10823.2861026787,81.1362288010978,81.1362288010978,0.269517422039232,81.1353957000688,24.89,1015.09,40.69,520.202224184128 +46142,2874.28529455445,457.489415247525,225,82.0889306930693,84.5515986138614,22.0395445544555,0.821584158415841,1783.31188118812,2425.22772277228,2169.31485148515,20,40,11,32,5306629.45212315,397230.333680011,0,0,0,0,0,0,0,82.0889306930692,17777.7836725518,44.0790891089109,23.638784600051,23.4613791808296,0.821584158415841,0.836224367345699,0.669280677597259,1.56832094240876,1.24424990091235,1.22179285151697,51.874439861111,-0.0127443596370873,4594.54257425743,4553.36177825703,4546.66297574712,1.09638742034487,10452.8125955918,6461.08447105729,0,10452.8125955918,82.0850927360062,82.0850927360062,0.258547636941921,82.0843707875374,24.88,1015.08,40.58,550.913870906623 +46143,2874.27765178218,457.474961287128,225,82.8952079207921,85.3820641584159,21.995297029703,1.3360396039604,1805.69801980198,1970.10792079208,1790.50396039604,20,40,11,32,5306615.61577158,397212.078912966,0,0,0,0,0,0,0,82.895207920792,17800.7062026674,43.9905940594059,23.5913263731296,23.4697104339705,1.3360396039604,1.35067981289025,1.08055443287316,1.55300205439191,1.23209644151406,1.22585129548285,52.5256262371439,0.00540015238859632,3760.61188118812,3774.33711400843,3776.19098919066,1.08571622217247,8574.9343261419,4519.42171575962,0,8574.9343261419,82.8891921380256,82.8891921380256,0.180732553453356,82.8873458079752,24.87,1015.07,40.47,551.411466369173 +46144,2874.26993405941,457.460401881188,225,83.4385346534653,85.9416906930693,20.6422656767327,-1.37792079207921,1811.17821782178,1562.41188118812,1483.52277227723,20,40,11,32,5306601.64298278,397193.690250278,0,0,0,0,0,0,0,83.4385346534653,17823.8150814078,41.2845313534653,22.1401159531069,22.3494380040544,-1.37792079207921,-1.36328058314935,-1.05915239006137,2.42503550950929,1.92393668338164,1.97551193733057,52.6850387356552,0.00028800812739181,3045.93465346535,3071.31399862758,3074.5487873558,1.07864143079731,6923.45764441151,3159.54054804898,0,6923.45764441151,83.4317820801881,83.4317820801881,0.126379222080631,83.4308322281768,24.86,1015.06,40.36,502.380457050767 +46145,2874.26217316832,457.445763564356,225,83.8148514851486,86.329297029703,18.7876221125743,-0.418019801980198,1814.36138613861,1366.49603960396,1366.57227722772,20,40,11,32,5306587.5920406,397175.201788312,0,0,0,0,0,0,0,83.8148514851484,17847.0481195816,37.5752442251485,20.1508951861038,20.7930823185148,-0.418019801980198,-0.403379593050341,-0.308689507273427,3.35812693166549,2.66421813864096,2.59628489785607,52.7776333486117,0.0038161076879414,2733.06831683168,2733.30690128419,2733.79651907573,1.07379711380468,6196.00859631611,2418.33237957791,0,6196.00859631611,83.8226397412017,83.8226397412017,0.0967021207071061,83.8225867985666,24.85,1015.05,40.25,432.797484376385 +46146,2874.25438415841,457.43106039604,225,84.1628613861387,86.6877472277227,19.4879081406931,-0.625841584158416,1823.9603960396,1280.15940594059,1232.77425742574,20,40,11,32,5306573.49051072,397156.631533787,0,0,0,0,0,0,0,84.1628613861385,17870.3801462868,38.9758162813861,20.9019955791371,21.4087676912016,-0.625841584158416,-0.611201375228558,-0.473240336682854,2.89407734688466,2.2960577485902,2.3020400544747,53.0568572281181,-0.00280807924207008,2512.93366336634,2511.48457014018,2511.69413343203,1.06935669589599,5702.89763193936,1918.10116759231,0,5702.89763193936,84.1447460052935,84.1447460052935,0.0767476500125265,84.1441917275838,24.84,1015.04,40.14,459.370247395067 +46147,2874.24655504951,457.416317524753,225,84.4215247524753,86.9541704950496,19.1576358634654,-0.951980198019802,1835.90099009901,1172.10297029703,1139.00396039604,20,40,11,32,5306559.315644,397138.010413063,0,0,0,0,0,0,0,84.4215247524752,17893.7939069303,38.3152717269307,20.547757985821,21.1429314864307,-0.951980198019802,-0.937339989089944,-0.715401503012827,3.15634645653055,2.50413270625038,2.50536060277819,53.4041950297525,0.00244806908283034,2311.10693069307,2307.07798255073,2306.83385151599,1.06608089405899,5262.90789527514,1615.57993074226,0,5262.90789527514,84.4078980492108,84.4078980492108,0.0646028711782068,84.4072243554662,24.83,1015.03,40.03,447.750553766337 +46148,2874.23870475247,457.401536237624,225,84.5992673267327,87.1372453465346,19.1077513751485,-0.605742574257426,1831.83663366337,1033.23366336634,1067.04653465347,20,40,11,32,5306545.10244184,397119.340652866,0,0,0,0,0,0,0,84.5992673267326,17917.2679870733,38.215502750297,20.4942537642935,21.1103914946893,-0.605742574257426,-0.591102365327569,-0.454450192912596,3.26751687026226,2.59233134756777,2.62677314372958,53.2859676934582,0.00525614832490041,2100.2801980198,2102.04519164788,2102.45620008196,1.06384168653647,4762.63348837814,1178.79198538465,0,4762.63348837814,84.5977114988725,84.5977114988725,0.0471086712631653,84.5980429377783,24.82,1015.02,39.92,446.210466914654 +46149,2874.23084544555,457.386717623762,225,84.7290198019802,87.2708903960395,19.1653261822772,-0.121881188118812,1835.12871287129,960.157425742574,979.191089108911,20,40,11,32,5306530.87343879,397100.624011318,0,0,0,0,0,0,0,84.7290198019801,17940.7874880909,38.3306523645544,20.5560063318542,21.1669814696847,-0.121881188118812,-0.107240979188955,-0.0762707710140562,3.26079634505369,2.58699952255752,2.67664911929596,53.381730395816,0.00468013207011681,1939.34851485148,1939.41867463974,1939.40614804338,1.06221152078594,4398.80779203149,943.7448675076,0,4398.80779203149,84.7368331536123,84.7368331536123,0.0377114444117618,84.7370467703912,24.81,1015.01,39.81,448.69464604176 +46150,2874.22298455446,457.371867227723,225,84.832495049505,87.3774699009901,18.8734526953465,-0.494950495049505,1843.71782178218,883.670297029703,908.460396039604,20,40,11,32,5306516.64226715,397081.867639195,0,0,0,0,0,0,0,84.8324950495048,17964.3427240645,37.7469053906931,20.2429538333793,20.9256381734583,-0.494950495049505,-0.480310286119648,-0.371245235775094,3.48716082537002,2.76658902786061,2.68379174517437,53.6315774463284,-0.0032400914331578,1792.13069306931,1795.02415449466,1795.41316360208,1.06091459077917,4078.19932523085,501.130915552636,0,4078.19932523085,84.8376199392215,84.8376199392215,0.0200715616116176,84.8379931164543,24.8012623762376,1015.00126237624,39.7164108910891,438.16093681263 +46151,2874.21512346535,457.356994455446,225,84.9036336633664,87.4507426732673,18.9087827287129,-2.10792079207921,1839.30693069307,824.760396039604,888.490099009901,20,40,11,32,5306502.4112859,397063.083297435,0,0,0,0,0,0,0,84.9036336633662,17987.9195181514,37.8175654574258,20.2808474952286,20.9584110169031,-2.10792079207921,-2.09328058314935,-1.6105533757931,3.54751921380676,2.81447522054021,2.82770001135495,53.5032698255753,-0.00734420724849098,1713.25049504951,1714.19636310166,1714.26663837812,1.06002540771847,3886.32213800607,441.539134998228,0,3886.32213800607,84.913514361337,84.913514361337,0.0177215741376261,84.9135350306458,24.8,1015,39.72,439.757508939563 +46152,2874.20727920792,457.342086237624,225,84.9496732673268,87.4981634653466,18.8632051708911,-1.85029702970297,1839.15346534653,778.433663366336,881.318811881188,20,40,11,32,5306488.21233069,397044.255270386,0,0,0,0,0,0,0,84.9496732673266,18011.512664191,37.7264103417822,20.2319627249793,20.9222423855521,-1.85029702970297,-1.83565682077311,-1.41360622701957,3.58446426832577,2.84378610913542,2.73647385511423,53.4988056996008,0.00187205282804673,1659.75247524753,1661.9750612685,1662.27649222065,1.05945130317832,3762.93038623994,135.614041369793,0,3762.93038623994,84.9507753161454,84.9507753161454,0.00540932806151138,84.9510117868929,24.8,1015,39.74,437.947737356457 +46153,2874.19945069307,457.327147920792,225,84.9964851485148,87.5463797029703,19.4249097905941,-0.93009900990099,1839.16831683168,792.611881188118,865.19900990099,20,40,11,32,5306474.04326567,397025.390181336,0,0,0,0,0,0,0,84.9964851485148,18035.1166730744,38.8498195811881,20.8344259238537,21.4028211212763,-0.93009900990099,-0.915458800971131,-0.707052307539034,3.1459554828857,2.49588887835879,2.59281667803834,53.4992377117918,0.000936026414023361,1657.81089108911,1656.31441035193,1656.12861857614,1.05886751260721,3756.32108190601,242.334613981458,0,3756.32108190601,84.9913885893539,84.9913885893539,0.00968586957706194,84.9911100424327,24.8,1015,39.76,459.228827427674 +46154,2874.19162950495,457.312196435644,225,85.0230297029703,87.5737205940594,18.7145583054456,-0.651881188118812,1840.08910891089,786.551485148515,850.357425742575,20,40,11,32,5306459.88812573,397006.508839976,0,0,0,0,0,0,0,85.0230297029701,18058.7293590204,37.4291166108911,20.0725297010773,20.8004247345193,-0.651881188118812,-0.637240979188955,-0.488977231466359,3.72505059399417,2.95532228585311,2.97969915161589,53.5260224676393,0.00129603657326312,1636.90891089109,1632.76465052446,1632.57575671853,1.05853695162631,3709.87458977308,15.5105714288626,0,3709.87458977308,85.0109378492303,85.0109378492303,0.000609961986302527,85.0106095238094,24.8,1015,39.78,432.704252525008 +46155,2874.18380643564,457.297243069307,225,85.0311287128714,87.5820625742574,18.9792733774257,-0.668613861386138,1839.60396039604,772.229702970297,839.2,20,40,11,32,5306445.72960375,396987.625000464,0,0,0,0,0,0,0,85.0311287128712,18082.344239246,37.9585467548515,20.3564531075463,21.0256160299191,-0.668613861386138,-0.65397365245628,-0.498683505579838,3.50884102268738,2.78378932317928,2.76393637262638,53.5119100693971,-0.00208805892359058,1611.4297029703,1612.79165768062,1612.98081093824,1.05843701563222,3650.68107475634,64.7597225962867,0,3650.68107475634,85.0202540927359,85.0202540927359,0.00260731518694844,85.0197185289957,24.8,1015,39.8,442.470418080934 +46156,2874.17599316832,457.282279207921,225,85.0116435643564,87.5619928712871,19.2400291527723,-1.43990099009901,1841.17821782178,772.574257425743,853.288118811881,20,40,11,32,5306431.58953262,396968.728320192,0,0,0,0,0,0,0,85.0116435643563,18105.9592811326,38.4800583055446,20.6361299217112,21.2464293613089,-1.43990099009901,-1.42526078116915,-1.10265114296777,3.22921452486997,2.56194363280202,2.63427495775269,53.5577033616524,0.00309608736946188,1625.86237623762,1624.78358984413,1624.73976426214,1.05868003203337,3687.23784988244,118.437552654332,0,3687.23784988244,85.0171360650916,85.0171360650916,0.00471222864861933,85.0172692126354,24.8,1015,39.82,451.864023797792 +46157,2874.16818851485,457.267305445545,225,85.0041386138614,87.5542627722773,19.3832755777228,-1.26742574257426,1840.95544554455,756.782178217822,854.19702970297,20,40,11,32,5306417.46569845,396949.819499858,0,0,0,0,0,0,0,85.0041386138613,18129.5755394385,38.7665511554455,20.7897706367344,21.3681209113227,-1.26742574257426,-1.2527855336444,-0.962037645719281,3.08198840811618,2.44513968264801,2.4233322336667,53.5512231787861,0.00338409549685369,1610.97920792079,1615.31528281541,1615.40363979255,1.05877235012024,3653.65171270855,-20.4816661673332,0,3653.65171270855,85.0178180570531,85.0178180570531,-0.000846866864904099,85.018223668081,24.8,1015,39.84,457.018261244032 +46158,2874.16038306931,457.252328415842,225,85.0478118811881,87.5992462376238,19.0842227724752,-1.56376237623762,1840.16831683168,831.050495049505,803.960396039604,20,40,11,32,5306403.34053068,396930.906490889,0,0,0,0,0,0,0,85.047811881188,18153.1942522823,38.1684455449505,20.4690178720926,21.1155396505787,-1.56376237623762,-1.54912216730777,-1.18531342133231,3.41757513668255,2.71138222425744,2.58642570309898,53.5283265326584,-0.00691219505740328,1635.01089108911,1634.62691892952,1634.63307873644,1.05822853000746,3704.56841750887,222.55975663201,0,3704.56841750887,85.0413986864032,85.0413986864032,0.00895881667373895,85.0415067421027,24.8,1015,39.86,446.312575394512 +46159,2874.15253990099,457.237381386139,225,85.0949306930693,87.6477786138614,19.9374125412871,-0.521386138613861,1841.39603960396,875.475247524752,764.609900990099,20,40,11,32,5306389.14488062,396912.029507512,0,0,0,0,0,0,0,85.0949306930691,18176.823494224,39.8748250825742,21.3841170529345,21.8448500094695,-0.521386138613861,-0.506745929684004,-0.393311015134779,2.58259910815015,2.04894202297442,2.06881542864641,53.564039540455,0.00201605689174262,1640.08514851485,1640.25202431134,1639.8467515323,1.05764291172038,3716.4212752964,414.722482494223,0,3716.4212752964,85.0939889226545,85.0939889226545,0.0165724493241431,85.0937713342761,24.8,1015,39.88,477.641741677004 +46160,2874.1446419802,457.222481683168,225,85.135801980198,87.689876039604,23.7327524752475,0.133069306930693,1842.56435643564,797.662376237624,752.544554455446,20,40,11,32,5306374.84681734,396893.209567208,0,0,0,0,0,0,0,85.1358019801979,18200.4676688664,47.4655049504951,25.4548555820901,25.0761336591641,0.133069306930693,0.14770951586055,0.131925669456392,2.67893453402653,2.12537111402319,2.29079872274032,53.5980244994872,-0.00151204266880696,1550.20693069307,1546.03371238114,1545.93749174917,1.05713497298865,3513.72470413231,331.223180677297,0,3513.72470413231,85.1397915890598,85.1397915890598,0.013261227112813,85.1399290900517,24.8,1015,39.8987376237624,630.8256406544 +46161,2874.1367129703,457.207608514851,225,85.1275346534653,87.6813606930693,24.1349504950495,-2.51752475247525,1842.78217821782,709.019801980198,727.567326732673,20,40,11,32,5306360.49063592,396874.421554951,0,0,0,0,0,0,0,85.1275346534652,18224.120154565,48.269900990099,25.8862380152967,25.4176103491687,-2.51752475247525,-2.50288454354539,-2.01443613861572,3.10350473485184,2.46220996889166,2.36440219367298,53.6043606782899,0.00756021334403485,1436.58712871287,1447.79839231448,1448.36142385667,1.05723756902005,3256.64005221174,-492.792606707659,0,3256.64005221174,85.1292064503479,85.1292064503479,-0.0197733882299129,85.129280716643,24.8,1015,39.91,649.812628937514 +46162,2874.12878653465,457.192744257426,225,85.0875643564356,87.6401912871287,23.7292178217822,-1.82366336633663,1841.10396039604,706.154455445545,760.225742574257,20,40,11,32,5306346.13908463,396855.644633492,0,0,0,0,0,0,0,85.0875643564355,18247.7599233219,47.4584356435643,25.4510644460393,25.0704363666819,-1.82366336633663,-1.80902315740678,-1.45400563917026,2.40300520686229,1.90645862698108,1.89256470433504,53.555543300697,-7.20020318479622E-05,1466.3801980198,1464.68626605235,1464.64400754361,1.05773400888492,3322.61043355721,-67.6482456239895,0,3322.61043355721,85.0896118027643,85.0896118027643,-0.00270534479191344,85.0896543140026,24.8,1015,39.92,629.324405449653 +46163,2874.12088118812,457.17786059406,225,85.0954158415842,87.6482783168317,21.8809092408911,-1.55069306930693,1840.21782178218,685.595049504951,789.749504950495,20,40,11,32,5306331.82708989,396836.844145425,0,0,0,0,0,0,0,85.095415841584,18271.3947882834,43.7618184817822,23.4686383432604,23.4978241832909,-1.55069306930693,-1.53605286037708,-1.22002785973327,2.82173809689973,2.23866636766049,2.31761080291643,53.5297665732954,-0.00763221537588279,1475.34455445545,1465.41442903387,1464.81240260641,1.05763646712589,3341.1716278619,159.125483057917,0,3341.1716278619,85.095199980394,85.095199980394,0.00642774673506905,85.0952644978782,24.8,1015,39.93,556.483505402568 +46164,2874.11298108911,457.162965346535,225,85.1027524752475,87.6558350495049,19.3779752473267,-1.77534653465347,1841.42079207921,692.79647699901,679.820355931683,20,40,11,32,5306317.52513363,396818.029308823,1.18811881188119,1.18811881188119,3152266.30099902,235731.024098786,4.14125200388451,0,0,85.1027524752474,18295.035434378,38.7559504946535,20.7840857021736,21.3687330006193,-1.77534653465347,-1.76070632572361,-1.35775008313731,3.16742264755772,2.51292016117455,2.39440777265175,53.5647595607735,0.0079202235032746,1372.61683293069,1378.60417359917,1378.98863284452,1.0575452562286,3110.3811945627,-123.615503516132,0,3110.3811945627,85.1008832467404,85.1008832467404,-0.00500904050800658,85.1008521452144,24.8,1015,39.94,457.370879165053 +46165,2874.10509980198,457.148056831683,225,85.0743861386139,87.6266177227723,19.6362662268317,-0.562673267326733,1840.63366336634,687.40287819703,660.395078221782,20,40,11,32,5306303.25837934,396799.198476556,2,2,5306303.08499483,396799.339738404,25.7399139918141,0,0,85.0743861386138,18318.6714223043,39.2725324536634,21.0611188692415,21.5878083232916,-0.562673267326733,-0.548033058396875,-0.427712544282967,2.8559291305377,2.26579231431195,2.14080623717099,53.5418629146458,-0.00504014222935657,1347.79795641881,1347.89035741267,1347.89771909047,1.05789798963085,3053.64884513016,-229.726636593046,0,3053.64884513016,85.0744504460346,85.0744504460346,-0.00914806827217744,85.074455162659,24.8,1015,39.95,466.76003894956 +46166,2874.09724940594,457.133119306931,225,85.0492079207921,87.6006841584159,22.0736435642574,-0.582574257425743,1840.79207920792,669.411685780198,656.672264953466,20,40,11,32,5306289.04955284,396780.332440397,2,2,5306288.17780369,396781.042682028,49.3409016790829,0,0,85.049207920792,18342.2985387234,44.1472871285148,23.6753579124347,23.6598348333023,-0.582574257425743,-0.567934048495885,-0.442666432182221,1.81413121070552,1.43926700085731,1.56566453871694,53.5464710446841,-0.00338409549685369,1326.08395073366,1327.08750338501,1327.16745741032,1.05821121675456,3005.61304148262,-217.203022571571,0,3005.61304148262,85.0479290265659,85.0479290265659,-0.00866064329206162,85.0476694012257,24.8,1015,39.96,561.256625344218 +46167,2874.08943039604,457.118155445545,225,85.0426336633664,87.5939126732673,22.0282178217822,-2.07217821782178,1840.55940594059,656.558363684159,669.799886757426,20,40,11,32,5306274.89951188,396761.434546815,2,2,5306273.27846563,396762.755264517,72.9294563971638,0,0,85.0426336633662,18365.9199464792,44.0564356435644,23.6266359736025,23.6204628515582,-2.07217821782178,-2.05753800889193,-1.63100888795497,1.47798866555374,1.17258349419243,1.22676310996736,53.5397028536904,0.00784822147142664,1326.35825044158,1327.35029307651,1327.42933008732,1.05829288399155,3006.0896371971,-68.2131237627141,0,3006.0896371971,85.0298606019016,85.0298606019016,-0.00279248221851664,85.0295737859499,24.8,1015,39.97,558.314252161916 +46168,2874.08162009901,457.103186138614,225,85.0109801980198,87.5613096039604,23.2043465346535,-2.11792079207921,1838.89603960396,660.660196968317,687.70846870396,20,40,11,32,5306260.76579238,396742.530066259,2,2,5306258.38241367,396744.471880355,96.5128085838965,0,0,85.0109801980197,18389.537364686,46.4086930693069,24.8881072910704,24.6194065723264,-2.11792079207921,-2.10328058314935,-1.69187617324742,2.24479549546419,1.78094068457057,1.66797850047966,53.4913174882886,-0.00561615848414017,1348.36866567228,1348.43711886054,1348.44257259345,1.05868733898216,3054.3456815,-78.8144691366102,0,3054.3456815,85.0119799039309,85.0119799039309,-0.00310699386770247,85.0119289014615,24.8,1015,39.98,607.423166235519 +46169,2874.07380326733,457.08822970297,225,84.9997920792079,87.5497858415842,23.9747128712871,-2.45722772277228,1839.73762376238,677.945979026733,693.932943121782,20,40,11,32,5306246.61974239,396723.641308637,2,2,5306243.4891416,396726.191908218,120.091759670585,0,0,84.9997920792078,18413.1497089104,47.9494257425743,25.7143731809947,25.2745370209372,-2.45722772277228,-2.44258751384242,-1.96851830521065,2.60912878701013,2.0699897239903,2.19364106124362,53.5157981791169,-0.00280807924207009,1371.87892214851,1370.96085035138,1370.88770666966,1.05882666739256,3109.44821482881,101.303557963403,0,3109.44821482881,85.0043241839035,85.0043241839035,0.00407503621650318,85.0046654408297,24.8,1015,39.99,639.850283897537 +46170,2874.06600564357,457.073248415841,225,85.0203267326733,87.5709365346535,24.023702970297,-2.21178217821782,1840.83168316832,692.523241555445,682.750556951485,20,40,11,32,5306232.50988704,396704.722140243,2,2,5306228.59541811,396707.911382017,143.671425434165,0,0,85.0203267326732,18436.7640259346,48.047405940594,25.7669181142699,25.3174406070184,-2.21178217821782,-2.19714196928797,-1.76500733862089,2.84435460938249,2.25660950203734,2.12209856003167,53.5476230771937,0.00777621943957869,1375.27379850693,1374.21327269497,1374.12877956219,1.05857067450232,3118.23638406521,105.982156215347,0,3118.23638406521,85.0289038329575,85.0289038329575,0.00417578886600538,85.0288253653936,24.8,1015,40.010099009901,642.635911992381 +46171,2874.05823623762,457.058226930693,225,85.0284257425742,87.5792785148515,24.1423762376238,-2.40821782178218,1841.39603960396,690.989716610891,664.442344461386,20,40,11,32,5306218.45325834,396685.75374438,2,2,5306213.69882408,396689.627332508,167.255635837874,0,0,85.0284257425741,18460.3847200215,48.2847524752475,25.8942025868319,25.4181733650704,-2.40821782178218,-2.39357761285232,-1.92794888291871,2.79759102903672,2.21950894523283,2.28150632961409,53.564039540455,-0.00302408533761394,1355.43206107228,1355.20412378958,1355.18596380239,1.05847009318075,3073.9120170111,40.3001383982169,0,3073.9120170111,85.0265392608566,85.0265392608566,0.00163654979358513,85.0270907119282,24.8,1015,40.09,646.982707723193 +46172,2874.05046990099,457.043199504951,225,85.0628118811881,87.6146962376238,24.6539207920792,-2.76594059405941,1840.20792079208,674.755319952475,655.840791787129,20,40,11,32,5306204.40250887,396666.777958058,2,2,5306198.80095663,396671.341720018,190.841862297585,0,0,85.062811881188,18484.0075966442,49.3078415841584,26.4428659907522,25.855293899313,-2.76594059405941,-2.75130038512955,-2.228024976783,3.1789911502739,2.52209819863428,2.54071308117335,53.529478565168,-0.00504014222935656,1330.5961117396,1331.4103274701,1331.47519683693,1.05804178012844,3014.40807107837,41.3526139850982,0,3014.40807107837,85.0572555631799,85.0572555631799,0.00169509525211197,85.0567403111738,24.8,1015,40.18,668.757749662948 +46173,2874.04267831683,457.028198613861,225,85.0366633663366,87.5877632673268,24.8738415841584,-2.27009900990099,1839.58415841584,658.74588100297,664.854126784159,20,40,11,32,5306190.3044616,396647.834293139,2,2,5306183.89994854,396653.052252707,214.433061009301,0,0,85.0366633663365,18507.6326049225,49.7476831683168,26.6787447413402,26.0414858459189,-2.27009900990099,-2.25545880097114,-1.82714352415829,3.36388202944557,2.6687840279618,2.67558460042982,53.5113340531423,0.00662418693001149,1323.60000778713,1324.70779034414,1324.79604846827,1.05836718341847,2998.4598075121,-68.567455482634,0,2998.4598075121,85.0410499950984,85.0410499950984,-0.00279656678540647,85.0410882602545,24.8,1015,40.27,678.414438916465 +46174,2874.03486217822,457.01322970297,225,85.0131980198019,87.563593960396,25.0699207920792,-2.63584158415842,1839.07920792079,657.680404094059,683.195530825743,20,40,11,32,5306176.16027853,396628.929555446,2,2,5306168.9995961,396634.763590144,238.023221694012,0,0,85.0131980198018,18531.2520283273,50.1398415841584,26.8890519075857,26.2068465513792,-2.63584158415842,-2.62120137522856,-2.12876905525256,3.57425467774996,2.83568618410172,2.80585369014997,53.4966456386454,-0.00244806908283033,1340.8759349198,1341.25879413059,1341.28929689982,1.05865928730957,3037.61101071837,-191.654487141662,0,3037.61101071837,85.0192964415252,85.0192964415252,-0.00764630918536446,85.0194843941536,24.8,1015,40.36,687.122599805946 +46175,2874.02705217822,456.998262475247,225,85.0071485148515,87.557362970297,24.9256138613861,-2.7450495049505,1839.85148514851,672.53848379505,694.002001624753,20,40,11,32,5306162.02748962,396610.027025207,1.05940594059406,2,5306154.10496831,396616.481172181,25.3035947355593,0,0,85.0071485148514,18554.8656035749,49.8512277227723,26.734273734084,26.0834199105196,-2.7450495049505,-2.73040929602064,-2.22219974866073,3.86811271510572,3.06882267037514,3.01166496704125,53.5191102725819,-0.0038161076879414,1366.5404854198,1365.84642228764,1365.79112559647,1.05873483666946,3097.27226035171,9.19871814922001,0,3097.27226035171,85.0090098029604,85.0090098029604,0.000398926031210801,85.0091260726071,24.8,1015,40.45,682.717930162745 +46176,2874.01922574257,456.983314851485,225,85.0072574257426,87.5574751485148,21.1873058306931,-2.25257425742574,1839.53465346535,689.659670136634,687.338119764356,20,40,11,32,5306147.86387948,396591.148275561,1,2,5306139.21040042,396598.197865062,33.9616552689224,0,0,85.0072574257425,18578.4798684539,42.3746116613862,22.7247054742748,22.9032238175549,-2.25257425742574,-2.23793404849589,-1.75106403978625,2.6846970995063,2.12994292795062,2.29395014522642,53.5098940125054,0.00266407517837418,1376.99778990099,1375.86492287411,1375.7746662455,1.0587339856817,3120.43274712331,-57.0141482990356,0,3120.43274712331,85.005648857955,85.005648857955,-0.00230233419380109,85.0057628477133,24.8,1015,40.54,528.049149419012 +46177,2874.01136752475,456.968405544554,225,85.0170693069307,87.5675813861386,24.5858910891089,-2.6180198019802,1838.78217821782,693.302823367327,669.330627494059,20,40,11,32,5306133.64060302,396572.31610597,1,2,5306124.31485841,396579.913359151,57.5455550396999,0,0,85.0170693069306,18602.0937477718,49.1717821782178,26.3698998960606,25.7951724754456,-2.6180198019802,-2.60337959305034,-2.10399321995857,3.12075151755112,2.47589295117186,2.42638659385744,53.4880053948236,-2.4045671944233E-19,1362.63345086139,1362.10333265451,1362.06109761641,1.05861145901615,3086.25979315744,75.4290385541594,0,3086.25979315744,85.0092898735417,85.0092898735417,0.00301713339651518,85.0093338048089,24.8,1015,40.63,665.871921886144 +46178,2874.00350128713,456.953502277228,225,85.0216930693069,87.5723438613861,24.9009504950495,-2.82574257425743,1838.92079207921,680.11844519802,656.535530160396,20,40,11,32,5306119.40239667,396553.491100123,1,2,5306109.41686853,396561.625848456,81.1333304704591,0,0,85.0216930693068,18625.7088168862,49.801900990099,26.7078207371582,26.0632588030957,-2.82574257425743,-2.81110236532757,-2.27980109009902,3.41017635518422,2.70551229489717,2.65321983728479,53.4920375086071,0.00187205282804672,1336.65397535842,1337.21399420911,1337.25861146095,1.05855358954575,3027.4869362802,31.2864068844568,0,3027.4869362802,85.0247554161355,85.0247554161355,0.00123626224007642,85.0244533710513,24.8,1015,40.72,679.391198448836 +46179,2873.99563920792,456.938590990099,225,84.9976633663366,87.5475932673267,23.5057227722772,-3.27782178217822,1839.63861386139,662.228192125742,660.716581243564,20,40,11,32,5306105.17213262,396534.656149695,1,2,5306094.51717735,396543.336249382,104.723799553651,0,0,84.9976633663365,18649.3247404561,47.0114455445545,25.2113520816857,24.8744349233878,-3.27782178217822,-3.26318157324836,-2.61972097972432,2.30124898750164,1.82572887171667,1.9084702141047,53.512918097843,-0.00108003047771927,1322.94477336931,1324.08005052917,1324.17049917526,1.05885296017006,2998.44383343078,48.1501301557522,0,2998.44383343078,85.0086320948925,85.0086320948925,0.00193472317529178,85.0091772748702,24.8,1015,40.81,619.457683190052 +46180,2873.98778861386,456.923667029703,225,85.0259108910891,87.5766882178218,23.5967227722772,-2.35267326732673,1839.76237623762,656.08028030693,678.029741665346,20,40,11,32,5306090.96348657,396515.805701576,1,2,5306079.61852109,396525.047920692,128.31263005862,0,0,85.025910891089,18672.9403114407,47.1934455445544,25.308955250993,24.9539304902486,-2.35267326732673,-2.33803305839688,-1.87694805081927,2.23811301405831,1.77563904215652,1.76996464621973,53.5165181994353,-0.000648018286631559,1334.11002197228,1334.77678885342,1334.8299108256,1.05850177251637,3022.95025179448,-141.425005272562,0,3022.95025179448,85.0236278796195,85.0236278796195,-0.00565167902929092,85.0232826025459,24.8,1015,40.8873762376238,623.076561618887 +46181,2873.97995386139,456.908722871287,225,85.0273861386139,87.5782077227723,23.975504950495,-2.84019801980198,1839.85148514851,667.327071518812,692.557371563366,20,40,11,32,5306076.7846964,396496.930527543,1,2,5306064.71966715,396506.75934934,151.901773555853,0,0,85.0273861386138,18696.5559107531,47.9510099009901,25.7152227352918,25.276273152621,-2.84019801980198,-2.82555781087213,-2.27487182700535,2.59225825852355,2.05660524838321,1.98071256856746,53.5191102725819,0.0106563007134967,1359.88444308218,1359.46967729406,1359.43663249637,1.05848263703591,3081.4682733854,-48.5951757051592,0,3081.4682733854,85.0109443191843,85.0109443191843,-0.00203139125793932,85.0106160301743,24.8,1015,40.89,639.512755618061 +46182,2873.97213168317,456.893764455445,225,85.0279900990099,87.5788298019802,22.5073663366337,-2.07792079207921,1840.88118811881,685.62831779604,690.942835020792,20,40,11,32,5306062.62957738,396478.037918906,1,2,5306049.8217187,396488.471889505,175.489483384408,0,0,85.0279900990098,18720.1713129808,45.0147326732673,24.1405526067718,24.0276118411519,-2.07792079207921,-2.06328058314935,-1.63868049834232,1.69304545439703,1.34320188037416,1.5246926300556,53.5490631178306,-0.00237606705098238,1376.57115281683,1375.45618810975,1375.36735777652,1.05847571023472,3120.98211213036,251.156156124374,0,3120.98211213036,85.0197902166453,85.0197902166453,0.0100657342962056,85.0196549740688,24.8,1015,40.88,578.039617090542 +46183,2873.96430683168,456.878808415842,225,85.0028118811882,87.5528962376237,21.9883784378218,-2.49435643564356,1838.43069306931,694.15793769703,674.670529481188,20,40,11,32,5306048.46951424,396459.148088474,1,2,5306034.92315839,396470.18367859,199.078161979601,0,0,85.002811881188,18743.788569499,43.9767568756436,23.5839057523082,23.5844032087168,-2.49435643564356,-2.47971622671371,-1.97298346188388,2.44508005112628,1.93983930780395,1.80321778900311,53.4777811063012,-0.00720020318479509,1368.82846717822,1368.03839696323,1367.9754512933,1.0587895955368,3100.23172855693,45.9106972346604,0,3100.23172855693,85.0295728850112,85.0295728850112,0.00189523902885753,85.0298193305043,24.8,1015,40.87,559.496857197508 +46184,2873.95648594059,456.863843069307,225,85.0321287128713,87.5830925742574,22.5497722772277,-2.81940594059406,1839.39108910891,685.073838031683,658.701137612871,20,40,11,32,5306034.31705595,396440.246703729,1,2,5306020.02197391,396451.892246473,222.670995376744,0,0,85.0321287128712,18767.4080619357,45.0995445544554,24.1860356199524,24.0630117004294,-2.81940594059406,-2.80476573166421,-2.23373548280357,1.73190668654863,1.37403299596182,1.42773750230962,53.5057178946582,0.00986427836316927,1343.77497564455,1344.03618683459,1344.05699778668,1.05842378351108,3043.99865179338,-124.642109422755,0,3043.99865179338,85.0286539554944,85.0286539554944,-0.00506622444422769,85.02883611504,24.8,1015,40.86,579.555192435335 +46185,2873.94866326732,456.848882871287,225,85.0266138613861,87.5774122772277,23.9533069306931,-2.28920792079208,1839.82673267327,665.510255080198,677.290204539604,20,40,11,32,5306020.16124221,396421.351580039,0.683168316831683,1.36633663366337,3624896.21706545,270832.876157226,165.659530118501,0,0,85.0266138613861,18791.0270998895,47.9066138613861,25.6914139761157,25.2576351023439,-2.28920792079208,-2.27456771186223,-1.83642648095898,2.60266034525619,2.06485789300229,2.01045664616206,53.5183902522634,-0.00547215442044427,1342.8004596198,1342.20231681883,1342.24121056517,1.05849240754174,3042.63905583338,120.671254119183,0,3042.63905583338,85.024124301539,85.024124301539,0.00487152675664837,85.0244695898161,24.8,1015,40.85,638.573895028484 +46186,2873.94085009901,456.83390980198,225,85.0353861386138,87.5864477227722,23.6601584158416,-3.41584158415842,1838.56930693069,645.344554455446,706.317821782178,20,40,11,32,5306006.02338357,396402.44064648,0,0,0,0,0,0,0,85.0353861386138,18814.6473677113,47.3203168316832,25.3769939307615,25.0077395172345,-3.41584158415842,-3.40120137522856,-2.73332543962614,2.39203694017838,1.89775679538169,1.91907123908684,53.4818132200847,-0.00741620928033894,1351.66237623762,1354.28597579342,1354.44782709219,1.05838343708677,3060.4863550219,-21.2517226232393,0,3060.4863550219,85.0417953141847,85.0417953141847,-0.000789682928694711,85.0416510136727,24.8,1015,40.84,625.967008165366 +46187,2873.93302673267,456.818943465346,225,85.0650693069307,87.6170213861386,22.6604059405941,-2.66504950495049,1840.65346534653,722.691089108911,656.687128712872,20,40,11,32,5305991.866545,396383.537667411,0,0,0,0,0,0,0,85.0650693069306,18838.2708624858,45.3208118811881,24.3046971163989,24.1594199718009,-2.66504950495049,-2.65040929602064,-2.11121605659676,1.92044287791611,1.52361088597398,1.56304966206964,53.5424389309006,0.0165604673250287,1379.37821782178,1380.47596314087,1380.37197548326,1.05801372809607,3125.56022803216,152.328865814212,0,3125.56022803216,85.0534603470247,85.0534603470247,0.00595666002244414,85.053294483734,24.8,1015,40.83,584.816326406607 +46188,2873.92516188119,456.804020792079,225,85.0594455445545,87.611228910891,19.6415132011881,-0.461980198019802,1841.50495049505,708.263366336634,675.991089108911,20,40,11,32,5305977.63194573,396364.687604704,0,0,0,0,0,0,0,85.0594455445544,18861.8996226343,39.2830264023763,21.0667465761257,21.5916449493456,-0.461980198019802,-0.447339989089945,-0.352489859266251,2.91437199609153,2.31215879945415,2.18908519762101,53.5672076298563,-0.00993628039501723,1384.25445544554,1375.60585236741,1375.13189061763,1.05808391952302,3138.33093955148,81.3577506612318,0,3138.33093955148,85.0634063327124,85.0634063327124,0.00333572961258107,85.0634456388495,24.8,1015,40.82,467.255858338851 +46189,2873.91728227723,456.789114752475,225,85.0510495049505,87.602580990099,21.6779801980198,-2.34683168316832,1839.61881188119,652.348514851485,651.211881188119,20,40,11,32,5305963.36970815,396345.857677809,0,0,0,0,0,0,0,85.0510495049503,18885.5271013747,43.3559603960396,23.2509843022853,23.322823537425,-2.34683168316832,-2.33219147423846,-1.84759701684714,1.84085032068122,1.46046498976426,1.57369520526343,53.5123420815882,-0.00597616864337992,1303.5603960396,1309.42045877855,1310.05702970297,1.05818882936532,2952.8147410066,-178.690026192707,0,2952.8147410066,85.0545254386824,85.0545254386824,-0.00709897722446688,85.054621687883,24.8,1015,40.81,545.12893108134 +46190,2873.90938970297,456.774224356436,225,85.0404455445545,87.591658910891,21.2752849285149,-1.71643564356436,1839.92574257426,668.586138613861,693.275247524752,20,40,11,32,5305949.08315541,396327.046712604,0,0,0,0,0,0,0,85.0404455445543,18909.1509494495,42.5505698570297,22.8190685377936,22.9797190445464,-1.71643564356436,-1.7017954346345,-1.33125383376152,2.00372607522596,1.58968480439102,1.56236625556679,53.5212703335373,0.0109443088408885,1361.86138613861,1360.64755416136,1360.4929844413,1.05832059147316,3085.55239453849,-115.126357185819,0,3085.55239453849,85.0412762474266,85.0412762474266,-0.00469452885882856,85.0410805280527,24.8,1015.00126237624,40.7848514851485,529.590430510872 +46191,2873.90149693069,456.759336633663,225,85.0513069306931,87.6028461386138,20.5261721672277,-1.90594059405941,1841.41089108911,665.155445544555,717.311881188119,20,40,11,32,5305934.79623632,396308.238977526,0,0,0,0,0,0,0,85.0513069306929,18932.772423872,41.0523443344554,22.0155984315279,22.3433871868464,-1.90594059405941,-1.89130038512955,-1.48343333686321,2.19692011363797,1.74295806412432,1.74508078292147,53.5644715526461,-0.00208805892359057,1382.46732673267,1375.92166454269,1375.57100424328,1.05818493263081,3134.55539562954,89.7436502912979,0,3134.55539562954,85.038916086658,85.038916086658,0.00360667254844087,85.0387801037245,24.8,1015.01,40.67,500.280737489487 +46192,2873.89360594059,456.744444158416,225,85.0579306930693,87.6096686138614,22.7134653465346,-2.40039603960396,1840.07920792079,639.269306930693,665.780198019802,20,40,11,32,5305920.51278506,396289.425288521,0,0,0,0,0,0,0,85.0579306930692,18956.3971116607,45.4269306930693,24.3616066348755,24.2040623665932,-2.40039603960396,-2.38575583067411,-1.90786943825913,2.2653967474677,1.79728498315825,1.73581319782001,53.5257344595119,-0.0133203758918709,1305.04950495049,1315.07728654054,1315.70297029703,1.05810279262295,2956.42558331684,-24.7799583733643,0,2956.42558331684,85.0493825115184,85.0493825115184,-0.000882266444470016,85.0489857614332,24.8,1015.02,40.54,587.944452883419 +46193,2873.8857049505,456.729567128713,225,85.0205148514851,87.5711302970297,22.7429306930693,-2.48920792079208,1839.56930693069,685.89801980198,687.120792079208,20,40,11,32,5305906.21052479,396270.630413313,0,0,0,0,0,0,0,85.020514851485,18980.0182722493,45.4858613861386,24.3932100547273,24.2276106540551,-2.48920792079208,-2.47456771186222,-1.97100047922529,1.93792334623077,1.53747926608692,1.60100843004243,53.5109020409512,0.00936026414023361,1373.01881188119,1368.60110773454,1368.34342291372,1.05856849481438,3110.9179238353,-44.3434893345923,0,3110.9179238353,85.0304501519458,85.0304501519458,-0.00185030879325509,85.0306016030173,24.8,1015.03,40.41,588.249885990036 +46194,2873.87780009901,456.714693663366,225,85.0371089108911,87.5882221782178,24.0058712871287,-3.1149504950495,1840.28217821782,659.665346534653,703.810891089109,20,40,11,32,5305891.90109226,396251.839756242,0,0,0,0,0,0,0,85.037108910891,19003.6382152636,48.0117425742574,25.7477925231566,25.3026123039687,-3.1149504950495,-3.10031028611965,-2.49627966849303,2.73765228877159,2.17195568644567,2.16834100535399,53.5316386261234,-0.00331209346500574,1363.47623762376,1363.56958141359,1363.68785478548,1.05836184533042,3090.22430416847,-25.7990311415541,0,3090.22430416847,85.0294119203998,85.0294119203998,-0.00100480345064304,85.0294658180103,24.8,1015.04,40.28,641.247420172878 +46195,2873.86991871287,456.699794653466,225,85.0008514851485,87.550877029703,25.0188712871287,-3.32079207920792,1839.9702970297,635.434653465347,727.3,20,40,11,32,5305877.63575793,396233.017967254,0,0,0,0,0,0,0,85.0008514851484,19027.2564209017,50.0377425742574,26.834298133138,26.1620038473196,-3.32079207920792,-3.30615187027807,-2.68320264047045,3.57879058817357,2.83928481365675,2.79425891534633,53.5225663701106,-0.00993628039501722,1362.73465346535,1363.37193412411,1363.60390381895,1.05881316259558,3089.19604905416,-124.896372487848,0,3089.19604905416,85.0134780903832,85.0134780903832,-0.00491509546994508,85.0136691183403,24.8,1015.05,40.15,684.907130375418 +46196,2873.86206673268,456.684867425743,225,84.9966732673267,87.5465734653466,24.5571386138614,-3.27574257425743,1839.5396039604,672.255445544554,746.509900990099,20,40,11,32,5305863.425586,396214.161914398,0,0,0,0,0,0,0,84.9966732673266,19050.8677336355,49.1142772277228,26.3390610750761,25.7690050746153,-3.27574257425743,-3.26110236532757,-2.63851304628073,3.10433965636229,2.46287236584025,2.51988867173018,53.5100380165691,0.00871224585360206,1418.76534653465,1414.84252524262,1414.37821782178,1.0588651168114,3215.56599109962,-59.32569621763,0,3215.56599109962,85.0014507401234,85.0014507401234,-0.00244393251204912,85.0016048090522,24.8,1015.06,40.02,664.192673847394 +46197,2873.85424009901,456.669916039604,225,84.9717623762376,87.5209152475247,24.1570297029703,-3.15722772277228,1840.39108910891,666.179207920792,743.337623762376,20,40,11,32,5305849.26296644,396195.276519393,0,0,0,0,0,0,0,84.9717623762375,19074.4773617433,48.3140594059406,25.9099193413281,25.4272197659319,-3.15722772277228,-3.14258751384242,-2.5360013034086,2.73346703127072,2.16863525241336,2.13323542184371,53.5348067155247,0.00597616864337992,1409.51683168317,1411.70021566513,1412.30115983027,1.05917596741171,3196.95396627355,-93.1969812823226,0,3196.95396627355,84.9809732379177,84.9809732379177,-0.0037768628348063,84.9815413484205,24.8,1015.07,39.89,646.770362067119 +46198,2873.84643693069,456.654944752475,225,84.9765445544554,87.5258408910891,23.3815742574258,-2.54128712871287,1839.73267326733,720.121782178218,779.315841584158,20,40,11,32,5305835.14431952,396176.367023172,0,0,0,0,0,0,0,84.9765445544553,19098.0822911162,46.7631485148515,25.078195065045,24.7681126951145,-2.54128712871287,-2.52664691978302,-2.02501565037468,2.10936934001737,1.67349840286716,1.69990347742438,53.5156541750532,-0.0118083332230639,1499.43762376238,1491.57539456916,1491.13116454503,1.05911726204948,3399.7505332485,0.108662180616004,0,3399.7505332485,84.9814645622977,84.9814645622977,0.000100752649515872,84.981743705799,24.8,1015.08,39.76,614.013159444829 +46199,2873.83863722772,456.639964752475,225,85.0229306930693,87.5736186138614,23.5683465346535,-3.1639603960396,1838.42574257426,721.774257425743,762.014851485148,20,40,11,32,5305821.03234781,396157.446696218,0,0,0,0,0,0,0,85.0229306930692,19121.6930244771,47.1366930693069,25.2785199682996,24.9292279146376,-3.1639603960396,-3.14932018710975,-2.53042693214383,2.24100266084576,1.77793158485727,1.76280616740964,53.4776371022375,0.00950426820392952,1483.78910891089,1446.53601607685,1441.73681282414,1.05853862123072,3359.74546354516,36.386796183194,0,3359.74546354516,85.0093413390842,85.0093413390842,0.00137786055834204,85.0086231023101,24.8,1015.09,39.63,621.847555797465 +46200,2873.83083851485,456.624986831683,225,84.8970891089109,87.4440017821782,22.4041485148515,-3.08069306930693,1829.68811881188,-109.349504950495,-80.3673267326732,20,40,11,32,5305806.92222446,396138.528899601,0,0,0,0,0,0,0,84.8970891089108,19145.2997902637,44.808297029703,24.0298450624318,23.9316210262348,-3.08069306930693,-3.06605286037708,-2.44017351465965,1.74696377137686,1.38597875004758,1.39279175855228,53.2234699298142,-0.00741620928033894,-189.716831683169,-326.567316929713,-343.901037246582,1.06011035342959,-423.630565092671,-3379.19642279207,0,-423.630565092671,84.8445427899224,84.8445427899224,-0.135107941487223,84.8406812824138,24.8,1015.09873762376,39.5113613861386,573.514421929728 +46201,2873.82308851485,456.610111485148,225,83.6863861386139,86.1969777227723,22.1697326732673,-2.73841584158416,1793.16831683168,-3249.62871287129,-2917.0801980198,20,40,11,32,5305792.90009486,396119.740410721,0,0,0,0,0,0,0,83.6863861386138,19168.7527056927,44.3394653465347,23.778419468207,23.6631059414888,-2.73841584158416,-2.7237756326543,-2.1706173179193,1.63622606985646,1.29812340716578,1.29243588014158,52.1611519519295,-0.0208805892359058,-6166.70891089109,-6006.61647877659,-5958.8653468629,1.07551017924056,-13807.5996151821,-15247.6100497094,0,-13807.5996151821,83.5896566022938,83.5896566022938,-0.609735973597352,83.57720814342,24.8,1015.1,39.46,560.407624701069 +46202,2873.81553356436,456.595616534654,225,80.8208415841584,83.2454668316831,21.3738910891089,-2.56673267326733,1727.39108910891,-4466.31386138614,-3915.8405940594,20,40,11,32,5305779.23079251,396101.432193294,0,0,0,0,0,0,0,80.8208415841583,19191.6098246146,42.7477821782178,22.9248297882024,22.8216500862957,-2.56673267326733,-2.55209246433747,-2.03187892993143,1.60276071138292,1.27157318530829,1.31695405849674,50.2477699576021,-0.00784822147142664,-8382.15445544555,-8369.72527203215,-8370.02189448658,1.11368540972535,-18760.343154905,-20429.474735811,0,-18760.343154905,80.8250576414076,80.8250576414076,-0.817116241327093,80.8261177307351,24.8,1015.1,39.42,521.409186236492 +46203,2873.80824039604,456.581641287129,225,77.932603960396,80.2705820792079,20.3567326732673,-2.97465346534654,1666.77722772277,-4435.90693069307,-3865.01485148515,20,40,11,32,5305766.03479998,396083.780014358,0,0,0,0,0,0,0,77.9326039603959,19213.6532527499,40.7134653465346,21.8338640181612,21.7899253433488,-2.97465346534654,-2.96001325641668,-2.35037131698603,1.54884353135541,1.2287972176523,1.22183951261534,48.4845842017094,-0.022032621745473,-8300.92178217822,-8300.6139692187,-8301.42629780047,1.15496136464735,-18590.9621815848,-19945.599481413,0,-18590.9621815848,77.9328090383295,77.9328090383295,-0.797646472568055,77.9324841927114,24.8,1015.1,39.38,475.332886648397 +46204,2873.80119564356,456.568184455446,225,75.0577227722772,77.3094544554456,20.1752376237624,-2.15841584158416,1602.41089108911,-4522.28712871287,-3802.44158415842,20,40,11,32,5305753.28738118,396066.781833506,0,0,0,0,0,0,0,75.0577227722772,19234.8982419138,40.3504752475247,21.639199270411,21.4714978988603,-2.15841584158416,-2.1437756326543,-1.71008086148896,1.66916457709665,1.32425564404509,1.33042229241964,46.6122433655353,-0.0158404470065492,-8324.72871287128,-8325.72885991569,-8325.16475169524,1.19921032631254,-18611.2221972019,-19943.4972982787,0,-18611.2221972019,75.0592703656503,75.0592703656503,-0.797612434510777,75.0593338906611,24.8,1015.1,39.34,461.585135182384 +46205,2873.79440148515,456.555247722772,225,72.1656534653466,74.3306230693069,19.7302871287129,-2.97792079207921,1547,-4577.2900990099,-3768.42079207921,20,40,11,32,5305740.99252747,396050.43982847,0,0,0,0,0,0,0,72.1656534653464,19255.3443240645,39.4605742574257,21.1619621440188,20.9263139620554,-2.97792079207921,-2.96328058314935,-2.37097065767691,1.76687813295632,1.40177809427103,1.48363858106055,45.0004058805871,-0.0159844510702451,-8345.71089108911,-8348.04924027056,-8347.90329713756,1.24729210611371,-18735.1769777753,-20215.0954583474,0,-18735.1769777753,72.171056563082,72.171056563082,-0.808474659347132,72.1704901904905,24.8,1015.1,39.3,438.583056994087 +46206,2873.78787881188,456.542817425743,225,69.2731188118811,71.3513123762376,20.6731287128713,-3.15930693069307,1487.75247524752,-4565.07623762376,-3775.33267326733,20,40,11,32,5305729.18923746,396034.737683919,0,0,0,0,0,0,0,69.273118811881,19274.9831545376,41.3462574257426,22.1732184821352,21.5626856720854,-3.15930693069307,-3.14466672176322,-2.55827550294586,3.18509921441916,2.52694411888058,2.41926861202436,43.2769652462746,-0.023472662382432,-8340.40891089109,-8334.69755906284,-8334.08622246064,1.29937827691092,-18756.9128836028,-19854.0063715831,0,-18756.9128836028,69.2807480639152,69.2807480639152,-0.793970362382753,69.2818222798712,24.8,1015.1,39.26,465.523533173987 +46207,2873.78161653465,456.530894752475,225,66.4081287128713,68.4003725742574,19.6457920792079,-2.37227722772277,1419.5198019802,-4641.81683168317,-3887.9396039604,20,40,11,32,5305717.85693851,396019.676517733,0,0,0,0,0,0,0,66.4081287128712,19293.8268520623,39.2915841584158,21.0713359393764,20.5248240476524,-2.37227722772277,-2.35763701879292,-1.91273248624546,2.85936221710688,2.26851600275353,2.21313547358286,41.292157236354,-0.0082082316306664,-8529.75643564357,-8530.33873149691,-8568.95887521475,1.35547010976186,-19094.8516033751,-20348.1504578156,0,-19094.8516033751,66.4019999019704,66.4019999019704,-0.813859480007416,66.3977741174009,24.8,1015.1,39.22,421.822297019756 +46208,2873.77559940594,456.519521881188,225,63.3455643564357,65.2459312871287,18.696603960396,-2.71247524752475,1507.9900990099,-5144.19504950495,-4265.34752475248,20,40,11,32,5305706.96643523,396005.308370384,0,0,0,0,0,0,0,63.3455643564355,19311.8535194166,37.3932079207921,20.0532725474545,19.5410233414885,-2.71247524752475,-2.6978350385949,-2.18686305553818,2.76918410418084,2.19697190419653,2.28052007049046,43.8656538586634,0.0432012191087706,-9409.54257425742,-9411.49452014508,-9370.68640700489,1.4211020542114,-23515.7783397632,-22257.6703779087,0,-23515.7783397632,63.3410608763846,63.3410608763846,-0.890684736790507,63.3328113262481,24.8,1015.1,39.18,382.734596247681 +46209,2873.76986792079,456.508718316832,225,60.094495049505,61.8973299009901,18.2807425742574,-2.17821782178218,1503.89603960396,-5232.17128712871,-4408.62277227723,20,40,11,32,5305696.59229532,395991.658898608,0,0,0,0,0,0,0,60.0944950495049,19328.993398927,36.5614851485148,19.6072353026231,19.0013445416959,-2.17821782178218,-2.16357761285232,-1.76754782798237,3.08080693239461,2.44420234194832,2.44327048511127,43.7465624979869,-0.0326889224589697,-9640.79405940594,-9649.84191745907,-9638.39895811253,1.49801879003712,-25265.5275716503,-22425.838959516,0,-25265.5275716503,60.1019839231447,60.1019839231447,-0.896724449672696,60.1027569500587,24.8,1015.1,39.14,361.545780114973 +46210,2873.76441861386,456.498500792079,225,56.872594059406,58.5787718811881,17.1131485148515,-2.30594059405941,1419.62871287129,-5208.95346534653,-4389.40198019802,20,40,11,32,5305686.72771906,395978.748838424,0,0,0,0,0,0,0,56.8725940594059,19345.2353336355,34.226297029703,18.3549179327064,17.8230250389507,-2.30594059405941,-2.29130038512955,-1.86994643864624,2.72260827235664,2.16002030037292,2.13414479806141,41.2953253257553,-0.0274327741340693,-9598.35544554456,-9587.28155082835,-9585.14057437412,1.58294075618983,-25089.5372810602,-22375.9327061071,0,-25089.5372810602,56.8766666993431,56.8766666993431,-0.894778834319066,56.8817184802607,24.8,1015.1,39.1050495049505,318.072926709569 +46211,2873.75925089109,456.488858613861,225,53.7367623762376,55.3488652475248,16.4787623762376,-2.47564356435644,1341.66831683168,-5156.22574257426,-4339.2306930693,20,40,11,32,5305677.37184131,395966.564856667,0,0,0,0,0,0,0,53.7367623762375,19360.5884863308,32.9575247524753,17.6744992767356,17.1030170087136,-2.47564356435644,-2.46100335542658,-2.01163241796727,2.90864929859619,2.30761861536364,2.2597229611651,39.0275493306722,-0.022032621745473,-9495.45643564356,-9490.8655818057,-9483.76902493354,1.67530499053128,-24826.0383562692,-21712.1356881776,0,-24826.0383562692,53.7243537888442,53.7243537888442,-0.868278164450113,53.7206331483948,24.8,1015.1,39.0999999999999,292.829460707079 +46212,2873.75435762376,456.479782376238,225,50.6053762376237,52.1235375247525,15.3819801980198,-2.31029702970297,1262.57920792079,-5047.04752475248,-4247.47128712871,20,40,11,32,5305668.51166396,395955.095004876,0,0,0,0,0,0,0,50.6053762376237,19375.072594169,30.7639603960396,16.4981320609791,15.9901621707222,-2.31029702970297,-2.29565682077312,-1.87399016821729,2.6054949324925,2.06710675341889,2.09428350623489,36.7269404090665,-0.02635274365635,-9294.51881188119,-9315.22062542888,-9427.50244470876,1.77898826933492,-24283.8182480203,-21151.9714533236,0,-24283.8182480203,50.6085258308009,50.6085258308009,-0.84583074644098,50.6203555168456,24.8,1015.1,39.0999999999999,256.085230291424 +46213,2873.74973673267,456.471257425743,225,47.5083069306931,48.9335561386139,13.970900990099,-2.55544554455446,1231.26237623762,-5621.63366336634,-4728.85841584158,20,40,11,32,5305660.14366055,395944.320965712,0,0,0,0,0,0,0,47.508306930693,19388.7032179864,27.941801980198,14.984661700136,14.6119877625479,-2.55544554455446,-2.5408053356246,-2.0641993610328,1.97144287216812,1.5640724624783,1.60845808232337,35.8159707021262,0.0473053349241037,-10350.4920792079,-10476.4336241545,-10623.6778559525,1.89519239819049,-28243.1005774596,-23409.3418790766,0,-28243.1005774596,47.4789015782766,47.4789015782766,-0.936890718774849,47.4001090283527,24.8,1015.1,39.0999999999999,213.957546054397 +46214,2873.74542772277,456.463330891089,225,43.735801980198,45.047876039604,12.6843069306931,-1.88584158415842,1493.37623762376,-6960.08415841584,-5793.7297029703,20,40,11,32,5305652.33994527,395934.302773935,0,0,0,0,0,0,0,43.735801980198,19401.3906616608,25.3686138613861,13.6047094165098,13.3010405595858,-1.88584158415842,-1.87120137522856,-1.5116310544148,1.74239498782885,1.38235404012808,1.36986987930493,43.4405538626331,0.0145444104332861,-12753.8138613861,-12592.3212234095,-12088.7625011277,2.05941458848464,-45660.1918770406,-28094.3515006751,0,-45660.1918770406,43.7273759435349,43.7273759435349,-1.12392167434565,43.6969856573499,24.8,1015.1,39.0999999999999,177.820328074803 +46215,2873.74149465347,456.456098316832,225,39.7289603960396,40.9208292079208,11.579801980198,-2.64445544554455,1373.32178217822,-6340.13465346535,-5290.6603960396,20,40,11,32,5305645.2170278,395925.161597736,0,0,0,0,0,0,0,39.7289603960395,19412.9682735695,23.159603960396,12.4200590463566,12.1313472866785,-2.64445544554455,-2.6298152366147,-2.13159320165055,1.56537481106512,1.24191254537927,1.25685039065361,39.9483113139438,-0.0299528452487476,-11630.795049505,-11411.6304283894,-10522.5279688708,2.26711406625269,-42095.9054945332,-25535.9393313478,0,-42095.9054945332,39.7668563866287,39.7668563866287,-1.02104641157185,39.9454224831059,24.8,1015.1,39.0999999999999,147.432371858892 +46216,2873.73790584158,456.449484752475,225,36.7343069306931,37.8363361386138,10.9342772277228,-2.5060396039604,1292.9801980198,-2714.97128712871,-2278.21287128713,20,40,11,32,5305638.71789991,395916.803017224,0,0,0,0,0,0,0,36.734306930693,19423.5419918038,21.8685544554455,11.727693533083,11.4105609963967,-2.5060396039604,-2.49139939503054,-2.02693782947439,1.64177460186279,1.30252541456899,1.27939286190201,37.611269364223,-0.0118803352549119,-4993.18415841584,-5135.18432506617,-5548.3159986015,2.45067724529163,-18275.6944331573,-12415.5377768893,0,-18275.6944331573,36.8692561513577,36.8692561513577,-0.496464126610677,37.3497490858358,24.8,1015.1,39.0999999999999,130.387682561641 +46217,2873.73451277228,456.443144752475,225,36.0935544554456,37.1763610891089,10.2548514851485,-2.89514851485149,1266.13861386139,-348.490099009901,-304.145544554455,20,40,11,32,5305632.57521962,395908.791744473,0,0,0,0,0,0,0,36.0935544554455,19433.6198853681,20.509702970297,10.9989670958937,10.7953998392664,-2.89514851485149,-2.88050830592163,-2.32137860857496,1.24490016872427,0.987659394002554,0.992516555216023,36.8304793308638,-0.0127443596370873,-652.635643564357,-789.826909126556,-1940.83688858014,2.49355993507979,-2392.7738193629,-2665.64396669592,0,-2392.7738193629,36.0681757670816,36.0681757670816,-0.106457427921009,36.0832073499543,24.8,1015.1,39.0999999999999,116.845686821201 +46218,2873.73124277228,456.436798712871,225,35.5033960396039,36.5684979207921,9.6089405940594,-2.9009900990099,1246.37128712871,-818.895049504951,-719.994059405941,20,40,11,32,5305626.66065246,395900.777042985,0,0,0,0,0,0,0,35.5033960396039,19443.5705600381,19.2178811881188,10.3061874249002,10.2119502200787,-2.9009900990099,-2.88634989008005,-2.30854961550212,0.849373014161984,0.673862256207268,0.707509899571955,36.2554711045261,0.00180005079619877,-1538.88910891089,-1534.18763846682,-1422.90781999765,2.53506353949613,-5657.65921170398,-5189.75796099106,0,-5657.65921170398,35.485033232036,35.485033232036,-0.207614449563768,35.4357682483101,24.8,1015.1,39.0999999999999,104.514789420881 +46219,2873.72822653465,456.430387227723,225,34.6756930693069,35.7159638613862,8.48966336633663,-3.09435643564356,1223.9702970297,-1015.19504950495,-849.902970297029,20,40,11,32,5305621.21762175,395892.689276942,0,0,0,0,0,0,0,34.6756930693069,19453.3172226894,16.9793267326733,9.10569286710625,9.21201921251823,-3.09435643564356,-3.07971622671371,-2.40785862232124,1.08339831474377,0.859529583082752,0.784296013880247,35.6038527163021,-0.0077762194395787,-1865.09801980198,-2061.33759435349,-2926.79142052463,2.59558981368603,-6892.28752174449,-5911.62571755183,0,-6892.28752174449,34.6756174884815,34.6756174884815,-0.236361631212631,34.5746913811595,24.8,1015.1,39.0999999999999,85.5138347321178 +46220,2873.72561267327,456.423823267327,225,33.4637722772277,34.4676854455446,7.55360396038614,-0.645643564356436,1168.93564356436,-3227.69900990099,-2765.58217821782,20,40,11,32,5305616.52336743,395884.424998654,0,0,0,0,0,0,0,33.4637722772277,19462.8101252471,15.1072079207723,8.1017108376481,8.34658684089553,-0.645643564356436,-0.631003355426577,-0.481078270835012,1.48282530446353,1.17642071100279,1.26352920545583,34.0029595401948,-0.0273607721022213,-5993.28118811881,-5614.67159102049,-3947.67654625538,2.69040454779425,-21904.3687001139,-13376.6161729328,0,-21904.3687001139,33.3959900990099,33.3959900990099,-0.534703841671291,33.2046478532336,24.8,1015.1,39.0987376237623,71.3910168567757 +46221,2873.72344851485,456.41733920792,225,31.3828514851485,32.324337029703,8.04488888888119,-2.51108910891089,1109.03465346535,-1821.29603960396,-1478.43960396039,20,40,10.6633663366337,32,5305612.66033272,395876.275271175,0,0,0,0,0,0,0,31.3828514851485,19471.7939371833,16.0897777777624,8.62864453054958,8.64491801149575,-2.51108910891089,-2.49644889998104,-1.99519772998166,2.11306699428732,1.67643198988661,1.61657286961878,32.2605103694744,-0.00964827226762542,-3299.73564356436,-3448.42289971571,-3578.60491905543,2.86824244621338,-12174.0045449017,-9287.30438779406,0,-12174.0045449017,31.4747535535731,31.4747535535731,-0.371363373961163,31.8402577337236,24.8,1015.1,39.09,78.1280172787648 +46222,2873.72175069307,456.410882475247,225,30.7118613861386,31.6332172277227,8.22205940594059,-3.40514851485148,1085.32178217822,-804.292079207921,-665.934653465347,20,40,10.5544554455446,32,5305609.66051026,395868.175160621,0,0,0,0,0,0,0,30.7118613861386,19480.4038789325,16.4441188118812,8.81867094783325,8.75697505883098,-3.40514851485148,-3.39050830592163,-2.68945303224162,1.7296390914004,1.37223396684591,1.38973882366999,31.570730904371,-0.00928826210838567,-1470.22673267327,-1503.86646407215,-2093.57541335488,2.93058807992813,-5440.34472748081,-3762.93481208914,0,-5440.34472748081,30.7115476914027,30.7115476914027,-0.150392390724221,30.792871098143,24.8,1015.1,39.08,78.629229853099 +46223,2873.72058970297,456.404364851485,208.960396039604,30.214297029703,31.120725940594,9.4929801980198,-3.28227722772277,1068.43564356436,-790.10198019802,-656.783168316832,20,40,10.8118811881188,32,5305607.65646385,395860.017130953,0,0,0,0,0,0,0,30.2142970297029,19488.8592800326,18.9859603960396,10.1818126758057,9.80983417745184,-3.28227722772277,-3.26763701879292,-2.68218071874943,1.87910455553056,1.49081453534111,1.50407215941221,31.0795330431043,-0.00950426820392951,-1446.88514851485,-1448.65899421625,-1463.3063959814,2.97877375823165,-5358.02029644023,-2801.11002751244,0,-5358.02029644023,30.2228553083031,30.2228553083031,-0.111917132307285,30.248727083025,24.8,1015.1,39.07,96.4497324985767 +46224,2873.71977148515,456.39778970297,171.534653465347,29.8310297029703,30.7259605940594,9.35763366336634,-3.5,1049.14851485149,-783.631683168317,-657.256435643564,20,40,10,32,5305606.28865364,395851.79889281,0,0,0,0,0,0,0,29.8310297029703,19497.2014765397,18.7152673267327,10.0366450852899,9.67260225929892,-3.5,-3.48535979107015,-2.85828160398622,1.84644552693826,1.46490402685332,1.41582247719507,30.5184932109451,-0.00763221537588279,-1440.88811881188,-1439.8722576218,-1446.06099349259,3.01707951239435,-5306.75976576918,-3433.12633577269,0,-5306.75976576918,29.8118732477208,29.8118732477208,-0.137223747127186,29.7646635495349,24.8,1015.1,39.06,93.8254133691053 +46225,2873.7192350495,456.391284455446,107.376237623762,29.2525247524753,30.1301004950495,8.46252475247525,-3.5,1032.66831683168,-787.640594059406,-660.147524752476,20,40,10,32,5305605.44124054,395843.677148638,0,0,0,0,0,0,0,29.2525247524752,19505.4069627333,16.9250495049505,9.07658501300209,8.87780913781886,-3.5,-3.48535979107015,-2.8197813225392,1.11080925263268,0.88127644358173,0.937656257306991,30.0391036829014,-0.00122403454141516,-1447.78811881188,-1449.38008038428,-1625.40431699283,3.07675344300338,-5351.90279283716,-3661.92511735671,0,-5351.90279283716,29.2596538574649,29.2596538574649,-0.146460314348272,29.2736711170438,24.8,1015.1,39.05,78.987134738383 +46226,2873.71906415842,456.384837623763,53.9108910891089,28.7719900990099,29.6351498019802,8.41253465346535,-3.5,1015.77722772277,-973.976237623762,-828.104950495049,20,40,9.78217821782178,32,5305605.26963901,395835.64039363,0,0,0,0,0,0,0,28.7719900990099,19513.4653902361,16.8250693069307,9.02296751742678,8.80772174567005,-3.5,-3.48535979107015,-2.82402255673287,1.21859277333988,0.966788044768374,0.91383007212569,29.547761817571,-0.00684019302555533,-1802.08118811881,-1924.06995392609,-3547.74087158386,3.12816553947449,-6665.47610184402,-4203.58982907514,0,-6665.47610184402,28.7542336045485,28.7542336045485,-0.168052696358738,28.398753275593,24.8,1015.1,39.04,77.8601006217892 +46227,2873.71918673267,456.378474158416,45,27.5023663366337,28.3274373267327,8.21609900990099,-3.40475247524752,955.811881188119,-3803.74059405941,-3288.38118811881,20,40,9.83168316831683,32,5305605.63977229,395827.717302299,0,0,0,0,0,0,0,27.5023663366336,19521.3287522548,16.432198019802,8.81227805174762,8.56783371352037,-3.40475247524752,-3.39011226631767,-2.75650197911461,1.31324859917606,1.04188460104884,1.08520129652465,27.8034405940225,-0.0394571134526771,-7092.12178217822,-6962.83931967455,-5538.10861099982,3.27544265606848,-25676.6393555032,-20090.6077942152,0,-25676.6393555032,27.3100000980296,27.3100000980296,-0.803110261521203,26.444648985059,24.8,1015.1,39.03,73.7525683173239 +46228,2873.71955623762,456.372893267327,45,23.2955247524752,23.9943904950495,7.25538613861386,-3.49128712871287,1000.4504950495,-4923.61386138614,-4084.79405940594,20,40,9.1980198019802,32,5305606.44971825,395820.77734827,0,0,0,0,0,0,0,23.2955247524752,19528.40020363,14.5107722772277,7.78185364480306,7.50913444032677,-3.49128712871287,-3.47664691978302,-2.84745946081547,1.39063221395585,1.1032780010975,1.0740210505133,29.1019252363685,0.0715700196568632,-9008.40792079208,-8547.99661797863,-5193.74242610088,3.87162572169636,-39719.8961737106,-23705.2631648833,0,-39719.8961737106,23.475139202039,23.475139202039,-0.949350009258349,24.3617398716967,24.8,1015.1,39.02,56.705417074636 +46229,2873.72009940594,456.36805,45,21.751801980198,22.404356039604,6.70655445544555,-3.5,1091.84158415842,-1235.26336633663,-1001.83663366337,20,40,9.86138613861386,32,5305607.56476826,395814.762086446,0,0,0,0,0,0,0,21.751801980198,19534.5761635584,13.4131089108911,7.19319747234707,6.95362586456303,-3.5,-3.48535979107015,-2.8499391720191,1.22937565108228,0.975342795393539,0.963057917483224,31.7603842562585,-0.0141844002740463,-2237.1,-2684.00075482796,-4629.09302951912,4.13766379253917,-11763.8654595478,-4504.60726479144,0,-11763.8654595478,21.7519232428193,21.7519232428193,-0.179914278556568,22.5499703737697,24.8,1015.1,39.01,48.504212593665 +46230,2873.72085722772,456.363405445545,45,20.9933861386139,21.6231877227723,6.46613861386139,-3.5,1063.62871287129,-1055.91782178218,-866.024752475248,20,40,10,32,5305609.07296719,395809.001548517,0,0,0,0,0,0,0,20.9933861386138,19540.5256402361,12.9322772277228,6.93533650432179,6.70557626409344,-3.5,-3.48535979107015,-2.85001563632929,1.17576430863088,0.932809468362606,0.939629710165802,30.9397050972556,-0.00432012191087705,-1921.94257425743,-1927.63105577885,-1978.14712918074,4.28768083026773,-10195.9517722465,-4165.27743587117,0,-10195.9517722465,21.0722309577492,21.0722309577492,-0.16652642987071,21.3331287915296,24.8,1015.1,39.0050495049505,45.0587374090555 +46231,2873.72177445545,456.358937623763,45,20.6943267326733,21.3151565346535,6.20406930693069,-3.5,1042.77722772277,-780.426732673267,-646.049504950495,20,40,10,32,5305610.87247131,395803.466506335,0,0,0,0,0,0,0,20.6943267326732,19546.3146205717,12.4081386138614,6.65425084569974,6.46544171024891,-3.5,-3.48535979107015,-2.83651884872027,0.99799256199554,0.791771704882694,0.795648652380029,30.3331599809684,-0.00360010159239754,-1426.47623762376,-955.247005195569,428.31837885866,4.34963716458693,-7468.16292265141,-2450.28770719569,0,-7468.16292265141,20.6758548181551,20.6758548181551,-0.097945190558658,21.1052964225929,24.8,1015.1,39.03,41.9409020768084 +46232,2873.72279465347,456.354616039604,45,20.791396039604,21.4151379207921,5.99649504950495,-3.5,1053.36633663366,1766.12772277228,2066.07524752475,20,40,9.76237623762376,32,5305612.85942778,395798.117084393,0,0,0,0,0,0,0,20.7913960396039,19552.0331687565,11.9929900990099,6.43161452271771,6.29438916657184,-3.5,-3.48535979107015,-2.81764122496251,0.795277902645743,0.630945124054108,0.62430532881844,30.641184673214,0.0110163108727365,3832.20297029703,3425.71156749338,1879.52423586128,4.32978584599038,20341.6588828572,5698.89900556876,0,20341.6588828572,20.8234969120674,20.8234969120674,0.227747279678459,21.3156763853422,24.8,1015.1,39.06,39.7575783117202 +46233,2873.72395207921,456.350271188119,45,21.798297029703,22.4522459405941,5.96137623762376,-3.5,1089.15346534653,1853.27722772277,2287.36732673267,20,40,9.78217821782178,32,5305615.10110535,395792.743270985,0,0,0,0,0,0,0,21.7982970297029,19557.9545243396,11.9227524752475,6.39394740907032,6.32224348629369,-3.5,-3.48535979107015,-2.79153471002385,0.611660395574819,0.485269542735992,0.517048080865848,31.6821900496717,-0.0151204266880697,4140.64455445545,4074.95285756299,3305.29710010232,4.12933979981063,21670.1304775461,6652.78091855976,0,21670.1304775461,21.8020480345064,21.8020480345064,0.266384559248004,21.8959528696398,24.8,1015.1,39.09,40.0763405077384 +46234,2873.72535574257,456.345801089109,45,22.8320099009901,23.5169701980198,6.16938613861386,-3.5,898.970297029703,1878.36831683168,2350.35742574257,20,40,10,32,5305617.80172176,395787.221673104,0,0,0,0,0,0,0,22.8320099009901,19564.148248762,12.3387722772277,6.61705098691577,6.55850705371639,-3.5,-3.48535979107015,-2.78260606679219,0.768850567001784,0.609978618495704,0.615636252420452,26.1499859346662,-0.0627857717714132,4228.72574257426,4194.18816782668,3798.82143397958,3.94270471588906,17513.7816421877,7554.35583597245,0,17513.7816421877,22.8298232526223,22.8298232526223,0.303161999368258,22.7676324124258,24.8,1015.1,39.12,43.3647232802499 +46235,2873.72707643564,456.341344752475,45,23.7590396039604,24.4718107920792,7.13136633663366,-3.5,843.930693069307,1550.72178217822,1957.08712871287,20,40,9.2970297029703,32,5305621.08928143,395781.72782931,0,0,0,0,0,0,0,23.7590396039604,19570.6321780525,14.2627326732673,7.64883468073567,7.43017694369555,-3.5,-3.48535979107015,-2.8377753527661,1.14437896882215,0.90790945912908,0.877151193835906,24.5489487544952,0.00590416661153197,3507.80891089109,3490.3134986766,2806.72976281842,3.78828544747646,13045.3699785637,5173.88947363342,0,13045.3699785637,23.7511580237231,23.7511580237231,0.206876504482129,23.5853902445438,24.8,1015.1,39.15,55.3193584984117 +46236,2873.72912366337,456.336933762376,45,24.4775940594059,25.2119218811881,7.11808910891089,-3.5,861.752475247525,814.438613861386,1062.74257425743,20,40,9.97029702970297,32,5305624.98068017,395776.30140461,0,0,0,0,0,0,0,24.4775940594059,19577.3333852032,14.2361782178218,7.63459402683064,7.4600812222775,-3.5,-3.48535979107015,-2.8220736787051,0.976010318729819,0.774331777081184,0.801525729523429,25.0673633838004,-0.0120243393186078,1877.18118811881,1676.08138417802,1321.02385226395,3.67705511586668,6963.96811786819,2903.7807797641,0,6963.96811786819,24.4219812763454,24.4219812763454,0.116308041695258,24.0403030213259,24.8,1015.1,39.18,55.7936173371046 +46237,2873.73140069307,456.332633366337,45,24.2682673267327,24.9963153465347,7.00324752475248,-3.5,853.945544554455,-680.642574257425,-586.517821782178,20,40,10,32,5305629.29526786,395771.020445261,0,0,0,0,0,0,0,24.2682673267326,19584.1323066003,14.006495049505,7.51141927318081,7.3503633934861,-3.5,-3.48535979107015,-2.81840441305342,0.918810158181817,0.728951209769043,0.701875171791456,24.840268975352,0.00540015238859632,-1267.1603960396,-1044.52630134301,-462.088948475068,3.70877808414539,-4662.85304747395,-3629.27100654688,0,-4662.85304747395,24.2709329477502,24.2709329477502,-0.14523902885338,24.008277810419,24.8,1015.1,39.21,54.1638484535472 +46238,2873.73365693069,456.328452178218,45,23.7283663366337,24.4402173267327,6.64950495049505,-3.5,863.470297029703,-1360.53465346535,-1214.35940594059,20,40,10.7821782178218,32,5305633.56866438,395765.887298905,0,0,0,0,0,0,0,23.7283663366336,19590.7998327004,13.2990099009901,7.13200832409891,7.0184192155831,-3.5,-3.48535979107015,-2.80270560244389,0.827222387826553,0.6562887392837,0.677965671025747,25.1173327939029,0.0329049285545136,-2574.89405940594,-2488.91156749338,-2062.80866473862,3.79326759368801,-9905.40651428966,-5446.60525824589,0,-9905.40651428966,23.6893195765121,23.6893195765121,-0.218337799126447,23.4726691119335,24.8,1015.1,39.24,49.4693495381988 +46239,2873.73546613861,456.324161881188,45,22.6658712871287,23.3458474257426,7.04940594059406,-3.5,1007.42079207921,-1216.08712871287,-1524.71287128713,20,40,10.8811881188119,32,5305637.01646864,395760.60328362,0,0,0,0,0,0,0,22.6658712871287,19597.2467301152,14.0988118811881,7.56092704984394,7.29776000189791,-3.5,-3.48535979107015,-2.85389254193801,1.34663235641261,1.06837008339525,1.09946391426456,29.3046829580523,0.0164164632613328,-2740.8,-2967.89720615626,-2638.39362966262,3.97131378402887,-12771.7888326449,-7656.366282423,0,-12771.7888326449,22.6723656504264,22.6723656504264,-0.306523597904345,22.5609708727717,24.8,1015.1,39.27,53.4209632240164 +46240,2873.73672049505,456.319625247525,45,21.4217425742574,22.0643948514852,7.65180198019802,-3.5,1017.74752475248,-1635.99405940594,-2054.52376237624,20,40,10.7623762376238,32,5305639.44204605,395754.993841324,0,0,0,0,0,0,0,21.4217425742574,19603.3823698567,15.303603960396,8.20703433164088,7.73899309763616,-3.5,-3.48535979107015,-2.91701687057125,2.29814635057848,1.82326735023863,1.76087976582099,29.605075434922,-0.00799222553512255,-3690.51782178218,-3490.47624742672,-2539.94123149529,4.20328799827113,-18350.6989760022,-8740.69943109916,0,-18350.6989760022,21.4439104989707,21.4439104989707,-0.349480987702727,21.6130016814495,24.8,1015.1,39.2974752475247,60.0690829333188 +46241,2873.73713237624,456.31502019802,77.0792079207921,20.5946732673267,21.2125134653465,7.31511881188119,-3.48980198019802,952.69801980198,-780.126732673267,-976.546534653465,20,40,10.6039603960396,32,5305640.30861605,395749.270985914,0,0,0,0,0,0,0,20.5946732673267,19609.1925453792,14.6302376237624,7.84592065823262,7.4051036541643,-3.48980198019802,-3.47516177126817,-2.90604875388822,2.16530705580224,1.71787739152983,1.74955713547309,27.7128620379578,-0.0170644815479644,-1756.67326732673,-1796.42037055191,-1304.68935829616,4.37038271901719,-8513.76826321507,-4462.02585988327,0,-8513.76826321507,20.573731006764,20.573731006764,-0.178183783724908,20.7342299965625,24.8,1015.1,39.31,55.010460585516 +46242,2873.73657069307,456.310522772277,205.39603960396,19.7222475247525,20.313914950495,7.01826732673267,-3.4709900990099,894.569306930693,-311.154455445544,-475.942574257426,20,40,10.8118811881188,32,5305639.36939537,395743.64962358,0,0,0,0,0,0,0,19.7222475247525,19614.8005257147,14.0365346534653,7.52752894653945,7.10250526371276,-3.4709900990099,-3.45634989008005,-2.89098337383779,2.08747496969749,1.65612819032685,1.6762677461239,26.0219663220405,-0.0115923271275201,-787.09702970297,-460.849122635035,378.167280794953,4.56426893563415,-3723.74421249882,-5089.12776938042,0,-3723.74421249882,19.7697048328595,19.7697048328595,-0.203366500016339,20.257705078102,24.8,1015.1,39.32,50.6289102358966 +46243,2873.73513544555,456.30664990099,225,19.6140693069307,20.2024913861386,7.187,-3.29732673267327,871.361386138614,2051.29504950495,1726.71188118812,20,40,10.7524752475248,32,5305636.79798409,395738.777050836,0,0,0,0,0,0,0,19.6140693069307,19620.2290277775,14.374,7.70850525067777,7.23993954861201,-3.29732673267327,-3.28268652374341,-2.75761152613272,2.29384179551645,1.81985226977609,1.79056145776301,25.3468752714341,0.00100802844587131,3778.00693069307,3424.04730908734,2034.0928918185,4.58892688064628,17566.4222590992,3541.74307906062,0,17566.4222590992,19.6652379178512,19.6652379178512,0.141654140661591,20.1442612913902,24.8,1015.1,39.33,52.596425880213 +46244,2873.73297059406,456.303705445544,225,20.2888910891089,20.8975578217822,6.91240594059406,-3.5,878.480198019802,2248.91584158416,1867.95742574257,20,40,11,32,5305632.85420548,395735.036611457,0,0,0,0,0,0,0,20.2888910891089,19625.7795665288,13.8248118811881,7.41398601473292,7.0449027643177,-3.5,-3.48535979107015,-2.89514740476484,1.82566529819451,1.44841773450322,1.45417822150933,25.5539531150288,0.00230406501913443,4116.87326732673,4159.26472894814,3530.1200967939,4.43604026554454,18666.5976664847,2863.99092152754,0,18666.5976664847,20.2432388001176,20.2432388001176,0.114523085971961,20.3521598302228,24.8,1015.1,39.34,49.8644364358919 +46245,2873.73016623762,456.302186534653,225,20.8117425742574,21.4360948514851,6.53730693069307,-3.47425742574257,899.346534653465,2493.01386138614,2071.75247524753,20,40,11,32,5305627.69376288,395733.050608863,0,0,0,0,0,0,0,20.8117425742574,19631.465852805,13.0746138613861,7.01166895791564,6.75573594776491,-3.47425742574257,-3.45961721681272,-2.83787479859255,1.30613736565671,1.03624280199958,1.03208614276364,26.1609302435071,0.0109443088408885,4564.76633663366,4552.29819625527,4554.59890867907,4.32589991605318,20654.0877097514,5968.55049312344,0,20654.0877097514,20.8226311145966,20.8226311145966,0.238564574279211,20.9623153788938,24.8,1015.1,39.35,45.7738252803395 +46246,2873.72702831683,456.302235544555,225,21.5926138613861,22.2403922772277,6.30891089108911,-1.83920792079208,943.079207920792,2759.62673267327,2290.9198019802,20,40,11,32,5305621.88015686,395733.006647931,0,0,0,0,0,0,0,21.5926138613861,19637.3670141636,12.6178217821782,6.76669997634876,6.60643629859308,-1.83920792079208,-1.82456771186222,-1.49426495845368,0.915644063815783,0.726439343419055,0.735432271783465,27.4330621421967,0.0140403962103504,5050.54653465346,5043.71494951475,4712.25789458776,4.16877974145111,23103.0795239233,5688.52934419636,0,23103.0795239233,21.6337053230075,21.6337053230075,0.227310231023103,21.7140620043517,24.8,1015.1,39.36,43.864269040951 +46247,2873.72397108911,456.303917821782,225,22.638603960396,23.3177620792079,5.92538613861386,0.471386138613861,1002.86633663366,2625.09702970297,2193.5900990099,20,40,11,32,5305616.17926325,395735.000002162,0,0,0,0,0,0,0,22.638603960396,19643.5089900162,11.8507722772277,6.35534578569615,6.34021268510857,0.471386138613861,0.486026347543719,0.391382788271997,0.756368286189757,0.600075622084989,0.616982968770639,29.1721992194521,0.0177845018664439,4818.68712871287,4902.60311734144,4857.95494459267,3.97612856262134,22352.0855434235,6357.69938699319,0,22352.0855434235,22.5928877561023,22.5928877561023,0.25401240619111,22.5768552921188,24.8,1015.1,39.37,40.8008669246501 +46248,2873.7213109901,456.307078118812,225,23.4683465346535,24.1723969306931,4.82749119911881,1.7280198019802,861.30198019802,2612.67722772277,2171.84851485149,20,40,10.950495049505,32,5305611.18072519,395738.847869491,0,0,0,0,0,0,0,23.4683465346534,19649.9027817379,9.65498239823762,5.17778506414472,5.45345043274962,1.7280198019802,1.74266001091005,1.41783572254931,1.61911271081016,1.28454627845326,1.12094230855347,25.0542590140041,-0.0756741354721964,4784.52574257426,4715.94957357122,4907.45423532074,3.83613261433787,18396.5748609188,6874.67461635503,0,18396.5748609188,23.4794849524556,23.4794849524556,0.276084044047971,23.4321875098817,24.8,1015.1,39.38,31.1629363517468 +46249,2873.71929742574,456.311373663366,225,24.2983663366337,25.0273173267327,5.57212871287129,2.35693069306931,798.376237623762,2683.72079207921,2276.77722772277,20,40,10.990099009901,32,5305607.35424529,395744.131595529,0,0,0,0,0,0,0,24.2983663366336,19656.5562524199,11.1442574257426,5.97645518862122,6.13463041708629,2.35693069306931,2.37157090199916,1.84374238618416,1.08977366234474,0.864587556490035,0.995946415038516,23.2238233603655,0.0164884652931808,4960.49801980198,4930.08456033722,4865.03150783165,3.70414314286802,17072.1923181032,4387.11083703963,0,17072.1923181032,24.3026060190177,24.3026060190177,0.175281018200833,24.2993433722568,24.8,1015.1,39.39,38.2768469376362 +46250,2873.71783623762,456.316425346535,221.435643564356,25.0998514851485,25.852847029703,5.22758140813862,3.10158415841584,844.960396039604,2740.6495049505,2278.18118811881,20,40,11,32,5305604.53394482,395750.375759853,0,0,0,0,0,0,0,25.0998514851485,19663.404423707,10.4551628162772,5.60690673897064,5.8873394674317,3.10158415841584,3.11622436734569,2.35569775051922,1.61444559363258,1.28084355413917,1.24268973088717,24.5789015997439,0.0151924287199176,5018.83069306931,5019.70282325262,4823.00209646444,3.58636164471832,17692.399006309,6835.94842582058,0,17692.399006309,25.1081749828448,25.1081749828448,0.27324527007156,25.1433326247499,24.8,1015.1,39.4037871287129,35.5635341724429 +46251,2873.71695465347,456.321981386139,155.49504950495,26.0130396039604,26.7934307920792,5.66901980198019,2.66356435643564,888.975247524752,2598.77227722772,2154.45247524752,20,40,10.9009900990099,32,5305602.77592732,395757.267617432,0,0,0,0,0,0,0,26.0130396039603,19670.5148558303,11.3380396039604,6.08037691801316,6.31526673563415,2.66356435643564,2.6782045653655,2.06818379137171,1.40416947192572,1.11401797875908,1.14865817153717,25.8592417300642,0.0133923779237189,4753.22475247525,4717.11599843153,4333.60066453127,3.46005229746289,17007.3312818264,5311.55684078425,0,17007.3312818264,26.0057325752377,26.0057325752377,0.21228991711052,25.916989187809,24.8,1015.1,39.44,40.8202487777099 +46252,2873.71651108911,456.327827227723,103.811881188119,26.7072673267327,27.5084853465346,6.06282178217822,2.61475247524752,926.371287128713,1944.93168316832,1610.52079207921,20,40,11,32,5305601.82276017,395764.535150044,0,0,0,0,0,0,0,26.7072673267327,19677.8413410338,12.1256435643564,6.50275407567056,6.69031250784169,2.61475247524752,2.62939268417738,2.04285739091834,1.14754366403893,0.91042021544395,0.924832936044591,26.947048427223,0.0140403962103504,3555.45247524753,3531.80036270954,3067.72965199552,3.37001073871501,12907.7976195358,4144.56359111898,0,12907.7976195358,26.6931647877659,26.6931647877659,0.165599233190641,26.6063279691372,24.8,1015.1,39.48,45.0959220620374 +46253,2873.71627257426,456.333845247525,80.6435643564356,27.2429405940594,28.0602288118812,6.02582398239604,2.52811881188119,946.430693069307,765.890099009901,591.654455445544,20,40,11,32,5305601.24555035,395772.024032971,0,0,0,0,0,0,0,27.2429405940594,19685.3357814903,12.0516479647921,6.46307163043827,6.6893651793397,2.52811881188119,2.54275902081104,1.99291390626469,1.24266707928608,0.98588774048632,0.919163592310624,27.5305528933188,-0.000792022350327461,1357.54455445545,1289.09255955298,1253.51576597099,3.30374584079205,4967.67728837745,2035.6646343188,0,4967.67728837745,27.2004195667091,27.2004195667091,0.0814367327821948,26.9503130994894,24.8,1015.1,39.52,45.2195533750253 +46254,2873.71609960396,456.339934554455,68.1683168316832,27.0670495049505,27.879060990099,6.598,3.49059405940594,946.19801980198,-598.539603960396,-706.054455445545,20,40,11,32,5305600.78815747,395779.603914561,0,0,0,0,0,0,0,27.0670495049505,19692.8986044001,13.196,7.07676605593042,7.16601961103408,3.49059405940594,3.50523426833579,2.74603126729486,0.825903147962823,0.655242101427035,0.689334667399339,27.5237847023251,0.000432012191087702,-1304.59405940594,-1140.35618076659,-354.979460784546,3.32513184722016,-4773.276836826,-2749.80909272457,0,-4773.276836826,27.0712377217919,27.0712377217919,-0.109997385877203,26.9334717010078,24.8,1015.1,39.56,51.5907138088488 +46255,2873.71598039604,456.34590960396,68.1683168316832,26.6033267326733,27.4014265346534,6.71909900990099,3.44524752475248,934.148514851485,-597.408910891089,-698.957425742574,20,40,11,32,5305600.43293108,395787.043260738,0,0,0,0,0,0,0,26.6033267326732,19700.3569125684,13.438198019802,7.20665228852728,7.24250374827016,3.44524752475248,3.45988773368233,2.73093193802964,0.621641182730884,0.493187943296842,0.50058131660797,27.1732788112893,-0.00302408533761394,-1296.36633663366,-1399.78063915302,-2042.70499208933,3.38318574330337,-4766.8871827691,-3137.15719465352,0,-4766.8871827691,26.618930006862,26.618930006862,-0.125446579311399,26.4336707342255,24.8,1015.1,39.6,52.5621017527186 +46256,2873.71582772277,456.351763267327,73.5148514851485,25.9000495049505,26.677050990099,6.74407920792079,3.5,970.19801980198,-1970.04356435644,-1749.92772277228,20,40,11,32,5305600.01845537,395794.330273146,0,0,0,0,0,0,0,25.9000495049505,19707.6784708193,13.4881584158416,7.23344510717187,7.22338144303965,3.5,3.51464020892985,2.78970149630298,0.619384633895929,0.491397677931907,0.493685866562322,28.2219164031228,0.038161076879414,-3719.97128712871,-3560.21723360455,-2978.5086720438,3.4765195774139,-14825.8878723611,-11079.9084969659,0,-14825.8878723611,25.8007603176159,25.8007603176159,-0.443755514165271,25.2856635700878,24.8,1015.1,39.64,52.3409591590562 +46257,2873.71562643564,456.357246435644,93.1188118811881,23.701099009901,24.412131980198,6.37849504950495,3.47009900990099,1114.11386138614,-2262.57920792079,-1837.28811881188,20,40,11,32,5305599.52227241,395801.154121428,0,0,0,0,0,0,0,23.701099009901,19714.5698959568,12.7569900990099,6.84133332134842,6.78624973305487,3.47009900990099,3.48473921883084,2.78368155920837,0.652992905523182,0.518061281988497,0.514515913028025,32.4082585388264,0.0173524896753562,-4099.86732673268,-4161.08330555828,-3213.95819868353,3.79977763336008,-20240.369648833,-14971.6178744268,0,-20240.369648833,23.7080172532104,23.7080172532104,-0.599163753008969,23.8569280081173,24.8,1015.1,39.68,46.2036597126911 +46258,2873.71532376238,456.362326534653,102.029702970297,21.933504950495,22.5915100990099,6.18234653465346,3.5,1098.68811881188,-1731.97623762376,-1435.01386138614,20,40,11,32,5305598.84736091,395807.472462039,0,0,0,0,0,0,0,21.933504950495,19720.8764400437,12.3646930693069,6.63095181910195,6.51798298946338,3.5,3.51464020892985,2.83045740542574,0.713087422613665,0.565738128553057,0.545867623976622,31.95954187635,-0.0193685465670988,-3166.9900990099,-3145.39345162239,-2272.76439051073,4.10384218106999,-16600.8292637072,-8016.92537752061,0,-16600.8292637072,21.9905302421331,21.9905302421331,-0.320311734143707,22.5608217404624,24.8,1015.1,39.72,42.582303857448 +46259,2873.71497613861,456.367116930693,109.158415841584,21.1170693069307,21.7505813861386,5.47584158415841,3.5,1064.06930693069,-922.063366336634,-772.482178217822,20,40,11,32,5305598.09570782,395813.428407236,0,0,0,0,0,0,0,21.1170693069307,19726.8510338006,10.9516831683168,5.8731812443808,5.87003183606491,3.5,3.51464020892985,2.78740417308585,0.509481369733794,0.404204347889617,0.446581982257038,30.9525214589245,-0.000576016254783603,-1694.54554455445,-1293.39076561121,349.516218789495,4.26237795932196,-8938.66835633579,-3635.40359749176,0,-8938.66835633579,21.1541436133712,21.1541436133712,-0.145406496095155,21.9478816740408,24.8,1015.1,39.76,34.5654495046893 +46260,2873.71464029703,456.371738712871,102.029702970297,21.3602178217822,22.0010243564356,4.98485148514852,3.45306930693069,1084.44059405941,2244.76633663366,2459.48514851485,20,40,10.960396039604,32,5305597.36967731,395819.174699314,0,0,0,0,0,0,0,21.3602178217822,19732.7032037401,9.96970297029703,5.34656377447004,5.46623778320506,3.45306930693069,3.46770951586055,2.6963679445139,0.803445892556339,0.637425315934543,0.60328617356838,31.5450981810332,0.0159124490383971,4704.25148514852,4336.02797764925,3109.7167393471,4.21500200283937,24938.9833253654,7835.85462489553,0,24938.9833253654,21.4321045975884,21.4321045975884,0.313132427104095,22.2083929898607,24.8,1015.1,39.7886386138614,30.1361913458783 +46261,2873.7143019802,456.376613762376,110.940594059406,22.903297029703,23.5903959405941,5.17340594059406,3.40683168316832,1104.41584158416,3332.70792079208,3531.11584158416,20,40,11,32,5305596.63337247,395825.236414295,0,0,0,0,0,0,0,22.9032970297029,19738.8477546477,10.3468118811881,5.54880017489312,5.71516755058441,3.40683168316832,3.42147189209817,2.64238032552988,0.911807102255231,0.723395234963685,0.709006428567673,32.1261545780461,-0.054217529981507,6863.82376237624,6897.23946671895,5541.29496328793,3.93126995198416,34595.3233985121,11967.5297479494,0,34595.3233985121,22.9334603470248,22.9334603470248,0.479598949994006,23.2222925274584,24.8,1015.1,39.75,32.7270143012148 +46262,2873.71397168317,456.381910990099,93.1188118811881,24.8767821782178,25.6230856435644,6.12991089108911,3.46940594059406,886.613861386139,4238.9801980198,3800.94554455445,20,40,11,32,5305595.90243668,395831.82432165,0,0,0,0,0,0,0,24.8767821782178,19745.4778957643,12.2598217821782,6.57471132463437,6.64216734720554,3.46940594059406,3.48404614952391,2.73579689099355,0.664964686427314,0.527559265979473,0.562223413883218,25.7905517916812,-0.0102242885224091,8039.92574257426,7713.9385354377,7466.78056266146,3.61983349693069,30041.8156741911,14294.138839113,0,30041.8156741911,24.8717883540829,24.8717883540829,0.571926499580647,24.8984896567982,24.8,1015.1,39.7,44.2932891368513 +46263,2873.71378415842,456.387684059406,61.039603960396,26.7826732673267,27.5861534653465,6.54863366336634,3.48415841584158,1194.38613861386,3652.6504950495,2985.57920792079,20,40,11,32,5305595.42527289,395839.009776975,0,0,0,0,0,0,0,26.7826732673267,19752.6680169964,13.0972673267327,7.02381758436407,7.1077136012531,3.48415841584158,3.49879862477144,2.74468516995989,0.6928525083231,0.549684469241248,0.556352365196612,34.7432844316554,0.136803860511107,6638.2297029703,7283.72755612195,8919.05277780906,3.36122925863408,31193.539864329,13299.6411443844,0,31193.539864329,26.8064155474953,26.8064155474953,0.529758792710961,27.0455243105173,24.8,1015.1,39.65,50.6149002533326 +46264,2873.71384851485,456.393911980198,45,29.291495049505,30.1702399009901,7.25008910891089,3.47148514851485,1468.94554455446,6601.07524752475,5328.20693069307,20,40,11,32,5305595.40446227,395846.770278679,0,0,0,0,0,0,0,29.2914950495049,19760.4178192516,14.5001782178218,7.77617225044126,7.84842161340145,3.47148514851485,3.4861253574447,2.74000959696821,0.778919113079987,0.617966643855421,0.61307086214875,42.7298938082938,0.0434892272361624,11929.2821782178,11493.4043329085,10184.2302361118,3.07579186937768,62645.3121943436,21813.4925202186,0,62645.3121943436,29.3149774531908,29.3149774531908,0.871717369756776,29.5938808481798,24.8,1015.1,39.6,61.9588859640563 +46265,2873.71432148515,456.400772475247,45,32.6388712871287,33.6180374257426,7.99081188118811,3.45306930693069,1633.01485148515,6546.3099009901,5211.00099009901,20,40,11,32,5305596.12633445,395855.332459661,0,0,0,0,0,0,0,32.6388712871287,19769.0196728269,15.9816237623762,8.57064357079684,8.67061248235362,3.45306930693069,3.46770951586055,2.71984469054391,0.898184800306253,0.712587786442222,0.686393860963698,47.5024764873034,0.0563775909369456,11757.3108910891,11744.3282619351,11457.5767001597,2.76005594914422,61606.3527167452,22769.2965935431,0,61606.3527167452,32.6171591020488,32.6171591020488,0.909707926238169,32.5260228451185,24.8,1015.1,39.55,75.3609403933088 +46266,2873.71535138614,456.408207920792,45,35.6022673267327,36.6703353465346,8.76579207920792,3.1,1781.71782178218,6054.22079207921,4828.00792079208,20,40,10.6633663366337,32,5305597.86692169,395864.629489489,0,0,0,0,0,0,0,35.6022673267326,19778.52052808,17.5315841584158,9.40185811450172,9.50016341606724,3.1,3.11464020892985,2.45100716043671,0.938829898719432,0.744834157899519,0.78122753490775,51.8280705526009,0.0403931398667004,10882.2287128713,10891.5472796785,10777.9963021629,2.52909031053326,57028.3188924488,19394.7851065896,0,57028.3188924488,35.6095707283599,35.6095707283599,0.775028864272562,35.5671856618795,24.8,1015.1,39.5,90.5144898654028 +46267,2873.71701277228,456.416043861386,45,38.4031485148515,39.555242970297,9.34408910891089,3.21960396039604,1917.20297029703,5278.50198019802,4208.96831683168,20,40,11,32,5305600.76824892,395874.446528869,0,0,0,0,0,0,0,38.4031485148514,19788.8027257147,18.6881782178218,10.0221177068096,10.152877116936,3.21960396039604,3.23424416932589,2.53485951994473,0.978366374176869,0.776200987443211,0.771337369950178,55.7691737678304,0.0240486786372156,9487.4702970297,9471.04135869032,9584.47192040919,2.34451418431864,49631.7936362864,17190.9001159176,0,49631.7936362864,38.3433551612587,38.3433551612587,0.687182084545089,38.2254516052068,24.8,1015.1,39.45,103.323181815584 +46268,2873.71930891089,456.424140495049,45,40.597801980198,41.815736039604,9.63988118811881,3.26554455445545,1622.5198019802,4758.12871287129,3815.17524752475,20,40,11,32,5305604.83951273,395884.609524091,0,0,0,0,0,0,0,40.597801980198,19799.7775825629,19.2797623762376,10.3393731396304,10.5303628352044,3.26554455445545,3.2801847633853,2.55770769362538,1.16160666898043,0.921577302001826,0.931835946068409,47.1971878722681,-0.13737987676589,8573.30396039604,8719.89377512009,8830.05623963765,2.21768913038018,35619.7429377938,16094.0922747373,0,35619.7429377938,40.6133376139594,40.6133376139594,0.645993312202502,40.6384891603776,24.8,1015.1,39.4,111.00563483342 +46269,2873.72229049505,456.432318415842,45,42.9,44.187,10.0485643564356,3.31168316831683,1521.23267326733,4954.56930693069,3991.67821782178,20,40,11,32,5305610.17864736,395894.896670218,0,0,0,0,0,0,0,42.8999999999999,19811.3870509622,20.0971287128713,10.7777112986444,11.0100325866365,3.31168316831683,3.32632337724668,2.58895736190919,1.35809309653757,1.0774626258585,1.05494937662428,44.25086472905,0.0167044713887246,8946.24752475247,8882.49696108225,8859.58557286645,2.09839206600262,33221.7835689799,16024.063065936,0,33221.7835689799,42.9300134300558,42.9300134300558,0.640739197682147,42.9391221455326,24.8,1015.1,39.35,121.424453284611 +46270,2873.72587425743,456.440545148515,45,45.2557821782178,46.6134556435644,10.660099009901,3.24386138613861,1624.25247524752,4828.4603960396,3890.09306930693,20,40,10.6336633663366,32,5305616.63214353,395905.264722804,0,0,0,0,0,0,0,45.2557821782178,19823.6394751371,21.320198019802,11.4336203131441,11.6654885610389,3.24386138613861,3.25850159506847,2.5369643894689,1.38108238156324,1.09570150467581,1.11238445126636,47.2475892945616,0.0290168188347242,8718.55346534653,8697.94109401039,8675.61514875041,1.98902902785578,32775.7784127217,16205.4569095853,0,32775.7784127217,45.2679868640329,45.2679868640329,0.647825921205983,45.2717106231927,24.7987376237624,1015.1,39.3126237623762,136.266420159933 +46271,2873.72989584158,456.448946930693,45,47.6204554455446,49.0490691089109,10.993702970297,3.25663366336634,1687.35148514851,4617.81584158416,3648.78910891089,20,40,10.9009900990099,32,5305623.89272106,395915.865443072,0,0,0,0,0,0,0,47.6204554455445,19836.5438938665,21.9874059405941,11.7914313442224,12.085024948676,3.25663366336634,3.27127387229619,2.53587934641985,1.63449958922568,1.29675367900895,1.28594301434824,49.0830650904296,0.0201605689174263,8266.60495049505,8276.40771492991,8288.77722713349,1.89022064843881,30672.0103668309,15315.6919524391,0,30672.0103668309,47.5904947554161,47.5904947554161,0.612358265529529,47.5638235365544,24.79,1015.1,39.35,146.275130932273 +46272,2873.73426069307,456.457634950495,45,49.8196930693069,51.3142838613861,11.5058316831683,3.18594059405941,1764.86138613861,4334.80396039604,3614.65247524752,20,40,10.3168316831683,32,5305631.78273611,395926.834177497,0,0,0,0,0,0,0,49.8196930693069,19850.0692641085,23.0116633663366,12.3407212944368,12.6469774605672,3.18594059405941,3.20058080298926,2.48256673350522,1.73712338928203,1.37817174185471,1.37435819718089,51.3377367157164,0.0254887192741746,7949.45643564356,7945.7789824527,7943.20696674051,1.80688400312459,29489.9045109698,15579.0999952639,0,29489.9045109698,49.7990247034604,49.7990247034604,0.622822925856936,49.7880145626827,24.78,1015.1,39.4,160.43021906795 +46273,2873.73887831683,456.466666732673,45,51.9462475247525,53.504634950495,12.3119504950495,3.15861386138614,1840.48514851485,4123.5396039604,3498.3396039604,20,40,10,32,5305640.13327076,395938.239558646,0,0,0,0,0,0,0,51.9462475247524,19864.2094025849,24.623900990099,13.2053339414462,13.4547609633566,3.15861386138614,3.17325407031599,2.47442349350015,1.55518159248719,1.23382560930476,1.25386474355699,53.537542792735,0.0178565038982918,7621.87920792079,7622.24153514361,7621.07509673631,1.73284965896721,28280.2596256402,14771.7803343172,0,28280.2596256402,51.9496561121458,51.9496561121458,0.590632454334537,51.951635747959,24.77,1015.1,39.45,181.459355465317 +46274,2873.74371158416,456.476048910891,45,54.0153663366336,55.6358273267327,12.4400792079208,2.94940594059406,1912.07425742574,3862.91287128713,3399.39207920792,20,40,10.0594059405941,32,5305648.87540348,395950.088605592,0,0,0,0,0,0,0,54.0153663366336,19878.9356099281,24.8801584158416,13.3427599684298,13.6824927299152,2.94940594059406,2.96404614952391,2.29788457208943,1.90393322711868,1.51051271785461,1.46003178121013,55.6199855578414,0.0221046237773209,7262.30495049505,7244.86648367807,7166.02601638557,1.66639113746417,26920.8567837344,13652.6225055381,0,26920.8567837344,54.012427016959,54.012427016959,0.545809778997698,53.9977079863972,24.76,1015.1,39.5,187.553059961492 +46275,2873.74873485148,456.485772277228,45,55.8700297029703,57.5461305940594,13.2361188118812,3.07148514851485,1862.43564356436,3454.42673267327,3079.66237623762,20,40,10,32,5305657.96184305,395962.368987118,0,0,0,0,0,0,0,55.8700297029703,19894.2071067653,26.4722376237624,14.1965620370086,14.4661945850013,3.07148514851485,3.08612535744471,2.4059321848388,1.62407089692741,1.28847992648299,1.30017367788462,54.1760568111626,-0.136731858479259,6534.08910891089,6502.06423880012,6638.11526357125,1.61101223774927,22690.8468124774,12125.2424131719,0,22690.8468124774,55.8685322027251,55.8685322027251,0.486602620658113,55.8599904256491,24.75,1015.1,39.55,209.509750110514 +46276,2873.75392207921,456.495802475248,45,57.6242574257426,59.3529851485149,14.2480099009901,1.82326732673267,1472.59900990099,3425.0801980198,3047.91386138614,20,40,10,32,5305667.34512937,395975.037031005,0,0,0,0,0,0,0,57.6242574257425,19909.9704076454,28.4960198019802,15.2818782709741,15.4283747763649,1.82326732673267,1.83790753566253,1.44186589800886,1.26343231372771,1.00236213689191,1.06161581635295,42.8361688073014,-0.000648018286631562,6472.99405940594,6547.29923536908,6521.45758523061,1.56197624758541,17325.2134054923,12089.3414841666,0,17325.2134054923,57.6182786981668,57.6182786981668,0.483584125739306,57.612175937576,24.74,1015.1,39.6,238.483208801271 +46277,2873.75927762376,456.506127821782,45,59.3551386138614,61.1357927722772,14.317297029703,1.22851485148515,1520.58415841584,3436.19603960396,3112.95247524753,20,40,9.96039603960396,32,5305677.03359687,395988.078324898,0,0,0,0,0,0,0,59.3551386138613,19926.218063586,28.6345940594059,15.3561930331124,15.5865114493016,1.22851485148515,1.24315506041501,0.975346553207562,1.50644114781265,1.19515667884746,1.20029066394869,44.2320001967058,0.00792022350327459,6549.14851485149,6530.70892069405,6514.24309830468,1.51642963446264,17570.8158315493,12294.432182035,0,17570.8158315493,59.3561739045191,59.3561739045191,0.491700160115018,59.3591118001845,24.73,1015.1,39.65,243.230759729905 +46278,2873.76479851485,456.516751386139,45,61.059504950495,62.8912900990099,14.1705247524752,1.36485148514851,1555.63861386139,3377.34455445544,3057.40099009901,20,40,9.9009900990099,32,5305687.02167712,396001.496589177,0,0,0,0,0,0,0,61.059504950495,19942.9510601756,28.3410495049505,15.198770621861,15.5595373761137,1.36485148514851,1.37949169407837,1.07384008846304,1.97281347125191,1.56515984690841,1.62808250013074,45.2516929717365,0.0128163616689353,6434.74554455446,6431.82305656308,6430.59938619464,1.47406144964427,17167.2547753823,11677.1087014395,0,17167.2547753823,61.0742656602293,61.0742656602293,0.466961300090407,61.0783067175649,24.72,1015.1,39.7,242.474551789918 +46279,2873.7704719802,456.527666732673,45,62.7744950495049,64.6577299009901,14.7174306930693,1.24643564356436,1596.57920792079,3294.34653465347,2980.4900990099,20,40,9.9009900990099,32,5305697.28585854,396015.283376528,0,0,0,0,0,0,0,62.7744950495049,19960.1549516773,29.4348613861386,15.7853613154321,16.1231697038484,1.24643564356436,1.26107585249421,0.986283197096524,2.00119938516424,1.58768021861146,1.4766692924774,46.4426065785016,0.0111603149364324,6274.83663366337,6279.13586903245,6279.21124568533,1.43377488440938,16712.2131087586,11469.5135656548,0,16712.2131087586,62.7653502597784,62.7653502597784,0.458673713906037,62.7613862043599,24.71,1015.1,39.75,261.038196328208 +46280,2873.7762980198,456.538871683168,45,64.4105148514851,66.3428302970297,15.6583663366337,1.71366336633663,1639.75247524752,3250.15445544554,2878.30792079208,20,40,9.79207920792079,32,5305707.82619259,396029.435969549,0,0,0,0,0,0,0,64.410514851485,19977.8202834705,31.3167326732673,16.7945734135212,17.0175391300002,1.71366336633663,1.72830357526649,1.35267333478215,1.55539084397718,1.23399162197388,1.22772092297795,47.6984660179935,0.0191525404715549,6128.46237623762,6122.5790314675,6122.14989074081,1.39735967593796,16338.3418534872,11273.5988844468,0,16338.3418534872,64.4027090481324,64.4027090481324,0.450760546351671,64.3980605089771,24.7012623762376,1015.1,39.793688118812,289.958704206609 +46281,2873.78233138614,456.550325346535,45,65.9767227722772,67.9560244554455,16.3220891089109,1.19465346534654,1680.86138613861,3172.01287128713,2788.56336633663,20,40,9.72277227722772,32,5305718.74501987,396043.905252759,0,0,0,0,0,0,0,65.9767227722771,19995.9330138885,32.6441782178218,17.5064574367706,17.6723385104878,1.19465346534654,1.20929367427639,0.953194987501303,1.42920928689505,1.13388367490071,1.13937969286521,48.8942757629243,0.0106563007134967,5960.57623762376,5961.33781001863,5962.93503349848,1.36418056068277,15902.3928940793,10919.2445375231,0,15902.3928940793,65.9819880403881,65.9819880403881,0.436667429119145,65.9829823580897,24.7,1015.1,39.8000000000001,312.938279886473 +46282,2873.78852257426,456.562014752475,45,67.511504950495,69.5368500990099,17.0595841584158,0.190495049504951,1718.71782178218,3095.2900990099,2735.31089108911,20,40,10,32,5305729.95093356,396058.673412717,0,0,0,0,0,0,0,67.5115049504949,20014.4798161162,34.1191683168317,18.2974668233655,18.38772843585,0.190495049504951,0.205135258434808,0.161936420339151,1.26965289002534,1.0072973202671,0.993787731103001,49.9954748380068,0.00360010159239754,5830.60099009901,5833.57641407705,5833.67989324246,1.33315195866146,15544.2714559746,10239.7512571192,0,15544.2714559746,67.5134462307616,67.5134462307616,0.409555435741595,67.5120748444267,24.7,1015.1,39.8000000000001,338.513228048724 +46283,2873.79485584159,456.573947920792,45,68.9690000000001,71.03807,18.0411584158416,1.69079207920792,1757.02475247525,2979.58910891089,2745.25742574258,20,40,9.87128712871287,32,5305741.41459539,396073.749910648,0,0,0,0,0,0,0,68.9689999999999,20033.4394567653,36.0823168316832,19.3502663666097,19.3063565367947,1.69079207920792,1.70543228813778,1.3563172896132,1.23279633196925,0.978056641609305,1.01226694386376,51.1097782828858,0.0208085872040578,5724.84653465347,5727.08466816979,5728.51319350883,1.30497378192829,15272.6873861343,10250.9557806293,0,15272.6873861343,68.9814742672286,68.9814742672286,0.409838632378083,68.9814197473785,24.7,1015.1,39.8000000000001,373.128652557269 +46284,2873.80132089109,456.586164752475,45,70.4334851485148,72.5464897029703,18.7820792079208,1.23554455445545,1791.29207920792,2918.72079207921,2708.48217821782,20,40,9.78217821782178,32,5305753.1160391,396089.184104007,0,0,0,0,0,0,0,70.4334851485147,20052.8053295651,37.5641584158416,20.1449500755396,20.0209089607751,1.23554455445545,1.2501847633853,0.999905573367514,1.33161302299232,1.05645427993013,1.04902154987499,52.1065744117888,0.0185765242167713,5627.20297029703,5625.76033722184,5624.02029983991,1.27783511963009,14986.4885076005,9517.11638917867,0,14986.4885076005,70.4216990491127,70.4216990491127,0.380505996144179,70.4177418659646,24.7,1015.1,39.8000000000001,401.22146347571 +46285,2873.80791188119,456.598629009901,45,71.7854257425743,73.9389885148515,19.2235247524753,2.16049504950495,1825.71782178218,2867.40495049505,2636.00495049505,20,40,9.9009900990099,32,5305765.04525959,396104.930652704,0,0,0,0,0,0,0,71.7854257425742,20072.5579065453,38.4470495049505,20.6184279241672,20.4738368254899,2.16049504950495,2.17513525843481,1.73610304372594,1.44496654797596,1.14638492385327,1.16372745182609,53.1079786707301,0.0038161076879414,5503.4099009901,5500.0336731693,5500.53889807437,1.25377053869847,14657.3042718856,9444.81238075764,0,14657.3042718856,71.7797071855699,71.7797071855699,0.377755721116661,71.7786740706322,24.7,1015.1,39.8000000000001,419.554383534721 +46286,2873.81461534654,456.611336138614,45,73.1322376237624,75.3262047524753,19.8974653465347,1.87594059405941,1859.22277227723,2782.83366336634,2597.59306930693,20,40,10,32,5305777.17741905,396120.983430478,0,0,0,0,0,0,0,73.1322376237623,20092.6870720843,39.7949306930693,21.3412711978491,21.1246672739909,1.87594059405941,1.89058080298926,1.51382122408284,1.64012909583176,1.3012199287716,1.26218894491339,54.0825981738239,0.0092162600765377,5380.42673267327,5377.99509851975,5376.87005697217,1.23067972595208,14324.0011029067,9074.81387146927,0,14324.0011029067,73.1219540241152,73.1219540241152,0.362904235968154,73.1190194343229,24.7,1015.1,39.8000000000001,446.681635695241 +46287,2873.82141930693,456.624283267327,45,74.398396039604,76.630347920792,20.1796831683168,2.09,1892.74257425743,2683.03762376238,2544.15247524753,20,40,9.91089108910891,32,5305789.49039295,396137.338457539,0,0,0,0,0,0,0,74.3983960396039,20113.1789266223,40.3593663366337,21.6439673939035,21.4372547631532,2.09,2.10464020892986,1.68470825713392,1.65002498328572,1.30907097293678,1.29994071246538,55.0576496891089,0.0136083840192627,5227.1900990099,5232.25780805803,5232.63447344734,1.2097348159872,13925.9687357356,8835.76175690367,0,13925.9687357356,74.3965051465541,74.3965051465541,0.35330005772854,74.3968094263971,24.7,1015.1,39.8000000000001,460.064008285869 +46288,2873.82832930693,456.637480693069,45,75.6354455445544,77.9045089108911,20.2743564356436,0.889108910891089,1924.14356435644,2640.67524752475,2472.89603960396,20,40,10,32,5305801.9942234,396154.008742129,0,0,0,0,0,0,0,75.6354455445544,20134.0215949116,40.5487128712871,21.7455103712635,21.5894519230543,0.889108910891089,0.903749119820947,0.722403246491035,1.4683497092791,1.16493629006136,1.19245152210093,55.971067465132,0.0209525912677537,5113.57128712871,5111.7455347515,5112.21300047617,1.1899424021842,13622.7395633131,8256.77883923116,0,13622.7395633131,75.6318680521516,75.6318680521516,0.330069764402181,75.6307216113219,24.7,1015.1,39.8000000000001,466.612672429382 +46289,2873.83532950495,456.650897425743,45,76.8125643564357,79.1169412871287,20.6426237623762,0.934851485148515,1954.5297029703,2589.55841584159,2414.20594059406,20,40,10,32,5305814.66026361,396170.955148555,0,0,0,0,0,0,0,76.8125643564355,20155.1959816003,41.2852475247525,22.1405000222684,21.969433078049,0.934851485148515,0.949491694078374,0.759487898721326,1.64646497938764,1.30624659281301,1.29148289421945,56.8549644080974,0.0077762194395787,5003.76435643564,4990.00877364964,4985.71414910722,1.17170744695334,13333.4070200158,8213.61519910762,0,13333.4070200158,76.813624546613,76.813624546613,0.328469975710448,76.8132846746212,24.7,1015.1,39.8000000000001,483.308189921307 +46290,2873.84243742574,456.664517920792,45,77.9516831683168,80.2902336633663,20.5838811881188,1.20326732673267,1876.14356435644,2588.54356435644,2380.31782178218,20,40,10,32,5305827.52132617,396188.158893875,0,0,0,0,0,0,0,77.9516831683167,20176.6962618258,41.1677623762376,22.0774949517102,21.98520113952,1.20326732673267,1.21790753566253,0.971004412426049,1.45095630025182,1.15113697968202,1.17493644135223,54.5748040635365,-0.0768981700136116,4968.86138613862,4959.23294775022,4959.03564062092,1.1545787999593,12495.0455912013,7907.17838067654,0,12495.0455912013,77.9631997843347,77.9631997843347,0.316973281486573,77.9643200863898,24.7,1015.1,39.7949504950495,483.82461775554 +46291,2873.84964821782,456.678351188119,45,79.1174752475247,81.4909995049505,21.2212574257426,1.26762376237624,1718.79207920792,2543.36138613861,2326.72277227723,20,40,10,32,5305840.56822486,396205.63103646,0,0,0,0,0,0,0,79.1174752475246,20198.5140320953,42.4425148514852,22.7611206751525,22.5949316859355,1.26762376237624,1.2822639713061,1.02369355851125,1.53058909693375,1.21431480043387,1.19573106396834,49.9976348989623,-0.00180005079619877,4870.08415841584,4899.63771198902,4904.4311865569,1.13756476786104,11079.3597282502,7765.5196299145,0,11079.3597282502,79.1147666895401,79.1147666895401,0.310635395222687,79.1132777473437,24.7,1015.1,39.76,511.020285860053 +46292,2873.85696485149,456.692378910892,45,80.2077128712871,82.6139442574257,20.9836633663366,1.44861386138614,1743.17326732673,2500.51881188119,2314.7801980198,20,40,10,32,5305853.80687441,396223.348854838,0,0,0,0,0,0,0,80.207712871287,20220.6446423264,41.9673267326733,22.5062862443106,22.4550461777272,1.44861386138614,1.463254070316,1.16122708735826,1.56800962188884,1.24400291031522,1.24013438963517,50.7068549126646,0.0100082824268652,4815.29900990099,4811.71691010685,4811.89712332152,1.12210083059981,10959.1447989358,7549.57725920945,0,10959.1447989358,80.2031105773943,80.2031105773943,0.301901229726921,80.2036859524028,24.7,1015.1,39.72,505.128347422317 +46293,2873.8643670297,456.706615148515,45,81.2888217821782,83.7274864356436,21.3042673267327,0.812871287128713,1766.47524752475,2449.80297029703,2310.78217821782,20,40,10,32,5305867.1993651,396241.329183007,0,0,0,0,0,0,0,81.2888217821781,20243.0771830029,42.6085346534653,22.8501539654879,22.7897273140761,0.812871287128713,0.82751149605857,0.656622507230623,1.39866567277255,1.10965146080615,1.14263125826366,51.3846820404812,0.00316808940130984,4760.58514851485,4760.13196745417,4760.15564235323,1.10717585928918,10833.6215169334,7432.89190299349,0,10833.6215169334,81.2872688952063,81.2872688952063,0.297289753727869,81.2866325267041,24.7,1015.1,39.68,519.766564804809 +46294,2873.87185069307,456.721056138614,45,82.362495049505,84.8333699009901,21.1412871287129,0.745742574257426,1790.99504950495,2463.47920792079,2245.9,20,40,10,32,5305880.73826415,396259.567195812,0,0,0,0,0,0,0,82.3624950495049,20265.8057703792,42.2825742574257,22.6753475494322,22.7124083394592,0.745742574257426,0.760382783187283,0.60681753978739,1.53482002882523,1.21767147089869,1.18795471843243,52.097934167967,0.0157684449747012,4709.37920792079,4710.79642191942,4710.45965119448,1.0927456545183,10723.9984426703,7430.05227441743,0,10723.9984426703,82.3582387020879,82.3582387020879,0.297073271683585,82.3579038059768,24.7,1015.1,39.64,516.463452580433 +46295,2873.87945712871,456.735667821782,45,83.4188910891089,85.9214578217822,21.5314653465347,0.689504950495049,1813.97524752475,2454.61584158416,2194.60693069307,20,40,10,32,5305894.50081449,396278.021837813,0,0,0,0,0,0,0,83.4188910891088,20288.8330002471,43.0629306930693,23.0938379961804,23.105419075222,0.689504950495049,0.704145159424907,0.561468695424972,1.27613410366229,1.01243928401157,1.02737141802377,52.7664010316434,0.000360010159239751,4649.22277227723,4647.09950004901,4647.21129882687,1.07890640815903,10587.1989106743,7164.80848140601,0,10587.1989106743,83.415366238604,83.415366238604,0.286589550044117,83.414339396059,24.7,1015.1,39.6,534.085958220828 +46296,2873.88716594059,456.750455346535,45,84.4342475247524,86.9672749504951,21.3814653465347,0.591188118811881,1834.15841584158,2403.6297029703,2185.4198019802,20,40,10,32,5305908.44912247,396296.698839758,0,0,0,0,0,0,0,84.4342475247523,20312.1454681789,42.7629306930693,22.9329536511684,23.0359738646356,0.591188118811881,0.605828327741738,0.480780207135096,1.59919228151549,1.26874212032096,1.22257571515964,53.3535055993316,0.010224288522409,4589.0495049505,4593.25405352417,4593.33130122892,1.06593372023594,10439.233622081,7114.34423825024,0,10439.233622081,84.4348336437603,84.4348336437603,0.284490082671629,84.435010681789,24.7,1015.1,39.56,531.415628084921 +46297,2873.89498980198,456.765395940594,45,85.4299504950495,87.992849009901,22.5316732673267,1.25029702970297,1855.66336633663,1958.55841584158,1771.10693069307,20,40,10,32,5305922.6071751,396315.570253386,0,0,0,0,0,0,0,85.4299504950494,20335.7419006322,45.0633465346535,24.1666233042638,24.0719505692974,1.25029702970297,1.26493723863283,1.0114176246453,1.45985550069556,1.15819728792054,1.19118252479557,53.9790592520266,-0.0038161076879414,3729.66534653465,3442.37861974316,3418.93340876945,1.05350714025587,8496.05022947898,4943.43433336517,0,8496.05022947898,85.3815400450935,85.3815400450935,0.19776792035639,85.3782892032059,24.7,1015.1,39.52,580.147134049554 +46298,2873.90287237624,456.780445247525,45,85.4439504950495,88.007269009901,22.3561386138614,1.85504950495049,1842.21287128713,-388.286138613861,-387.950495049505,20,40,10,32,5305936.87161203,396334.578947531,0,0,0,0,0,0,0,85.4439504950494,20359.5156155387,44.7122772277228,23.9783514525992,23.9228982543286,1.85504950495049,1.86968971388035,1.49182322776407,1.5010563797937,1.19088459595114,1.20532062345789,53.5878002109649,0.00180005079619877,-776.236633663366,-449.187275757279,-422.392956152758,1.05333152682672,-1753.73712774957,-3862.87806725328,0,-1753.73712774957,85.4251165572002,85.4251165572002,-0.154530056966096,85.4232637435171,24.7,1015.1,39.48,572.795016579526 +46299,2873.91071683168,456.79540990099,45,84.877396039604,87.4237179207921,21.7473861386139,2.01425742574257,1836.72277227723,-90.7584158415841,-129.228712871287,20,40,10,32,5305951.06739532,396353.480830034,0,0,0,0,0,0,0,84.8773960396038,20383.1611817928,43.4947722772277,23.3254264975681,23.3722489362723,2.01425742574257,2.02889763467243,1.6101121750426,1.47972753862538,1.17396305406986,1.26713093208327,53.4280997043261,0.000432012191087701,-219.987128712871,-235.769257915891,-236.314926921264,1.06035591237605,-498.215454758141,-2926.97853201429,0,-498.215454758141,84.8745698460934,84.8745698460934,-0.117082747878732,84.8752837340876,24.7,1015.1,39.44,546.641958303173 +46300,2873.91854792079,456.810270693069,45,84.553198019802,87.089793960396,21.2254422440594,2.17970297029703,1828.82178217822,274.424752475247,268.119801980198,20,40,10,32,5305965.24080377,396372.252799234,0,0,0,0,0,0,0,84.5531980198019,20406.6855210392,42.4508844881188,22.7656091535118,22.9091558703515,2.17970297029703,2.19434317922689,1.73024771707308,1.97583693492674,1.56755855515497,1.46915913236164,53.1982692186674,0.00273607721022213,542.544554455445,540.948358004117,539.858277659542,1.06441904290734,1228.87236321515,-1218.57928936909,0,1228.87236321515,84.574902950691,84.574902950691,-0.0487656438911254,84.5755057524443,24.7,1015.09873762376,39.4151485148515,526.277716125634 +46301,2873.92636732673,456.825091485149,45,84.4633564356436,86.9972571287129,21.132504950495,1.85871287128713,1828.44554455446,521.351485148515,439.794059405941,20,40,10,32,5305979.39352563,396390.97446139,0,0,0,0,0,0,0,84.4633564356435,20430.1589670513,42.2650099009901,22.6659281161632,22.8257809667621,1.85871287128713,1.87335308021698,1.47786017728545,1.51581018460614,1.20258973848897,1.23245168461574,53.1873249098265,-7.20020318479471E-05,961.145544554456,954.008646211156,952.740376475565,1.06555098383988,2178.79470730984,-498.163643004323,0,2178.79470730984,84.4598196255268,84.4598196255268,-0.0199258787264895,84.4603167127126,24.7,1015.09,39.48,521.323389412353 +46302,2873.93421940594,456.839856435643,45,84.425198019802,86.9579539603961,21.4011782178218,2.44950495049505,1827.30198019802,643.79801980198,562.576237623763,20,40,10,32,5305993.60807804,396409.627559024,0,0,0,0,0,0,0,84.4251980198019,20453.6134862757,42.8023564356436,22.9540969337373,23.051439751625,2.44950495049505,2.4641451594249,1.94810047207769,1.51787626123798,1.20422889000122,1.20578264407425,53.1540599711128,-0.00331209346500574,1206.37425742574,1203.90276825549,1203.63463132015,1.06603282566493,2734.31619896289,10.931949855172,0,2734.31619896289,84.428845113224,84.428845113224,0.000464279101174437,84.4291041749835,24.7,1015.08,39.56,531.725901941346 +46303,2873.94208227723,456.854604059406,45,84.4336930693069,86.9667038613861,21.0323762376238,2.05712871287129,1826.15346534653,682.341693178218,664.598237243564,20,40,10,32,5306007.84306774,396428.259340485,0.603960396039604,0.603960396039604,3204617.81903028,239431.256217118,4.24994647712483,0,0,84.4336930693068,20477.0660319027,42.0647524752475,22.5585338335819,22.7382802692915,2.05712871287129,2.07176892180114,1.63286073154859,1.67923981401946,1.33224897768229,1.31289199220799,53.1206510283354,-0.00187205282804672,1346.93993042178,1342.74203767799,1341.83610919459,1.06592578575347,3050.73140853365,201.426068133098,0,3050.73140853365,84.443384079992,84.443384079992,0.00807246566241624,84.4437775392492,24.7,1015.07,39.64,517.424241712959 +46304,2873.94993059406,456.869376732673,45,84.5112574257426,87.0465951485148,20.693396039604,0.905148514851485,1829.30693069307,673.738625433663,655.880793375248,20,40,10,32,5306022.05059677,396446.921748836,1,1,5306018.3972934,396449.897926264,25.7899818635187,0,0,84.5112574257424,20500.5289218641,41.3867920792079,22.1949564527121,22.4545333082045,0.905148514851485,0.919788723781343,0.729830432386134,1.9290130535141,1.53041015763468,1.5078125796914,53.2123816169096,-0.00223206298728648,1329.61941880891,1330.474618014,1330.55195777545,1.06494715569222,3013.8915681302,565.361308303279,0,3013.8915681302,84.5058258994215,84.5058258994215,0.0226325850406794,84.5059417141446,24.7,1015.06,39.72,504.863344624599 +46305,2873.95776633664,456.884185049505,45,84.5702772277228,87.1073855445544,20.9690891089109,1.03168316831683,1832.10396039604,658.230218782178,665.731258673267,20,40,10,32,5306036.23409663,396465.628046301,1,1,5306033.21533141,396468.087294822,49.2511706454154,0,0,84.5702772277227,20524.0121088828,41.9381782178218,22.4906544452441,22.6928302127769,1.03168316831683,1.04632337724669,0.826640404478624,1.71780412662365,1.36284452789079,1.43762121029553,53.2937439128978,0.00122403454141516,1323.96147745545,1325.05409221423,1325.14783445443,1.06420441896167,3003.55827580196,301.216327188863,0,3003.55827580196,84.5731893931966,84.5731893931966,0.01203858009562,84.5730455207602,24.7,1015.05,39.8,515.455576178829 +46306,2873.96558752475,456.899028514851,45,84.6501881188119,87.1896937623762,20.4204389440594,1.04871287128713,1830.9900990099,658.139871640594,684.10336200396,20,40,10,32,5306050.38991081,396484.377550308,1,1,5306048.04348235,396486.289077149,72.7283710756624,0,0,84.6501881188118,20547.514825742,40.8408778881188,21.9021929624915,22.2303906988837,1.04871287128713,1.06335308021699,0.837497201498224,2.26542712064355,1.79730908015269,1.66560233779115,53.2613429985662,0.00122403454141517,1342.24323364455,1342.56871898572,1342.59910571211,1.06320249117904,3040.32371656655,647.788191127407,0,3040.32371656655,84.6345023036956,84.6345023036956,0.0259016000610087,84.6350163694606,24.7,1015.04,39.88,495.475826768973 +46307,2873.97339554455,456.91389960396,45,84.684396039604,87.2249279207921,20.371303630396,0.39990099009901,1832.30198019802,673.550648759406,694.105876287128,20,40,10,32,5306064.52077546,396503.160933744,1,1,5306062.87827044,396504.499006685,96.2160800187251,0,0,84.6843960396039,20571.034895874,40.7426072607921,21.8494922774536,22.1911469672268,0.39990099009901,0.414541199028867,0.317059185349719,2.16210854166186,1.71533980448713,1.83136802717353,53.2995040754456,0.000144004063695904,1367.65652504653,1366.91563124827,1366.85660351187,1.06277006721645,3098.84473422378,502.057152934139,0,3098.84473422378,84.7025573963336,84.7025573963336,0.0200810922676444,84.7031218293257,24.7,1015.03,39.96,493.365086449471 +46308,2873.98119247525,456.928806435644,45,84.761099009901,87.303931980198,20.9133514853465,-0.85990099009901,1833.71287128713,690.293952711882,686.542536030693,20,40,10,32,5306078.63036096,396521.988378712,1,1,5306077.72614578,396522.725001027,119.724509825842,0,0,84.7610990099009,20594.5724861105,41.8267029706931,22.4308723715129,22.6570104433783,-0.85990099009901,-0.845260781169151,-0.652354566290915,2.20067347763093,1.74593584925111,1.73726954512013,53.340545233599,-0.00554415645229222,1376.83648874257,1375.71039014922,1375.6206727684,1.06180825308887,3119.22465630847,238.261547386426,0,3119.22465630847,84.7670642093912,84.7670642093912,0.00957558627148805,84.7671872701554,24.7,1015.02,40.04,515.593679413299 +46309,2873.98898960396,456.943735247525,45,84.8051386138614,87.3492927722773,23.3975148514852,2.12267326732673,1833.45544554455,692.976067079208,668.367041380198,20,40,10,32,5306092.73988273,396540.843117122,1,1,5306092.58736064,396540.967369823,143.254059891691,0,0,84.8051386138613,20618.124850852,46.7950297029703,25.095292345274,24.7719756044518,2.12267326732673,2.13731347625659,1.71871983058694,2.09623593694208,1.6630788292753,1.59920503184681,53.3330570222868,0.0116643291593681,1361.34310845941,1360.86713491921,1360.82921363999,1.06125694630451,3082.08538891305,233.537451856128,0,3082.08538891305,84.8054501519458,84.8054501519458,0.00924745939941299,84.8053986798679,24.7,1015.01,40.12,614.108382686108 +46310,2873.99678534654,456.958679405941,45,84.8365148514851,87.3816102970297,22.6216534653465,0.99029702970297,1834.87128712871,679.131068263366,656.28985829307,20,40,10,32,5306106.84655477,396559.716833144,1,1,5306107.45673156,396559.219750313,166.79652333876,0,0,84.836514851485,20641.6850485968,45.2433069306931,24.2631326724136,24.1141339776698,0.99029702970297,1.00493723863283,0.800445895685318,1.88425084420549,1.49489741723136,1.49276534175395,53.3742421845038,0.00187205282804672,1335.42092655644,1336.03268595417,1336.08142542593,1.06086463509874,3024.59830468344,96.5708461106883,0,3024.59830468344,84.8301812567394,84.8301812567394,0.00384766199391469,84.8301218293256,24.7012623762376,1015.00126237624,40.2050495049505,582.753766048278 +46311,2874.00458346535,456.973611980198,45,84.8566336633663,87.4023326732673,22.9413861386139,1.47772277227723,1835.38118811881,661.487984340594,661.414693211881,20,40,10,32,5306120.95794773,396578.576106107,1,1,5306122.32091332,396577.465761028,190.330770859513,0,0,84.8566336633662,20665.254425797,45.8827722772277,24.6060658838641,24.3873398028066,1.47772277227723,1.49236298120708,1.20219272724653,1.80073828665467,1.42864153257936,1.45746060433897,53.3890746030645,0.00950426820392952,1322.90267755247,1324.03972111289,1324.13031048991,1.06061306776715,2996.38410770854,22.7769748580787,0,2996.38410770854,84.8478170767571,84.8478170767571,0.000833251641995333,84.8473591702026,24.71,1015,40.32,595.441968220198 +46312,2874.01238732673,456.988538712871,45,84.8562376237624,87.4019247524752,22.4573861386139,0.122871287128713,1836.52475247525,656.267785292079,679.029796536634,20,40,9.97029702970297,32,5306135.08016891,396597.428200876,1,1,5306137.18589964,396595.712759356,213.866292233135,0,0,84.8562376237622,20688.8209092953,44.9147722772277,24.0869457306252,23.9754881953877,0.122871287128713,0.13751149605857,0.116588800783659,1.68338178915906,1.33553507303284,1.32904404211895,53.4223395417783,-0.00885624991729797,1335.29758182871,1335.91451695161,1335.96366877868,1.06061839233541,3026.35674777561,352.117033647468,0,3026.35674777561,84.8635001470443,84.8635001470443,0.0141571087801996,84.8634416784534,24.72,1015,40.44,575.704491556238 +46313,2874.02018445544,457.003492970297,45,84.874801980198,87.4210460396039,21.084198019802,0.922475247524752,1835.81188118812,668.269898067327,692.939923511881,20,40,10,32,5306149.18936511,396616.314264992,1,1,5306152.06232405,396613.97379811,237.419923366331,0,0,84.8748019801979,20712.3976459015,42.1683960396039,22.6141159234692,22.8079131921992,0.922475247524752,0.93711545645461,0.739424600441427,1.8142680064819,1.43937552974741,1.48967798826894,53.401602956606,-0.00352809956054959,1361.20982157921,1360.73944095347,1360.70196526716,1.06038572203211,3083.2162340141,38.5965335162238,0,3083.2162340141,84.881383589844,84.881383589844,0.00157255824593308,84.8818082036774,24.73,1015,40.56,520.954361333798 +46314,2874.02800405941,457.018430990099,45,84.9114554455446,87.4587991089109,20.8750099009901,1.57495049504951,1837.36138613861,686.459635512871,690.356167543565,20,40,10,32,5306163.3406163,396635.18075656,1.91089108910891,1,5306166.94617399,396632.24321723,32.0601729218734,0,0,84.9114554455444,20735.9806127057,41.7500198019802,22.3897486336069,22.6322514226663,1.57495049504951,1.58959070397936,1.24660989152011,2.06188056657754,1.63582250372612,1.58412619556154,53.4466762285429,0.00547215442044426,1376.81580305644,1375.69057246463,1375.60092423838,1.0599279391507,3119.84875734303,10.539203666988,0,3119.84875734303,84.8988210959708,84.8988210959708,0.000377141674539969,84.8987546440357,24.74,1015,40.68,513.413453276102 +46315,2874.03582653465,457.033362475248,45,84.9299405940594,87.4778388118812,21.766801980198,0.433366336633663,1836.79702970297,694.113436923762,673.654021955446,20,40,10,32,5306177.49739252,396654.039111049,2,1,5306181.82882305,396650.510157457,33.2275161736058,0,0,84.9299405940593,20759.5656353954,43.533603960396,23.3462511972756,23.3920185991101,0.433366336633663,0.44800654556352,0.352915296184776,1.55221470510654,1.23147178667218,1.23863677076307,53.4302597652815,0,1367.76745887921,1367.0219101352,1366.96251153461,1.05969726482455,3097.72822824577,127.777326951502,0,3097.72822824577,84.9213374179001,84.9213374179001,0.00511115467981841,84.9206871287127,24.75,1015,40.8,547.794398962189 +46316,2874.04365940594,457.048281584158,45,84.926801980198,87.4746060396039,21.739696919703,0.705445544554455,1838.0297029703,684.194432575248,658.189362372277,20,40,10,32,5306191.67376243,396672.882301764,2,1,5306196.71187819,396668.777589345,56.7902918582232,0,0,84.9268019801979,20783.1547571501,43.479393839406,23.3171793312472,23.3688139328237,0.705445544554455,0.720085753484313,0.571882868213316,1.72158638952543,1.36584524038114,1.38500946733579,53.4661167771418,0.00648018286631558,1342.38379494753,1342.70338212782,1342.72884395235,1.05973654009132,3042.37512599765,156.909415155408,0,3042.37512599765,84.9255846485637,84.9255846485637,0.00622351839142976,84.9255900047146,24.76,1015,40.92,547.230983317128 +46317,2874.05151564356,457.063186534653,45,84.9334653465347,87.4814693069307,19.985997799604,-1.26178217821782,1837.82178217822,665.822109317822,658.18032549208,20,40,10,32,5306205.8937911,396691.7085389,2,1,5306211.60404958,396687.056210515,80.3675003608139,0,0,84.9334653465346,20806.7479212316,39.9719955992079,21.4362277693448,21.8769632088651,-1.26178217821782,-1.24714196928796,-0.964233965918141,2.57454150156305,2.04254940528598,2.02116918228464,53.4600686064666,-0.0100802844587131,1324.0024348099,1325.0933309375,1325.18024370325,1.05965323066832,3000.14272950375,76.5297070088447,0,3000.14272950375,84.9367952161552,84.9367952161552,0.0031437549695663,84.9370210278169,24.77,1015,41.04,479.433370122026 +46318,2874.0593880198,457.07806059406,45,84.9255643564356,87.4733312871286,19.0807178213861,-0.0285148514851486,1837.90594059406,655.887896433663,673.635219789109,20,40,10,32,5306220.14446321,396710.496740323,2,1,5306226.48982103,396705.326976401,103.934576498853,0,0,84.9255643564355,20830.3409093779,38.1614356427723,20.4652585936908,21.1063675699341,-0.0285148514851486,-0.0138746425552915,-0.00942208094406656,3.39296520207235,2.69185757986089,2.54730964621116,53.4625166755494,-0.0039601117516373,1329.52311622277,1330.38235642687,1330.45081293757,1.0597518071606,3013.06898432954,132.11241960261,0,3013.06898432954,84.9440440152925,84.9440440152925,0.00531674454573217,84.9445910419612,24.78,1015,41.16,446.060032479572 +46319,2874.06727554455,457.09292980198,45,84.9526831683168,87.5012636633662,20.9586281629703,0.662277227722772,1838.37128712871,663.525263421782,690.344886719802,20,40,10,32,5306234.42336388,396729.27930802,2,1,5306241.38409585,396723.608179302,127.515115122995,0,0,84.9526831683167,20853.9404823427,41.9172563259406,22.4794344290051,22.7057080684302,0.662277227722772,0.676917436652631,0.527182568823198,1.95559973009787,1.55150307861177,1.76366047439112,53.4760530575368,0.0106563007134967,1353.87015014158,1353.70775294233,1353.69481459791,1.05941404775309,3068.05573544628,-129.797033779546,0,3068.05573544628,84.9572894814233,84.9572894814233,-0.0052786219215802,84.9573376709098,24.79,1015,41.28,516.772393006765 +46320,2874.07516247525,457.107801980198,45,84.9644554455445,87.5133891089108,19.4201551150495,0.413069306930693,1839.46534653465,681.712450312871,692.946535564356,20,40,10,32,5306248.70115805,396748.065462738,2,1,5306256.27968572,396741.8909963,151.097735735761,0,0,84.9644554455444,20877.5389494769,38.840310230099,20.8293262381155,21.3967410913134,0.413069306930693,0.42770951586055,0.322723000844747,3.14932231896442,2.4985600060241,2.36753221366231,53.5078779556136,-0.00453612800642091,1374.65898587723,1373.62425850679,1373.54182076127,1.0592669696277,3116.57802826496,108.478357258149,0,3116.57802826496,84.9559190275462,84.9559190275462,0.00437593264276462,84.9559939651107,24.7987376237624,1015,41.3621287128713,458.791222256324 +46321,2874.08303415841,457.12269009901,45,84.9560396039604,87.5047207920791,20.0211232124752,-0.162475247524752,1837.31188118812,693.728241335644,679.048222372277,20,40,10,32,5306262.95041342,396766.870874472,2,1,5306271.17331957,396760.17141248,174.677259586122,0,0,84.9560396039602,20901.1390727442,40.0422464249505,21.4739019629654,21.9082200813523,-0.162475247524752,-0.147835038594895,-0.106427949924993,2.75791361032837,2.18803029634066,2.3004733505712,53.4452361879059,-0.00345609752870164,1372.77646370792,1371.82072974376,1371.74458548035,1.05937217436878,3108.97224846737,76.5977470428082,0,3108.97224846737,84.9654415253405,84.9654415253405,0.0030920171225212,84.9656062234794,24.8,1015,41.22,481.848264457737 +46322,2874.0908840594,457.137608811881,45,84.9881386138614,87.5377827722772,20.5689636964356,0.254059405940594,1839.63861386139,688.525373639604,661.42799220396,20,40,10,32,5306277.15869924,396785.71357898,2,1,5306286.06886985,396778.454180879,198.259817512543,0,0,84.9881386138612,20924.7431525572,41.1379273928713,22.0614950125191,22.3761683850305,0.254059405940594,0.268699614870452,0.205019769427148,2.14405011937764,1.70101289630771,1.64417885153404,53.5129180978429,0.00374410565609345,1349.95336584356,1349.9553226812,1349.95547858442,1.05897228667755,3059.99188202286,96.749143959323,0,3059.99188202286,84.9863248701107,84.9863248701107,0.00383949286016239,84.9861811409711,24.8,1015,41.04,501.899687555038 +46323,2874.09871425743,457.152557920792,45,85.0313663366336,87.5823073267326,20.9776435643564,-0.0646534653465346,1839.85148514851,670.88733979604,656.285803406931,20,40,10,32,5306291.32987171,396804.593398593,2,1,5306300.96778802,396796.741083024,221.84770747063,0,0,85.0313663366336,20948.3542312976,41.9552871287129,22.4998296316527,22.7266333465235,-0.0646534653465346,-0.0500132564166771,-0.0371716967118492,1.73325210929601,1.37510040638455,1.34076863599456,53.5191102725819,0.00604817067522788,1327.17314320297,1328.13099173885,1328.20730447202,1.05843335832347,3007.18501656766,81.1276945084981,0,3007.18501656766,85.0096294480932,85.0096294480932,0.00319549281660164,85.009078736445,24.8,1015,40.86,516.944361719993 +46324,2874.10653455446,457.167521188119,45,85.0392574257426,87.5904351485148,20.8053388338614,0.292673267326733,1839.50495049505,641.813271741584,633.238527567327,20,40,10,32,5306305.48244948,396823.49043278,1.42574257425743,0.712871287128713,3782718.68084777,282876.148377443,172.52434629061,0,0,85.0392574257425,20971.9705172712,41.6106776677228,22.3150220735982,22.580684117113,0.292673267326733,0.30731347625659,0.240626355511335,1.80592865943372,1.43275938922554,1.43801405617532,53.5090299881232,7.20020318479557E-05,1275.05179930891,1268.69477892991,1267.99255705488,1.05833667856349,2888.33297378551,225.619971656744,0,2888.33297378551,85.0324152534064,85.0324152534064,0.00902416974370846,85.0317310702497,24.8,1015,40.68,510.350356832032 +46325,2874.11436762376,457.182477920793,45,85.0473267326733,87.5987465346534,20.6992475247525,0.582475247524753,1839.33663366337,568.005940594059,561.49801980198,20,40,10,32,5306319.65889228,396842.379657653,0,0,0,0,0,0,0,85.0473267326731,20995.5909429312,41.3984950495049,22.2012325350819,22.4902932951278,0.582475247524753,0.59711545645461,0.470098953977175,1.99371141147933,1.58173952735143,1.5543531456986,53.5041338499575,-0.00626417677077172,1129.50396039604,1136.5413954938,1137.13741095319,1.05823585001996,2558.08837836919,69.9621382979601,0,2558.08837836919,85.043800705813,85.043800705813,0.00284966615474753,85.0435726544082,24.8,1015,40.5,506.254646256896 +46326,2874.12218584159,457.197441485149,45,85.0139108910892,87.5643282178218,20.9846039603961,2.06217821782178,1840.60891089109,556.772277227723,543.571287128713,20,40,10,32,5306333.80773369,396861.276807175,0,0,0,0,0,0,0,85.013910891089,21019.2135911436,41.9692079207921,22.5072950900385,22.7308830390874,2.06217821782178,2.07681842675164,1.6345730464755,1.83644615686168,1.4569708832661,1.54966961493848,53.5411428943273,0.000792022350327456,1100.34356435644,1100.60014704441,1100.85432343234,1.05865107922423,2494.94498773498,163.063752728478,0,2494.94498773498,85.0334720125477,85.0334720125477,0.00651624568397407,85.0343227722771,24.8,1015,40.32,517.195944286502 +46327,2874.13000485148,457.212396633663,45,84.9843465346534,87.5338769306931,20.1442277227723,1.86267326732673,1839.85643564356,553.861386138614,560.316831683168,20,40,9.99009900990099,32,5306347.95829048,396880.163407478,0,0,0,0,0,0,0,84.9843465346533,21042.8325739543,40.2884554455446,21.6059392196798,22.0144022746825,1.86267326732673,1.87731347625659,1.46596200006769,2.40301135050052,1.90646350112453,1.85603111980773,53.5192542766456,0.00648018286631558,1114.17821782178,1110.95384766199,1111.10789250354,1.05902045992881,2525.97009981133,-496.379545901862,0,2525.97009981133,85.0097603176158,85.0097603176158,-0.0199081789367086,85.0106278170673,24.8,1015,40.14,485.025162181658 +46328,2874.13787891089,457.227322178218,45,85.0200792079208,87.5706815841585,20.0982172717822,2.0529702970297,1839.49504950495,580.905940594059,567.040594059406,20,40,9.98019801980198,32,5306362.21153764,396899.014863355,0,0,0,0,0,0,0,85.0200792079206,21066.4448960115,40.1964345435644,21.5565901445381,21.9777463451817,2.0529702970297,2.06761050595956,1.61330873594887,2.3973740140476,1.90199103944065,1.93685381161959,53.5087419799958,-0.00597616864337992,1147.94653465346,1143.5933241839,1143.55288071664,1.05857619598956,2600.96171594766,-100.779208487512,0,2600.96171594766,85.0001105773943,85.0001105773943,-0.00398245270072006,84.9997489863271,24.8,1015,39.96,483.385503642654 +46329,2874.14574178218,457.242244851485,45,85.0035346534654,87.5536406930693,19.4628509350495,1.24188118811881,1838.13366336634,571.145544554455,584.588118811881,20,40,10,32,5306376.444185,396917.862279337,0,0,0,0,0,0,0,85.0035346534652,21090.0557545649,38.925701870099,20.8751201650185,21.4360074741741,1.24188118811881,1.25652139704867,0.977070817837409,2.99594106182699,2.37687278701525,2.29370344321499,53.4691408624794,-0.0039601117516373,1155.73366336634,1157.37153220273,1157.26561999057,1.05878000488654,2617.35449048543,236.13476809275,0,2617.35449048543,85.0009452014507,85.0009452014507,0.00947755666655236,85.0008772277227,24.8,1015,39.78,459.792620662392 +46330,2874.15358207921,457.257182673268,45,85.0155544554456,87.5660210891089,20.2358206819802,0.655841584158416,1839.36633663366,586.047524752475,576.889108910891,20,40,10,32,5306390.63474051,396936.727723644,0,0,0,0,0,0,0,85.0155544554455,21113.6695713691,40.4716413639604,21.704178374679,22.0939680285583,0.655841584158416,0.670481793088273,0.531993922123225,2.35980511414794,1.87218521417013,1.96980159413379,53.5049978743397,0.0182885160893795,1162.93663366337,1156.15847465935,1155.84429042904,1.0586300628089,2634.98783837294,267.888158642394,0,2634.98783837294,85.0267625722967,85.0267625722967,0.0105654129769322,85.0270359264497,24.8,1015,39.6227227722772,488.777248109977 +46331,2874.16142425743,457.272141386138,45,85.091603960396,87.644352079208,20.5274845985148,0.370792079207921,1841.04455445545,534.572277227723,551.39801980198,20,40,9.95049504950495,32,5306404.82837655,396955.619158283,0,0,0,0,0,0,0,85.0916039603959,21137.2951067101,41.0549691970297,22.0170060958479,22.3464416140684,0.370792079207921,0.385432288137778,0.305310541621791,2.25442213146483,1.78857811423564,1.75710274912183,53.5538152519326,-0.0115203250956721,1085.9702970297,1084.87339476522,1085.10652522395,1.05768398004158,2460.90158190441,424.170058783905,0,2460.90158190441,85.0863192824232,85.0863192824232,0.0170612358265725,85.0862250825081,24.8,1015,39.5999999999999,500.30478033637 +46332,2874.16927207921,457.287121584158,45,85.1283465346535,87.6821969306931,20.4257398239604,-0.143465346534653,1841.70297029703,496.479207920792,513.121782178218,20,40,9.66336633663366,32,5306419.03204937,396974.537447432,0,0,0,0,0,0,0,85.1283465346534,21160.9376738168,40.8514796479208,21.9078784864306,22.2624176033137,-0.143465346534653,-0.128825137604796,-0.0958977013611867,2.19330957314303,1.74009359006701,1.76244224241638,53.5729677924042,-0.00216006095543853,1009.60099009901,1012.10046073914,1012.10060348892,1.05722756927101,2287.11871803474,165.39530618857,0,2287.11871803474,85.1309644152533,85.1309644152533,0.00663333660097499,85.1307538896746,24.8,1015,39.5999999999999,496.135929448933 +46333,2874.17710455445,457.302116237624,45,85.1640198019802,87.7189403960396,19.9035561058416,0.397029702970297,1842.89603960396,473.961386138614,479,20,40,9.68316831683168,32,5306433.20703463,396993.473140766,0,0,0,0,0,0,0,85.1640198019801,21184.5878535198,39.8071122116832,21.3478039166605,21.8202744901712,0.397029702970297,0.411669911900154,0.327421088357077,2.64638372055786,2.09954645955494,1.87316933496385,53.6076727717549,0.0148324185606779,952.961386138614,954.064581903735,953.982366808109,1.05678470918641,2159.32762439341,167.834605058141,0,2159.32762439341,85.1539730418585,85.1539730418585,0.0065911294099801,85.1538811881187,24.8,1015,39.5999999999999,476.80396083628 +46334,2874.18493554456,457.317113762376,45,85.161297029703,87.7161359405941,21.892801980198,1.39019801980198,1842.67821782178,445.407920792079,445.290099009901,20,40,9.37623762376238,32,5306447.37926613,397012.412268094,0,0,0,0,0,0,0,85.1612970297028,21208.2448947189,43.7856039603961,23.4813940470857,23.5124673135535,1.39019801980198,1.40483822873184,1.11569304658972,1.43376363049103,1.13749692867727,1.26465890126418,53.6013365929523,-0.0106563007134967,890.698019801981,890.65773943731,890.697284299859,1.05681833605508,2018.08815987177,-19.7077312240493,0,2018.08815987177,85.1645851387118,85.1645851387118,-0.000701183979772103,85.1644363036303,24.8,1015,39.5999999999999,553.275201435805 +46335,2874.19277178218,457.332102376238,45,85.1486831683168,87.7031436633663,22.1834455445545,1.71821782178218,1841.06930693069,446.212871287129,403.252475247525,20,40,9.34653465346535,32,5306461.56147707,397031.340376739,0,0,0,0,0,0,0,85.1486831683167,21231.9001457915,44.3668910891089,23.7931273769754,23.7587691056719,1.71821782178218,1.73285803071204,1.38042688351991,1.41188783845868,1.12014145548769,1.20313648542237,53.5545352722511,-0.00288008127391804,849.465346534653,851.952710518577,852.170136727958,1.05697518991552,1923.16990713769,-255.835872128338,0,1923.16990713769,85.1433184001567,85.1433184001567,-0.0102100556590553,85.1433066478075,24.8,1015,39.5999999999999,564.793077026377 +46336,2874.20062108911,457.347071485149,45,85.122594059406,87.6762718811881,22.8611683168317,2.8280198019802,1841.28217821782,446.511881188119,415.458415841584,20,40,9.64356435643564,32,5306475.76839142,397050.244529872,0,0,0,0,0,0,0,85.1225940594058,21255.5479151534,45.7223366336634,24.5200272724259,24.3333458203787,2.8280198019802,2.84266001091005,2.27200114931254,1.78905945557077,1.41937596452758,1.33602224336679,53.56072744699,0.00748821131218689,861.970297029703,871.76270953828,871.909052333805,1.05729876457887,1952.19061360955,-162.566806343892,0,1952.19061360955,85.1158946181745,85.1158946181745,-0.00656389896414107,85.115708910891,24.8,1015,39.5999999999999,592.624953392705 +46337,2874.20846980198,457.362027524752,45,85.0769504950495,87.6292590099009,22.2596732673267,1.33178217821782,1839.56435643564,469.638613861386,454.736633663366,20,40,9.68316831683168,32,5306489.97455667,397069.132291767,0,0,0,0,0,0,0,85.0769504950494,21279.1864973041,44.5193465346535,23.8748863586419,23.8202609759633,1.33178217821782,1.34642238714768,1.07096737318391,1.37674446703938,1.09225995800603,1.12760753291444,53.5107580368875,-0.0042481198790291,924.375247524753,921.098353102637,920.807355021216,1.05786680072194,2092.82184831837,-162.885039636634,0,2092.82184831837,85.08406695422,85.08406695422,-0.00648084610441597,85.0841753889673,24.8,1015,39.5999999999999,567.783556100885 +46338,2874.21631693069,457.376978118812,45,85.0610099009901,87.6128401980197,21.4149900990099,1.25683168316832,1839,461.893069306931,473.790099009901,20,40,9.87128712871287,32,5306504.17796929,397088.013125511,0,0,0,0,0,0,0,85.06100990099,21302.8168732667,42.8299801980198,22.9689110367929,23.1006582231302,1.25683168316832,1.27147189209818,1.00738804913266,1.53980716234811,1.22162808476762,1.29039303795438,53.4943415736262,-0.00345609752870164,935.683168316831,938.88353102637,938.996463932108,1.05806556864734,2118.69589621105,-80.0485418913593,0,2118.69589621105,85.0681451818449,85.0681451818449,-0.00317370845994839,85.0681652050919,24.8,1015,39.5999999999999,534.179205024611 +46339,2874.22415207921,457.391942475247,45,85.0571485148515,87.6088629702971,19.7363580860396,1.16435643564356,1840.14356435644,474.49702970297,498.125742574257,20,40,9.82178217821782,32,5306518.35894547,397106.910611876,0,0,0,0,0,0,0,85.0571485148513,21326.4443646034,39.4727161720792,21.1684736239728,21.6714503503118,1.16435643564356,1.17899664457342,0.917552819632478,2.79767572152679,2.21957613723386,2.20009411332813,53.52760651234,0.0180725099938357,972.622772277228,973.514145671993,973.359783121169,1.05811260122659,2203.28724561488,-29.12380612518,0,2203.28724561488,85.0571714537789,85.0571714537789,-0.00131386901067241,85.0573777463459,24.8,1015,39.5999999999999,470.319914491468 +46340,2874.23197069307,457.406925049505,45,85.0657821782178,87.6177556435644,18.8821930694059,0.696336633663366,1841.25247524752,492.840594059406,499.39900990099,20,40,9.48514851485148,32,5306532.50895001,397125.830149906,0,0,0,0,0,0,0,85.0657821782177,21350.0728671887,37.7643861388119,20.252328429084,20.9453997703828,0.696336633663366,0.710976842593225,0.546964490823553,3.57672137237695,2.83764317164312,2.7047298626256,53.5598634226078,-0.00950426820392952,992.239603960396,990.77500245074,990.550768505422,1.05800490425766,2248.9868396247,78.762954291997,0,2248.9868396247,85.0655585726888,85.0655585726888,0.00322816935160886,85.0655369165487,24.8,1015.00126237624,39.5987376237623,438.955575331049 +46341,2874.23978643564,457.421900693069,45,85.0826930693069,87.6351738613862,22.6420407040594,2.37445544554455,1837.90594059406,485.736633663366,482.113861386138,20,40,9.96039603960396,32,5306546.65385081,397144.740867747,0,0,0,0,0,0,0,85.0826930693068,21373.7037098729,45.2840814081188,24.2849992560598,24.1450119809993,2.37445544554455,2.38909565447441,1.91301179085286,2.64445801832589,2.09801867608504,2.15349463988676,53.4625166755494,-0.00324009143315779,967.850495049505,971.638976570924,971.730381895332,1.05779453224065,2189.32683444554,-153.490714027391,0,2189.32683444554,85.073272424272,85.073272424272,-0.00611323508589494,85.0727735030644,24.8,1015.01,39.59,586.497487037131 +46342,2874.24760495049,457.436870891089,45,85.0249702970297,87.5757194059406,24.2816435643564,0.907227722772277,1841.24752475248,483.79504950495,495.526732673267,20,40,9.99009900990099,32,5306560.80406866,397163.644801659,0,0,0,0,0,0,0,85.0249702970296,21397.3305963966,48.5632871287129,26.0435754711184,25.537377863603,0.907227722772277,0.921867931702135,0.750338288842402,2.89667026828545,2.29811487995201,2.38843731066909,53.5597194185441,0.00712820115294713,979.321782178218,978.921899813744,979.118170674211,1.0585128285023,2220.57909653683,-47.8656673792036,0,2220.57909653683,85.0331295951377,85.0331295951377,-0.00197284579944766,85.0336812824139,24.8,1015.02,39.58,653.321153680925 +46343,2874.25541871287,457.451847623763,45,84.9900693069307,87.5397713861386,24.9035247524752,0.645742574257426,1838.82178217822,507.773267326733,517.407920792079,20,40,9.93069306930693,32,5306574.94539914,397182.556624819,0,0,0,0,0,0,0,84.9900693069305,21420.9484232118,49.8070495049505,26.7105817886238,26.0646593522386,0.645742574257426,0.660382783187283,0.542625607572431,3.41909550552097,2.71258843066928,2.5757033825134,53.4891574273331,-0.00252007111467829,1025.18118811881,1028.14343691795,1028.27181518152,1.0589483887594,2322.82052848761,-624.192544890307,0,2322.82052848761,84.9957262033133,84.9957262033133,-0.0249471729351031,84.9957935879301,24.8,1015.03,39.57,680.045412182856 +46344,2874.26321861386,457.466833366336,45,84.9849207920793,87.5344684158415,24.3258415841584,1.62673267326733,1840.05940594059,529.994059405941,569.311881188119,20,40,9.9009900990099,32,5306589.06091452,397201.479119584,0,0,0,0,0,0,0,84.9849207920792,21444.5499722767,48.6516831683168,26.0909806008962,25.5726456728444,1.62673267326733,1.64137288219718,1.32974827459839,2.82319186324189,2.23981973402721,2.30342667179548,53.5251584432571,-0.00964827226762542,1099.30594059406,1100.85073032056,1100.68316831683,1.05901151393003,2492.24911005256,94.4329109021388,0,2492.24911005256,84.9733449661797,84.9733449661797,0.00385583112766894,84.9728366808108,24.8,1015.04,39.56,654.431489139893 +46345,2874.27099871287,457.481842277228,45,84.9776534653465,87.526983069307,22.7906589658416,0.556138613861386,1838.4702970297,552.807920792079,593.749504950495,20,40,10,32,5306603.13929673,397220.429724604,0,0,0,0,0,0,0,84.9776534653464,21468.1552101205,45.5813179316832,24.4444016007508,24.2658963252505,0.556138613861386,0.570778822791244,0.478981266873498,2.27832469167954,1.80754155301561,1.77344230185679,53.4789331388107,0.00684019302555533,1146.55742574257,1138.95467111068,1138.69444601603,1.05910230592472,2597.72144065462,220.189921528129,0,2597.72144065462,84.972357808058,84.972357808058,0.00875186528552729,84.9728356435643,24.8,1015.05,39.55,591.171997500384 +46346,2874.27874891089,457.496884554456,45,85.0145148514851,87.5649502970297,22.243801980198,1.23425742574257,1841.16336633663,546.972277227723,576.052475247525,20,40,10,32,5306617.16161294,397239.420808556,0,0,0,0,0,0,0,85.014514851485,21491.7648771172,44.487603960396,23.8578634144139,23.802513402766,1.23425742574257,1.24889763467243,0.99554668096425,1.92632155705976,1.5282748203411,1.52387894993795,53.5572713494613,0.0103682925861049,1123.02475247525,1125.4741691991,1125.64776049033,1.05864350590652,2546.98803219265,404.044233490789,0,2546.98803219265,85.0249796098421,85.0249796098421,0.0160768552102691,85.0250211221121,24.8,1015.06,39.54,568.011484774743 +46347,2874.28649118812,457.511945544555,45,85.0439702970297,87.5952894059406,21.8311826182178,-0.577425742574257,1839.44059405941,569.654455445545,555.362376237624,20,40,9.99009900990099,32,5306631.16890349,397258.434845713,0,0,0,0,0,0,0,85.0439702970296,21515.3873457091,43.6623652364356,23.4153034424708,23.4539124159851,-0.577425742574257,-0.5627855336444,-0.447034071043551,2.02224096988298,1.60437386147076,1.5958937919225,53.5071579352951,-0.010224288522409,1125.01683168317,1105.49442211548,1102.69652993871,1.05827716970279,2548.06491758966,261.600761548925,0,2548.06491758966,85.0580911675325,85.0580911675325,0.0105477131871571,85.0587159830267,24.8,1015.07,39.53,552.14160138259 +46348,2874.29423623762,457.527011188119,45,85.0114257425742,87.5617685148515,20.0986749176238,-0.323465346534654,1833.9603960396,-62.2752475247524,-52.8415841584158,20,40,9.89108910891089,32,5306645.18128768,397277.454677648,0,0,0,0,0,0,0,85.0114257425741,21539.0185314627,40.1973498352476,21.5570809982146,21.9780888489993,-0.323465346534654,-0.308825137604796,-0.243743953679398,2.49559631142235,1.97991710704019,2.03643662609518,53.3477454367838,-0.00201605689174262,-115.116831683168,-236.853602587982,-251.991683168317,1.05869015869156,-260.973655008529,-2432.90540264982,0,-260.973655008529,84.9845625919027,84.9845625919027,-0.097299828992792,84.9817735973596,24.8,1015.08,39.52,484.228973027157 +46349,2874.30193891089,457.542028019802,45,84.0662673267327,86.5882553465346,18.9074548953465,-0.113465346534653,1799.13366336634,-2935.92376237624,-2745.60594059406,20,40,9.92079207920792,32,5306659.11632027,397296.412224356,0,0,0,0,0,0,0,84.0662673267326,21562.5371154561,37.8149097906931,20.2794233112191,20.9095945314003,-0.113465346534653,-0.0988251376047957,-0.0768621888272292,3.31579743886065,2.63063542874791,2.53504507653029,52.3346768486831,-0.0184325201530754,-5681.5297029703,-5565.60590138222,-5524.6137596997,1.07065746195233,-12698.788582129,-13230.0093266947,0,-12698.788582129,83.9716416037642,83.9716416037642,-0.529052162642009,83.9626397894136,24.8,1015.09,39.51,437.592009008235 +46350,2874.30947881188,457.556689207921,45,81.430198019802,83.873103960396,19.1204092406931,0.0751485148514851,1741.61386138614,-4277.72079207921,-4007.05940594059,20,40,9.84158415841584,32,5306672.75778732,397314.92135897,0,0,0,0,0,0,0,81.4301980198019,21585.5348495045,38.2408184813862,20.5078301136761,20.9393961197692,0.0751485148514851,0.0897887237813425,0.0809910387838963,2.65297057094335,2.10477223172814,2.16575681905178,50.6614936326004,-0.0154084348154615,-8284.7801980198,-8268.44984805411,-8265.53541646729,1.10535516260269,-18555.1297932542,-19502.2846883177,0,-18555.1297932542,81.4311328301146,81.4311328301146,-0.779967105621443,81.4315990890509,24.8,1015.09747524752,39.5,440.19312405413 +46351,2874.31681881188,457.570818910891,45,78.7128811881189,81.0742676237624,18.0477502749505,0.562475247524753,1681.02475247525,-4202.37425742574,-3979.8801980198,20,40,9.88118811881188,32,5306686.04080689,397332.761853369,0,0,0,0,0,0,0,78.7128811881187,21607.7678873758,36.095500549901,19.3573365461774,19.8709017743471,0.562475247524753,0.57711545645461,0.455842262866141,2.78535995039184,2.20980524366231,2.23201551130879,48.8990278970263,-0.0173524896753562,-8182.25445544554,-8182.5777178708,-8182.79203036183,1.14350187208112,-18299.346539113,-18793.2470118192,0,-18299.346539113,78.6897315949416,78.6897315949416,-0.751590258035709,78.6885268577042,24.8,1015.09,39.49,395.556942209039 +46352,2874.32395257426,457.584425544554,45,76.0018712871288,78.2819274257426,18.2540154014852,-1.26,1626.78712871287,-4052.28910891089,-3786.54653465347,20,40,9.78217821782178,32,5306698.95344876,397349.943988593,0,0,0,0,0,0,0,76.0018712871286,21629.2487066827,36.5080308029703,19.5785687447198,19.8909921603371,-1.26,-1.24535979107014,-0.975508771007121,2.22858860066342,1.76808271226103,1.77878231621346,47.321319375174,-0.0169204774842685,-7838.83564356436,-7662.04079992158,-7593.21472095438,1.18428691968409,-17572.3828612822,-17670.0827129293,0,-17572.3828612822,76.0184034898538,76.0184034898538,-0.706666830049348,76.0257854013525,24.8,1015.08,39.48,397.346428186077 +46353,2874.33087306931,457.597564653465,45,73.8242871287129,76.0390157425742,16.3205781075247,-0.526336633663366,1590.22277227723,-2075.64356435644,-1945.0198019802,20,40,9.52475247524752,32,5306711.48145498,397366.536720982,0,0,0,0,0,0,0,73.8242871287128,21650.0306754121,32.6411562150495,17.5048367936484,18.1209147037192,-0.526336633663366,-0.511696424733509,-0.399518199305819,3.18337339987718,2.52557491917483,2.33396004900774,46.2577053607161,-0.00756021334403484,-4020.66336633663,-4105.48665817077,-4137.30521260552,1.21915021888377,-9064.66161015821,-10377.0913590108,0,-9064.66161015821,73.9003284972061,73.9003284972061,-0.415021947739308,73.9299317767696,24.8,1015.07,39.47,328.829722363229 +46354,2874.33765950495,457.610432673267,45,72.9370396039604,75.1251507920792,18.0553074807921,-2.08821782178218,1574.40594059406,-676.682178217822,-636.953465346535,20,40,9.38613861386139,32,5306723.76718933,397382.787325745,0,0,0,0,0,0,0,72.9370396039603,21670.3935485419,36.1106149615842,19.365442120257,19.5460187186554,-2.08821782178218,-2.07357761285232,-1.63363952220232,1.67518445696921,1.32903160203456,1.62884057588474,45.7976123772076,-0.0010080284458713,-1313.63564356436,-1405.8213900598,-1460.0451067214,1.23394799285798,-2969.49006792239,-4324.94339267868,0,-2969.49006792239,72.9567192432113,72.9567192432113,-0.17298957618536,72.9605581801496,24.8,1015.06,39.46,382.997982619203 +46355,2874.34438,457.623185841584,45,72.3798613861386,74.5512572277228,17.8344174917822,-2.07168316831683,1560.53465346535,-602.143564356436,-588.410891089109,20,40,9.78217821782178,32,5306735.93336784,397398.892642996,0,0,0,0,0,0,0,72.3798613861385,21690.5767738994,35.6688349835644,19.1285238455798,19.3256490756628,-2.07168316831683,-2.05704295938698,-1.61511131788803,1.880685671578,1.49206893642202,1.4056861812483,45.3941129907317,-0.00864024382175411,-1190.55445544554,-1195.38428585433,-1202.12356435644,1.24344735421221,-2688.06249372152,-4117.37088591897,0,-2688.06249372152,72.3717418880501,72.3717418880501,-0.164624383230397,72.3713739405939,24.8,1015.05,39.45,375.046017081885 +46356,2874.35105841584,457.635821782178,45,71.7573861386139,73.9101077227723,18.3092376237624,-1.64188118811881,1547.34158415842,-808.626732673267,-772.406930693069,20,40,10,32,5306748.02424149,397414.850501058,0,0,0,0,0,0,0,71.7573861386138,21710.5963627883,36.6184752475248,19.637798018461,19.694230118724,-1.64188118811881,-1.62724097918895,-1.28863120443166,1.52055514116134,1.20635421778909,1.13123344088076,45.0103421609821,-0.0156244409110054,-1581.03366336634,-1659.76177825703,-1710.39611089109,1.2542358885629,-3569.79248118739,-4735.78875138312,0,-3569.79248118739,71.750060778355,71.750060778355,-0.189304697796507,71.7446594851484,24.8,1015.04,39.44,388.704167110506 +46357,2874.35767445544,457.648328316832,45,70.7850594059406,72.9086111881188,17.9264356435644,-1.82742574257426,1526.74257425743,-2299.29306930693,-2115.74455445545,20,40,10,32,5306760.00248159,397430.645065347,0,0,0,0,0,0,0,70.7850594059405,21730.4137760447,35.8528712871287,19.2272190461045,19.3126028009918,-1.82742574257426,-1.8127855336444,-1.43028729060756,1.32690623275664,1.05272008042671,1.04501834052621,44.4111412519435,-0.0101522864905611,-4415.03762376238,-4484.20502891873,-4504.38171729183,1.27151172206671,-9974.58358115004,-10713.3622031427,0,-9974.58358115004,70.7314276051367,70.7314276051367,-0.428452003616194,70.6977700105168,24.8,1015.03,39.43,373.398142625004 +46358,2874.36414722772,457.660551881188,45,68.6039504950495,70.662069009901,17.3347920792079,-1.82415841584158,1471.29207920792,-4194.25643564356,-3722.97722772277,20,40,10,32,5306771.72164837,397446.082413277,0,0,0,0,0,0,0,68.6039504950494,21749.7981526123,34.6695841584158,18.5926444638906,18.6841797327604,-1.82415841584158,-1.80951820691173,-1.43217664433531,1.338848413372,1.06219458060427,1.08867160306587,42.7981517344857,-0.0167764734205726,-7917.23366336634,-7766.24653465347,-7663.86847165785,1.31206134174335,-17776.7889069026,-17885.0083445587,0,-17776.7889069026,68.588981374375,68.588981374375,-0.715264843316013,68.5794438893785,24.8,1015.02,39.42,349.603676130963 +46359,2874.37036920792,457.672354554455,45,65.9491683168317,67.9276433663367,16.2645841584158,-1.66336633663366,1411.15346534653,-4345.85346534653,-3793.75247524752,20,40,10,32,5306782.98561906,397460.987231981,0,0,0,0,0,0,0,65.9491683168316,21768.4826023648,32.5291683168317,17.4447797948016,17.6211157076384,-1.66336633663366,-1.64872612770381,-1.29539694219871,1.6245804342601,1.28888417522989,1.23336633679409,41.0487903687079,-0.0170644815479644,-8139.60594059406,-8134.18880501912,-8112.60226410644,1.36489421402061,-18238.8681779448,-18428.5168634912,0,-18238.8681779448,65.9458165866091,65.9458165866091,-0.737002908211607,65.9477922636085,24.8,1015.01,39.41,311.478816049761 +46360,2874.37632633663,457.683714851485,45,63.3801188118812,65.2815223762376,16.6783861386139,-2.28821782178218,1359.58415841584,-3548.00891089109,-3145.8,20,40,10,32,5306793.76882227,397475.332306065,0,0,0,0,0,0,0,63.3801188118811,21786.4330226619,33.3567722772277,17.8886081984606,17.8260692249315,-2.28821782178218,-2.27357761285232,-1.81101555595991,1.16766556689256,0.926384215512289,0.993483228118134,39.5487000371877,-0.0170644815479644,-6693.80891089109,-6336.50615625919,-6092.89096745647,1.42017803976112,-15028.3163953442,-14855.9616186222,0,-15028.3163953442,63.4371805705322,63.4371805705322,-0.594100251609331,63.4948111029422,24.8,1015.00126237624,39.4025247524753,318.074611610391 +46361,2874.38209128713,457.694716633663,45,62.1019108910891,63.9649682178218,16.4594554455446,-2.55673267326733,1340.74257425743,-672.259405940594,-644.526732673267,20,40,10,32,5306804.20401413,397489.224481093,0,0,0,0,0,0,0,62.101910891089,21803.811459048,32.9189108910891,17.653791390744,17.5662014923987,-2.55673267326733,-2.54209246433747,-2.02641794184516,1.24665711765845,0.989053294624641,0.993939321275263,39.0006205707611,-0.00158404470065492,-1316.78613861386,-1690.46406234683,-1984.97786958006,1.44924052671126,-2977.91687655478,-4419.58380897371,0,-2977.91687655478,62.1212671306733,62.1212671306733,-0.176770523587011,62.1468351655854,24.8,1015,39.41,308.902385764212 +46362,2874.38779039604,457.705591980198,45,61.5910693069307,63.4388013861386,16.1830693069307,-1.94633663366337,1328.4504950495,-549.967326732673,-541.761386138614,20,40,10,32,5306814.52007522,397502.956967246,0,0,0,0,0,0,0,61.5910693069306,21820.9897596531,32.3661386138614,17.357350038202,17.3018813521873,-1.94633663366337,-1.93169642473351,-1.53736227836167,1.32754055193868,1.05322332664249,1.02536889706243,38.6430584806041,-0.00640818083446763,-1091.72871287129,-1091.02435055387,-1095.52409784399,1.4612541522755,-2465.07453309092,-3205.78695897243,0,-2465.07453309092,61.5999334378982,61.5999334378982,-0.128179154549113,61.604684126597,24.8,1015,39.42,299.92293385658 +46363,2874.39344326733,457.716383366337,45,61.0965742574257,62.9294714851485,15.658297029703,-2.38495049504951,1318.28217821782,-545.122772277227,-532.539603960396,20,40,10,32,5306824.75237797,397516.583312852,0,0,0,0,0,0,0,61.0965742574257,21838.0351780249,31.3165940594059,16.7944990775202,16.8269367500868,-2.38495049504951,-2.37031028611965,-1.88003240729117,1.23789112155662,0.982098665960218,1.08172145013989,38.3472741337728,-0.00180005079619877,-1077.66237623762,-1079.45493579061,-1079.47125946398,1.47308717243534,-2434.34971847147,-3691.11387414326,0,-2434.34971847147,61.1086307224781,61.1086307224781,-0.147629861996104,61.1109148215601,24.8,1015,39.43,283.611977265641 +46364,2874.3990470297,457.727088316832,45,60.6325346534653,62.4515106930693,13.225797029802,-1.58752475247525,1308.87128712871,-532.90099009901,-539.142574257426,20,40,10,32,5306834.89565776,397530.100341769,0,0,0,0,0,0,0,60.6325346534653,21854.9396145486,26.451594059604,14.1854912826808,14.7307999873059,-1.58752475247525,-1.57288454354539,-1.19627955087885,2.87595593944978,2.28168087023863,2.06093182578333,38.0735224086868,-0.00180005079619877,-1072.04356435644,-1073.52322321341,-1073.32590869825,1.48435902518218,-2423.76259913064,-3261.93034614213,0,-2423.76259913064,60.6237417900205,60.6237417900205,-0.13046242743086,60.6217508804571,24.8,1015,39.44,217.996951147506 +46365,2874.40460475248,457.737708019802,45,60.1059702970297,61.9091494059406,15.3607227722772,-0.862178217821782,1296.07920792079,-530.222772277228,-538.986138613862,20,40,10,32,5306844.95557297,397543.509635936,0,0,0,0,0,0,0,60.1059702970296,21871.7101971668,30.7214455445544,16.4753321475309,16.5171816949158,-0.862178217821782,-0.847538008891925,-0.657620679596473,1.53117812793241,1.21478211662018,1.32733609995977,37.7014159080966,-0.000360010159239758,-1069.20891089109,-1064.76019017743,-1064.6987773274,1.49736643510476,-2414.25991809643,-3377.93517101625,0,-2414.25991809643,60.1202987942358,60.1202987942358,-0.13511474909866,60.1282820120937,24.8,1015,39.45,274.002928231863 +46366,2874.41012188119,457.748239306931,45,59.6401683168317,61.4293733663366,16.2180693069307,-2.85594059405941,1286.81188118812,-544.862376237624,-509.429702970297,20,40,10,32,5306854.94228,397556.807429602,0,0,0,0,0,0,0,59.6401683168316,21888.3449453242,32.4361386138614,17.3948897187048,17.2197127386211,-2.85594059405941,-2.84130038512955,-2.27476947011234,1.43400607494773,1.13768927546234,1.16167927005598,37.4318403008579,-0.00230406501913443,-1054.29207920792,-1055.82577198314,-1056.29821373282,1.50906908885591,-2382.19995607656,-3737.19925781282,0,-2382.19995607656,59.6351343985883,59.6351343985883,-0.149469278611043,59.6318268167527,24.8,1015,39.46,296.990231518852 +46367,2874.41557445545,457.758701485148,45,59.1326534653465,60.9066330693069,16.658198019802,-3.30920792079208,1275.85148514851,-550.536633663366,-501.149504950495,20,40,10,32,5306864.81096816,397570.016981783,0,0,0,0,0,0,0,59.1326534653465,21904.8359214243,33.316396039604,17.8669551833134,17.5647470178329,-3.30920792079208,-3.29456771186223,-2.65218113001803,1.84657853430101,1.46500955015117,1.40728413764418,37.1130153038352,-0.0118083332230639,-1051.68613861386,-1055.27174786786,-1056.31050281499,1.52201291173315,-2376.09796015284,-3360.87712235711,0,-2376.09796015284,59.1248316831682,59.1248316831682,-0.134338681392889,59.1206645958713,24.8,1015,39.47,308.987355877816 +46368,2874.42095970297,457.769099306931,45,58.5818811881188,60.3393376237624,16.1672871287129,-3.49445544554455,1278.64356435644,-779.89801980198,-721.324752475248,20,40,10,32,5306874.55639652,397583.14412155,0,0,0,0,0,0,0,58.5818811881187,21921.187168509,32.3345742574257,17.3404226688324,17.1152834319915,-3.49445544554455,-3.4798152366147,-2.79207091991406,1.63593404579747,1.29789172569254,1.33948182825589,37.1942335957597,0.0376570626564783,-1501.22277227723,-1490.18297225762,-1547.53136632828,1.53632845218084,-3457.1104942505,-4550.07592777324,0,-3457.1104942505,58.5726521909616,58.5726521909616,-0.182322811489073,58.5512627926929,24.8,1015,39.48,293.469432271849 +46369,2874.4262760396,457.77937990099,45,57.5998811881188,59.3278776237624,15.2317128712871,-3.30118811881188,1430.89603960396,-1341.61485148515,-1266.05346534653,20,40,10,32,5306884.17679902,397596.122949376,0,0,0,0,0,0,0,57.5998811881187,21937.3453945541,30.4634257425743,16.3369609913918,16.2631272722161,-3.30118811881188,-3.28654790988203,-2.61754107147221,1.18096151472273,0.936932746315439,0.942411039324264,41.6230785747272,0.0179285059301398,-2607.66831683168,-3059.12904617194,-3501.79036607651,1.56261537061761,-6800.67984969283,-11391.176547701,0,-6800.67984969283,57.5304328007057,57.5304328007057,-0.455807709483814,57.4314103824052,24.8,1015,39.49,264.805755431495 +46370,2874.43143514851,457.789354653465,45,54.9178613861386,56.5653972277228,14.4658514851485,-3.31712871287129,1367.26732673267,-4927.09603960396,-4408.59603960396,20,40,10,32,5306893.51275057,397608.715653972,0,0,0,0,0,0,0,54.9178613861385,21953.0269135585,28.931702970297,15.5155269415322,15.4577523536806,-3.31712871287129,-3.30248850394143,-2.62903887533161,1.10808973793311,0.879118877611669,0.891999216659847,39.7721943440437,-0.0298088411850517,-9335.69207920792,-8815.63369277522,-8161.11960942211,1.6396168202196,-24326.5676656702,-26009.5497470665,0,-24326.5676656702,54.8443534947553,54.8443534947553,-1.04010227755448,54.741430377111,24.8012623762376,1015,39.5,239.210505602186 +46371,2874.43626138614,457.798697128713,45,50.9433465346535,52.4716469306931,14.0725445544554,-3.17653465346535,1273.04455445545,-5166.20792079208,-4600.52376237624,20,40,10,32,5306902.24611098,397620.509906034,0,0,0,0,0,0,0,50.9433465346534,21967.7067805827,28.1450891089109,15.0936807553105,14.8951545635047,-3.17653465346535,-3.16189444453549,-2.53720374133064,1.5054323791276,1.19435635775089,1.14907408797123,37.0313649997196,-0.0217446136180812,-9766.73168316832,-9902.43944711303,-10099.4610614239,1.76731006221761,-25557.9841262039,-24664.3694259587,0,-25557.9841262039,50.9862984021174,50.9862984021174,-0.986369800346373,51.0378618695044,24.81,1015,39.51,222.397405192489 +46372,2874.44074287129,457.807425643564,45,47.4045445544554,48.8266808910891,13.4598415841584,-3.41663366336634,1254.63366336634,-5949.85346534654,-5211.97821782178,20,40,10,32,5306910.3544626,397631.528134894,0,0,0,0,0,0,0,47.4045445544554,21981.379988586,26.9196831683168,14.4365186482226,14.1708065985042,-3.41663366336634,-3.40199345443648,-2.74391455345461,1.55123246952732,1.23069251599545,1.2751517985255,36.4958138868346,0.0595456803382554,-11161.8316831683,-11257.6545730811,-11299.3129770983,1.89978709445009,-31198.6433203017,-27287.1908288015,0,-31198.6433203017,47.3766669934319,47.3766669934319,-1.09213693646592,47.2890460721203,24.82,1015,39.52,200.968200271508 +46373,2874.44482584158,457.815495049505,45,43.0702871287129,44.3623957425743,12.3890099009901,-3.5,1470.71782178218,-7139.65148514852,-5982.04554455446,20,40,10,32,5306917.73921212,397641.712350454,0,0,0,0,0,0,0,43.0702871287128,21993.9611713418,24.7780198019802,13.2879849551247,13.0110292349088,-3.5,-3.48535979107015,-2.81701852616138,1.56180526328829,1.23908059348248,1.24268451426605,42.781447263097,-0.00316808940130984,-13121.697029703,-12982.7585922949,-12767.0749859805,2.09207246557121,-46934.0665748175,-32355.2329206829,0,-46934.0665748175,43.0527909028526,43.0527909028526,-1.29414599875829,43.0011278119859,24.83,1015,39.53,169.910493069349 +46374,2874.44831554455,457.82292009901,45,38.3609306930693,39.5117586138614,10.7338118811881,-3.5,1328.88613861386,-7334.13366336633,-5988.8801980198,20,40,10,32,5306924.03927996,397651.074532723,0,0,0,0,0,0,0,38.3609306930692,22005.2607577279,21.4676237623762,11.5126819599174,11.3326459158149,-3.5,-3.48535979107015,-2.8020417315468,1.28210010276124,1.01717249491694,1.00257952264034,38.6557308382094,-0.0519854669942205,-13323.0138613861,-13649.4315753357,-13939.1698072325,2.34941350790064,-48331.1960857038,-34605.4640965697,0,-48331.1960857038,38.2968457014018,38.2968457014018,-1.38353946780816,38.1724498914717,24.84,1015,39.54,129.118960613798 +46375,2874.45097831683,457.829815445545,45,32.9701287128713,33.9592325742574,8.69769306930693,-3.5,1297.27722772277,-8616.77524752475,-6980.44554455446,20,40,10,32,5306928.81930307,397659.749805466,0,0,0,0,0,0,0,32.9701287128712,22015.1696138886,17.3953861386139,9.32881768380911,9.29107609138741,-3.5,-3.48535979107015,-2.77266428561801,0.827351152446931,0.656390896541066,0.74778526963011,37.7362648915111,0.0637938002172845,-15597.2207920792,-15268.8527007156,-14615.9212719016,2.73568651923676,-64417.6431088183,-36221.1078361287,0,-64417.6431088183,33.0186306244485,33.0186306244485,-1.44987419534033,33.1834463249081,24.85,1015,39.55,86.8017821415229 +46376,2874.45274138614,457.836076732673,45,28.2700495049505,29.118150990099,8.3499405940594,-3.3170297029703,1430.28217821782,-8248.15148514852,-6549.89603960396,20,40,10,32,5306931.94678446,397667.605815932,0,0,0,0,0,0,0,28.2700495049505,22023.6447365508,16.6998811881188,8.95583148909898,8.72579341463756,-3.3170297029703,-3.30238949404044,-2.672887170967,1.44700752814486,1.1480041647269,1.04517238336165,41.6052220708289,0.00108003047771926,-14798.0475247525,-14734.3237231644,-14054.9853533873,3.1896928718416,-78531.4163345781,-30895.5166011253,0,-78531.4163345781,28.2656647387511,28.2656647387511,-1.23587692927708,28.4278710700179,24.86,1015,39.56,77.0123992001084 +46377,2874.45371772277,457.841683465347,45,23.7821881188119,24.4956537623762,6.35125742574257,-3.5,1513.93069306931,-7546.41782178218,-5963.80297029703,20,40,10,32,5306933.6314339,397674.620758579,0,0,0,0,0,0,0,23.7821881188118,22030.8685703517,12.7025148514851,6.81211927295711,6.7677393056725,-3.5,-3.48535979107015,-2.77559937607913,0.763845275641308,0.606007598846024,0.667569902668724,44.0384587350985,0.00288008127391803,-13510.2207920792,-12749.7794726007,-10343.8434615846,3.79466728392037,-89978.4228971559,-27641.1897774799,0,-89978.4228971559,23.8718637388491,23.8718637388491,-1.10565957585857,24.7788285360205,24.87,1015,39.57,46.36724989796 +46378,2874.45418673267,457.846576534654,45,21.1957821782178,21.8316556435644,5.73252475247525,-3.5,1439.14356435644,-2066.78217821782,-1621.37227722772,20,40,10,32,5306934.39211116,397680.730202518,0,0,0,0,0,0,0,21.1957821782178,22037.0342262372,11.4650495049505,6.14848993378263,6.09297727347834,-3.5,-3.48535979107015,-2.78064794657081,0.74423165444213,0.590446851314256,0.572455760505793,41.8629893448445,-0.0198725607900345,-3688.15445544554,-4486.09063817273,-7184.61093828614,4.24681231958728,-26260.3943267165,-9663.62973126735,0,-26260.3943267165,21.2503591804725,21.2503591804725,-0.386035138167284,22.2882255949041,24.88,1015,39.58,37.5259429964868 +46379,2874.45443663366,457.851173366337,45,20.175495049505,20.7807599009901,5.35671287128713,-3.5,1368.70792079208,-1417.77524752475,-1144.20594059406,20,40,9.73267326732673,32,5306934.75347256,397686.463499518,0,0,0,0,0,0,0,20.1754950495049,22042.7757684265,10.7134257425743,5.74540827809796,5.71470617316618,-3.5,-3.48535979107015,-2.77545891968586,0.559193520509927,0.443644195311627,0.43193943411906,39.8140995265792,-0.0218166156499291,-2561.98118811881,-2578.20431330262,-4392.49563409919,4.46144229884976,-18200.1721872987,-5804.12075071892,0,-18200.1721872987,20.2097736496422,20.2097736496422,-0.231605833850709,20.5246328362063,24.89,1015,39.59,32.8099620774275 +46380,2874.45473089109,457.855575742574,45,19.4761386138614,20.0604227722772,5.02351485148515,-3.5,1292.23762376238,-1298.17524752475,-1089.2801980198,20,40,8.69306930693069,32,5306935.20129829,397691.956069799,0,0,0,0,0,0,0,19.4761386138614,22048.2830962043,10.0470297029703,5.38803264359691,5.39109887366177,-3.5,-3.48535979107015,-2.76147013719315,0.474279767544565,0.376276652191929,0.384652340588273,37.5896687546686,-0.0232566562868881,-2387.45544554455,-2369.70077443388,-1905.67710144639,4.62173610945754,-16591.05221892,-5712.1856916165,0,-16591.05221892,19.455703460445,19.455703460445,-0.227906577786491,19.4552496483232,24.8987376237624,1015,39.5936881188119,29.1535081484964 +46381,2874.45537821782,457.859686930693,45,18.5449702970297,19.1013194059406,4.98788118811881,-3.5,1201.71782178218,-785.153465346534,-974.081188118812,20,40,8.68316831683168,32,5306936.30956776,397697.097579405,0,0,0,0,0,0,0,18.5449702970297,22053.5646731845,9.97576237623762,5.34981331965642,5.30738492966846,-3.5,-3.48535979107015,-2.78280822025168,0.493974622725245,0.39190184786738,0.382975651265784,34.9565544499891,-0.0296648371213558,-1759.23465346535,-1591.66709146162,-733.191870043651,4.85408003972241,-11952.5770947386,-6293.61342624201,0,-11952.5770947386,18.55308685423,18.55308685423,-0.251018418673551,18.8607870314985,24.9,1015,39.56,28.261185281991 +46382,2874.45654,457.863359009901,45,17.9341188118812,18.4721423762376,4.76233663366336,-3.5,1142.80693069307,697.446534653465,564.009900990099,20,40,9,32,5306938.38049025,397701.70910147,0,0,0,0,0,0,0,17.9341188118812,22058.60760341,9.52467326732673,5.10790273355908,5.08045079581016,-3.5,-3.48535979107015,-2.7764522867458,0.447227269000297,0.354814164685106,0.392696702311316,33.2429060920078,-0.00907225601284181,1261.45643564356,1101.32056661112,-64.622725466464,5.01850668325448,8396.53046952678,-456.444491328592,0,8396.53046952678,17.9868361925301,17.9868361925301,-0.0180333627422112,18.5043842238723,24.9,1015,39.52,25.887328318936 +46383,2874.45821653465,457.866501287129,45,18.1981089108911,18.7440521782178,6.22955445544555,-3.5,1121.40594059406,1037.40396039604,820.012871287129,20,40,8.84158415841584,32,5306941.41661761,397705.677691305,0,0,0,0,0,0,0,18.1981089108911,22063.6223882285,12.4591089108911,6.68158525520872,6.34400375979354,-3.5,-3.48535979107015,-2.89427031201637,1.67902951386514,1.33208213304029,1.30070358553978,32.6203765246505,-0.00763221537588279,1857.41683168317,1820.20293108519,468.583430990163,4.94568412779737,11993.2290779767,1972.29388407372,0,11993.2290779767,18.1889879423586,18.1889879423586,0.0790717685629892,18.2866005031146,24.9,1015,39.48,40.6747921865256 +46384,2874.46042138614,457.868886930693,45,18.3326039603961,18.8825820792079,6.83675247524753,-3.5,1112.55940594059,419.509900990099,273.736633663366,20,40,9.11881188118812,32,5306945.44808381,397708.721288482,0,0,0,0,0,0,0,18.332603960396,22068.706248597,13.6735049504951,7.33284295993179,6.86836759354029,-3.5,-3.48535979107015,-2.93590237110902,2.27176453164083,1.80233695601164,1.77862450574295,32.3630412628259,-0.00252007111467828,693.246534653466,737.892559552985,788.121949239053,4.9095400960349,4412.52824709202,-339.456611296231,0,4412.52824709202,18.3285130869522,18.3285130869522,-0.0135212778703575,18.2870230188839,24.9,1015,39.44,47.2885914923582 +46385,2874.46302861386,457.870262970297,45,18.4025346534653,18.9546106930693,6.62207920792079,-3.5,1104.48514851485,168.617821782178,56.1039603960396,20,40,10,32,5306950.24718818,397710.520698033,0,0,0,0,0,0,0,18.4025346534653,22073.7937513748,13.2441584158416,7.10259250656206,6.68971447851527,-3.5,-3.48535979107015,-2.92044234044427,2.02520637830517,1.60672651075044,1.66318335108775,32.1281706349379,0.00302408533761394,224.721782178218,198.138584452505,502.110366823831,4.89098013069132,1409.41776442288,1775.41425258066,0,1409.41776442288,18.3996331732183,18.3996331732183,0.0709475650535327,18.3737041806564,24.9,1015,39.4,44.8737382827537 +46386,2874.46583891089,457.870493168317,45,18.5391584158416,19.0953331683168,7.1689603960396,-3.5,1075.93069306931,143.772277227723,11.3910891089109,20,40,9.57425742574257,32,5306955.44775246,397710.899700732,0,0,0,0,0,0,0,18.5391584158416,22078.9345055827,14.3379207920792,7.68915665156146,7.16288177336498,-3.5,-3.48535979107015,-2.95123482151162,2.56859002645492,2.03782771719694,2.01874438939242,31.2975551955399,-0.0270007619429816,155.163366336634,-45.4325654347613,768.474472400212,4.85473830398496,919.844658321947,-205.977951770284,0,919.844658321947,18.5354537790413,18.5354537790413,-0.00766264745286368,18.4745173901768,24.9,1015,39.36,51.4209529925206 +46387,2874.46843435644,457.869605643565,45,18.3662376237624,18.9172247524753,7.23169306930693,-3.5,1074.0495049505,-274.238613861386,-426.376237623762,20,40,10,32,5306960.27502073,397709.87959365,0,0,0,0,0,0,0,18.3662376237623,22084.0690657863,14.4633861386139,7.75644135189126,7.20634678524796,-3.5,-3.48535979107015,-2.95843942480282,2.6827416124805,2.12839151428758,2.08996996136473,31.2428336513354,0.0371530484335427,-700.614851485149,-26.4260954808354,1525.33876756717,4.90072733375467,-4177.8082145764,-848.037148906247,0,-4177.8082145764,18.4018075678855,18.4018075678855,-0.0347297105948223,18.7562463355649,24.9,1015,39.32,52.0794808285047 +46388,2874.47081910891,457.867573960396,45,18.7341782178218,19.2962035643564,6.93624752475248,-3.5,1116.32673267327,1966.98118811881,1652.94356435644,20,40,10,32,5306964.73728043,397707.427592712,0,0,0,0,0,0,0,18.7341782178218,22089.1970459293,13.872495049505,7.43955759907543,6.97605020029209,-3.5,-3.48535979107015,-2.93278694017356,2.26836418155986,1.79963923953224,1.79696526598198,32.4726283552984,-0.0101522864905611,3619.92475247525,3285.56593471228,2361.65739415812,4.80478063690624,22599.4369863349,5208.60344088494,0,22599.4369863349,18.7431230271542,18.7431230271542,0.208571599734232,19.1854528400559,24.9,1015,39.28,48.7797426955261 +46389,2874.47280970297,457.864483267327,45,19.7811188118812,20.3745523762376,6.57305940594059,-3.3639603960396,963.034653465347,2415.37326732673,1994.92376237624,20,40,10,32,5306968.49281121,397703.643721086,0,0,0,0,0,0,0,19.7811188118812,22094.5292878435,13.1461188118812,7.05001571500069,6.72709538068556,-3.3639603960396,-3.34932018710975,-2.77234541194781,1.60277454881269,1.27158416343156,1.26710862078465,28.0135425229549,-0.0604097047204308,4410.29702970297,4275.47696304284,3613.67604027992,4.55233338214778,22699.3381275526,8165.61997953509,0,22699.3381275526,19.7551936084697,19.7551936084697,0.327805552832512,19.7457813470484,24.9,1015,39.24,45.3565342797228 +46390,2874.47410534653,457.860456336634,45,20.5818811881188,21.1993376237624,6.12196039603961,-2.91534653465346,915.044554455446,2325.32673267327,1926.39504950495,20,40,10,32,5306970.98173247,397698.671003713,0,0,0,0,0,0,0,20.5818811881188,22100.1588600932,12.2439207920792,6.56618392337729,6.38935973778661,-2.91534653465346,-2.90070632572361,-2.35864165579748,0.931600283393789,0.739098438947281,0.760535930597487,26.6175671294868,0.00158404470065492,4251.72178217822,4352.85560239192,4877.17472072269,4.37318544827264,19797.8675636716,4118.1961791894,0,19797.8675636716,20.5915149495147,20.5915149495147,0.164700628478686,20.5688364985692,24.9,1015,39.2088366336634,40.93241937432 +46391,2874.47447504951,457.855888712871,80.6435643564356,21.3830693069307,22.0245613861386,5.92233663366337,-0.872475247524752,957.950495049505,3194.97722772277,2656.99207920792,20,40,9.89108910891089,32,5306971.76743647,397692.994474921,0,0,0,0,0,0,0,21.3830693069306,22105.9761376234,11.8446732673267,6.35207500165234,6.26562698104546,-0.872475247524752,-0.857835038594893,-0.690344171395199,0.682205237057755,0.541237303958519,0.558757764588176,27.8656503495392,0.0149044205925258,5851.96930693069,5815.76229781394,5508.37355335496,4.20990175260956,27457.4729884059,6804.50135821046,0,27457.4729884059,21.3943431036173,21.3943431036173,0.271928678016317,21.4696298193607,24.9,1015,39.23,39.4158829206631 +46392,2874.47382831683,457.851144653465,200.049504950495,22.3708811881188,23.0420076237624,5.66826732673267,1.45376237623762,1008.93069306931,3417.51089108911,2850.34455445545,20,40,9.98019801980198,32,5306970.67425082,397687.064815462,0,0,0,0,0,0,0,22.3708811881188,22112.0565501647,11.3365346534653,6.07956984143092,6.10596652926682,1.45376237623762,1.46840258516748,1.15651707016764,0.741437923463937,0.588230404795692,0.605693001107027,29.3486041974796,-0.000720020318479508,6267.85544554455,6334.19115772964,6262.35058663927,4.02383816093091,29593.8892172089,6347.40029226544,0,29593.8892172089,22.3627939417704,22.3627939417704,0.253900761363265,22.3409596568069,24.9,1015,39.26,37.6676299279599 +46393,2874.47234059406,457.846501287129,225,23.2103861386139,23.9066977227723,4.41369471947525,1.17544554455446,825.772277227723,3806.64257425743,3160.07722772277,20,40,10,32,5306968.02104058,397681.232929527,0,0,0,0,0,0,0,23.2103861386138,22118.3898604232,8.82738943895049,4.73396256017305,5.08668476902372,1.17544554455446,1.19008575348431,0.869836640931106,1.80646244907612,1.43318287888999,1.21859888326317,24.0207418488586,-0.0493213918158464,6966.7198019802,6900.92239976473,7063.01858377277,3.87814879451179,25971.428559666,6384.84674488243,0,25971.428559666,23.2293405548475,23.2293405548475,0.256122765741919,23.4179564924656,24.9,1015,39.29,27.0792576905543 +46394,2874.47040415842,457.842112574257,225,24.3835742574257,25.1150814851485,5.50335643564356,3.32148514851485,839.628712871287,4219.94059405941,3503.44653465347,20,40,10,32,5306964.53103815,397675.703449312,0,0,0,0,0,0,0,24.3835742574257,22124.9867203242,11.0067128712871,5.90269263677608,6.08082857479073,3.32148514851485,3.3361253574447,2.57201946118637,1.03505746875497,0.821177679970874,1.01766616209043,24.4238092231434,0.0228246440958004,7723.38712871287,7709.28183511421,7416.67477535097,3.69238365847892,27853.1023559078,10826.1051471119,0,27853.1023559078,24.4254217233604,24.4254217233604,0.432747606443812,24.745540540335,24.9,1015,39.32,37.2882983621408 +46395,2874.46810564356,457.83768029703,225,26.3070594059406,27.0962711881188,6.42357425742574,3.48257425742574,923.391089108911,4751.16732673267,3891.87326732673,20,40,10,32,5306960.37130676,397670.107808314,0,0,0,0,0,0,0,26.3070594059406,22132.0181439766,12.8471485148515,6.88968358028174,6.97403475258841,3.48257425742574,3.49721446635559,2.742476775404,0.702838494459925,0.557606994488008,0.567737024034169,26.8603579808781,0.0230406501913443,8643.04059405941,8235.70582295854,7764.28468828706,3.42300827115322,31769.2764965542,14117.7843126672,0,31769.2764965542,26.3077000294089,26.3077000294089,0.564406811968327,26.3117484616449,24.9,1015,39.35,48.786055490697 +46396,2874.46556574258,457.832954158416,225,28.1208217821782,28.9644464356436,7.05326732673267,3.35118811881188,1261.97524752475,3508,2848.3,20,40,10,32,5306955.77094214,397664.138241284,0,0,0,0,0,0,0,28.1208217821782,22139.5980786576,14.1065346534653,7.56506862704227,7.61385287262076,3.35118811881188,3.36582832774173,2.65191839928698,0.686408368945616,0.544571918891965,0.540902037065527,36.7093719132956,0.142492021027095,6356.3,7080.47997255171,8912.29708125604,3.20109407183496,30184.4399306892,12169.4099165833,0,30184.4399306892,28.1396134692677,28.1396134692677,0.484459584572312,28.3649053687704,24.9,1015,39.38,58.1516319338724 +46397,2874.46284207921,457.827894653465,225,30.522297029703,31.4379659405941,7.72599009900989,3.46613861386139,1548.62376237624,6357.44851485148,5255.73168316832,20,40,10.3861386138614,32,5306950.83755755,397657.7474386,0,0,0,0,0,0,0,30.5222970297029,22147.6988172439,15.4519801980198,8.28660571099238,8.32392452610894,3.46613861386139,3.48077882279124,2.74835594177431,0.699473641837476,0.554937440426174,0.566836366915665,45.0476392134794,0.0466573166374722,11613.1801980198,11205.8847858053,9889.3288429581,2.95173557873374,61712.9338558905,22133.1357642876,0,61712.9338558905,30.5651614547593,30.5651614547593,0.884432626430961,30.8494607892973,24.9,1015,39.41,69.5357804516526 +46398,2874.45983475248,457.822279504951,225,33.8807326732673,34.8971546534653,8.90308910891089,3.42970297029703,1716.24257425743,5799.34158415841,5406.5702970297,20,40,11,32,5306945.39101458,397650.655281988,0,0,0,0,0,0,0,33.8807326732673,22156.6554158138,17.8061782178218,9.54911773247414,9.51806503076805,3.42970297029703,3.44434317922688,2.73900397274097,0.807301588599728,0.640484287660423,0.627460537452118,49.9234728061589,0.0532095015356357,11205.9118811881,11218.276923831,10996.03289593,2.65823160346209,59439.9783966315,22106.9814175003,0,59439.9783966315,33.8635214194686,33.8635214194686,0.883264440305406,33.7990066237993,24.9,1015,39.44,90.8938962616075 +46399,2874.45656574257,457.816052772277,225,36.9468118811881,38.0552162376238,9.62146534653466,3.16029702970297,1871.30198019802,5093.6495049505,5170.62079207921,20,40,11,32,5306939.47326694,397642.792819325,0,0,0,0,0,0,0,36.9468118811881,22166.4985735971,19.2429306930693,10.319621002223,10.305378470184,3.16029702970297,3.17493723863282,2.51912083225018,0.78064312194827,0.61933441100405,0.61982784334474,54.4339680892419,0.0471613308604078,10264.2702970297,10022.3157925694,9898.30151148633,2.43729857826815,54448.2652871229,20084.1831239073,0,54448.2652871229,36.9218648171747,36.9218648171747,0.802466261477639,36.8143130667325,24.9,1015,39.47,106.421575555326 +46400,2874.45306267327,457.809291782178,225,39.5065841584158,40.6917816831683,10.0212079207921,2.7960396039604,1733.94059405941,4161.89702970297,4268.44653465347,20,40,11,32,5306933.13377756,397634.25726027,0,0,0,0,0,0,0,39.5065841584158,22177.1359606158,20.0424158415841,10.7483698171086,10.7924901949347,2.7960396039604,2.81067981289025,2.22180394877337,0.80950290562284,0.642230734075707,0.645271191811729,50.4382873338718,-0.139755943816873,8430.34356435643,8635.67094402509,8990.67676028601,2.27877435592729,38365.8175855992,16400.8155847829,0,38365.8175855992,39.4989204979903,39.4989204979903,0.658301473711728,39.4821321268216,24.9012623762376,1015,39.5113613861386,116.68997288189 +46401,2874.4493619802,457.80208,225,41.9390297029703,43.1972005940594,10.3149900990099,3.01237623762376,1498.26237623762,4561.68316831683,4272.42673267327,20,40,11,32,5306926.43819614,397625.153749832,0,0,0,0,0,0,0,41.9390297029702,22188.4455704892,20.6299801980198,11.0634695059005,11.1818432509837,3.01237623762376,3.02701644655362,2.3770236690854,0.98347634256925,0.780255054116657,0.769002572844817,43.582685873501,0.0215286075225373,8834.10990099009,8896.26681697872,8829.14139431347,2.14665203686868,33051.5579866524,17438.3150296191,0,33051.5579866524,41.9371977257131,41.9371977257131,0.697242372752122,41.9452726242264,24.91,1015,39.62,125.21496832083 +46402,2874.44544831683,457.794412277228,225,44.4183762376238,45.7509275247525,11.4084554455446,3.31584158415842,1573.29207920792,4705.12475247525,4153.61188118812,20,40,11,32,5306919.35821198,397615.475367584,0,0,0,0,0,0,0,44.4183762376237,22200.4447553352,22.8169108910891,12.2362792130379,12.2541801748695,3.31584158415842,3.33048179308827,2.63809069986645,1.01067108396933,0.80183039203213,0.806490848418615,45.7652114628761,0.0271447660066775,8858.73663366337,8838.27157141457,8779.91658446696,2.0267280967289,32859.1457192525,16908.4776258418,0,32859.1457192525,44.41822331144,44.41822331144,0.675976756091459,44.401624701264,24.92,1015,39.74,150.570592828996 +46403,2874.44127049505,457.786367227723,225,46.7962871287129,48.2001757425742,12.185396039604,3.3209900990099,1660.10891089109,4530.49405940594,3867.80891089109,20,40,11,32,5306911.79727189,397605.318335878,0,0,0,0,0,0,0,46.7962871287128,22213.1201597082,24.3707920792079,13.0695964036281,13.0514906358399,3.3209900990099,3.33563030793975,2.64729480461445,0.979703312234619,0.7772616664158,0.786036450104116,48.2906107279111,0.0261367375608062,8398.30297029703,8409.63122242917,8418.4056960156,1.92363704969167,31200.2341684665,16036.6187668798,0,31200.2341684665,46.7888589353984,46.7888589353984,0.641114977834414,46.7712185277334,24.93,1015,39.86,170.63915837326 +46404,2874.43686455445,457.777934653465,225,49.003801980198,50.473916039604,12.3095148514852,2.73722772277228,1736.44554455446,4377.90693069307,3668.38910891089,20,40,11,32,5306903.82236166,397594.67113425,0,0,0,0,0,0,0,49.0038019801979,22226.4339411713,24.6190297029703,13.2027215619826,13.2842040767283,2.73722772277228,2.75186793170213,2.16919361698673,1.08137015336536,0.857920512180305,0.841477819729204,50.5111533901019,0.0164164632613328,8046.29603960396,8050.42107636506,8060.17465494404,1.83688310533324,29857.2418169388,14776.2194377978,0,29857.2418169388,49.0028671698852,49.0028671698852,0.590829875066704,48.9925073578383,24.94,1015,39.98,176.820374912649 +46405,2874.43221970297,457.76916950495,225,51.0980594059406,52.6310011881188,12.9997623762376,1.87237623762376,1812.18811881188,4229.5,3541.69306930693,20,40,11,32,5306895.41227829,397583.601841606,0,0,0,0,0,0,0,51.0980594059405,22240.3424389986,25.9995247524752,13.9430550347559,13.992056558129,1.87237623762376,1.88701644655362,1.48652420791407,0.972433374561383,0.771493957151094,0.790472564876768,52.7144155646492,0.0202325709492742,7771.19306930693,7769.67742378198,7763.02211718461,1.76154840406251,28862.0224305204,14080.6498788512,0,28862.0224305204,51.0902216449367,51.0902216449367,0.562955429206292,51.0745533104711,24.95,1015,40.1,196.084262485872 +46406,2874.42735504951,457.760086831683,225,53.0303762376238,54.6212875247525,13.735495049505,1.52128712871287,1876.98514851485,4039.26930693069,3400.5099009901,20,40,11,32,5306886.60208769,397572.129825541,0,0,0,0,0,0,0,53.0303762376237,22254.8109742021,27.4709900990099,14.7321741630398,14.7290514882023,1.52128712871287,1.53592733764273,1.21863632131777,0.968383652779943,0.768281052324649,0.780378810049334,54.5992847543648,0.017640497802748,7439.77920792079,7436.63614351534,7438.57776022444,1.69731433609765,27575.0153961814,13021.7932421113,0,27575.0153961814,53.0263284972061,53.0263284972061,0.520636593362308,53.0224525537191,24.96,1015,40.22,217.334776022494 +46407,2874.42229376238,457.75069980198,225,54.8854455445545,56.5320089108911,13.8427425742574,2.92673267326733,1941.5396039604,3766.03465346535,3273.24356435644,20,40,11,32,5306877.43441678,397560.272244451,0,0,0,0,0,0,0,54.8854455445544,22269.8027641911,27.6854851485149,14.8472038148663,14.9258801571433,2.92673267326733,2.94137288219718,2.32375397415553,1.10336674800418,0.875371825849385,0.86222398714007,56.4770977449594,0.0162004571657889,7039.27821782178,6925.04353494755,6925.05054350774,1.63992919271444,26078.2772581243,12152.8376105427,0,26078.2772581243,54.8685016174884,54.8685016174884,0.485897352111451,54.846216474773,24.97,1015,40.34,223.065252993164 +46408,2874.41707425742,457.741000792079,225,56.4939405940594,58.1887588118812,14.4257227722772,3.02277227722772,1663.81188118812,3382.09108910891,3078.66732673267,20,40,11,32,5306867.98059599,397548.02086301,0,0,0,0,0,0,0,56.4939405940593,22285.278638421,28.8514455445545,15.4724863969557,15.5141372944408,3.02277227722772,3.03741248615758,2.40256286424944,1.07515395737478,0.852988803984499,0.861157058316102,48.3983257675556,-0.133275760950557,6460.75841584158,6590.76044505441,6574.48116217795,1.59320206067755,19742.1171297017,11213.8637133162,0,19742.1171297017,56.5028254092735,56.5028254092735,0.450094761951445,56.5124504559078,24.98,1015,40.46,240.948852969622 +46409,2874.4117170297,457.731004356436,225,58.1285049504951,59.8723600990099,14.685900990099,1.34267326732673,1474.36138613861,3401.82376237624,3131.60594059406,20,40,11,32,5306858.2782698,397535.394478703,0,0,0,0,0,0,0,58.1285049504949,22301.203938366,29.371801980198,15.7515437446935,15.8300503750948,1.34267326732673,1.35731347625659,1.07038506057052,1.09197306318561,0.866332482674665,0.854871680627081,42.8874342539772,0.00216006095543853,6533.42970297029,6531.77737476718,6568.77711165803,1.54837875780196,17354.2540004288,11061.668885473,0,17354.2540004288,58.1295538672678,58.1295538672678,0.442447091243778,58.1252773317305,24.99,1015,40.58,250.99845555346 +46410,2874.40622673267,457.720710792079,225,59.730405940594,61.5223181188119,16.0517722772277,0.187029702970297,1518.40099009901,3365.89405940594,3139.87722772277,20,40,11,32,5306848.33605389,397522.393611062,0,0,0,0,0,0,0,59.730405940594,22317.5734906213,32.1035445544555,17.21652579403,17.0842995697253,0.187029702970297,0.201669911900155,0.162364043619699,1.28066618054896,1.01603487217512,0.951429493641193,44.1684944046159,0.0181445120256836,6505.77128712871,6511.65157337516,6506.85101457215,1.50686064162282,17317.6585151058,11141.5696205412,0,17317.6585151058,59.7297521811586,59.7297521811586,0.445488732041514,59.7246879654295,24.9987376237624,1015,40.6734900990099,292.530137965956 +46411,2874.40061613861,457.710102178218,225,61.2876336633663,63.1262626732673,15.9842673267327,0.581782178217822,1561.78712871287,3270.00594059406,3150.78415841584,20,40,11,32,5306838.17800597,397508.996357151,0,0,0,0,0,0,0,61.2876336633663,22334.3859946367,31.9685346534653,17.1441225290602,17.1159244722405,0.581782178217822,0.59642238714768,0.471890196702547,1.04594705953247,0.829817092912124,0.894755562018276,45.4305460188468,0.00972027429947337,6420.7900990099,6423.02843838839,6420.03419023044,1.46855904972643,17134.0720281595,10699.9824031165,0,17134.0720281595,61.2892320360748,61.2892320360748,0.427906033177566,61.2921728721534,25,1015,40.61,293.259599176859 +46412,2874.39488257426,457.699198316832,225,62.8304752475248,64.7153895049505,16.0196237623762,0.514950495049505,1599.05940594059,3262.43762376238,3029.49405940594,20,40,11,32,5306827.79873872,397495.227288028,0,0,0,0,0,0,0,62.8304752475247,22351.6284610008,32.0392475247525,17.1820445089967,17.2344811104186,0.514950495049505,0.529590703979362,0.423731330996242,1.25017321290362,0.991842839189211,0.997944254451577,46.5147526144133,0.0082082316306664,6291.93168316832,6287.76684638761,6289.52180952178,1.43248905265388,16768.8132900248,10512.2410623075,0,16768.8132900248,62.8311274384864,62.8311274384864,0.420410852966493,62.8262523443698,25,1015,40.52,297.500106722164 +46413,2874.3890239604,457.688017425743,225,64.3037128712871,66.2328242574258,16.4382772277228,0.233069306930693,1639.33663366337,3192.44455445544,2950.77128712871,20,40,11,32,5306817.19400013,397481.109021363,0,0,0,0,0,0,0,64.303712871287,22369.2896501097,32.8765544554455,17.6310764327254,17.6749347168136,0.233069306930693,0.24770951586055,0.196321488072873,1.30918844886541,1.03866342259927,1.02674187300704,47.6863696766431,0.0228966461276484,6143.21584158416,6148.22522301735,6147.67957776922,1.39966180395125,16400.228760167,10095.6485321314,0,16400.228760167,64.3066022938927,64.3066022938927,0.403605583330606,64.3060955212647,25,1015,40.43,313.080432122033 +46414,2874.38304356436,457.676566039604,225,65.7486336633663,67.7210926732674,17.7024752475247,1.15524752475248,1674.0396039604,3146.99405940594,2871.89504950495,20,40,11,32,5306806.36970031,397466.649799835,0,0,0,0,0,0,0,65.7486336633662,22387.3563166114,35.4049504950495,18.9870075686013,18.8337660289387,1.15524752475248,1.16988773368233,0.933390502834489,1.3743323841221,1.09034629744737,1.08986734452931,48.6958381631514,0.0154084348154615,6018.88910891089,6010.74917164984,6010.62806104941,1.36889401730738,16048.5787251214,9677.29732070978,0,16048.5787251214,65.739513381041,65.739513381041,0.386943273535279,65.7372080631907,25,1015,40.34,355.094388155385 +46415,2874.37693148515,457.664872772277,225,67.140702970297,69.1549240594059,17.8841683168317,-0.235643564356436,1708.55940594059,3074.59108910891,2803.9297029703,20,40,11,32,5306795.30686819,397451.884931622,0,0,0,0,0,0,0,67.140702970297,22405.8131542626,35.7683366336634,19.1818847049258,19.0682831923514,-0.235643564356436,-0.221003355426579,-0.179858877580595,1.2768973689222,1.01304483144662,1.01757122896536,49.6999784993029,0.00561615848414017,5878.52079207921,5879.24514263308,5880.4003010276,1.34051520880261,15665.7677230325,9539.79761246565,0,15665.7677230325,67.1268387412998,67.1268387412998,0.381538030040628,67.1237709923874,25,1015,40.25,363.905437019796 +46416,2874.37068069307,457.652951683168,225,68.5045940594059,70.5597318811881,18.0982673267327,0.887722772277227,1741.43069306931,3021.63564356436,2758.73465346535,20,40,11,32,5306783.99217336,397436.831692288,0,0,0,0,0,0,0,68.5045940594059,22424.6514330855,36.1965346534653,19.4115192314302,19.3285646411486,0.887722772277227,0.902362981207086,0.718256430614506,1.22111272542386,0.968787284876698,0.939631565372178,50.6561654822437,0.00633617880261967,5780.3702970297,5780.80633271248,5780.66390825684,1.31383493723508,15387.8023918471,9448.9160381333,0,15387.8023918471,68.4908694245662,68.4908694245662,0.377895957912623,68.4882272286008,25,1015,40.16,373.907968479676 +46417,2874.36432178218,457.640777821782,225,69.7898712871287,71.8835674257426,16.8639625962376,0.327722772277228,1780.58910891089,2954.89108910891,2731.07326732673,20,40,11,32,5306772.48284138,397421.460010538,0,0,0,0,0,0,0,69.7898712871286,22443.8621060778,33.7279251924752,18.0876505106903,18.3519059848272,0.327722772277228,0.342362981207085,0.279900650595868,2.01913293282631,1.60190805571938,1.71241463957437,51.7952376260783,0.00561615848414017,5685.96435643564,5686.19940201941,5686.74849182592,1.28963325531264,15191.8785469822,9018.77507709421,0,15191.8785469822,69.8047959023624,69.8047959023624,0.360697208334683,69.8046236856243,25,1015,40.07,338.536339654955 +46418,2874.3578519802,457.628366237624,225,71.082801980198,73.2152860396039,16.1501771176238,0.0822772277227724,1806.58415841584,2911.20792079208,2681.89207920792,20,40,11,32,5306760.7734062,397405.788535424,0,0,0,0,0,0,0,71.0828019801979,22463.4332959018,32.3003542352475,17.3220711159842,17.8188470775296,0.0822772277227724,0.09691743665263,0.0785087327969438,2.65785296620844,2.10864574999888,2.15201842625914,52.5514029645454,0.000288008127391803,5593.1,5592.31539064797,5591.39483492657,1.26616441086196,14885.8015348203,8857.98242359612,0,14885.8015348203,71.0868005097538,71.0868005097538,0.354315753357516,71.0892515268048,25,1015,39.98,318.385498364162 +46419,2874.35126762376,457.615729405941,225,72.3296138613861,74.4995022772277,16.0069779981188,-0.491683168316832,1839.51485148515,2843.62475247525,2627.04257425743,20,40,11,32,5306748.85680805,397389.832680486,0,0,0,0,0,0,0,72.329613861386,22483.3583615508,32.0139559962376,17.1684811389985,17.7685047893001,-0.491683168316832,-0.477042959386974,-0.372748308976539,3.12237781485275,2.47718319744843,2.39844752670024,53.5093179962505,0.0227526420639525,5470.66732673267,5470.09659837271,5470.58458865008,1.24432701257769,14569.8160193703,8532.87384746712,0,14569.8160193703,72.342157533575,72.342157533575,0.34109673343571,72.342875203091,25,1015,39.89,316.508973186539 +46420,2874.34458445544,457.602862871287,225,73.5394356435644,75.7456187128713,17.1796578658416,-1.33178217821782,1874.39108910891,2752.82475247525,2587.48217821782,20,40,11,32,5306736.76230866,397373.587411789,0,0,0,0,0,0,0,73.5394356435643,22503.6230541801,34.3593157316831,18.4262533551812,18.8353922142832,-1.33178217821782,-1.31714196928796,-1.03228305291708,2.63965724083753,2.09420991044742,2.02934164862912,54.5238266249882,0.00856824178990616,5340.30693069307,5311.11722380159,5314.02565602458,1.22385109562191,14253.8894912586,8051.28455283893,0,14253.8894912586,73.5414624056464,73.5414624056464,0.321968706771681,73.5406611423891,25,1015,39.8416584158416,356.651316504806 +46421,2874.33780554455,457.589773069307,225,74.7272079207921,76.9690241584159,17.6897150715842,-1.36366336633663,1738.65841584158,2722.28910891089,2494.38118811881,20,40,11,32,5306724.49545327,397357.060842653,0,0,0,0,0,0,0,74.7272079207919,22524.2159658963,35.3794301431683,18.9733214849451,19.337263887824,-1.36366336633663,-1.34902315740677,-1.04754333209543,2.19097095298646,1.73823821224261,1.63803115220312,50.575523206574,-0.0609857209752144,5216.6702970297,5240.89014802471,5233.28385565829,1.20439878470968,12689.8942232646,7973.98946377348,0,12689.8942232646,74.7106168022742,74.7106168022742,0.319505712947523,74.7080773259143,25,1015,40.04,374.641450259116 +46422,2874.33091118812,457.57648980198,225,75.8608217821782,78.1366464356436,19.1561683168317,-1.6370297029703,1647.39603960396,2690.06831683168,2404.9603960396,20,40,11,32,5306712.01908699,397340.289438438,0,0,0,0,0,0,0,75.8608217821781,22545.1285586081,38.3123366336634,20.5461839506281,20.6500378894072,-1.6370297029703,-1.62238949404044,-1.2852053223113,1.49139952417305,1.18322319111734,1.30971701699349,47.92080829234,0.00525614832490041,5095.02871287129,5103.33195765121,5108.24541036698,1.18640686695178,11586.8422591874,7698.67549367075,0,11586.8422591874,75.8446852269385,75.8446852269385,0.30790418150725,75.8417478507032,25,1015,40.28,426.880829376384 +46423,2874.32388673267,457.562982871287,225,76.9086237623762,79.2158824752475,21.5634614961386,-1.89910891089109,1671.73267326733,2675.27227722772,2334.58316831683,20,40,11,32,5306699.30673804,397323.235101176,0,0,0,0,0,0,0,76.9086237623762,22566.348357673,43.1269229922772,23.1281558599934,22.7582122706337,-1.89910891089109,-1.88446870196124,-1.50300845517602,2.9201387121991,2.31673390634165,2.34071241228256,48.6287322694691,-0.00374410565609344,5009.85544554456,5013.94737770807,5014.58720487434,1.1702418581548,11404.1344178964,7392.56721870207,0,11404.1344178964,76.9117782570335,76.9117782570335,0.295733533749421,76.9119769823135,25,1015,40.52,521.121987130127 +46424,2874.31672930693,457.549395049505,225,77.9471485148515,80.2855629702971,18.8838492848515,-1.63712871287129,1692.4603960396,2657.9099009901,2288.2099009901,20,40,11,32,5306686.34992486,397306.075554729,0,0,0,0,0,0,0,77.9471485148513,22587.8609586356,37.767698569703,20.2541048233318,20.5382586631873,-1.63712871287129,-1.62248850394143,-1.25471642496823,2.70103311480836,2.14290333986075,2.16676488638089,49.2316772841638,0.00540015238859631,4946.1198019802,4943.65430840114,4943.65994804831,1.15464438906382,11246.6754044766,7006.0024712805,0,11246.6754044766,77.9468792275266,77.9468792275266,0.28019584136633,77.947133575431,25,1015,40.76,425.621069358098 +46425,2874.30945574257,457.535685445545,225,78.9674950495049,81.3365199009901,20.5758811881188,-0.864554455445544,1715.5,2611.90891089109,2280.31782178218,20,40,11,32,5306673.18073335,397288.760421379,0,0,0,0,0,0,0,78.9674950495049,22609.6546369634,41.1517623762376,22.0689144533096,22.0371106598599,-0.864554455445544,-0.849914246515686,-0.680458527643905,1.99155012341953,1.58002483848799,1.49202780600448,49.9018721966045,0.0038161076879414,4892.22673267327,4888.28721693951,4888.1425645812,1.13972700497808,11129.5968521762,6938.96446487769,0,11129.5968521762,78.9615772963434,78.9615772963434,0.277527257676247,78.9606516154346,25,1015,41,487.636809757958 +46426,2874.30206722772,457.521800495049,225,79.9716435643565,82.3707928712872,19.447104510297,-1.59029702970297,1739.25247524752,2561.6297029703,2270.35148514852,20,40,11,32,5306659.80255352,397271.223022879,0,0,0,0,0,0,0,79.9716435643564,22631.7285915013,38.8942090205941,20.8582311434679,21.1333985582521,-1.59029702970297,-1.57565682077311,-1.23402214924416,2.26496954753226,1.79694605796572,1.8991402666019,50.5928036942175,0.0114483230638242,4831.98118811881,4832.644417214,4832.58661175852,1.12541917577218,11004.6155026164,7034.33620436129,0,11004.6155026164,79.9649920596019,79.9649920596019,0.281279613109836,79.964158766319,25,1015,41.24,448.259627836572 +46427,2874.29455356436,457.50777,225,80.9546039603961,83.3832420792079,17.9934609460396,-1.15148514851485,1759.63861386139,2516.34257425743,2261.6396039604,20,40,11,32,5306646.19583606,397253.500137886,0,0,0,0,0,0,0,80.954603960396,22654.0805139986,35.9869218920792,19.2991078586909,19.9532840853761,-1.15148514851485,-1.13684493958499,-0.874918497766434,3.39358548945721,2.69234969374924,2.56466609576817,51.1858124285172,0.00259207314652623,4777.98217821782,4782.11559651014,4782.12852951222,1.11175385403107,10875.6998145429,6902.11878053523,0,10875.6998145429,80.9602466424859,80.9602466424859,0.276063621213604,80.9608269616647,25,1015,41.48,398.474731981243 +46428,2874.28692227723,457.493589207921,225,81.9494455445545,84.4079289108911,19.8773910890099,-2.6070297029703,1782.87623762376,2465.04455445545,2200.99702970297,20,40,11,32,5306632.37462654,397235.58609205,0,0,0,0,0,0,0,81.9494455445544,22676.7087194716,39.7547821780198,21.3197403060259,21.612891334651,-2.6070297029703,-2.59238949404044,-2.02656454530041,2.13844424687304,1.69656539699824,1.81338518028307,51.8617675035058,0.0129603657326312,4666.04158415842,4626.50717576708,4620.7482695976,1.09825575392099,10631.2633525836,6553.82843177576,0,10631.2633525836,81.9384982844818,81.9384982844818,0.262046749229374,81.9379051684984,25,1015,41.72,468.487719124681 +46429,2874.27918178218,457.479262772277,225,82.8016138613861,85.2856622772277,19.0444235421782,-2.37891089108911,1799.22772277228,2053.00594059406,1842.68514851485,20,40,11,32,5306618.3544125,397217.486955692,0,0,0,0,0,0,0,82.801613861386,22699.5983966168,38.0888470843564,20.4263307181038,20.9530041315395,-2.37891089108911,-2.36427068215925,-1.8351624097957,2.94077895025595,2.33310913507359,2.16269927999402,52.3374129258933,0.00547215442044427,3895.69108910891,3903.37272816391,3904.24343718776,1.0869448888462,8865.2857306334,5042.63368173994,0,8865.2857306334,82.7917147338495,82.7917147338495,0.201660512585912,82.7894826959759,25,1015,41.96,440.066457592863 +46430,2874.2713709901,457.464817920793,225,83.3586930693069,85.8594538613861,21.0693129812871,-2.14554455445545,1807.4900990099,1530.93069306931,1622.96930693069,20,40,11,32,5306604.20666781,397199.237922463,0,0,0,0,0,0,0,83.3586930693068,22722.6845770899,42.1386259625743,22.598150792323,22.7081688361286,-2.14554455445545,-2.13090434552559,-1.68103677557701,1.70565074485287,1.35320246824908,1.56406148883556,52.5777557082018,0.000288008127391799,3153.9,3169.0293304578,3172.12204559906,1.07967480114884,7161.73739012024,3080.47065860669,0,7161.73739012024,83.3556790510733,83.3556790510733,0.123216405799005,83.3551387046961,25.0012623762376,1015,42.1646534653465,516.503724082919 +46431,2874.2635950495,457.450197821782,225,83.7700891089109,86.2831917821783,19.5410484043564,-1.71247524752475,1817.24257425743,1222.80495049505,1551.04554455446,20,40,11,32,5306590.12742688,397180.771676291,0,0,0,0,0,0,0,83.7700891089108,22745.8991156213,39.0820968087129,20.9589918225588,21.431512975479,-1.71247524752475,-1.6978350385949,-1.31065369731934,2.76292726817805,2.19200795366448,1.9879533093317,52.8614437136827,0.00417611784718115,2773.8504950495,2780.70125477894,2781.44071188993,1.07437158279532,6301.27270053926,2767.94373826354,0,6301.27270053926,83.7722232134104,83.7722232134104,0.110683593111782,83.7720228861177,25.01,1015,42.16,460.543569005549 +46432,2874.25588,457.435395940594,225,84.1184455445544,86.6419989108911,20.6236435643564,-1.06306930693069,1825.06930693069,1168.76138613861,1371.15643564356,20,40,11,32,5306576.16507116,397162.080936847,0,0,0,0,0,0,0,84.1184455445543,22769.2207291526,41.2472871287129,22.1201425774243,22.372541339644,-1.06306930693069,-1.04842909800083,-0.820319021407592,2.1276266581475,1.68798310791704,1.79369435172247,53.0891141383859,-0.00417611784718115,2539.91782178218,2539.78701107734,2539.77769963912,1.06992113530684,5771.00295216707,2056.17403176858,0,5771.00295216707,84.1254759337318,84.1254759337318,0.082280876602503,84.1249095030997,25.02,1015,42.12,501.764792031172 +46433,2874.24816435644,457.420513168317,225,84.4057722772277,86.9379454455446,19.8810214518812,-1.50722772277228,1827.17326732673,1150.79306930693,1172.70495049505,20,40,11,32,5306562.20347073,397143.289335343,0,0,0,0,0,0,0,84.4057722772276,22792.6277996697,39.7620429037624,21.3236340963773,21.7567973012902,-1.50722772277228,-1.49258751384242,-1.16133693192335,2.72607737259928,2.16277256077857,2.08728519176116,53.1503158654567,-0.00151204266880697,2323.49801980198,2324.27190471522,2324.43863765549,1.06627966432188,5267.19443169265,1465.8870767498,0,5267.19443169265,84.3857576708164,84.3857576708164,0.0586475726780645,84.3853584264166,25.03,1015,42.08,475.008667472497 +46434,2874.24043386139,457.40558960396,225,84.5594356435643,87.0962187128713,22.0328910891089,-0.91,1831.62871287129,1041.32871287129,1100.27623762376,20,40,11,32,5306548.21532634,397124.446344518,0,0,0,0,0,0,0,84.5594356435643,22816.095762981,44.0657821782178,23.6316483439554,23.5966701239933,-0.91,-0.895359791070141,-0.705231676076725,2.01736926703333,1.60050882618108,1.60816547731661,53.279919522783,-0.00129603657326311,2141.60495049505,2145.7682874228,2146.11428315862,1.06434236857307,4857.87985239891,1117.51913499796,0,4857.87985239891,84.5587202235074,84.5587202235074,0.0447110305089931,84.5595072276786,25.04,1015,42.04,558.667105086764 +46435,2874.23268940594,457.390643168317,225,84.6869108910891,87.2275182178217,21.1993349833663,-2.90435643564356,1833.02475247525,995.073267326732,1005.62871287129,20,40,11,32,5306534.20189101,397105.574314046,0,0,0,0,0,0,0,84.686910891089,22839.6051827005,42.3986699667327,22.7376074899341,22.8943927536628,-2.90435643564356,-2.88971622671371,-2.27849758438017,2.46784798333472,1.95790257319071,1.99318063978472,53.3205286687452,-0.00446412597457295,2000.70198019802,2004.84590726399,2004.92160336995,1.06273933356444,4534.80128464789,764.916592242035,0,4534.80128464789,84.6892057641407,84.6892057641407,0.0306328900216893,84.6894317096061,25.05,1015,42,527.053612132697 +46436,2874.22494831683,457.375661089109,225,84.784,87.32752,23.666900990099,-2.0539603960396,1835.15841584158,976.705940594059,937.274257425743,20,40,11,32,5306520.1955439,397086.657907671,0,0,0,0,0,0,0,84.7839999999999,22863.1453149062,47.333801980198,25.3842257617155,25.0000510279053,-2.0539603960396,-2.03932018710975,-1.6345851317928,2.52604074902822,2.00407063802362,1.93033921012057,53.3825944201982,0.00432012191087705,1913.9801980198,1913.25249485345,1913.13253182461,1.06152133396471,4338.35243819415,451.814957747788,0,4338.35243819415,84.7869975492598,84.7869975492598,0.0180374473090629,84.7868044318717,25.06,1015,41.96,626.185739438096 +46437,2874.21716990099,457.360701881188,225,84.8619702970298,87.4078294059405,20.9167216720792,-1.8119801980198,1837.98514851485,906.889108910891,918.722772277228,20,40,11,32,5306506.11960749,397067.768662704,0,0,0,0,0,0,0,84.8619702970296,22886.706207838,41.8334433441584,22.4344871067466,22.6646517086267,-1.8119801980198,-1.79733998908995,-1.41147706328669,1.79254932348596,1.42214470126396,1.68368651056071,53.4648207405685,0.00367210362424549,1825.61188118812,1826.2115380845,1826.44142385667,1.06054587222394,4140.54801150214,499.639888704448,0,4140.54801150214,84.8543451622388,84.8543451622388,0.0199558322168794,84.8542537482318,25.07,1015,41.92,514.180209112913 +46438,2874.20936366337,457.345758316832,225,84.8991683168317,87.4461433663366,19.3951166112871,-1.93148514851485,1837.87128712871,892.509900990099,879.00594059406,20,40,11,32,5306491.99184866,397048.897890462,0,0,0,0,0,0,0,84.8991683168316,22910.2858162813,38.7902332225743,20.8024708829295,21.3717052141272,-1.93148514851485,-1.91684493958499,-1.48892592012459,3.10776438009786,2.4655894195079,2.21730786337582,53.4615086471035,-0.00280807924207009,1771.51584158416,1773.23703558475,1773.02222536539,1.06008156785188,4015.73617314166,239.256139306542,0,4015.73617314166,84.9065442603665,84.9065442603665,0.00959328606128664,84.9063199434228,25.08,1015,41.88,457.472986688066 +46439,2874.20150881188,457.330783960396,225,84.9393762376238,87.4875575247524,21.0276397136634,-1.21376237623762,1839.32178217822,893.50297029703,848.259405940595,20,40,11,32,5306477.77478531,397029.987065626,0,0,0,0,0,0,0,84.9393762376237,22933.8733667213,42.0552794273267,22.5534536165485,22.7634613143293,-1.21376237623762,-1.19912216730777,-0.929675381315491,2.47053577624204,1.96003497222216,1.9731378497767,53.5037018377664,0.000360010159239752,1741.76237623762,1742.24607391432,1742.41926449788,1.05957951943082,3949.79841999291,109.677012276251,0,3949.79841999291,84.9315141652778,84.9315141652778,0.00438410177653255,84.9313662423384,25.09,1015,41.84,520.996999638255 +46440,2874.19364049505,457.315918811881,225,84.9690891089109,87.5181617821783,22.4597733772277,-2.24188118811881,1839.00495049505,891.096039603961,851.59900990099,20,40,11,32,5306463.53041232,397011.211725711,0,0,0,0,0,0,0,84.9690891089108,22957.4691177939,44.9195467544555,24.0895061927637,23.9834884160762,-2.24188118811881,-2.22724097918896,-1.76032178077586,3.02089083343176,2.39666704596287,2.30503579042312,53.4944855776899,-0.00309608736946189,1742.69504950495,1743.38984413293,1743.31049504951,1.0592089714789,3949.74740283985,48.2116031266479,0,3949.74740283985,84.9566738555043,84.9566738555043,0.00195378448736875,84.9560339462517,25.0987376237623,1015,41.7861138613861,580.344845137539 +46441,2874.18576485149,457.301062178218,225,84.9707425742575,87.5198648514852,20.8163679868317,-1.3590099009901,1838.28712871287,864.522772277227,868.907920792079,20,40,11,32,5306449.27233842,396992.446656286,0,0,0,0,0,0,0,84.9707425742573,22981.0690715893,41.6327359736634,22.326851527276,22.5852091150693,-1.3590099009901,-1.34436969206024,-1.04769028028992,2.06274396946151,1.63650749678066,1.94452624602949,53.473604988454,0.00590416661153197,1733.43069306931,1735.4844427017,1735.50486562942,1.05918969201099,3927.36733574629,218.163096642833,0,3927.36733574629,84.9640697970786,84.9640697970786,0.00867834308182308,84.9639146628947,25.1,1015,41.65,511.23490587917 +46442,2874.17785772277,457.286224257426,225,84.9617425742575,87.5105948514852,19.6582161710891,-2.37841584158416,1839.44059405941,840.134653465347,880.750495049505,20,40,11,32,5306434.95558694,396973.703760421,0,0,0,0,0,0,0,84.9617425742573,23004.6722652912,39.3164323421782,21.0846615519409,21.5990661316925,-2.37841584158416,-2.3637756326543,-1.82805220969405,3.0421483803983,2.4135320255672,2.29294603215784,53.5071579352952,0.00345609752870164,1720.88514851485,1722.71288109009,1722.82814710042,1.05930177341758,3901.48545926862,-54.8796546099006,0,3901.48545926862,84.965062248799,84.965062248799,-0.00222336590096191,84.9653088165959,25.1,1015,41.5,468.099913687723 +46443,2874.16994980198,457.271381089109,225,84.9439108910891,87.4922282178219,21.6509807478218,-2.49920792079208,1838.88118811881,822.614851485148,920.661386138614,20,40,11,32,5306420.63754484,396954.954209155,0,0,0,0,0,0,0,84.943910891089,23028.2728987345,43.3019614956435,23.22202570988,23.29385319727,-2.49920792079208,-2.48456771186222,-1.95863702104508,3.21481916784751,2.55052286995658,2.43395662143731,53.4908854760975,-0.0113043190001283,1743.27623762376,1743.58033526125,1743.68943894389,1.05952324644575,3951.88607635221,-85.6623900032658,0,3951.88607635221,84.9502385060287,84.9502385060287,-0.00333436809025189,84.9506670438472,25.1,1015,41.35,548.480294281817 +46444,2874.16206564356,457.256509306931,225,84.9452673267326,87.4936253465346,25.0625544554455,-2.25009900990099,1846.03465346535,815.790099009901,953.404950495049,20,40,11,32,5306406.3642154,396936.169710743,0,0,0,0,0,0,0,84.9452673267326,23051.868968839,50.1251089108911,26.8811510526227,26.1965957860397,-2.25009900990099,-2.23545880097114,-1.81336694684938,3.63581300698777,2.88452436701652,2.74889467547621,53.698971348138,0.00561615848414017,1769.19504950495,1769.53825115185,1769.44854314003,1.05950590014992,4026.9504154679,102.171820206547,0,4026.9504154679,84.9573793745711,84.9573793745711,0.00404099815923127,84.9574626119754,25.1,1015,41.2,687.243065358536 +46445,2874.15420643564,457.241602376238,225,84.9935742574257,87.5433814851486,22.3150297029703,-2.33445544554455,1840.22277227723,818.375247524753,946.583168316832,20,40,11,32,5306392.13794519,396917.342165354,0,0,0,0,0,0,0,84.9935742574257,23075.4710404287,44.6300594059406,23.9342595845801,23.8614199588509,-2.33445544554455,-2.3198152366147,-1.8495728965848,1.9299897461534,1.53118503074057,1.78998872472175,53.5299105773591,0.00360010159239755,1764.95841584158,1763.23918243309,1763.20946723244,1.05890379066596,4001.84659725093,397.89025053631,0,4001.84659725093,84.9926798353102,84.9926798353102,0.0158862420895425,84.9929024988213,25.1,1015,41.05,570.737160563516 +46446,2874.14637,457.226655742574,225,85.0552475247525,87.6069049504951,23.7588613861386,-2.09188118811881,1843.5099009901,846.073267326733,900.683168316831,20,40,11,32,5306377.95480116,396898.465828116,0,0,0,0,0,0,0,85.0552475247524,23099.0892499997,47.5177227722772,25.482859015608,25.0936928515741,-2.09188118811881,-2.07724097918896,-1.66839714681231,2.57376275655768,2.04193157677297,1.98777739719218,53.6255292756532,-0.0107283027453447,1746.75643564357,1741.075433781,1740.67919849128,1.05813606209822,3964.57739495499,515.97456466909,0,3964.57739495499,85.0573017351239,85.0573017351239,0.0207264538334816,85.0575297501177,25.1,1015,40.9,631.310100256778 +46447,2874.13853980198,457.21167970297,225,85.1369801980198,87.6910896039604,23.5235544554456,-1.95247524752475,1842.11881188119,820.795049504951,828.055445544554,20,40,11,32,5306363.7839267,396879.552977314,0,0,0,0,0,0,0,85.1369801980197,23122.7290164188,47.0471089108911,25.230477672799,24.8987146611318,-1.95247524752475,-1.9378350385949,-1.5509083789326,2.39604003670543,1.90093270939421,1.9838881168168,53.5850641337546,0.00604817067522787,1648.8504950495,1650.92891873346,1651.14025459689,1.05712011467149,3735.9069111035,328.815048156479,0,3735.9069111035,85.134697480639,85.134697480639,0.0131032905270858,85.1342611975482,25.1,1015,40.75,621.815530786084 +46448,2874.13068554456,457.196723366337,225,85.163405940594,87.7183081188119,24.0433069306931,-3.06524752475248,1843.13366336634,772.606930693069,798.231683168317,20,40,11,32,5306349.56810815,396860.663778221,0,0,0,0,0,0,0,85.1634059405939,23146.3802764023,48.0866138613861,25.7879445831229,25.341446358979,-3.06524752475248,-3.05060731582262,-2.45482181544266,2.8501292076857,2.26119086237774,2.1721307011188,53.6145849668123,0.000360010159239754,1570.83861386139,1565.38745221057,1565.36923149458,1.05679210010688,3560.0888254813,188.608490478903,0,3560.0888254813,85.1596019998038,85.1596019998038,0.00754147196898221,85.1596392267797,25.1,1015,40.6,643.66582962558 +46449,2874.12283445545,457.181751287129,225,85.182297029703,87.7377659405941,22.3221501650495,-2.36138613861386,1842.92079207921,702.59801980198,782.011881188119,20,40,11,32,5306335.35856979,396841.754982276,0,0,0,0,0,0,0,85.1822970297029,23170.0401708468,44.644300330099,23.9418967237654,23.8787831212438,-2.36138613861386,-2.34674592968401,-1.86305785105082,2.61038321412142,2.07098494172076,2.01779108944537,53.6083927920733,-0.00309608736946189,1484.6099009901,1485.06529751985,1484.9898349835,1.05655765007817,3363.7485463174,141.918689752789,0,3363.7485463174,85.1854738751102,85.1854738751102,0.00570205535406742,85.1854455445543,25.1,1015,40.45,573.776856079926 +46450,2874.11499217822,457.166761980198,225,85.2056237623762,87.7617924752476,22.0153426841584,-2.93742574257426,1844.83168316832,660.300477076238,723.061719938614,20,40,11,32,5306321.16579872,396822.824926462,0.673267326732673,0.673267326732673,1786284.8622028,133581.680742925,1.31553299912913,0,0,85.2056237623762,23193.7054155387,44.0306853683168,23.612826586379,23.6184652787726,-2.93742574257426,-2.9227855336444,-2.31325064548101,2.27034403790129,1.80120998694116,1.8755854775138,53.66397836066,0.0039601117516373,1383.36219701485,1387.55811751576,1387.86691837478,1.05626839096234,3136.39286307178,48.0875031972542,0,3136.39286307178,85.2019952945789,85.2019952945789,0.00189115446197943,85.201877416313,25.1012623762376,1015,40.2987376237624,560.222072033505 +46451,2874.10716158416,457.151753960396,225,85.2199900990098,87.7765898019801,21.7537821782178,-1.96544554455446,1843.12871287129,664.356003609901,690.932371717822,20,40,11,32,5306306.99514683,396803.871856015,2,2,5306306.86430544,396803.978456635,19.6325747902751,0,0,85.2199900990098,23217.3743975519,43.5075643564356,23.3322866485171,23.3970502566238,-1.96544554455446,-1.9508053356246,-1.54239050756025,2.25161536317256,1.78635132437708,1.73725727566351,53.6144409627486,-0.00842423772621025,1355.28837532772,1355.63306317405,1355.77371277164,1.0560904042887,3069.5519162241,32.0806293667586,0,3069.5519162241,85.2132932065483,85.2132932065483,0.00135199163478529,85.2129147571899,25.11,1015,40.14,549.697244956317 +46452,2874.09933871287,457.13672970297,225,85.2240297029703,87.7807505940593,22.4197227722772,-2.64039603960396,1843.84653465347,682.655652722772,692.56491130297,20,40,11,32,5306292.8392232,396784.898722861,2,2,5306291.92577675,396785.642936608,43.2831759318907,0,0,85.2240297029702,23241.0450570404,44.8394455445545,24.0465494237984,23.9642411185009,-2.64039603960396,-2.62575583067411,-2.09018784564823,1.75015831791685,1.38851318933762,1.60586095850117,53.6353215519845,0.00756021334403485,1375.22056402574,1374.16227201285,1374.07795684901,1.05604073177638,3115.75517573535,178.19081807777,0,3115.75517573535,85.2204193706498,85.2204193706498,0.00706630068948897,85.2204019801979,25.12,1015,39.98,575.312143378772 +46453,2874.09148188119,457.121680495049,225,85.1961782178218,87.7520635643564,19.6859845980198,-2.36059405940594,1842.00495049505,693.916730038614,678.048352442574,20,40,11,32,5306278.62101051,396765.893292931,2,2,5306276.94658185,396767.257502973,66.9981595835001,0,0,85.1961782178217,23264.7169124034,39.3719691960396,21.1144449197993,21.6367060565305,-2.36059405940594,-2.34595385047609,-1.81825819918151,2.83769224882569,2.25132382278733,2.04289818049424,53.5817520402896,-0.00936026414023362,1371.96508248119,1371.0433952653,1370.9699635399,1.05638548468965,3106.29472558463,-398.412381967072,0,3106.29472558463,85.2030959709832,85.2030959709832,-0.0158603731660229,85.2030876001885,25.13,1015,39.82,468.548267813131 +46454,2874.08361039604,457.10677970297,225,85.1320495049506,87.686010990099,21.2852288227723,-1.79960396039604,1839.51485148515,687.785852988119,660.7291524,20,40,11,32,5306264.37240798,396747.072148645,2,2,5306262.04550447,396748.967950612,90.5894680001334,0,0,85.1320495049504,23288.3759738996,42.5704576455446,22.82973398389,22.9935161953276,-1.79960396039604,-1.78496375146618,-1.41802982001449,2.31440555638019,1.83616682423061,1.93735169577684,53.5093179962506,0.000936026414023362,1348.51500538812,1348.57731794894,1348.58228245184,1.05718164089449,3051.35627526096,-609.466757115369,0,3051.35627526096,85.1287350259777,85.1287350259777,-0.0243862257513065,85.1288892975011,25.14,1015,39.66,531.253101461656 +46455,2874.07573029703,457.091897920792,225,85.0599900990099,87.6117898019802,25.048099009901,-2.34336633663366,1841.07920792079,669.899721666337,656.530503831683,20,40,11,32,5306250.10748615,396728.274304261,2,2,5306247.14932591,396730.684411066,114.17302061356,0,0,85.0599900990098,23312.0120746696,50.096198019802,26.8656466867008,26.1911418494079,-2.34336633663366,-2.32872612770381,-1.89123517178168,3.54329865150231,2.81112677693591,2.70780245920415,53.5548232803785,0.00806422756697049,1326.43022549802,1327.41924795077,1327.49804434091,1.05807704731713,3006.49116584474,-375.876114322615,0,3006.49116584474,85.0608598176648,85.0608598176648,-0.0151006437277415,85.0608601603016,25.15,1015,39.5,686.44138686344 +46456,2874.06787861386,457.076981386139,225,85.0258613861386,87.5766372277228,25.1117227722772,-3.03207920792079,1840.95544554455,656.702762727723,669.312624853466,20,40,11,32,5306235.89603538,396709.434021518,2,2,5306232.25369884,396712.401548413,137.755700116706,0,0,85.0258613861385,23335.6345077279,50.2234455445545,26.9338871356148,26.2425906141795,-3.03207920792079,-3.01743899899094,-2.45031051990866,3.65261157520516,2.89785175191253,2.89998008028767,53.5512231787861,-0.00993628039501722,1326.01538758119,1327.02181724786,1327.10200048755,1.05850176005372,3006.55803015257,148.623561441546,0,3006.55803015257,85.0336102342907,85.0336102342907,0.00602609765929369,85.0340300801508,25.16,1015,39.34,689.339870331134 +46457,2874.06003564356,457.06204980198,225,85.0177326732673,87.5682646534653,25.4983366336634,-2.64069306930693,1839.24257425743,660.328199353465,687.323692363366,20,40,11,32,5306221.70111993,396690.575189122,2,2,5306217.35558525,396694.115633807,161.342316269077,0,0,85.0177326732672,23359.2552125959,50.9966732673267,27.3485545880261,26.5712266547636,-2.64069306930693,-2.62605286037708,-2.13724647892,4.02530697004056,3.19353498584436,3.18912274998941,53.5013977727473,0.00273607721022213,1347.65189171683,1347.75042179769,1347.75827178607,1.05860334895029,3053.0656369489,-438.572522921563,0,3053.0656369489,85.0216578766786,85.0216578766786,-0.017564999074185,85.0216825082507,25.17,1015,39.18,706.455362255305 +46458,2874.05217584158,457.047095940594,225,85.0277524752474,87.578585049505,25.5118217821782,-2.28445544554455,1840.82673267327,677.442821832674,694.004413944554,20,40,11,32,5306207.47558393,396671.68795684,2,2,5306202.43134824,396675.797655366,184.970290888398,0,0,85.0277524752474,23382.8687271449,51.0236435643565,27.3630182499341,26.5837084172692,-2.28445544554455,-2.2698152366147,-1.84408744348739,4.01648394135119,3.18653510955907,3.08449550537341,53.54747907313,0.0144724084014381,1371.44723577723,1370.54727817468,1370.47557766868,1.05847800102087,3109.26743213237,332.790664883678,0,3109.26743213237,85.0223061464561,85.0223061464561,0.0131931509982673,85.0220569542668,25.18,1015,39.02,707.244508971909 +46459,2874.04430811881,457.032161584158,225,85.0438811881188,87.5951976237624,24.9980891089109,-2.83693069306931,1840.91584158416,692.311525182178,683.212564990099,20,40,11,32,5306193.23500143,396652.824664057,2,2,5306187.51283106,396657.486697432,208.589209901777,0,0,85.0438811881188,23406.4896570129,49.9961782178218,26.812007952268,26.1469417093028,-2.83693069306931,-2.82229048413945,-2.28737420191266,3.57662737169489,2.83756859485454,2.91768262459591,53.5500711462765,-0.0163444612294849,1375.52409017228,1374.45306175444,1374.36773186865,1.05827736514521,3118.08004123372,62.505642759935,0,3118.08004123372,85.041260268601,85.041260268601,0.00263454563278747,85.0413978312117,25.19,1015,38.86,684.748647180957 +46460,2874.03646722772,457.017258019802,225,85.0469801980197,87.5983896039605,25.0805346534653,-3.16663366336634,1840.10396039604,691.264092121782,664.870121655445,20,40,11,32,5306179.04349405,396634.000523172,2,2,5306172.63306506,396639.22330263,232.146778233836,0,0,85.0469801980197,23430.1148621834,50.1610693069307,26.9004359351667,26.2173724618115,-3.16663366336634,-3.15199345443648,-2.55720196360189,3.66075703559276,2.90431406967295,3.04900040192307,53.5264544798304,0.00100802844587131,1356.13421377723,1355.87681313333,1355.85630577118,1.05823875596808,3072.66401874902,-28.6978362451481,0,3072.66401874902,85.0463172238015,85.0463172238015,-0.00115593242491588,85.0463323903818,25.1987376237624,1015,38.7164108910891,688.322608701294 +46461,2874.02865128713,457.002306930693,225,85.0359108910891,87.5869882178218,25.9708613861386,-3.12594059405941,1843.10396039604,675.263527771287,655.841041761386,20,40,11,32,5306164.8993246,396615.117920239,1.2970297029703,2,5306157.74357359,396620.947539121,79.2687500250948,0,0,85.035910891089,23453.7375729645,51.9417227722772,27.8553668233858,26.9743612697764,-3.12594059405941,-3.11130038512955,-2.54042957468033,4.49482631332806,3.56603488721317,3.48484011668132,53.6137209424301,0.0156244409110053,1331.10456953267,1331.89744962493,1331.96061916057,1.05837686308269,3021.27662513643,27.0250724202644,0,3021.27662513643,85.0444134888736,85.0444134888736,0.000953065603578399,85.0444573314474,25.2,1015,38.67,728.054565692452 +46462,2874.02084188119,456.987302871287,225,85.0225445544555,87.5732208910891,26.0925346534654,-2.7939603960396,1841.5297029703,659.0206772,664.426619715841,20,40,11,32,5306150.76850274,396596.169460861,1,2,5306142.8278519,396602.638342147,28.3276387352008,0,0,85.0225445544553,23477.3591660063,52.1850693069307,27.9858689828481,27.077098899909,-2.7939603960396,-2.77932018710975,-2.26895912974135,4.63295680672788,3.67562269419721,3.64561922983136,53.5679276501748,-0.0157684449747012,1323.44729691584,1324.56148744647,1324.6502561002,1.05854348549824,3001.78854121975,-229.456916943696,0,3001.78854121975,85.026293010489,85.026293010489,-0.00904867714495752,85.02647223008,25.2,1015,38.64,733.70514410782 +46463,2874.01304445545,456.972284950495,225,85.0071584158416,87.5573731683168,25.5665148514851,-2.84069306930693,1839.21782178218,657.469142326733,682.733314742574,20,40,11,32,5306136.66024287,396577.204040338,1,2,5306127.91294213,396584.330062026,51.942203189509,0,0,85.0071584158415,23500.9734479645,51.1330297029703,27.4216799741484,26.6287212663281,-2.84069306930693,-2.82605286037708,-2.29824454848405,4.10320814660324,3.25533900095252,3.26961841261608,53.5006777524288,-0.00374410565609344,1340.20245706931,1340.61357640177,1340.64633068263,1.05873508326034,3036.53249952561,-251.520853979759,0,3036.53249952561,85.0006820899911,85.0006820899911,-0.0100303347166162,85.0005665252239,25.2,1015,38.61,709.703395510158 +46464,2874.00526306931,456.957301980198,225,85.0244257425742,87.5751585148515,24.7668613861386,-3.16316831683168,1847.52475247525,672.035397148515,693.930035861386,20,40,11,32,5306122.58097481,396558.282594439,1,2,5306113.03113095,396566.062410926,75.5043631237943,0,0,85.0244257425741,23524.5849616884,49.5337227722772,26.564001814089,25.9489031600976,-3.16316831683168,-3.14852810790183,-2.54895141586522,3.35929245882046,2.66514282631671,2.72052830396853,53.7423165713106,0.0180725099938357,1365.9654330099,1365.29549992428,1365.24212569762,1.05851952855078,3108.27816158521,400.827152642729,0,3108.27816158521,85.0170961670423,85.0170961670423,0.0158848805672504,85.0167790664779,25.2,1015,38.58,674.103932986889 +46465,2873.99741475247,456.942348118812,225,85.0272376237624,87.5780547524753,25.0015940594059,-2.66079207920792,1840.5099009901,689.327294153465,687.722569314852,20,40,11,32,5306108.37713881,396539.395091895,1,2,5306098.11624886,396547.754164774,99.1188837638587,0,0,85.0272376237623,23548.2052664464,50.0031881188119,26.8157672300327,26.1493189822538,-2.66079207920792,-2.64615187027807,-2.14400878550926,3.53586287544388,2.80522749741109,2.80146781753711,53.5382628130534,-0.0084962397580582,1377.04986346832,1375.91481135577,1375.82438063938,1.05848451311857,3121.46002423357,-222.655007921431,0,3121.46002423357,85.0216817959023,85.0216817959023,-0.00883627966756007,85.0216389438943,25.2,1015,38.55,684.37693555831 +46466,2873.98949465347,456.927566534653,225,85.0205742574258,87.5711914851484,24.7518613861386,-2.19,1838.5396039604,693.446742997029,669.81803120396,20,40,11,32,5306094.03655001,396520.719704821,1,2,5306083.25068163,396529.506453367,122.655324886713,0,0,85.0205742574257,23571.8198097632,49.5037227722772,26.5479133795878,25.9362245995357,-2.19,-2.17535979107015,-1.75568238513769,3.38022923641559,2.68175331894213,2.68898456470754,53.4809491957025,-0.0112323169682803,1363.26477420099,1362.7081647393,1362.66381911688,1.05856838354305,3087.1689800828,161.185157979257,0,3087.1689800828,85.0214230957748,85.0214230957748,0.00653939156292522,85.021210561056,25.2,1015,38.52,673.926653085556 +46467,2873.98152059406,456.912812574257,225,85.0054554455445,87.5556191089109,24.4020198019802,-2.7950495049505,1841.28217821782,680.60634139505,656.677771314852,20,40,11,32,5306079.59545022,396502.076841054,1,2,5306068.36094482,396511.22907344,146.230033351963,0,0,85.0054554455444,23595.4355649062,48.8040396039604,26.1726864854191,25.638007480615,-2.7950495049505,-2.78040929602064,-2.24266817476218,2.99173211781156,2.37353356094708,2.3513699443106,53.56072744699,0.00928826210838565,1337.2841127099,1337.81769006925,1337.86020070134,1.05875589969215,3033.38408632677,-51.8546105285741,0,3033.38408632677,85.0170356827761,85.0170356827761,-0.00214984369725184,85.0173321074964,25.2,1015,38.49,658.031131114814 +46468,2873.97353,456.898056633663,225,85.0542079207921,87.6058341584158,24.0072574257426,-2.42930693069307,1839.35643564356,662.611495364357,660.382883983168,20,40,11,32,5306065.12382599,396483.430867868,1,2,5306053.45750872,396492.934877427,169.826431703603,0,0,85.054207920792,23619.0539807753,48.0145148514852,25.7492792431765,25.3050434756992,-2.42930693069307,-2.41466672176321,-1.94303457872572,2.6577364126436,2.10855328055746,2.03148425991899,53.5047098662123,-0.00511214426120452,1322.99437934753,1324.12757496605,1324.21785777378,1.05814931000622,2996.10304200729,160.130869900653,0,2996.10304200729,85.0411998823644,85.0411998823644,0.00644680804713624,85.0408943894388,25.2,1015,38.46,641.088817889759 +46469,2873.96551564356,456.883311881188,225,85.051396039604,87.6029379207921,22.8508817382178,-2.97564356435644,1839.91089108911,656.006583369307,677.52690570396,20,40,11,32,5306050.60799479,396464.79794768,1,2,5306038.5428295,396474.626880301,193.440631142713,0,0,85.0513960396039,23642.6803246147,45.7017634764356,24.5089942760079,24.3204100278985,-2.97564356435644,-2.96100335542658,-2.36125709792286,2.04077224355533,1.6190759130771,1.63026112490874,53.5208383213463,-0.00374410565609345,1333.53348907327,1334.22444812497,1334.27949751113,1.058184883534,3020.97996541445,187.707286838969,0,3020.97996541445,85.0486111165571,85.0486111165571,0.00753874892440398,85.0490365865156,25.2,1015,38.43,592.625224601577 +46470,2873.9574849505,456.868567425743,225,85.0657524752475,87.6177250495049,22.4637821782178,-2.59405940594059,1841.03465346535,666.864131024753,692.347701973267,20,40,11,32,5306036.06195503,396446.16476064,1,2,5306023.61596893,396456.30393038,217.074117140525,0,0,85.0657524752474,23666.3082698017,44.9275643564356,24.0938058815742,23.9918277994705,-2.59405940594059,-2.57941919701074,-2.04965155484224,1.71415675608172,1.35995083418775,1.46305083389337,53.5535272438052,0.00669618896185943,1359.21183299802,1358.82529091738,1358.79449473024,1.05800549023331,3080.50976020045,49.5314320277208,0,3080.50976020045,85.0747014018232,85.0747014018232,0.00192655404154926,85.0746452616689,25.2,1015,38.4050495049505,576.241679886165 +46471,2873.94945128713,456.853832673268,225,85.0712376237624,87.6233747524753,21.6786397139604,-2.42594059405941,1841.5297029703,674.876349048515,692.819603331684,20,40,11,32,5306021.51025542,396427.54346734,0.910891089108911,1.82178217821782,4833196.64825534,361112.578705183,218.285304197936,0,0,85.0712376237622,23689.9401762924,43.3572794279208,23.2516916742195,23.3245786239331,-2.42594059405941,-2.41130038512955,-1.91170335755434,2.23666674529498,1.77449162410145,1.80219466718855,53.5679276501748,-0.00216006095543853,1367.6959523802,1363.74689066998,1363.42183063605,1.05793742222916,3100.3699070785,-203.205500462555,0,3100.3699070785,85.0692743848641,85.0692743848641,-0.00811058828655649,85.0690055634134,25.2,1015,38.41,546.487794237744 +46472,2873.94142940594,456.839093663366,225,85.0512475247525,87.6027849504951,23.7036831683168,-3.25742574257426,1839.77227722772,608.80297029703,732.393069306931,20,40,11,32,5306006.98053471,396408.917168638,0,0,0,0,0,0,0,85.0512475247524,23713.5669267049,47.4073663366337,25.4236769393867,25.0456698156699,-3.25742574257426,-3.24278553364441,-2.60357728782475,2.57929588864598,2.04632136643046,1.9947189913868,53.5168062075628,-0.00489613816566066,1341.19603960396,1343.01392416815,1343.54755841358,1.0581862918545,3038.16273864847,-105.626643133904,0,3038.16273864847,85.0465187726693,85.0465187726693,-0.00418531952205363,85.0462549740687,25.2,1015,38.42,628.493684548437 +46473,2873.9334460396,456.824316534653,225,84.9943366336634,87.5441667326733,23.6550198019802,-3.41712871287129,1839.63861386139,597.447524752475,769.718811881188,20,40,11,32,5305992.52306839,396390.244574426,0,0,0,0,0,0,0,84.9943366336633,23737.1847484321,47.3100396039604,25.3714824472591,25.0010343132367,-3.41712871287129,-3.40248850394143,-2.73454125303198,2.43137310250428,1.92896470363107,1.93151566715003,53.512918097843,0.00986427836316927,1367.16633663366,1363.31097931575,1362.89149457803,1.05889437590894,3098.60901742579,-300.958864666055,0,3098.60901742579,85.0037925693558,85.0037925693558,-0.0121189099107884,85.0040778877887,25.2,1015,38.43,625.716730601219 +46474,2873.92555861386,456.809431683168,225,85.0017326732673,87.5517846534653,23.8695247524752,-2.86950495049505,1839.63861386139,594.29900990099,743.79405940594,20,40,11,32,5305978.24578617,396371.440892916,0,0,0,0,0,0,0,85.0017326732672,23760.7944231846,47.7390495049505,25.6015523703407,25.1842560338229,-2.86950495049505,-2.8548647415652,-2.29452600017632,2.60246065113121,2.06469946280571,2.13716568447281,53.512918097843,-0.00280807924207008,1338.09306930693,1348.18703068327,1348.89360678925,1.0588022182705,3032.6102928443,-164.768365379361,0,3032.6102928443,84.9866042544847,84.9866042544847,-0.0065679835310309,84.9862932578971,25.2,1015,38.44,635.016331966623 +46475,2873.91774534653,456.794409702971,225,84.9646831683168,87.5136236633663,24.0905841584159,-3.00386138613861,1838.67326732673,666.579207920792,789.682178217822,20,40,11,32,5305964.10899917,396352.468770354,0,0,0,0,0,0,0,84.9646831683167,23784.3988759074,48.1811683168317,25.8386523552307,25.3702132754173,-3.00386138613861,-2.98922117720876,-2.40962851739506,2.76129729791788,2.19071479339361,2.10655152025117,53.4848373054223,-0.00309608736946188,1456.26138613861,1449.87323791785,1449.32278170674,1.05926460490429,3300.09135694225,34.8397862295147,0,3300.09135694225,84.9685321046955,84.9685321046955,0.00141870622707224,84.9685302215935,25.2,1015,38.45,644.339759384871 +46476,2873.90998148515,456.779326138614,225,84.9777821782179,87.5271156435644,23.3357227722772,-3.34108910891089,1838,694.048514851485,779.666336633663,20,40,11,32,5305950.06516836,396333.421485898,0,0,0,0,0,0,0,84.9777821782177,23808.001482013,46.6714455445545,25.029016490672,24.7285797757202,-3.34108910891089,-3.32644889998104,-2.66632882272007,2.15266399249906,1.707846836025,1.6923837959135,53.4652527527596,0.00216006095543853,1473.71485148515,1473.52112537986,1473.64866572372,1.05910122381728,3338.0734256956,124.305641490804,0,3338.0734256956,84.9775004411331,84.9775004411331,0.0049545796163637,84.9776057520037,25.2,1015,38.46,612.034398924142 +46477,2873.9022460396,456.764165445545,225,84.9744653465347,87.5236993069307,23.4427920792079,-3.30207920792079,1841.75742574257,703.071287128713,790.19603960396,20,40,11,32,5305936.07576154,396314.278977976,0,0,0,0,0,0,0,84.9744653465346,23831.607346782,46.8855841584159,25.1438549927816,24.8195113407247,-3.30207920792079,-3.28743899899094,-2.63735242877351,2.23245149289474,1.77114739318576,1.7558634861723,53.5745518371048,0.000504014222935656,1493.26732673267,1491.66578766788,1491.40773220179,1.0591422382918,3389.46799667962,25.936365484758,0,3389.46799667962,84.9836847367904,84.9836847367904,0.00103339541874481,84.9840026402639,25.2,1015,38.47,616.491632991723 +46478,2873.89453207921,456.749090891089,225,85.0178514851485,87.5683870297029,22.6783465346535,-2.92366336633663,1839.4702970297,708.790099009901,754.949504950496,20,40,11,32,5305922.12428667,396295.244392054,0,0,0,0,0,0,0,85.0178514851484,23855.217706848,45.3566930693069,24.3239395212281,24.1716379702695,-2.92366336633663,-2.90902315740678,-2.31863134774016,1.88335622322284,1.49418765685074,1.60101390203199,53.5080219596773,0.000936026414023365,1463.7396039604,1463.77144397608,1463.67058934465,1.05860211434193,3316.38996100347,104.21359507041,0,3316.38996100347,85.0083839819625,85.0083839819625,0.0041608121208202,85.0081228665722,25.2,1015,38.48,585.108511676322 +46479,2873.88680257426,456.734013366337,225,85.0085445544554,87.5588008910891,21.6822623762376,-1.55653465346535,1839.4900990099,701.374257425743,720.020792079208,20,40,11,32,5305908.14414629,396276.205496172,0,0,0,0,0,0,0,85.0085445544553,23878.8328504949,43.3645247524753,23.2555772052039,23.3242307200523,-1.55653465346535,-1.54189444453549,-1.21832343169801,2.14807146396596,1.70420328768121,1.60991495151242,53.5085979759321,-0.00187205282804672,1421.39504950495,1426.40223507499,1426.68629891561,1.05871790740318,3221.04930999415,69.296458662637,0,3221.04930999415,85.0091164591706,85.0091164591706,0.0027870361293543,85.0092746817538,25.2,1015,38.49,546.100760675281 +46480,2873.8790709901,456.718967326733,225,84.9993465346535,87.549326930693,23.0672299229703,-2.33623762376238,1840.35643564356,725.989108910891,731.773267326732,20,40,11,32,5305894.15951106,396257.205658793,0,0,0,0,0,0,0,84.9993465346534,23902.445286496,46.1344598459406,24.7410411826642,24.501861626305,-2.33623762376238,-2.32159741483252,-1.85194181902747,2.13431175590111,1.69328682604806,1.87011487154123,53.5337986870789,0.00208805892359057,1457.76237623762,1456.80227428683,1456.58628005658,1.05883188870746,3305.19929569526,-52.1960819761202,0,3305.19929569526,85.0119369669639,85.0119369669639,-0.00210491346164158,85.0119907590758,25.2,1015,38.4987376237624,601.727311764293 +46481,2873.87134544555,456.70403990099,225,85.0060495049505,87.556230990099,23.5729125410891,-2.33851485148515,1839.78217821782,705.828712871287,738.314851485149,20,40,11,32,5305880.18346808,396238.353684382,0,0,0,0,0,0,0,85.0060495049504,23926.0594021726,47.1458250821782,25.2834172946644,24.9324859893019,-2.33851485148515,-2.32387464255529,-1.89027329707849,3.79847813449832,3.01357707766645,2.67940178273162,53.5170942156902,0.00684019302555534,1444.14356435644,1445.47675718067,1445.55840641207,1.05874845940188,3272.89997332329,-111.396983688032,0,3272.89997332329,84.9995841584157,84.9995841584157,-0.00451208487185618,84.9997346534652,25.2,1015,38.5,628.104953269082 +46482,2873.86360712871,456.689066039603,225,84.9967326732673,87.5466346534654,22.253,-2.75178217821782,1839.58415841584,717.591089108911,730.984158415842,20,40,11,32,5305866.18486726,396219.443349133,0,0,0,0,0,0,0,84.9967326732672,23949.6698499174,44.506,23.8677288636889,23.808769839478,-2.75178217821782,-2.73714196928797,-2.17474352192981,1.9521361308614,1.54875518250821,1.74397403919201,53.5113340531423,-0.00496814019750861,1448.57524752475,1452.82057641408,1452.81729372937,1.05886440394956,3283.24710137979,263.463387459592,0,3283.24710137979,85.0051982158611,85.0051982158611,0.0105790281998351,85.0054868458273,25.2,1015,38.5,568.269697666201 +46483,2873.85584673267,456.674075742574,225,85.025495049505,87.5762599009901,23.2354653465347,-2.22673267326733,1839.76732673267,735.90198019802,724.721782178218,20,40,11,32,5305852.14579736,396200.51171271,0,0,0,0,0,0,0,85.0254950495049,23973.2864998899,46.4709306930693,24.9214841555174,24.6468697068948,-2.22673267326733,-2.21209246433747,-1.76342676192672,2.20666299080627,1.75068771538603,1.71870004781173,53.5166622034991,-0.00453612800642091,1460.62376237624,1452.73003627095,1452.33303158887,1.05850662289877,3309.65871473883,4.65343687051559,0,3309.65871473883,85.0288335457307,85.0288335457307,0.000223289655702578,85.0289483262611,25.2,1015,38.5,608.637558697742 +46484,2873.84806623763,456.658945742574,225,85.0391881188119,87.5903637623763,22.2441226622772,-2.4280198019802,1839.63366336634,704.954455445544,693.556435643564,20,40,11,32,5305838.07268909,396181.405288462,0,0,0,0,0,0,0,85.0391881188118,23996.9072082507,44.4882453245545,23.8582073659224,23.8035128767819,-2.4280198019802,-2.41337959305034,-1.90989490180275,2.26371856696084,1.79595357459709,1.7621113811216,53.5127740937793,0.0104402946179529,1398.51089108911,1402.3195274973,1402.6697689769,1.0583369352968,3168.15136796131,57.8569716105267,0,3168.15136796131,85.04008185472,85.04008185472,0.00222881199011252,85.0399453088165,25.2,1015,38.5,568.906636420546 +46485,2873.84024752475,456.643903960396,225,85.0640495049505,87.615970990099,21.0978355335644,-2.37079207920792,1840.88118811881,704.754455445545,687.99702970297,20,40,11,32,5305823.92687298,396162.407388817,0,0,0,0,0,0,0,85.0640495049504,24020.5296197194,42.1956710671287,22.6287430065976,22.830110986913,-2.37079207920792,-2.35615187027806,-1.84743000269524,1.99313397413901,1.58128140916015,1.53524614255059,53.5490631178306,-0.00460813003826885,1392.75148514852,1388.01117537496,1385.55569071193,1.05802724085105,3156.29038131544,124.317950919273,0,3156.29038131544,85.0573536908145,85.0573536908145,0.0050104020303084,85.0570344177274,25.2,1015,38.5,522.437096002206 +46486,2873.83242039604,456.629055643564,225,84.9851188118812,87.5346723762376,22.3485445544555,-2.4739603960396,1832.88118811881,80.5227722772276,102.29702970297,20,40,11,32,5305809.7611922,396143.650112993,0,0,0,0,0,0,0,84.9851188118811,24044.15482566,44.6970891089109,23.9702063507758,23.8894510466777,-2.4739603960396,-2.45932018710975,-1.95356883954474,1.77651199530105,1.40942125705979,1.5057812412847,53.316352550898,-0.010296290554257,182.819801980198,79.341231251838,67.3959735973596,1.05901054219913,417.848323395242,-2452.39316854421,0,417.848323395242,84.953624056465,84.953624056465,-0.0980119051509063,84.950716171617,25.2,1015,38.5,571.640161883077 +46487,2873.82461306931,456.614164356436,225,84.0127227722772,86.5331044554456,21.7591188118812,-2.64752475247525,1799.82178217822,-2804.90693069307,-2495.20891089109,20,40,11,32,5305795.63321488,396124.839877445,0,0,0,0,0,0,0,84.0127227722771,24067.6644389713,43.5182376237624,23.3380105205938,23.331885098459,-2.64752475247525,-2.63288454354539,-2.07811491915727,1.99081032295941,1.57943790718821,1.50742674959843,52.3546934135369,-0.0187925303123152,-5300.11584158416,-5211.63021272424,-5178.44596150344,1.07131642449448,-11869.8796359882,-13368.9304492234,0,-11869.8796359882,83.9207564944612,83.9207564944612,-0.534605812066367,83.9092958316864,25.2,1015,38.5,546.190405855121 +46488,2873.81700376238,456.599677524752,225,81.2659207920792,83.7038984158416,20.5298195819802,-2.40455445544554,1735.42574257426,-4507.54257425742,-3877.06138613862,20,40,11,32,5305781.86302775,396106.539981854,0,0,0,0,0,0,0,81.2659207920791,24090.6412025577,41.0596391639604,22.0195105110841,22.1286196766713,-2.40455445544554,-2.38991424651569,-1.87760162943816,1.91437539609529,1.51879716229651,1.52705438073133,50.4814885529805,-0.0144724084014381,-8384.60396039603,-8369.20373492795,-8361.28486530271,1.10760573040568,-18750.2506758576,-20625.0375233194,0,-18750.2506758576,81.2777025781785,81.2777025781785,-0.82488508751866,81.2798766859931,25.2,1015,38.5,490.992956647032 +46489,2873.80964,456.585701881188,225,78.3892871287129,80.7409657425742,20.887801980198,-2.00108910891089,1676.4702970297,-4447.20792079208,-3840.06336633663,20,40,11,32,5305768.53626431,396088.884974927,0,0,0,0,0,0,0,78.3892871287127,24112.809586001,41.775603960396,22.4034689355049,22.2684090151103,-2.00108910891089,-1.98644889998104,-1.58090284753398,1.57168795313562,1.24692116713726,1.29742202365302,48.7665441584261,-0.0122403454141516,-8287.27128712871,-8288.89227526714,-8290.00185249579,1.14825394505962,-18560.2067216523,-19921.1243484031,0,-18560.2067216523,78.3859148122732,78.3859148122732,-0.796746506333796,78.3853322680821,25.2,1015,38.5,496.420619956069 +46490,2873.80252980198,456.572217722772,225,75.5260693069307,77.7918513861386,18.8959532452475,-2.25643564356436,1612.58910891089,-4497.77722772277,-3812.44257425742,20,40,11,32,5305755.66821617,396071.850588769,0,0,0,0,0,0,0,75.5260693069306,24134.1813552529,37.7919064904951,20.2670870749342,20.4098360538428,-2.25643564356436,-2.2417954346345,-1.76586898716692,1.66260160563913,1.3190488165617,1.36001543497603,46.9083157204941,-0.0151924287199176,-8310.21980198019,-8310.78609940202,-8310.6901504777,1.19179094091067,-18581.0006162364,-19885.5622605377,0,-18581.0006162364,75.5201010685226,75.5201010685226,-0.795300569660916,75.5192645511244,25.2012623762376,1015,38.4962128712871,417.716398579969 +46491,2873.79567118812,456.559240891089,225,72.6618811881188,74.8417376237624,18.8193564356436,-2.61990099009901,1552.39603960396,-4570.84752475247,-3784.89900990099,20,40,11,32,5305743.25485445,396055.456499477,0,0,0,0,0,0,0,72.6618811881187,24154.7571699669,37.6387128712871,20.1849322246466,20.1801577013584,-2.61990099009901,-2.60526078116916,-2.06060769979138,1.83495103266796,1.45578470505501,1.4047251661023,45.1573703100157,-0.0192965445352508,-8355.74653465346,-8351.07951181257,-8349.48608219811,1.23877324914059,-18694.1680792523,-20024.6587594243,0,-18694.1680792523,72.6476705224977,72.6476705224977,-0.80083107320633,72.6468946566957,25.21,1015,38.47,408.617323937064 +46492,2873.78907168317,456.546767425742,225,69.7640495049505,71.856970990099,17.9122178217822,-2.12544554455446,1480.13861386139,-4579.83069306931,-3759.4,20,40,11,32,5305731.31020111,396039.698032679,0,0,0,0,0,0,0,69.7640495049504,24174.5330645214,35.8244356435644,19.2119695464717,19.2423295066286,-2.12544554455446,-2.1108053356246,-1.67140051545866,1.38605893421068,1.09964972405554,1.10188443148466,43.0554869963103,-0.0156244409110053,-8339.23069306931,-8340.28672679149,-8338.87673196593,1.29023588876119,-18527.8658956302,-19673.0666606884,0,-18527.8658956302,69.772219586315,69.772219586315,-0.786797862954613,69.7745951122596,25.22,1015,38.44,370.829013193481 +46493,2873.78274247525,456.534786336634,225,66.9335445544555,68.9415508910891,17.7011287128713,-1.45950495049505,1432.40594059406,-4578.25148514851,-3725.41584158416,20,40,11,32,5305719.85522191,396024.561879088,0,0,0,0,0,0,0,66.9335445544554,24193.516590539,35.4022574257426,18.9855633262963,18.900121125292,-1.45950495049505,-1.44486474156519,-1.15308099696751,1.34720245481683,1.06882237913637,1.28260487650736,41.6669998141544,-0.0174244917072041,-8303.66732673267,-8415.43194784825,-8455.98866787672,1.34482311389737,-18608.794859287,-19952.0984536084,0,-18608.794859287,66.9358179590235,66.9358179590235,-0.797943284427452,66.9316871844277,25.23,1015,38.41,357.877044424122 +46494,2873.77666851485,456.523317524753,225,63.995,65.91485,16.316300880198,-1.79524752475248,1465.03465346535,-5141.89405940594,-4193.44851485149,20,40,11,32,5305708.86158847,396010.072334853,0,0,0,0,0,0,0,63.9949999999999,24211.7020861935,32.632601760396,17.5002492008689,17.5536884711574,-1.79524752475248,-1.78060731582262,-1.40506450655526,2.06486093410383,1.63818702102548,1.43409774845695,42.6161305979741,0.0445692577138816,-9335.34257425743,-9237.15567101265,-9207.65866493906,1.4066320069018,-22423.1209815083,-21534.8784544061,0,-22423.1209815083,63.9735492598764,63.9735492598764,-0.861790510734248,63.9595384466176,25.24,1015,38.38,310.677914161705 +46495,2873.77088386139,456.512388910891,225,60.7679702970297,62.5910094059406,16.0210297029703,-2.45554455445545,1510.22277227723,-5291.1297029703,-4394.53267326733,20,40,11,32,5305698.39175888,395996.265325493,0,0,0,0,0,0,0,60.7679702970296,24229.0278432067,32.0420594059406,17.1835524678741,17.1170613187939,-2.45554455445545,-2.44090434552559,-1.94798359583923,1.4560501699493,1.1551782742251,1.1480953039683,43.9305996913903,-0.0254167172423267,-9685.66237623762,-9666.20768552102,-9641.89655004369,1.48137827780614,-25205.5643827315,-22379.6097266506,0,-25205.5643827315,60.7710049014802,60.7710049014802,-0.89494630156085,60.775069033477,25.25,1015,38.35,294.022937918064 +46496,2873.76539435643,456.502027524753,225,57.5559405940594,59.2826188118812,15.9711782178218,-1.99574257425743,1438.81683168317,-5242.07722772277,-4351.44059405941,20,40,11,32,5305688.45594205,395983.174724835,0,0,0,0,0,0,0,57.5559405940593,24245.4580534928,31.9423564356436,17.1300836443008,16.8900854992839,-1.99574257425743,-1.98110236532757,-1.59744562642609,1.58143912536861,1.25465739940744,1.21004413729003,41.8534850766406,-0.0216006095543853,-9593.51782178218,-9597.40138221744,-9598.11327133026,1.56410010322805,-25113.4270714143,-22166.3837067816,0,-25113.4270714143,57.5644794627977,57.5644794627977,-0.886451763988284,57.5669965032116,25.26,1015,38.32,285.74466661233 +46497,2873.76019990099,456.492225643564,225,54.401900990099,56.033958019802,15.130801980198,-2.26485148514851,1359.0297029703,-5203.75049504951,-4311.11584158416,20,40,11,32,5305679.05412321,395970.790916522,0,0,0,0,0,0,0,54.4019009900989,24261.0015201869,30.261603960396,16.2287277739421,15.9942517020295,-2.26485148514851,-2.25021127621866,-1.81113043695873,1.48206117078944,1.1758144745989,1.16890403760745,39.5325715820537,-0.0254167172423267,-9514.86633663366,-9512.86465052446,-9503.88718240242,1.65480405124437,-24890.8115614054,-21496.4860503574,0,-24890.8115614054,54.4170695029899,54.4170695029899,-0.859620244202623,54.4185547984023,25.27,1015,38.29,256.182571157402 +46498,2873.75529485148,456.482966633663,225,51.2833267326733,52.8218265346534,14.203297029703,-2.05415841584158,1281.41089108911,-5096.07128712871,-4236.4603960396,20,40,11,32,5305670.17621763,395959.092998106,0,0,0,0,0,0,0,51.2833267326732,24275.6819171616,28.4065940594059,15.2339209309032,15.0265423726474,-2.05415841584158,-2.03951820691173,-1.63863550899478,1.32277854539378,1.04944532048863,1.09908368295086,37.2747318673657,-0.0121683433823037,-9332.53168316832,-9327.51512596804,-9376.36769746424,1.75558857559208,-24419.9890671881,-21504.4039984497,0,-24419.9890671881,51.3060800901872,51.3060800901872,-0.860061377424885,51.3211209129693,25.28,1015,38.26,226.082864922208 +46499,2873.75067168317,456.474250891089,225,48.2653366336634,49.7132967326733,13.2406435643564,-2.89386138613861,1216.12376237624,-5399.34554455446,-4495.69306930693,20,40,11,32,5305661.8082739,395948.081217985,0,0,0,0,0,0,0,48.2653366336633,24289.5063181242,26.4812871287129,14.2014151159308,14.0339723144342,-2.89386138613861,-2.87922117720876,-2.31043172009117,1.22336039776776,0.970570507950219,0.968140099894192,35.3756062753442,7.69461502215455E-18,-9895.03861386138,-10024.7913439859,-10276.6338385291,1.86550039295674,-26155.3618138746,-22440.4678472373,0,-26155.3618138746,48.2288601117537,48.2288601117537,-0.897625777429223,48.1635151749695,25.29,1015,38.23,197.494431675589 +46500,2873.74635326733,456.466102277228,225,44.659396039604,45.9991779207921,12.4771782178218,-2.84673267326733,1461.40099009901,-6797.22376237624,-5663.84455445545,20,40,11,32,5305653.99211761,395937.786070732,0,0,0,0,0,0,0,44.6593960396039,24302.4250195819,24.9543564356436,13.3825509678199,13.1774163307154,-2.84673267326733,-2.83209246433747,-2.27809657538493,1.29822237363171,1.02996332961831,0.992310813040048,42.5104316152213,0.0547215442044426,-12461.0683168317,-12342.6416429762,-12012.5172799742,2.01677029013847,-42874.5858987868,-27481.6430931007,0,-42874.5858987868,44.6285959219684,44.6285959219684,-1.09986493698875,44.562818907467,25.2987376237624,1015,38.1974752475248,173.986109732951 +46501,2873.74240584159,456.458638217822,225,40.5506732673267,41.7671934653465,11.5236336633663,-3.49950495049505,1398.05940594059,-6991.55643564357,-5808.84653465346,20,40,11,32,5305646.84780185,395928.356055031,0,0,0,0,0,0,0,40.5506732673267,24314.2531566006,23.0472673267327,12.359815027264,12.130237725656,-3.49950495049505,-3.4848647415652,-2.81069519073224,1.391817105338,1.10421805166048,1.06148220763941,40.6678996202322,-0.0339849590322328,-12800.402970297,-12770.9760905794,-12735.7367777009,2.22141778818338,-46215.5462063828,-28267.8772456612,0,-46215.5462063828,40.5526991471424,40.5526991471424,-1.13027317583243,40.5682781950494,25.3,1015,38.15,147.455130946894 +46502,2873.73884960396,456.451868019802,225,36.5134554455446,37.6088591089109,10.5943069306931,-3.48,1262.97524752475,-6820.43663366337,-5668.14950495049,20,40,11,32,5305640.41252703,395919.803445999,0,0,0,0,0,0,0,36.5134554455445,24324.9504339383,21.1886138613861,11.3630542093418,11.1080384839755,-3.48,-3.46535979107015,-2.80547174427822,1.4333650648125,1.13718072088293,1.17294229540729,36.7384607341622,-0.0348489834144082,-12488.5861386139,-12211.8024997549,-10582.2602676172,2.46752392838565,-45188.7889447999,-26905.4959805208,0,-45188.7889447999,36.541778649152,36.541778649152,-1.07576599244083,36.7397585994805,25.3,1015,38.1,123.615123989051 +46503,2873.73566316832,456.445734851485,225,33.3785148514852,34.3798702970297,9.92931683168317,-2.93069306930693,1324.90594059406,-2844.0603960396,-2289.2,20,40,11,32,5305634.64795177,395912.056738388,0,0,0,0,0,0,0,33.3785148514851,24334.5991126787,19.8586336633663,10.649810899217,10.3625924439213,-2.93069306930693,-2.91605286037708,-2.37460348533655,1.51102309901221,1.19879183551207,1.16925939656542,38.5399515709979,0.143572051504814,-5133.2603960396,-4738.41444956377,-4496.79203110214,2.69699131287145,-19771.6183818558,-11850.0377963605,0,-19771.6183818558,33.5147734535829,33.5147734535829,-0.476396649565945,34.2998566133948,25.3,1015,38.05,107.644808904556 +46504,2873.73265247525,456.439867227723,225,33.3417524752475,34.342005049505,9.70310891089109,-1.77693069306931,1715.00495049505,2183.18613861386,2221.85445544554,20,40,11,32,5305629.20295556,395904.646683572,0,0,0,0,0,0,0,33.3417524752475,24343.7882097084,19.4062178217822,10.4071888113959,10.1683386194814,-1.77693069306931,-1.76229048413945,-1.42984749887669,1.32738043746059,1.05309629752612,1.09598137350903,49.887471790235,0.00100802844587131,4405.04059405941,3595.10615625919,910.026431204444,2.69986400046575,23732.6445996082,7167.54578007864,0,23732.6445996082,33.3779032447799,33.3779032447799,0.286682133559891,33.6475214751257,25.3,1015,38,103.79343578986 +46505,2873.72961148515,456.433794455445,225,34.2977128712871,35.3266442574258,9.54447524752475,-2.5350495049505,1717.71287128713,1106.4603960396,1323.54554455446,20,40,11,32,5305623.70645817,395896.980042599,0,0,0,0,0,0,0,34.2977128712871,24353.2103885038,19.0889504950495,10.2370443245455,10.0880438178552,-2.5350495049505,-2.52040929602064,-2.02620934479354,1.35544330293824,1.07536037412274,1.12387556143602,49.9662420130766,-0.000504014222935659,2430.00594059406,2511.42121360651,2764.79493912051,2.62412524570854,12757.1563342686,3298.58047282461,0,12757.1563342686,34.2694541711596,34.2694541711596,0.13195057129475,34.1232359496262,25.3,1015,37.95,102.56464150952 +46506,2873.72657386139,456.427532970297,225,34.6339702970297,35.6729894059406,10.3878811881188,-2.24435643564356,1438.59900990099,846.659405940594,961.927722772277,20,40,10.8118811881188,32,5305618.22044732,395889.07841386,0,0,0,0,0,0,0,34.6339702970297,24362.782435561,20.7757623762376,11.1416497400905,10.824941980828,-2.24435643564356,-2.22971622671371,-1.81587696227397,1.644403338568,1.30461096051595,1.27164597473485,41.847148897838,-0.148900201861562,1808.58712871287,1574.63703558475,966.250807034129,2.59866935260993,7948.50422571308,1912.18700528043,0,7948.50422571308,34.6162800705813,34.6162800705813,0.0788539249964699,34.5027630903798,25.3,1015,37.9,117.380890410071 +46507,2873.72372356436,456.421019405941,225,34.4897524752475,35.5244450495049,9.60917821782179,-2.28752475247525,1212.89108910891,-803.319801980198,-692.086138613861,20,40,10.990099009901,32,5305613.08710573,395880.869006916,0,0,0,0,0,0,0,34.4897524752475,24372.4121546479,19.2183564356436,10.3064422911893,10.1541092470547,-2.28752475247525,-2.27288454354539,-1.82137750791985,1.16997099244402,0.928213257920896,0.932601256058592,35.2815716217507,-0.00460813003826886,-1495.40594059406,-1211.51390059798,-487.976925639389,2.60956903602935,-5508.47457264484,-4238.00611953884,0,-5508.47457264484,34.469279384374,34.469279384374,-0.169459148885188,34.3354613446827,25.3,1015,37.85,103.684421418883 +46508,2873.72140207921,456.414239306931,225,33.7869900990099,34.8005998019802,9.26473267326732,-2.74178217821782,1191.93069306931,-830.810891089109,-700.714851485149,20,40,11,32,5305608.93930699,395872.345227589,0,0,0,0,0,0,0,33.7869900990099,24381.8915275302,18.5294653465346,9.93700298566955,9.82071853812739,-2.74178217821782,-2.72714196928797,-2.18357330027004,1.15370171260331,0.915305791545658,0.87874042803033,34.6718584160623,-0.0159844510702451,-1531.52574257426,-1535.04966179786,-1657.5825568573,2.66382292207676,-5658.00339903245,-4707.5064959905,0,-5658.00339903245,33.7860011763552,33.7860011763552,-0.188087496868501,33.7771307535507,25.3,1015,37.8,97.0566363136563 +46509,2873.71974128713,456.407237128713,225,33.0582772277228,34.0500255445544,9.22534653465347,-2.40108910891089,1167.66336633663,-1124.23465346535,-951.906930693069,20,40,10.7029702970297,32,5305606.0203423,395863.566867083,0,0,0,0,0,0,0,33.0582772277227,24391.1784726072,18.4506930693069,9.89475889824658,9.74543365458348,-2.40108910891089,-2.38644889998104,-1.92179160244859,1.08703639780452,0.862415908429456,0.990996649922599,33.9659504958249,-0.0141123982421984,-2076.14158415842,-2235.23305558279,-2594.58494385477,2.72259809981943,-7675.74841757076,-5720.73475154386,0,-7675.74841757076,33.0524003529065,33.0524003529065,-0.228641799823545,32.9782777418504,25.3,1015,37.75,95.3796280148859 +46510,2873.71864386139,456.400195148515,196.485148514851,32.0650891089109,33.0270417821782,8.3950099009901,-3.2709900990099,1127.21287128713,-2318.46633663366,-1945.5297029703,20,40,11,32,5305604.14583286,395854.757746164,0,0,0,0,0,0,0,32.0650891089108,24400.2315545654,16.7900198019802,9.00417112860359,8.98184390565891,-3.2709900990099,-3.25634989008005,-2.56266197765031,1.83788051962572,1.45810885552597,1.4011755063831,32.7892932913657,-0.0118083332230639,-4263.99603960396,-4203.78272718361,-4556.41077724904,2.80712184978209,-15694.1627665867,-8626.46700806412,0,-15694.1627665867,32.0418272718361,32.0418272718361,-0.344902188238626,31.8358812182693,25.3,1015,37.7037871287129,83.0105243405556 +46511,2873.71804267327,456.393141089109,112.722772277228,30.3707623762376,31.2818852475248,10.0335247524753,-3.42514851485149,1092.79702970297,-4183.40396039604,-3466.86831683168,20,40,10.9306930693069,32,5305603.19081022,395845.950160718,0,0,0,0,0,0,0,30.3707623762376,24408.9305635313,20.0670495049505,10.7615803864284,10.2787239502673,-3.42514851485149,-3.41050830592163,-2.82064349479373,2.39707428367889,1.90175324405612,1.81507335249195,31.7881770405518,0.0351369915418,-7650.27227722772,-7314.28712871287,-5696.92821551525,2.9650803188027,-29097.854625818,-16153.5129031185,0,-29097.854625818,30.3096968924615,30.3096968924615,-0.646665904214183,30.1588582069717,25.3,1015,37.68,105.860207944788 +46512,2873.71788,456.386552673267,50.3465346534653,28.0633861386139,28.9052877227723,9.19470297029704,-3.4509900990099,1365.34158415842,-2856.81584158416,-2297.49504950495,20,40,10.6831683168317,32,5305603.03761098,395837.737301154,0,0,0,0,0,0,0,28.0633861386138,24417.0154573706,18.3894059405941,9.86189176637778,9.4326355618059,-3.4509900990099,-3.43634989008005,-2.83862542537764,2.13636381935852,1.69491486000751,1.74458917291882,39.716176763266,0.0434172252043143,-5154.31089108911,-5467.27499264778,-5930.58703848671,3.20764759434468,-25769.1597199647,-11723.3385063855,0,-25769.1597199647,28.108774924027,28.108774924027,-0.469663921837729,28.385853381968,25.3,1015,37.66,89.1436348476843 +46513,2873.71811722772,456.380406831683,45,26.6995643564357,27.5005512871287,8.91472277227723,-3.5,1332.93564356436,-2758.80396039604,-2279.00693069307,20,40,10.7821782178218,32,5305603.61522538,395830.089141714,0,0,0,0,0,0,0,26.6995643564356,24424.613881023,17.8294455445545,9.5615955612127,9.11619240508009,-3.5,-3.48535979107015,-2.88712732036555,2.20890034234677,1.75246275030223,1.75229832198075,38.7735261623126,-0.0188645323441631,-5037.81089108911,-5027.96312126262,-5890.76503917086,3.37129604549171,-26307.1906193786,-9908.10522048507,0,-26307.1906193786,26.6843557494363,26.6843557494363,-0.395968804801271,26.5375445260081,25.3,1015,37.64,83.3330598360518 +46514,2873.71860930693,456.374731584158,45,24.8223762376238,25.5670475247525,8.45344554455446,-3.5,1234.97524752475,-3758.24455445545,-3150.55643564356,20,40,10.5346534653465,32,5305604.65433978,395823.035740404,0,0,0,0,0,0,0,24.8223762376237,24431.7976345433,16.9068910891089,9.06684699687166,8.61607113877574,-3.5,-3.48535979107015,-2.89639334373765,2.22649253423382,1.76641976791284,1.7413848549814,35.9239737498981,-0.0245526928601513,-6908.80099009901,-6655.63394765219,-5534.20881542591,3.62858195041421,-36002.2194795232,-14685.0696788901,0,-36002.2194795232,24.8498754043721,24.8498754043721,-0.586942728926355,24.8137042250926,25.3,1015,37.62,74.4239625005296 +46515,2873.71926782178,456.369591683168,45,22.9243861386139,23.6121177227723,8.01995049504951,-3.5,1312.41584158416,-3244.20891089109,-2647.13861386139,20,40,11,32,5305605.98971946,395816.654806593,0,0,0,0,0,0,0,22.9243861386138,24438.4161236798,16.039900990099,8.60189654950117,8.13839729240363,-3.5,-3.48535979107015,-2.90797977434024,2.28099089906295,1.80965682686225,1.81588982522172,38.1766293182931,0.0587536579879279,-5891.34752475247,-5837.93971179296,-5080.76150969408,3.92833218107179,-35328.5787083939,-11741.7400470935,0,-35328.5787083939,22.9461767473777,22.9461767473777,-0.470943752791123,23.2228803898721,25.3,1015,37.6,66.4508453557679 +46516,2873.72010118812,456.364834554455,45,21.4885346534653,22.1331906930693,7.3039801980198,-3.5,1449.95544554455,-1794.19306930693,-1458.33564356436,20,40,11,32,5305607.64038257,395810.756555294,0,0,0,0,0,0,0,21.4885346534653,24444.5660221671,14.6079603960396,7.83397380092975,7.44686928314583,-3.5,-3.48535979107015,-2.89186406947024,1.98910613688057,1.57808586673374,1.53973761787033,42.1774942199564,0.00324009143315779,-3252.52871287129,-3445.43833937849,-3552.01253648905,4.18941931505917,-22938.6010733024,-7860.99513382577,0,-22938.6010733024,21.49314390746,21.49314390746,-0.314511649184721,21.9317083114345,25.3,1015,37.58,55.8698589066295 +46517,2873.72106663366,456.360365148514,45,20.7631881188119,21.3860837623762,6.75647524752476,-3.5,1399.28217821782,-1512.33861386139,-1252.51584158416,20,40,11,32,5305609.52923651,395805.221150335,0,0,0,0,0,0,0,20.7631881188119,24450.4125065731,13.5129504950495,7.24674063192137,6.9394195199912,-3.5,-3.48535979107015,-2.87307240541707,1.59805208895643,1.26783753221002,1.30448330450393,40.7034686239651,-0.0200885668855783,-2764.85445544554,-2314.98110969513,-887.125241789177,4.33491988915145,-19507.7062492109,-3309.9512687668,0,-19507.7062492109,20.7629266738555,20.7629266738555,-0.131883856702499,21.2555787817294,25.3,1015,37.56,48.4609642233985 +46518,2873.72215316832,456.356093069307,45,20.4616534653465,21.0755030693069,6.20189108910891,-3.5,1395.0396039604,992.30594059406,1193.5297029703,20,40,10.970297029703,32,5305611.63795599,395799.935615137,0,0,0,0,0,0,0,20.4616534653465,24456.1185537403,12.4037821782178,6.65191457138273,6.45024870317215,-3.5,-3.48535979107015,-2.8400594313019,1.08925588346011,0.864176769189759,0.89558674799019,40.5800571413777,0.0186485262486193,2185.83564356436,2056.35383785903,1369.7704973454,4.39880862036746,15586.3061085412,2448.40852209551,0,15586.3061085412,20.5462752671306,20.5462752671306,0.0974577655785358,21.2915561208456,25.3,1015,37.54,41.8556475281492 +46519,2873.7233680198,456.351860792079,45,21.5429306930693,22.1892186138614,6.45916831683168,-3.5,1242.82673267327,2677.09702970297,3279.22376237624,20,40,11,32,5305613.98347181,395794.703958069,0,0,0,0,0,0,0,21.5429306930693,24461.9276618261,12.9183366336634,6.92786042650738,6.73115530269142,-3.5,-3.48535979107015,-2.83722735881649,1.03289813243762,0.819464539550285,0.770903377478048,36.1523641949198,-0.0870504565041726,5956.32079207921,5534.23425154396,3100.31911605981,4.17994371810998,35776.8332875181,9925.63240730689,0,35776.8332875181,21.5533830996961,21.5533830996961,0.398984576675491,21.7975777816305,25.3,1015,37.52,45.407468394693 +46520,2873.72484366337,456.347446336634,45,22.8728415841584,23.5590268316832,6.86847524752475,-3.5,1124.67326732673,1771.45544554455,2194.34356435643,20,40,11,32,5305616.81616661,395789.254082836,0,0,0,0,0,0,0,22.8728415841584,24468.1142231848,13.7369504950495,7.36686760953038,7.15567756837421,-3.5,-3.48535979107015,-2.83767910438879,1.10811386889427,0.879138022255615,0.87382421391804,32.7154192066898,-0.0252007111467828,3965.79900990099,4078.11939025586,4135.98910097284,3.93549826886629,20426.9493182101,7390.34483411421,0,20426.9493182101,22.8676543476129,22.8676543476129,0.296049406920889,22.6925970020154,25.3012623762376,1015,37.5088366336634,51.3503311282339 +46521,2873.72659059406,456.342931485149,45,23.8210693069307,24.5357013861386,7.0009801980198,-3.5,903.881188118812,1712.58910891089,2133.89108910891,20,40,11,32,5305620.15364169,395783.688220812,0,0,0,0,0,0,0,23.8210693069307,24474.6063873212,14.0019603960396,7.50898742400538,7.32279223771472,-3.5,-3.48535979107015,-2.82742038688306,1.00869416521504,0.800261975200078,0.80555773974502,26.2928379658525,-0.0551535563955304,3846.4801980198,3807.42739927458,3095.18106207651,3.77851245165044,15356.4344859278,5867.40242417558,0,15356.4344859278,23.8077458092343,23.8077458092343,0.235532464137504,23.652397404198,25.31,1015,37.55,53.7436789290788 +46522,2873.7285509901,456.33840039604,45,24.5931386138614,25.3309327722772,7.39733663366336,-3.5,865.79702970297,879.074257425743,1141.69603960396,20,40,11,32,5305623.88689842,395778.109278211,0,0,0,0,0,0,0,24.5931386138614,24481.3336296479,14.7946732673267,7.93410439427091,7.70430939762509,-3.5,-3.48535979107015,-2.83855636273646,1.20186571359419,0.953517392143432,0.930846640667995,25.18501470384,-0.00468013207011681,2020.7702970297,1850.0559062837,1428.52698654585,3.65983352008491,7496.43609681672,3217.59735297638,0,7496.43609681672,24.5448275659249,24.5448275659249,0.128764609134183,24.1458689613475,25.32,1015,37.6,59.505292739555 +46523,2873.73068425743,456.333915742574,45,24.4338613861386,25.1668772277228,7.2280396039604,-3.5,858.306930693069,-678.350495049505,-584.674257425743,20,40,11,32,5305627.93933273,395772.593972178,0,0,0,0,0,0,0,24.4338613861386,24488.1740994224,14.4560792079208,7.75252278269592,7.55112694142523,-3.5,-3.48535979107015,-2.83051496881917,1.07849570479171,0.855640027200331,0.896085856967126,24.9671365554681,0.00331209346500575,-1263.02475247525,-1055.63762376238,-377.531984957619,3.68365837489668,-4638.82647533615,-3802.53198611372,0,-4638.82647533615,24.4261965493579,24.4261965493579,-0.15214330839025,24.114708309207,25.33,1015,37.65,57.1563262426991 +46524,2873.73282475248,456.329537029703,45,23.7640594059406,24.4769811881188,7.49217821782178,-3.5,862.821782178218,-1309.46831683168,-1191.52475247525,20,40,11,32,5305632.00277709,395767.210888917,0,0,0,0,0,0,0,23.7640594059406,24494.8737353135,14.9843564356436,8.03582790191913,7.73747022011829,-3.5,-3.48535979107015,-2.86080448611486,1.50772097213432,1.19617204581884,1.14851597289608,25.0984682615587,0.0254887192741746,-2500.99306930693,-2438.5956572885,-2092.65327369119,3.78777341913055,-9582.43769972015,-6117.90201163184,0,-9582.43769972015,23.7390108812861,23.7390108812861,-0.245083543007764,23.5512496509439,25.34,1015,37.7,60.0090107325497 +46525,2873.73467554455,456.325133960396,45,22.7346435643564,23.4166828712871,7.0900297029703,-3.5,996.905940594059,-1316.15247524752,-1507.66336633663,20,40,11,32,5305635.5301456,395761.787779059,0,0,0,0,0,0,0,22.7346435643564,24501.3314172992,14.1800594059406,7.60449856585611,7.33626808689182,-3.5,-3.48535979107015,-2.85588295282518,1.36184608525672,1.08044011325643,1.18139921539979,28.9988183267622,0.0237606705098238,-2823.81584158416,-3038.65263209489,-2766.53306035542,3.95937338861609,-12997.8565904917,-7858.39010821774,0,-12997.8565904917,22.7165150475443,22.7165150475443,-0.314721323617513,22.5548846078257,25.35,1015,37.75,53.9430636835822 +46526,2873.7359129703,456.320622277228,45,21.3397227722772,21.9799144554455,7.82640594059406,-3.5,1015.41584158416,-1838.54059405941,-2312.04257425742,20,40,11,32,5305637.92379894,395756.208849865,0,0,0,0,0,0,0,21.3397227722772,24507.4649509901,15.6528118811881,8.3943079570064,7.8828596709305,-3.5,-3.48535979107015,-2.92738617214319,2.50700379297807,1.98896739605409,1.9088179886246,29.5372495209212,-0.00568816051598812,-4150.58316831683,-3847.39675522008,-2730.25855772382,4.21952958525498,-20686.4553619004,-9949.44050895605,0,-20686.4553619004,21.3608422703656,21.3608422703656,-0.39787085144158,21.5168764781033,25.36,1015,37.8,62.418837914201 +46527,2873.7364,456.316119405941,64.6039603960396,20.3411584158416,20.9513931683168,8.06321782178218,-3.5,952.643564356436,-792.094059405941,-994.169306930693,20,40,10.6633663366337,32,5305638.92726918,395750.615793576,0,0,0,0,0,0,0,20.3411584158416,24513.2256469472,16.1264356435644,8.64830345297989,8.0271091683388,-3.5,-3.48535979107015,-2.96092138137233,3.02884543989677,2.40297794702798,2.44444559320743,27.7112779932572,-0.0163444612294849,-1786.26336633663,-1924.69098127635,-2198.30818963979,4.42474871600618,-8765.40029247931,-4778.19180289034,0,-8765.40029247931,20.3406778747181,20.3406778747181,-0.19083913341829,20.4543162565142,25.37,1015,37.85,64.646108868333 +46528,2873.73599584158,456.311776633663,184.009900990099,19.4700198019802,20.0541203960396,7.96787128712872,-3.5,891.737623762376,-698.59702970297,-890.445544554455,20,40,10.6138613861386,32,5305638.27635659,395745.192357494,0,0,0,0,0,0,0,19.4700198019802,24518.7690496425,15.9357425742574,8.54603835446728,7.89603593112788,-3.5,-3.48535979107015,-2.97416347045503,3.16524368361964,2.51119144889969,2.49057885736874,25.9395959976065,-0.0203045729811221,-1589.04257425743,-1570.75778845211,-1013.4904432063,4.6237512420468,-7621.47917971942,-7583.55032677945,0,-7621.47917971942,19.4644718164886,19.4644718164886,-0.302991809081899,19.5883902802596,25.38,1015,37.9,62.5651843947146 +46529,2873.73486306931,456.307951089109,225,18.4967425742574,19.0516448514852,7.56036633663366,-3.5,838.70297029703,195.816831683169,25.9623762376237,20,40,10.7029702970297,32,5305636.2641666,395740.38886286,0,0,0,0,0,0,0,18.4967425742574,24524.0283177943,15.1207326732673,8.10896390747016,7.49349457944047,-3.5,-3.48535979107015,-2.97313173785098,2.99811147746418,2.37859471737305,2.37885782735282,24.3968804632323,-0.0108723068090406,221.779207920792,252.475972943829,266.127453252935,4.86614239422887,1034.96041557663,-3355.91173491353,0,1034.96041557663,18.5613588863837,18.5613588863837,-0.134051400189522,19.0250958670256,25.39,1015,37.95,56.370744461011 +46530,2873.73310227723,456.30484039604,225,18.4724455445545,19.0266189108911,7.23564356435643,-3.4890099009901,813.069306930693,1214.91881188119,965.511881188119,20,40,10.990099009901,32,5305633.07258459,395736.45485911,0,0,0,0,0,0,0,18.4724455445544,24529.1491809956,14.4712871287129,7.76067850394801,7.21580646235973,-3.4890099009901,-3.47436969206025,-2.94641565996829,2.65838900212964,2.10907102178082,2.05597052307695,23.6512274214149,-0.00194405485989467,2180.43069306931,2123.94440741104,1275.30574930199,4.87216577813688,10052.0466729796,64.6851580081892,0,10052.0466729796,18.4546505244584,18.4546505244584,0.00261956888757786,18.6998952544418,25.3987376237624,1014.99873762376,37.9936881188119,52.2901872259732 +46531,2873.73078277228,456.302678811881,225,18.3303762376237,18.8802875247525,6.47960396039604,-2.84762376237624,803.108910891089,1320.81287128713,1052.72574257426,20,40,11,32,5305628.8247166,395733.684486382,0,0,0,0,0,0,0,18.3303762376237,24534.2667978823,12.9592079207921,6.94977892737238,6.56456448002589,-2.84762376237624,-2.83298355344638,-2.37015111634989,1.91209536220061,1.5169882647228,1.56413590018333,23.3614912452588,-0.00604817067522788,2373.53861386139,2394.92861484168,2352.95240790623,4.9100817512208,10892.5282982464,67.3636015169241,0,10892.5282982464,18.3701669444172,18.3701669444172,0.00279384374081405,18.6924486137612,25.4,1014.99,38,43.3371168931493 +46532,2873.72813693069,456.301691287129,225,18.7731584158416,19.3363531683168,6.13935643564356,-0.361188118811881,815.118811881188,1730.85445544555,1409.47128712871,20,40,11,32,5305623.94593844,395732.365750502,0,0,0,0,0,0,0,18.7731584158416,24539.4023321232,12.2787128712871,6.58484225962721,6.30073015033646,-0.361188118811881,-0.346547909882024,-0.286801411993315,1.40746967719177,1.11663624391401,1.07827586945966,23.710845103785,0.00957627023577746,3140.32574257426,3132.83527105186,3111.9051085805,4.79447661051056,14278.4507209121,3848.05874883716,0,14278.4507209121,18.7488395255367,18.7488395255367,0.153764881438637,19.0445672479776,25.4,1014.98,38,39.9015283011036 +46533,2873.72537425742,456.301978910891,225,19.347,19.92741,5.20604950495049,2.17415841584158,848.20297029703,2075.57128712871,1699.79900990099,20,40,11,32,5305618.82204885,395732.631596109,0,0,0,0,0,0,0,19.347,24544.6880370187,10.412099009901,5.58381243136208,5.53912386123259,2.17415841584158,2.18879862477144,1.75260060379883,0.803962518761909,0.63783518874036,0.73347470047901,24.6732242614647,0.0120963413504557,3775.3702970297,3771.42039015783,3552.71020476399,4.65296376535319,17334.2278341599,6344.98009577713,0,17334.2278341599,19.3927547299284,19.3927547299284,0.253599864936989,19.6376864775647,25.4,1014.97,38,31.1576020137937 +46534,2873.7227159406,456.303657227723,225,20.3708415841584,20.9819668316832,3.71682178217822,3.23613861386139,897.747524752475,2267.66831683168,1874.12376237624,20,40,11,32,5305613.86016373,395734.633367331,0,0,0,0,0,0,0,20.3708415841584,24550.2132104511,7.43364356435644,3.98652291968197,4.33063738381642,3.23613861386139,3.25077882279124,2.3668759961868,1.83173938390742,1.45323669747313,1.3457012514493,26.1144169309333,0.0128163616689353,4141.79207920792,4138.10522497794,3788.44424862364,4.41854520239751,19115.2334247723,6727.78693637597,0,19115.2334247723,20.3781271443976,20.3781271443976,0.268897929396901,20.3684709893496,25.4,1014.96,38,19.5390045584501 +46535,2873.72045673267,456.306655346535,225,21.500801980198,22.1458260396039,3.91709900990099,3.47435643564356,951.009900990099,2319.80198019802,1911.62574257426,20,40,11,32,5305609.60786279,395738.292620567,0,0,0,0,0,0,0,21.500801980198,24556.0221861111,7.83419801980198,4.20133272370203,4.56583691098959,3.47435643564356,3.48899664457342,2.54622540267794,1.82815886600952,1.45039604227355,1.48178198258457,27.6637566522375,0.00633617880261967,4231.42772277228,4050.37197333595,4011.35125766068,4.18683866567468,19607.3598000183,6208.21286522643,0,19607.3598000183,21.4410389177531,21.4410389177531,0.24822457493274,21.072125799072,25.4,1014.95,38,21.4543564370815 +46536,2873.71878554456,456.310727722772,225,21.7434257425743,22.3957285148515,4.40909900990099,3.5,920.064356435644,1936.99603960396,1600.14356435644,20,40,10.970297029703,32,5305606.42060254,395743.309796011,0,0,0,0,0,0,0,21.7434257425742,24562.0535916117,8.81819801980198,4.72903337534158,4.99833574794738,3.5,3.51464020892985,2.62927219513526,1.47158525907084,1.16750325986895,1.09164942933883,26.7635872500744,-0.0532095015356357,3537.1396039604,3685.87563964317,4104.09559591711,4.13928346423084,15431.3064545389,280.724052170685,0,15431.3064545389,21.7558448191353,21.7558448191353,0.0120344955287619,21.7345265071186,25.4,1014.94,38,25.6688571242613 +46537,2873.71754277228,456.315325247525,221.435643564356,22.0909306930693,22.7536586138614,5.98755445544555,3.5,750.247524752475,2415.93069306931,2004.59405940594,20,40,10.4653465346535,32,5305604.01510196,395748.995508215,0,0,0,0,0,0,0,22.0909306930693,24568.1239570682,11.9751089108911,6.42202517858926,6.3612764035415,3.5,3.51464020892985,2.80010370709546,0.969424618808736,0.769106917645423,0.824955740132607,21.8238158531139,-0.00648018286631558,4420.52475247525,4409.63058523674,4097.54440859282,4.07450128291197,15726.6617329306,4505.13490992149,0,15726.6617329306,22.1065597490442,22.1065597490442,0.180292781753421,22.3445385519066,25.4,1014.93,38,41.2091854478426 +46538,2873.71662227723,456.320241386139,176.881188118812,22.890900990099,23.577628019802,6.54057425742574,3.5,784.29702970297,2312.25148514852,1930.32178217822,20,40,10.3465346534653,32,5305602.19940533,395755.088916712,0,0,0,0,0,0,0,22.890900990099,24574.3703941694,13.0811485148515,7.01517336939115,6.8776966438762,3.5,3.51464020892985,2.81839688358412,1.36869406839448,1.08587305884187,1.01960680546923,22.8142758032143,0.0153364327836135,4242.57326732673,4281.31256739535,4217.20215102397,3.93210160454276,15223.4586118483,5862.4159377531,0,15223.4586118483,22.8861262621311,22.8861262621311,0.234298924941998,22.9725243255991,25.4,1014.92,38,48.6036871107905 +46539,2873.71607673267,456.325402475248,110.940594059406,23.7776633663367,24.4909932673267,6.44376237623762,3.5,820.915841584158,2305.96534653465,1903.0198019802,20,40,10.5445544554455,32,5305601.07274034,395761.500017149,0,0,0,0,0,0,0,23.7776633663366,24580.8476874312,12.8875247524752,6.91133659542891,6.84615748479681,3.5,3.51464020892985,2.80792791787429,0.790757340979155,0.62735867165548,0.74142545732661,23.8794738623729,0.0105122966498008,4208.98514851485,4194.71377315949,3990.11603072039,3.78567194134702,15216.5208152334,6636.88622820741,0,15216.5208152334,23.7871943927066,23.7871943927066,0.265338910128638,23.7976923951326,25.4,1014.91,38,47.182222559286 +46540,2873.71582940594,456.330846534654,64.6039603960396,24.7070099009901,25.4482201980198,5.8409603960396,3.5,857.618811881188,2054.1099009901,1685.07524752475,20,40,10.8217821782178,32,5305600.4921174,395768.273602959,0,0,0,0,0,0,0,24.7070099009901,24587.5864300055,11.6819207920792,6.26479391705471,6.38656091323761,3.5,3.51464020892985,2.72483209706129,1.08455534583462,0.860447530284254,0.838745155942752,24.9471199906143,0.0128163616689353,3739.18514851485,3721.27137535536,3337.90507331826,3.6430855739332,13591.2703420891,6151.94753234899,0,13591.2703420891,24.7056294480933,24.7056294480933,0.245909987038307,24.6306016046255,25.4012623762376,1014.90252475248,37.9936881188119,41.572790343267 +46541,2873.71586782178,456.336448811881,45,25.5175346534653,26.2830606930693,5.79914851485149,3.5,890.039603960396,1452.14455445545,1171.49207920792,20,40,11,32,5305600.43723595,395775.253846281,0,0,0,0,0,0,0,25.5175346534653,24594.5708446919,11.598297029703,6.21994806959689,6.39745327875032,3.5,3.51464020892985,2.71682045109198,0.989293596846901,0.784870256185841,0.744682006162445,25.8902026037588,0.0107283027453447,2623.63663366337,2559.59007940398,1945.17100546529,3.52713801865802,9580.56094381234,4224.07590466963,0,9580.56094381234,25.495020096069,25.495020096069,0.168821956453077,25.2493277652327,25.41,1014.91,37.95,41.0238532503675 +46542,2873.7159970297,456.342163366337,45,25.8001485148515,26.574152970297,6.38388118811881,3.5,901.945544554455,-65.6495049504952,-168.339603960396,20,40,11,32,5305600.54801515,395782.376994315,0,0,0,0,0,0,0,25.8001485148515,24601.7161264301,12.7677623762376,6.84711029056865,6.91117744547543,3.5,3.51464020892985,2.76245404395076,0.699176484332126,0.554701686259671,0.590195923672868,26.2365323769474,-0.00072002031847951,-233.989108910891,-158.438427605137,449.146435759615,3.48843911465783,-845.41819818984,-1063.69476910743,0,-845.41819818984,25.7588294284874,25.7588294284874,-0.0425380409328107,25.5010568868617,25.42,1014.92,37.9,47.924554735821 +46543,2873.71599366336,456.347848118812,59.2574257425743,25.405396039604,26.1675579207921,6.29913861386139,3.5,894.306930693069,-674.036633663367,-603.136633663366,20,40,11,32,5305600.41390061,395789.458582079,0,0,0,0,0,0,0,25.4053960396039,24608.8281872662,12.5982772277228,6.75621860020837,6.81643781585544,3.5,3.51464020892985,2.76384429431984,0.672607752027472,0.533623001633642,0.533482381845201,26.0143341066647,-0.00244806908283033,-1277.17326732673,-1279.10013724145,-1435.31941710334,3.5425841592486,-4707.90057110775,-2189.66320618865,0,-4707.90057110775,25.4253366336633,25.4253366336633,-0.0875540524349448,25.2300285561123,25.43,1014.93,37.85,46.5968875610584 +46544,2873.7158470297,456.35346019802,80.6435643564356,24.9439108910891,25.6922282178218,6.37083168316832,3.5,888.678217821782,-1586.34554455445,-1370.8495049505,20,40,11,32,5305600.01604928,395796.444846522,0,0,0,0,0,0,0,24.9439108910891,24615.8428402089,12.7416633663366,6.83311388352404,6.85097638067521,3.5,3.51464020892985,2.77871819813431,0.676454401957911,0.53667479649614,0.542797729486339,25.8506014862424,0.0111603149364324,-2957.19504950495,-2915.04776002353,-2811.47477018124,3.60890861382321,-11167.9523812245,-9275.29910877201,0,-11167.9523812245,24.8221170473483,24.8221170473483,-0.371165953228984,24.0982931226518,25.44,1014.94,37.8,47.1307993058801 +46545,2873.71560574257,456.358750792079,93.1188118811881,22.5192277227723,23.1948045544555,6.23946534653466,3.5,1012.18811881188,-2371.02871287129,-1980.89801980198,20,40,11,32,5305599.45010638,395803.02746046,0,0,0,0,0,0,0,22.5192277227722,24622.4709044829,12.4789306930693,6.6922153033511,6.60016830643927,3.5,3.51464020892985,2.82147798225731,0.653425058714362,0.518404136917462,0.529675382264601,29.4433588713915,0.0259927334971103,-4351.92673267327,-4416.94180962651,-3049.61928557913,4.00213773634386,-20439.4149709986,-19113.0552889254,0,-20439.4149709986,22.547430251936,22.547430251936,-0.764916838218478,22.5417563415349,25.45,1014.95,37.75,43.772434987205 +46546,2873.71532376238,456.363436435644,98.4653465346535,20.2507722772277,20.8582954455445,5.65368316831683,3.5,1013.72772277228,-1870.26336633664,-1537.86435643564,20,40,11,32,5305598.82239889,395808.855105871,0,0,0,0,0,0,0,20.2507722772277,24628.3734600659,11.3073663366337,6.06392742293569,5.97167673791239,3.5,3.51464020892985,2.82453797030048,0.669074898523077,0.530820161663889,0.5072950244634,29.4881441352009,-0.00136803860511107,-3408.12772277228,-3280.31487109107,-2030.11369469247,4.44611714346383,-17800.7431791397,-10498.5480690554,0,-17800.7431791397,20.3107784530928,20.3107784530928,-0.419915258852616,21.1892519163413,25.46,1014.96,37.7,35.829826883556 +46547,2873.71499277228,456.367815544554,109.158415841584,19.3559108910891,19.9365882178218,4.88277227722772,3.5,976.316831683168,-896.487128712871,-760.058415841585,20,40,11,32,5305598.11080787,395814.299252136,0,0,0,0,0,0,0,19.3559108910891,24633.8524889988,9.76554455445544,5.23707746443213,5.26442841942459,3.5,3.51464020892985,2.77299313292278,0.475564697224961,0.377296069572823,0.390339790633487,28.399905425851,-0.016128455133941,-1656.54554455446,-1340.81842956573,362.430484957661,4.6500075819277,-8747.29616941015,-2981.1402042566,0,-8747.29616941015,19.3972016468973,19.3972016468973,-0.118937141238877,20.4424865652951,25.47,1014.97,37.65,27.7970007541398 +46548,2873.71462881188,456.372118415842,112.722772277228,19.5577326732673,20.1444646534653,5.42217821782178,3.5,990.757425742574,2186.45544554456,2413.38811881188,20,40,11,32,5305597.33986416,395819.64732512,0,0,0,0,0,0,0,19.5577326732673,24639.2190023927,10.8443564356436,5.81562394075272,5.73495989094847,3.5,3.51464020892985,2.81990899826051,0.654554678329565,0.519300336831828,0.526386612881717,28.8199652796519,0.0207365851722098,4599.84356435644,4307.96997353201,3282.19100376523,4.60325034573605,24367.8877697418,7104.04025380754,0,24367.8877697418,19.6327187530634,19.6327187530634,0.2837657528129,20.5617550385134,25.48,1014.98,37.6,33.1164036047656 +46549,2873.71424336634,456.376631980198,114.504950495049,21.1658910891089,21.8008678217822,5.88139603960396,3.48881188118812,1133.68811881188,3228.05841584158,3532.85247524752,20,40,11,32,5305596.52438984,395825.257149071,0,0,0,0,0,0,0,21.1658910891089,24644.8630511826,11.7627920792079,6.30816366392132,6.21791071515124,3.48881188118812,3.50345209011797,2.81307203824185,0.728899551897146,0.578282907980645,0.571980556692596,32.97765060668,0.101378860841915,6760.91089108911,6842.35223997648,6937.19583229013,4.25474922335825,37526.4495409108,11853.6069263513,0,37526.4495409108,21.1490067640427,21.1490067640427,0.471994847999656,21.7093749064044,25.49,1014.99,37.55,38.8567310014108 +46550,2873.71386574257,456.381518316832,107.376237623762,23.0564653465346,23.7481593069307,5.84177227722772,3.5,1568.92079207921,5485.42574257426,4913.20099009901,20,40,11,32,5305595.71502773,395831.331612084,0,0,0,0,0,0,0,23.0564653465346,24650.9842019251,11.6835445544554,6.26566471020923,6.29259410047702,3.5,3.51464020892985,2.77414975814065,0.600358079225251,0.476302688045887,0.476363602011582,45.6380558746326,0.0941786576571197,10398.6267326733,10317.0090187237,9749.76574656862,3.90853708380806,74366.6306103792,19335.9608277293,0,74366.6306103792,23.1667100284286,23.1667100284286,0.771053219183304,23.8945384246922,25.4987376237624,1014.99747524752,37.510099009901,39.8760238257526 +46551,2873.71357960396,456.387007128713,80.6435643564356,26.7193663366337,27.5209473267327,6.71910891089109,3.5,1809.72277227723,7440.0396039604,6115.14059405941,20,40,11,32,5305595.06158793,395838.159660804,0,0,0,0,0,0,0,26.7193663366336,24657.8779777777,13.4382178217822,7.206662907956,7.24911640229364,3.5,3.51464020892985,2.77215554509331,0.660409363222826,0.523945235016459,0.529951818441532,52.6427015409286,0.0609857209752144,13555.1801980198,13151.6433486913,11315.8435450391,3.37432063693655,96167.8495504394,26418.7434188415,0,96167.8495504394,26.7008956965003,26.7008956965003,1.0551920291039,26.6903689456865,25.5,1014.99,37.53,52.6613836554995 +46552,2873.71351217822,456.393345148515,46.7821782178218,30.1190396039604,31.0226107920792,6.96389108910891,3.5,1801.15841584158,6194.20891089109,4891.09405940594,20,40,11,32,5305594.79419527,395846.052912013,0,0,0,0,0,0,0,30.1190396039604,24665.7998413915,13.9277821782178,7.46920704404399,7.65233670398243,3.5,3.51464020892985,2.72666965397405,1.05368943845969,0.835959620217935,0.82731863993252,52.3935745107347,-0.100586838491587,11085.302970297,11189.9610136261,11851.3334629346,2.99044654214195,68988.5477159056,21100.7760064843,0,68988.5477159056,30.1059677482599,30.1059677482599,0.846171127013685,29.9881010818416,25.5,1014.98,37.56,58.6958775804071 +46553,2873.71383237624,456.400391980198,45,33.1646435643564,34.1595828712871,7.31729702970297,3.5,1657.43069306931,6154.37722772277,4910.61188118812,20,40,10.7326732673267,32,5305595.22889097,395854.842113726,0,0,0,0,0,0,0,33.1646435643564,24674.588466144,14.6345940594059,7.84825693254963,8.12767928179012,3.5,3.51464020892985,2.7005936679326,1.48014494846057,1.17429421214602,1.12576732082584,48.2127045294516,0.0540015238859632,11064.9891089109,11265.2020782276,11114.3581104134,2.71571655953197,57924.6619846548,21508.7346862058,0,57924.6619846548,33.1581648857955,33.1581648857955,0.859334324521569,33.1299997958546,25.5,1014.97,37.59,66.1997358557365 +46554,2873.71473950495,456.40796029703,45,36.1134158415842,37.1968183168317,8.25522772277228,3.46049504950495,1802.92574257426,6051.16237623762,4786.25544554455,20,40,10.039603960396,32,5305596.73907446,395864.30056424,0,0,0,0,0,0,0,36.1134158415841,24684.2249245048,16.5104554455446,8.85424603402404,9.09485104666682,3.46049504950495,3.4751352584348,2.68904554305976,1.35284110138446,1.07329588021854,1.10443579282964,52.4449839614742,0.0404651418985484,10837.4178217822,10797.9385256347,10515.7573488491,2.49325967777542,56658.7856634617,19201.3613280935,0,56658.7856634617,36.0947594353494,36.0947594353494,0.767292694615989,36.0382403461135,25.5,1014.96,37.62,82.8964305481221 +46555,2873.71632346535,456.415918811881,45,38.7737227722772,39.9369344554455,8.46770297029703,3.5,1920.94554455446,5011.17425742574,4017.01287128713,20,40,10.5445544554455,32,5305599.4942272,395874.267713203,0,0,0,0,0,0,0,38.7737227722772,24694.633006353,16.9354059405941,9.08213897421934,9.42814425966864,3.5,3.51464020892985,2.69458664210339,1.81370466858085,1.43892859754839,1.46884017993789,55.8780408399845,-0.00684019302555533,9028.18712871287,9278.09564748554,9507.14763442051,2.32197358498375,46914.6316929562,16787.1047372418,0,46914.6316929562,38.7332290951867,38.7332290951867,0.671587208225772,38.6485096563436,25.5,1014.95,37.65,89.1060998735818 +46556,2873.71859425743,456.424120990099,45,40.9817524752475,42.2112050495049,8.51455445544554,3.03544554455445,1529.69306930693,4899.26435643564,3953.27623762376,20,40,10.4356435643564,32,5305603.51616828,395884.561344292,0,0,0,0,0,0,0,40.9817524752475,24705.7136465345,17.0291089108911,9.13239011089241,9.59499591692904,3.03544554455445,3.05008575348431,2.31286127383427,2.33282023449753,1.85077637308203,1.79465789268185,44.4969676739063,-0.109371086377037,8852.5405940594,8736.32759533379,8832.14903970088,2.19678504825948,34693.7565181206,15999.0068617936,0,34693.7565181206,41.0051058719733,41.0051058719733,0.641656863706171,41.0202915659662,25.5,1014.94,37.68,92.3174055053769 +46557,2873.72146950495,456.432432178218,45,43.306801980198,44.606006039604,9.70494059405941,2.68148514851485,1519.84653465347,4990.83663366336,4035.84752475248,20,40,10.9306930693069,32,5305608.65533628,395895.010955221,0,0,0,0,0,0,0,43.306801980198,24717.4277336358,19.4098811881188,10.4091534057079,10.7414041238124,2.68148514851485,2.69612535744471,2.08305075403735,1.75920791338916,1.39569281562791,1.43518837916526,44.2105435912151,0.0312488818220107,9026.68415841585,8942.52718360945,8873.09613392356,2.07869491996136,33170.4200044633,16012.6769004686,0,33170.4200044633,43.3208340358788,43.3208340358788,0.64009383611628,43.3214620174257,25.5,1014.93,37.71,115.70659208144 +46558,2873.72499108911,456.440800990099,45,45.6375841584158,47.0067116831683,10.201099009901,3.24257425742574,1612.96534653465,4817.68316831683,3856.15544554455,20,40,10.7128712871287,32,5305614.99046491,395905.553925558,0,0,0,0,0,0,0,45.6375841584158,24729.787811111,20.402198019802,10.9413142174072,11.2969005930174,3.24257425742574,3.2572144663556,2.51062134675266,1.87926264837834,1.49093996056809,1.48319905021255,46.919260029335,0.0251287091149349,8673.83861386138,8670.72238015881,8661.91274418788,1.97243269400039,32099.8179458441,16497.7733150723,0,32099.8179458441,45.6513157533574,45.6513157533574,0.65957585857596,45.6719628303453,25.5,1014.92,37.74,127.777098640578 +46559,2873.72904653465,456.449303069307,45,48.0679207920792,49.5099584158416,10.8480693069307,2.7890099009901,1700.68316831683,4630.48910891089,3595.17623762376,20,40,10.960396039604,32,5305622.31151249,395916.280722639,0,0,0,0,0,0,0,48.0679207920792,24742.8073529977,21.6961386138614,11.6352301672731,11.9872425564381,2.7890099009901,2.80365010991995,2.16318268989006,1.85910323385091,1.47494620007563,1.55765982996122,49.4708680339627,0.024984705051239,8225.66534653466,8233.72434075091,8246.74349090429,1.87266845966482,30475.9488822993,15629.392327588,0,30475.9488822993,48.0375087736496,48.0375087736496,0.624842063414258,47.9986700487576,25.5,1014.91,37.77,143.968862146422 +46560,2873.73342762376,456.458092277228,45,50.2439603960396,51.7512792079208,10.912099009901,2.60138613861386,1778.29702970297,4346.91683168317,3563.27920792079,20,40,11,32,5305630.22933283,395927.376054775,0,0,0,0,0,0,0,50.2439603960395,24756.4581129812,21.824198019802,11.7039060127644,12.1665535735206,2.60138613861386,2.61602634754372,2.00519070959581,2.37575409670073,1.88483856810066,1.79441949512705,51.7285637445871,0.022032621745473,7910.19603960397,7900.86404274091,7894.63881700209,1.79161133940969,29317.6278676746,15355.7289508762,0,29317.6278676746,50.2307792373296,50.2307792373296,0.613934908342318,50.2262762799457,25.5012623762376,1014.90126237624,37.7911633663366,148.480646928616 +46561,2873.73810940594,456.467144554456,45,52.3673465346535,53.938366930693,11.7495148514851,2.78960396039604,1857.91584158416,4101.22277227723,3448.0900990099,20,40,9.97029702970297,32,5305638.69825154,395938.809112193,0,0,0,0,0,0,0,52.3673465346534,24770.7163638338,23.4990297029703,12.6020866739376,13.000491808011,2.78960396039604,2.80424416932589,2.16044787445215,2.11096180754096,1.67476180980438,1.71346733595469,54.0445811010082,0.0187205282804672,7549.31287128713,7547.82330163709,7549.27869729016,1.71889647715315,28048.4974891356,14569.3129879862,0,28048.4974891356,52.3695896480736,52.3695896480736,0.582521866047994,52.3668463434449,25.51,1014.9,37.76,169.347041977336 +46562,2873.74299841584,456.476544158416,45,54.4042871287129,56.0364157425743,12.2535346534653,2.59089108910891,1929.06435643564,3784.78118811881,3391.88514851485,20,40,9.16831683168317,32,5305647.5432484,395950.681730377,0,0,0,0,0,0,0,54.4042871287128,24785.5542990648,24.5070693069307,13.1426793120356,13.5463073315413,2.59089108910891,2.60553129803876,2.01146220051066,2.14009632287357,1.69787609517511,1.65815055038706,56.1142075044457,0.0114483230638242,7176.66633663366,7089.05748456034,7036.80188069156,1.65447020197469,26648.9257045352,13365.0712433451,0,26648.9257045352,54.399002940888,54.399002940888,0.534449237002896,54.3804698491673,25.52,1014.9,37.72,183.832953781355 +46563,2873.74806693069,456.486313069307,45,56.2173366336634,57.9038567326733,12.7564455445544,1.69970297029703,1769.61881188119,3300.12376237624,3130.1396039604,20,40,9.24752475247525,32,5305656.71248038,395963.020360497,0,0,0,0,0,0,0,56.2173366336633,24800.9261218371,25.5128910891089,13.6820825741176,14.0784593320866,1.69970297029703,1.71434317922688,1.32596235503847,2.11167505957472,1.67532767852954,1.68634352947703,51.4761246209282,-0.146308128715036,6430.26336633664,6506.80608763847,6582.06100405772,1.60106490195044,21040.8813738951,12156.2966171403,0,21040.8813738951,56.2162417410057,56.2162417410057,0.487919212713356,56.2200846221303,25.53,1014.9,37.68,198.570837717976 +46564,2873.75329821782,456.496421287129,45,58.018198019802,59.7587439603961,12.6514587458416,0.591881188118812,1478.30198019802,3375.49108910891,3140.85742574257,20,40,9.52475247524752,32,5305666.17562937,395975.787067923,0,0,0,0,0,0,0,58.0181980198019,24816.7926072331,25.3029174916832,13.569477691812,14.0928493994853,0.591881188118812,0.606521397048669,0.468071401947952,2.66442475873307,2.11385957580231,2.02983328721066,43.0020614886791,0.0125283535415435,6516.34851485149,6552.54544652485,6554.1031784727,1.55137278225175,17387.5844000363,12383.3666266859,0,17387.5844000363,58.0103104597588,58.0103104597588,0.495214249147694,58.0013543336395,25.54,1014.9,37.64,199.025527796416 +46565,2873.75868772277,456.50683029703,45,59.7658118811881,61.5587862376238,13.0020297029703,1.20920792079208,1523.14356435644,3438.31485148515,3082.96732673267,20,40,9.52475247524752,32,5305675.92512648,395988.933717829,0,0,0,0,0,0,0,59.765811881188,24833.1524533827,26.0040594059406,13.9454868839314,14.4912244002399,1.20920792079208,1.22384812972194,0.939868705952559,2.77987744229699,2.2054556172757,2.33129781555257,44.3064502976366,0.0138243901148066,6521.28217821782,6507.58397215959,6497.42299813856,1.5060096810168,17403.1887110115,12307.5387017288,0,17403.1887110115,59.7672799725516,59.7672799725516,0.492168523783064,59.7667929674747,25.55,1014.9,37.6,210.283615645893 +46566,2873.76427277228,456.517531386139,45,61.4614851485148,63.3053297029703,14.1389130909901,0.736039603960396,1565.40099009901,3399.64851485149,2981.52871287129,20,40,9,32,5305686.03031177,396002.450698563,0,0,0,0,0,0,0,61.4614851485148,24849.9983756874,28.2778261819802,15.1648651455091,15.5557814787335,0.736039603960396,0.750679812890253,0.58582132149526,2.18613211766855,1.73439925288038,1.63145134920861,45.5356689853448,0.00633617880261968,6381.17722772277,6388.59772571317,6388.4165732477,1.46442004677495,17019.2867415867,11638.9479981248,0,17019.2867415867,61.4771461621409,61.4771461621409,0.465496302105459,61.4813729237138,25.56,1014.9,37.56,243.319232983017 +46567,2873.77001336634,456.528508415842,45,63.1523069306931,65.0468761386139,16.1496138613861,1.36930693069307,1607.11881188119,3273.70693069307,2976.38514851485,20,40,9,32,5305696.41745632,396016.316566525,0,0,0,0,0,0,0,63.152306930693,24867.3123874586,32.2992277227723,17.3214669885785,17.3634940100638,1.36930693069307,1.38394713962293,1.0935109471809,1.12042510063826,0.888905314436281,0.938924410669992,46.7491912301102,0.0183605181212275,6250.09207920792,6240.8586609156,6240.90726955071,1.42519021404702,16655.3640761653,11212.8586766372,0,16655.3640761653,63.1444956376825,63.1444956376825,0.448338398196258,63.1418473291327,25.57,1014.9,37.52,301.795694164369 +46568,2873.77588386139,456.539778415842,45,64.7645841584158,66.7075216831683,16.5061485148515,0.923366336633664,1648.34158415842,3133.00693069307,2958.75445544554,20,40,9,32,5305707.03867974,396030.551676153,0,0,0,0,0,0,0,64.7645841584158,24885.0789796203,33.012297029703,17.7038726165576,17.7589569179827,0.923366336633664,0.938006545563522,0.746559453147206,1.25482269088792,0.995531569196467,0.968770473786369,47.9483130685059,0.011664329159368,6091.76138613861,6088.28732477209,6087.11741843489,1.38971450879471,16236.11900762,11146.9276414614,0,16236.11900762,64.7593144789725,64.7593144789725,0.445765121066557,64.7545541632717,25.58,1014.9,37.48,315.776235939975 +46569,2873.7818880198,456.55134980198,45,66.3285544554455,68.3184110891089,17.2413564356436,-0.496336633663366,1689.82673267327,3026.98613861386,2890.82574257426,20,40,9,32,5305717.90076509,396045.166632881,0,0,0,0,0,0,0,66.3285544554455,24903.2891245048,34.4827128712871,18.4924289151197,18.4749827083245,-0.496336633663366,-0.481696424733509,-0.387496647205478,1.17477026443157,0.932020829147859,0.936799661040391,49.1550671222776,0.00662418693001148,5917.81188118812,5930.98023723164,5933.04742595288,1.35694165583242,15788.2249773637,10899.1785057022,0,15788.2249773637,66.3300799921575,66.3300799921575,0.435903615113984,66.3308894146667,25.59,1014.9,37.44,341.760735892322 +46570,2873.78802752475,456.563211188119,45,67.8574257425743,69.8931485148515,17.4170891089109,-0.404257425742574,1726.18316831683,3010.99306930693,2801.11782178218,20,40,9,32,5305729.00708846,396060.147305072,0,0,0,0,0,0,0,67.8574257425742,24921.9319449943,34.8341782178218,18.6809131553586,18.7119656760374,-0.404257425742574,-0.389617216812717,-0.311971982828939,1.11893736545787,0.887724998404838,0.903616737844617,50.2126329660603,0.0082082316306664,5812.11089108911,5806.12787961965,5806.38157323624,1.32635707178959,15482.9014296089,10383.3715484658,0,15482.9014296089,67.8642049799038,67.8642049799038,0.415256129573359,67.8629762133017,25.5987376237623,1014.9,37.4037871287129,350.458206955591 +46571,2873.79430306931,456.57534029703,45,69.334504950495,71.4145400990099,17.5586237623762,0.741485148514851,1766.66336633663,2951.29306930693,2741.84554455446,20,40,9,32,5305740.35943621,396075.465960968,0,0,0,0,0,0,0,69.334504950495,24940.9909541253,35.1172475247525,18.8327178888205,18.9170509404834,0.741485148514851,0.75612535744471,0.598895997763523,1.26221310581494,1.00139486081745,0.958367463361935,51.3901541949017,0.0148324185606779,5693.13861386139,5691.62684050583,5691.25242503658,1.29809358708736,15191.0099837575,10136.7723525226,0,15191.0099837575,69.3418967748259,69.3418967748259,0.405327909028521,69.3412699099307,25.5999999999999,1014.9,37.39,358.240260218284 +46572,2873.80069990099,456.58775009901,45,70.8037623762376,72.9278752475248,18.6357128712871,2.04445544554455,1802.09900990099,2886.71485148515,2683.58415841584,20,40,9,32,5305751.93019343,396091.138261689,0,0,0,0,0,0,0,70.8037623762375,24960.4573910064,37.2714257425743,19.9879630608655,19.91773182026,2.04445544554455,2.05909565447441,1.63969104188977,1.26215530477941,1.00134900353736,1.08096889630353,52.4209352828369,0.016056453102093,5570.29900990099,5570.50601901774,5570.63248243585,1.27115323471591,14846.8762564036,9684.35609266687,0,14846.8762564036,70.7856434663267,70.7856434663267,0.387219662560307,70.7817350442495,25.5999999999999,1014.9,37.38,397.160078781382 +46573,2873.80724039604,456.600394455446,45,72.1579405940594,74.3226788118812,20.2187326732673,2.07584158415842,1838.0495049505,2864.31089108911,2595.97722772277,20,40,9,32,5305763.76184609,396107.107474669,0,0,0,0,0,0,0,72.1579405940593,24980.3125624036,40.4374653465347,21.6858504207502,21.3422772058885,2.07584158415842,2.09048179308827,1.6848540243071,2.02505404194175,1.60660565251284,1.57123778377727,53.4666927933966,0.0138963921466545,5460.28811881188,5457.81603764337,5457.05939801981,1.24730177489682,14565.4853828671,9559.22000528645,0,14565.4853828671,72.1578315851386,72.1578315851386,0.382235129453541,72.156812910891,25.5999999999999,1014.9,37.37,455.965173603045 +46574,2873.81392435644,456.613233465346,45,73.4880198019802,75.6926603960396,20.7283663366337,2.84821782178218,1869.26237623762,2849.86534653465,2475.49702970297,20,40,9,32,5305775.85492456,396123.323884743,0,0,0,0,0,0,0,73.4880198019801,25000.5467659515,41.4567326732673,22.2324642749287,21.8515923548494,2.84821782178218,2.86285803071203,2.30669619517102,2.2208405858215,1.76193571362151,1.72900358543106,54.3746384149992,0.00252007111467828,5325.36237623762,5324.5380648956,5325.29052999189,1.22471728247796,14185.2466373329,8731.32548657367,0,14185.2466373329,73.4802946769924,73.4802946769924,0.349229106078933,73.4785881511432,25.5999999999999,1014.9,37.36,477.834773465459 +46575,2873.82077079208,456.626270396039,45,74.7301386138614,76.9720427722772,20.3334059405941,2.10108910891089,1901.60396039604,2774.2495049505,2421.88118811881,20,40,9,32,5305788.24457047,396139.792192,0,0,0,0,0,0,0,74.7301386138613,25021.133741749,40.6668118811881,21.8088446441118,21.5874364615802,2.10108910891089,2.11572931784075,1.69829279961794,1.68308765707379,1.33530171912673,1.35314582768121,55.3154169631246,0.00165604673250287,5196.13069306931,5196.97216939516,5197.37413750542,1.20436068739899,13846.2067574672,8624.72965183138,0,13846.2067574672,74.7280515635721,74.7280515635721,0.344972987397739,74.7265886127955,25.5999999999999,1014.9,37.35,466.538193238396 +46576,2873.82776019802,456.639504950495,45,75.9299801980198,78.2078796039604,20.552702970297,2.99653465346535,1928.16831683168,2703.22574257426,2383.38712871287,20,40,9,32,5305800.89466272,396156.511372202,0,0,0,0,0,0,0,75.9299801980197,25042.0624066555,41.1054059405941,22.0440543706909,21.84190400077,2.99653465346535,3.0111748623952,2.40854240321731,1.70998617628741,1.35664204492435,1.34511380294297,56.0881427689168,0.0138243901148066,5086.61287128713,5089.72087050289,5089.81247045372,1.18532528099123,13526.5478828495,8151.27821011323,0,13526.5478828495,75.9286422899714,75.9286422899714,0.325918482937421,75.9284714807261,25.5999999999999,1014.9,37.34,477.568800534482 +46577,2873.8348750495,456.652908316832,45,77.0944653465346,79.4072993069307,21.3923366336634,2.62851485148515,1960.27227722772,2648.41782178218,2335.9396039604,20,40,9,32,5305813.77338734,396173.444946746,0,0,0,0,0,0,0,77.0944653465346,25063.3179501649,42.7846732673267,22.944613783896,22.6237753785516,2.62851485148515,2.643155060415,2.12332402508655,2.0024756509597,1.58869276237504,1.63141494112326,57.0220091219847,-0.00496814019750861,4984.35742574257,4951.51791981178,4954.24703393416,1.16741974060339,13271.9098352188,7852.30779514903,0,13271.9098352188,77.0890988138417,77.0890988138417,0.314139953599311,77.0875059659812,25.5999999999999,1014.9,37.33,512.25643273105 +46578,2873.84210188119,456.666491980198,45,78.1812574257426,80.5266951485148,21.8129405940594,2.05841584158416,1830.20792079208,2621.18712871287,2342.23762376238,20,40,9,32,5305826.85554638,396190.606770409,0,0,0,0,0,0,0,78.1812574257425,25084.8863397688,43.6258811881188,23.3957377350813,23.0442144334294,2.05841584158416,2.07305605051401,1.66795442446694,2.13462154517881,1.69353260181223,1.66822134547221,53.2385903565023,-0.0717140237205591,4963.42475247525,4987.082629154,4979.78741104069,1.15118975994853,12137.057924891,7778.03609318364,0,12137.057924891,78.1927703166355,78.1927703166355,0.311755928068053,78.1946062062588,25.5999999999999,1014.9,37.32,531.536437625627 +46579,2873.84943940594,456.680257920792,45,79.3208316831683,81.7004566336634,20.8534752475247,2.11534653465347,1721.9801980198,2552.30099009901,2308.01287128713,20,40,9,32,5305840.13871326,396207.999263636,0,0,0,0,0,0,0,79.3208316831682,25106.7660511275,41.7069504950495,22.3666513761546,22.2930413706343,2.11534653465347,2.12998674358332,1.69527064984143,1.4326882602227,1.13664376825989,1.14431644907977,50.0903735159824,0.00129603657326312,4860.31386138614,4874.28943240859,4879.89354245159,1.1346466380077,11049.5976019539,7484.68698714075,0,11049.5976019539,79.3163862366434,79.3163862366434,0.29937696739972,79.3152548847804,25.5999999999999,1014.9,37.31,497.438512897255 +46580,2873.85687415842,456.694222277228,45,80.3961980198019,82.808083960396,20.6153564356436,1.96693069306931,1747.14356435644,2474.56534653465,2334.08415841584,20,40,9,32,5305853.59758607,396225.642078042,0,0,0,0,0,0,0,80.3961980198018,25128.9489956819,41.2307128712871,22.1112541155909,22.1517970221647,1.96693069306931,1.98157090199916,1.57178040054785,1.4735174027973,1.16903615379085,1.17710233609577,50.8223461717487,0.00446412597457296,4808.6495049505,4808.47947260073,4808.71742686347,1.11947093599739,10943.4152932901,7632.34499287246,0,10943.4152932901,80.3925865111263,80.3925865111263,0.305257382173858,80.3930547321174,25.6012623762376,1014.9,37.3088366336634,491.154403522882 +46581,2873.86438188119,456.708390594059,45,81.4677821782178,83.9118156435644,20.1790891089109,1.79168316831683,1771.25247524752,2421.79900990099,2298.93663366337,20,40,9,32,5305867.18710981,396243.541309091,0,0,0,0,0,0,0,81.4677821782177,25151.4339340208,40.3581782178218,21.6433302281806,21.8425367597827,1.79168316831683,1.80632337724669,1.42354074408331,1.66545069006443,1.321309178531,1.34272845261571,51.5236459619478,0.00928826210838567,4720.73564356436,4681.30648955985,4674.96379792455,1.10474277520753,10748.4378257417,7225.97750396692,0,10748.4378257417,81.4691611606704,81.4691611606704,0.288962683397029,81.4681963217644,25.61,1014.9,37.36,477.543403751904 +46582,2873.87195940594,456.722772277228,45,82.4600792079208,84.9338815841584,20.3929306930693,0.651881188118811,1790.17821782178,2008.22673267327,1933.49306930693,20,40,9,32,5305880.90120738,396261.708564936,0,0,0,0,0,0,0,82.4600792079206,25174.2061576731,40.7858613861386,21.8726886495384,22.0812135411898,0.651881188118811,0.66652139704867,0.52166293127944,1.7988725451465,1.42716131980919,1.42567752917579,52.0741734974572,0.00288008127391804,3941.7198019802,3950.38474659347,3950.35523662458,1.09144603111126,8960.89293812318,5931.24145196318,0,8960.89293812318,82.4407963925104,82.4407963925104,0.237226197867328,82.4383763284584,25.62,1014.9,37.42,488.341622679922 +46583,2873.87960851485,456.737318910891,45,83.1590891089108,85.6538617821782,21.220201870297,1.92712871287129,1802.55445544554,1559.4297029703,1525.3702970297,20,40,9,32,5305894.74426645,396280.083591631,0,0,0,0,0,0,0,83.1590891089107,25197.2155567655,42.440403740594,22.759988526176,22.8252366222577,1.92712871287129,1.94176892180114,1.54099184188922,1.99781409608062,1.58499445099021,1.52937752531297,52.434183656697,0.0144724084014381,3084.8,3102.92383099696,3106.27576528295,1.08226753352649,7002.75818716228,3927.9782467226,0,7002.75818716228,83.148428487403,83.148428487403,0.15700121992397,83.1461738577526,25.63,1014.9,37.48,522.914011151196 +46584,2873.88728613861,456.751978415842,45,83.6529504950495,86.162539009901,22.7819405940594,0.887722772277228,1816.26732673267,1342.03861386139,1298.12178217822,20,40,9,32,5305908.63767565,396298.600079351,0,0,0,0,0,0,0,83.6529504950494,25220.3843649339,45.5638811881188,24.4350506038592,24.1820070742133,0.887722772277228,0.902362981207085,0.73175228764424,1.91178409995573,1.516741320359,1.56628347042769,52.8330749131347,0.0173524896753562,2640.1603960396,2647.97983531026,2649.13528200801,1.07587760090543,6002.83665333214,3009.86886946644,0,6002.83665333214,83.6394621115575,83.6394621115575,0.12025237177181,83.6384638863868,25.64,1014.9,37.54,585.409055266408 +46585,2873.89501356436,456.766715148515,45,84.0185643564356,86.5391212871287,24.0782178217822,0.921980198019802,1818.87623762376,1223.95940594059,1161.51089108911,20,40,9,32,5305922.62166515,396317.214335098,0,0,0,0,0,0,0,84.0185643564355,25243.6742592408,48.1564356435643,25.8253886887673,25.306685191555,0.921980198019802,0.93662040694966,0.762282950230078,2.81796420038232,2.23567229276112,2.19285863530828,52.9089650547024,-0.00525614832490041,2385.4702970297,2381.01264581904,2381.07814379569,1.07119556871367,5408.28853741449,2412.02225651886,0,5408.28853741449,84.013267718851,84.013267718851,0.096523761287049,84.0132245766631,25.65,1014.9,37.6,640.866033440065 +46586,2873.90279336633,456.781522277228,45,84.2955247524752,86.8243904950495,24.1640099009901,1.98544554455446,1825.85643564356,1087.84158415842,1061.24752475248,20,40,9,32,5305936.70115718,396335.917932975,0,0,0,0,0,0,0,84.2955247524751,25267.0566684817,48.3280198019802,25.9174060385713,25.3956482587673,1.98544554455446,2.00008575348431,1.61856222427735,2.8153988600978,2.23363704327326,2.25937221673444,53.1120107845136,0.000864024382175413,2149.08910891089,2145.86078815802,2145.79707596928,1.06767352609919,4874.5414366837,1553.67518280816,0,4874.5414366837,84.298962258602,84.298962258602,0.0621398773540886,84.298808735079,25.66,1014.9,37.66,645.305171238057 +46587,2873.91057564357,456.796362178218,45,84.5405643564356,87.0767812871288,24.2371188118812,1.6829702970297,1829.43564356436,990.871287128714,935.356435643565,20,40,9,32,5305950.78456056,396354.662344875,0,0,0,0,0,0,0,84.5405643564355,25290.5060835532,48.4742376237624,25.995819900193,25.4713489700061,1.6829702970297,1.69761050595956,1.37155668907635,2.85805354001074,2.26747774501995,2.24823513262943,53.2161257225657,-0.00597616864337992,1926.22772277228,1923.83172238016,1923.98394841086,1.0645791008887,4364.89463611625,1379.99085270981,0,4364.89463611625,84.5225649446132,84.5225649446132,0.0552478515177845,84.5219869643572,25.67,1014.9,37.72,648.956605587733 +46588,2873.91839316832,456.811234653465,45,84.6606435643564,87.2004628712871,24.2287227722772,3.22831683168317,1832.27227722772,882.856435643564,838.425742574257,20,40,9,32,5305964.93258566,396373.448413869,0,0,0,0,0,0,0,84.6606435643563,25314.0063035202,48.4574455445545,25.9868146246438,25.4701518081738,3.22831683168317,3.24295704061302,2.62011283089487,2.88685453379467,2.29032742628913,2.29224699971337,53.2986400510635,0.00100802844587132,1721.28217821782,1738.45835702382,1739.08171194156,1.06306893482393,3901.18657074593,965.763218197658,0,3901.18657074593,84.6749542201744,84.6749542201744,0.0386223028243394,84.6749960589916,25.68,1014.9,37.78,648.976046249057 +46589,2873.92621366337,456.826116435643,45,84.7883267326733,87.3319765346535,23.7406039603961,1.62465346534653,1834.89108910891,828.863366336633,814.929702970297,20,40,9,32,5305979.08596472,396392.246082613,0,0,0,0,0,0,0,84.7883267326732,25337.5452201044,47.4812079207921,25.46327678906,25.0633797772319,1.62465346534653,1.63929367427639,1.32227543362767,2.32569104740897,1.84512033031129,1.89852912333151,53.3748182007586,0.00907225601284179,1643.79306930693,1641.34105479855,1641.31098538425,1.06146707837939,3725.50978850817,576.400215820935,0,3725.50978850817,84.7843765317125,84.7843765317125,0.0229824962694311,84.7845190947665,25.69,1014.9,37.84,628.524423960996 +46590,2873.93403465347,456.841011485149,45,84.869693069307,87.4157838613861,23.4629306930693,0.495544554455445,1837.32178217822,789.296039603961,791.464356435644,20,40,9,32,5305993.24002431,396411.060201856,0,0,0,0,0,0,0,84.8696930693068,25361.1088189493,46.9258613861386,25.1654549107852,24.8328193103065,0.495544554455445,0.510184763385303,0.412149558556453,1.99329534199478,1.58140943266167,1.53243113233208,53.4455241960333,0.00417611784718115,1580.7603960396,1578.36544967157,1577.86116157706,1.0604497350217,3583.71901112883,717.796997247963,0,3583.71901112883,84.8775915106361,84.8775915106361,0.0286777440120168,84.8776868458273,25.6987376237624,1014.9,37.8810643564356,617.135389115972 +46591,2873.94186930693,456.855938811881,45,84.9546930693069,87.503333861386,23.0936138613861,-0.0364356435643564,1839.30198019802,720.406146869307,710.021434348515,20,40,9,32,5306007.4187318,396429.914888891,0.643564356435644,0.643564356435644,3414756.92654092,255131.953860997,4.87391840596465,0,0,84.9546930693068,25384.6979431792,46.1872277227723,24.7693396003367,24.5224127481471,-0.0364356435643564,-0.021795434634499,-0.0159719948175302,1.90520341944439,1.51152044314391,1.5612432649645,53.5031258215116,0.00460813003826886,1430.42758121782,1434.3741101083,1435.03090332833,1.05938860344695,3243.06589569041,314.191008849566,0,3243.06589569041,84.9566874816194,84.9566874816194,0.0125300896426413,84.9565766148042,25.7,1014.9,37.81,602.04296260822 +46592,2873.94971623763,456.870870990099,45,85.0196336633662,87.5702226732674,23.4420297029703,1.64851485148515,1839.69801980198,690.703430652475,664.0210477,20,40,9,32,5306021.62013304,396448.775934459,1,1,5306019.13352368,396450.801660201,26.9161610415736,0,0,85.0196336633662,25408.3044540703,46.8840594059406,25.1430372967707,24.8229473863173,1.64851485148515,1.66315506041501,1.33632189130472,2.00920305418752,1.59403004416047,1.52477338405245,53.5146461466073,-0.0129603657326312,1354.72447835248,1354.52623228109,1354.51043782198,1.05857909501412,3069.77712205611,220.882845100796,0,3069.77712205611,85.0083979021663,85.0083979021663,0.00894111688397554,85.0078176331917,25.7,1014.9,37.72,616.576913726853 +46593,2873.95754782178,456.885811485149,45,85.0451683168316,87.5965233663366,23.7664257425742,1.93257425742574,1840.07920792079,674.246129983168,655.85406550495,20,40,9,32,5306035.79298195,396467.646736755,1,1,5306034.02786682,396469.08469448,50.4981626570994,0,0,85.0451683168315,25431.920090539,47.5328514851485,25.4909722591453,25.0998795294963,1.93257425742574,1.9472144663556,1.57015138923259,2.33573518338642,1.85308898956766,1.86818752343232,53.5257344595119,0.00338409549685369,1330.10019548812,1330.93522059575,1331.00174786605,1.05826326760506,3013.70406798311,-49.41719299981,0,3013.70406798311,85.0218653073227,85.0218653073227,-0.00200416081212766,85.0213245638848,25.7,1014.9,37.63,630.475241969229 +46594,2873.96538089109,456.900773465347,45,85.0239405940594,87.5746588118812,23.5243861386139,1.66970297029703,1839.5495049505,658.481933933663,665.289767188119,20,40,9,32,5306049.96816243,396486.544258205,1,1,5306048.93622378,396487.384930935,74.1023521507351,0,0,85.0239405940593,25455.5400073432,47.0487722772277,25.2313697048109,24.892782141599,1.66970297029703,1.68434317922689,1.35553288057198,2.07881487588853,1.64925758076454,1.69109487893393,53.5103260246964,0.013176371828175,1323.77170112178,1324.8722791744,1324.95996330863,1.05852944339716,2999.25567423096,320.344601003848,0,2999.25567423096,85.0254493677089,85.0254493677089,0.0127057260181417,85.0254748703441,25.7,1014.9,37.54,619.808343316609 +46595,2873.97322811881,456.915743465346,45,85.0056831683168,87.5558536633663,23.5230396039604,2.17495049504951,1839.9801980198,657.904371645545,683.653012139604,20,40,9,32,5306064.16945082,396505.452146776,1,1,5306063.86007213,396505.704183298,97.7310689294474,0,0,85.0056831683167,25479.1580411716,47.0460792079208,25.2299254625059,24.8906084102557,2.17495049504951,2.18959070397936,1.76143855654063,2.0875982021134,1.6562259585305,1.59510387847268,53.522854378238,-0.016056453102093,1341.55738378515,1341.91164839748,1341.93987300697,1.05875332089919,3040.89568528945,-2.92940738681174,0,3040.89568528945,85.0283390844034,85.0283390844034,1.49767452008122E-05,85.0290889203205,25.7,1014.9,37.45,619.856023858347 +46596,2873.98104722773,456.930700297029,45,85.0324455445544,87.5834189108911,22.7521683168317,1.76821782178218,1839.41584158416,673.044451224752,694.060717632673,20,40,9,32,5306078.31900854,396524.342605225,1,1,5306078.75474919,396523.987627458,121.313599221756,0,0,85.0324455445544,25502.7781890814,45.5043366336634,24.4031179817172,24.2368396017899,1.76821782178218,1.78285803071203,1.4261851326919,1.55196448494797,1.23127327092257,1.27858115548054,53.5064379149766,0.00201605689174263,1367.10516885743,1366.38741077852,1366.33022628767,1.05842010155186,3096.90291679946,-0.879869369399296,0,3096.90291679946,85.0361094990686,85.0361094990686,-5.1737847031422E-05,85.0366383781235,25.7,1014.9,37.36,587.874291563028 +46597,2873.98886653466,456.945675742574,45,85.0447524752475,87.5960950495049,21.7408217821782,2.21118811881188,1840.86633663366,689.982453329703,686.944087242574,20,40,9,32,5306092.46857816,396543.256163333,1,1,5306093.66074233,396542.284962278,144.914046100442,0,0,85.0447524752475,25526.4016605061,43.4816435643564,23.3183858163309,23.3761752416524,2.21118811881188,2.22582832774174,1.76214423845295,1.44849058298795,1.14918076754566,1.14686613175197,53.5486311056396,0.00547215442044427,1376.92654057228,1375.7966632696,1375.70664483523,1.05826675603313,3121.14499334437,55.1432274333539,0,3121.14499334437,85.0528629546122,85.0528629546122,0.0021607358755257,85.0527969825553,25.7,1014.9,37.27,546.761261022852 +46598,2873.99669386139,456.960675247525,45,85.0771683168317,87.6294833663366,20.9803410340594,0.733069306930693,1841.59900990099,693.145656930693,668.846118116832,20,40,9,32,5306106.63252692,396562.199863803,1,1,5306108.5872315,396560.607456306,168.546944074659,0,0,85.0771683168316,25550.0283378163,41.9606820681188,22.5027228359617,22.730970001564,0.733069306930693,0.747709515860552,0.585712420880571,2.01082264845297,1.5953149724872,1.56074760885752,53.5699437070665,-0.00770421740773075,1361.99177504753,1361.48858250377,1361.44849265967,1.05786389182539,3087.34253842144,223.482030967419,0,3087.34253842144,85.069038917753,85.069038917753,0.00900238538705717,85.0692298915605,25.7,1014.9,37.18,517.910685783091 +46599,2874.00448722772,456.975676534654,45,85.0991584158416,87.6521331683169,22.9305940594059,0.167326732673267,1841.30693069307,679.625827233664,656.405999620792,20,40,9,32,5306120.73359067,396581.144563534,1,1,5306123.48912417,396578.899757731,192.140898731975,0,0,85.0991584158415,25573.6663269252,45.8611881188119,24.5944907065662,24.3921664528162,0.167326732673267,0.181966941603125,0.155853101136619,1.82040237325988,1.4442423175644,1.5025507274745,53.5614474673085,-0.00374410565609345,1336.03182685446,1336.61795197084,1336.66464913459,1.05759059583789,3027.23105685688,61.8281333844963,0,3027.23105685688,85.1004556416036,85.1004556416036,0.00250383949287974,85.1001123055161,25.7,1014.9,37.09,595.84061010121 +46600,2874.01228168317,456.990679405941,45,85.0979108910891,87.6508482178218,21.0565110010891,0.495247524752476,1842.00495049505,661.853033309901,661.061119314852,20,40,9,32,5306134.83669762,396600.091179872,1,1,5306138.39277041,396597.194211701,215.737629803849,0,0,85.097910891089,25597.3026600385,42.1130220021782,22.5844198709962,22.7974623463507,0.495247524752476,0.509887733682333,0.408980352684283,2.14167012078255,1.69912469030597,1.83512018816479,53.5817520402896,0.00784822147142663,1322.91415262475,1324.05071467561,1324.14126569028,1.05760646886804,2998.69842929304,-78.7660779784949,0,2998.69842929304,85.0991841976276,85.0991841976276,-0.00321455412869423,85.098831588873,25.7,1014.9,37.0113613861386,521.373449637571 +46601,2874.02007039604,457.005693366337,45,85.0851881188119,87.6377437623762,19.7667656764356,0.374554455445545,1841.00495049505,656.167499926733,678.531581631683,20,40,9,32,5306148.92898102,396619.051325572,1.00990099009901,1,5306153.29872216,396615.491495707,236.85146253336,0,0,85.0851881188118,25620.9380403741,39.5335313528713,21.2010876590679,21.6988699053648,0.374554455445545,0.389194664375403,0.291926258321807,2.95129581972008,2.34145284421807,2.12747793852094,53.5526632194231,-0.00921626007653772,1334.69908155842,1335.34113063262,1335.39228331281,1.05776363878766,3024.21775054675,-39.8330509375396,0,3024.21775054675,85.0795035780805,85.0795035780805,-0.00151809735426676,85.0796865629419,25.7,1014.9,37,472.351606729801 +46602,2874.02786039604,457.020711683168,45,85.0824851485149,87.6349597029703,21.3395,0.15039603960396,1839.14851485149,667.796480263367,692.755124077228,20,40,9,32,5306163.02361266,396638.01684758,2,1,5306168.20847812,396633.792573531,11.8023264616065,0,0,85.0824851485148,25644.5735177944,42.679,22.8879432025655,23.0377029126235,0.15039603960396,0.165036248533818,0.129634024308297,2.31669575742841,1.83798378806133,1.81876315855346,53.4986616955371,0.000720020318479512,1360.55160434059,1360.10884348039,1360.07356828801,1.05779712612731,3079.7886044491,-33.8250739856783,0,3079.7886044491,85.0801769434368,85.0801769434368,-0.00135879924626117,85.0800935407825,25.7,1014.9,37,533.323212177185 +46603,2874.03567128713,457.03569990099,45,85.060108910891,87.6119121782179,20.9481292631683,0.859108910891089,1839.13366336634,686.048343421782,690.654687329703,20,40,9,32,5306177.15767456,396656.945478211,2,1,5306183.11649261,396652.09064048,35.4046176662006,0,0,85.0601089108909,25668.2042474149,41.8962585263366,22.4681737048851,22.7025782895746,0.859108910891089,0.873749119820946,0.684973495194491,2.28901126272095,1.81601989733903,1.80224149288761,53.498229683346,0.00720020318479509,1376.70303075148,1375.58253225099,1375.49326103502,1.0580754817597,3117.13820513431,-277.71413972174,0,3117.13820513431,85.0582464464267,85.0582464464267,-0.0111672058294805,85.0581465346533,25.7,1014.9,37,517.26922466069 +46604,2874.04349029703,457.050671980198,45,85.0388514851485,87.590017029703,22.5317904291089,0.667128712871287,1840.82673267327,694.142410592079,674.161403243564,20,40,9,32,5306191.30719631,396675.854182869,2,1,5306198.02091754,396670.384301615,59.0012259037423,0,0,85.0388514851484,25691.8272113313,45.0635808582178,24.1667489675744,24.0492225930872,0.667128712871287,0.681768921801144,0.549744426715091,2.01900679782865,1.60180798471089,1.79295571367034,53.54747907313,-0.00604817067522788,1368.30381383564,1367.53575884627,1367.47456715116,1.05834003290101,3101.73608971259,-18.1256111041211,0,3101.73608971259,85.0360507793353,85.0360507793353,-0.000675315056258346,85.0359925506835,25.7,1014.9,37,580.132829652667 +46605,2874.05130069307,457.065653069307,45,85.0386435643564,87.5898028712872,19.4972222215842,-0.266831683168317,1839.78712871287,684.637033741584,658.439121146535,20,40,9,32,5306205.44062222,396694.773731694,2,1,5306212.92423107,396688.676598615,82.5960745716976,0,0,85.0386435643563,25715.4480344611,38.9944444431683,20.9119855111608,21.4668748783678,-0.266831683168317,-0.252191474238459,-0.192891250625652,3.22265929472295,2.55674294699829,2.48672892094863,53.5172382197539,-0.00662418693001148,1343.07615488812,1343.36668962833,1343.38983681629,1.05834275755204,3042.85102573845,251.987065245805,0,3042.85102573845,85.0469963729045,85.0469963729045,0.0101338104107162,85.0471630363036,25.7,1014.9,37,462.20476068804 +46606,2874.05912059406,457.080625841584,45,85.0364554455446,87.5875491089109,20.1020137516832,0.466435643564357,1840.22277227723,666.271412513861,657.942834693069,20,40,9,32,5306219.59190097,396713.683143364,2,1,5306227.8297032,396706.971545069,106.194340716084,0,0,85.0364554455444,25739.072704043,40.2040275033663,21.5606621057529,21.9816735066797,0.466435643564357,0.481075852494213,0.373796614010025,2.57529661362463,2.04314848426427,2.04602408095385,53.5299105773591,0.00972027429947337,1324.21424720693,1325.29625537222,1325.38246002537,1.0583705910121,3000.90280434317,-89.4184854940158,0,3000.90280434317,85.0504914224095,85.0504914224095,-0.00365568735090969,85.0509969825553,25.7,1014.9,37,484.595033518843 +46607,2874.06696247525,457.095577722772,45,85.0584851485148,87.6102397029703,20.0958118810891,-0.652574257425742,1840.56930693069,655.930814363366,673.128827359406,20,40,9,32,5306233.78442127,396732.567168916,2,1,5306242.73919792,396725.271428856,129.798975421671,0,0,85.0584851485147,25762.7002951597,40.1916237621782,21.5540102131638,21.9777096488018,-0.652574257425742,-0.637934048495886,-0.492127967820429,2.52191799060452,2.00079978853009,2.00075884079865,53.5399908618178,-0.00410411581533321,1329.05964172277,1329.93832999855,1330.0083359564,1.0580969007338,3011.69478437191,-52.8847307785508,0,3011.69478437191,85.0539688265855,85.0539688265855,-0.00208176758270215,85.054026308345,25.7,1014.9,37,483.814623402792 +46608,2874.07481871287,457.11051039604,45,85.0417227722772,87.5929744554456,20.5352101211881,-0.608019801980198,1841.17326732673,663.122337547525,690.035167519802,20,40,9,32,5306248.00402353,396751.42765201,2,1,5306257.64796893,396743.57042435,153.402464336675,0,0,85.0417227722771,25786.3263285755,41.0704202423763,22.0252922002156,22.3502985801309,-0.608019801980198,-0.593379593050341,-0.45979667954787,2.46368444855481,1.95459937319045,1.85386264349678,53.5575593575887,-0.00950426820392952,1353.15750506733,1353.02501150613,1353.01445561384,1.05830492348565,3067.8980031622,-82.408924190103,0,3067.8980031622,85.0474840701891,85.0474840701891,-0.00321863869556647,85.047341725601,25.7,1014.9,37,501.50769904431 +46609,2874.08268524752,457.125442772277,45,85.0365643564356,87.5876612871287,20.030595709703,-0.068910891089109,1839.16831683168,681.234128811881,693.118244005941,20,40,9,32,5306262.24276665,396770.288013239,2,1,5306272.56431673,396761.878719593,177.017948800607,0,0,85.0365643564356,25809.9470346811,40.0611914194059,21.4840618063794,21.921062582064,-0.068910891089109,-0.0542706821592513,-0.0416639791542512,2.64240702889771,2.09639149422208,2.04626882312702,53.4992377117918,0.0122403454141517,1374.35237281782,1373.33051138356,1373.24909867981,1.05836916701326,3112.74801795822,-42.8068407305393,0,3112.74801795822,85.0335217135574,85.0335217135574,-0.00181218616910313,85.0335813295614,25.7,1014.9,37,481.865931587081 +46610,2874.09054673267,457.140371782178,45,85.048801980198,87.6002660396039,20.1854504953465,-0.31980198019802,1840.75742574257,693.61429079505,679.54349050198,20,40,9,32,5306276.47229195,396789.14392089,2,1,5306287.47480613,396780.179824234,200.62415826052,0,0,85.048801980198,25833.5687591861,40.3709009906931,21.6501532114477,22.0535891970263,-0.31980198019802,-0.305161771268163,-0.235656435540596,2.52552987417166,2.00366532813298,2.0870728074619,53.5454630162383,-0.00446412597457296,1373.15778129703,1372.18604668622,1372.10862763549,1.05821651783614,3112.26639971133,126.823365082847,0,3112.26639971133,85.0448783452602,85.0448783452602,0.00510979315753808,85.0447454974068,25.7,1014.9,37.0164108910891,487.754799543576 +46611,2874.09841514851,457.155306435644,45,85.0604158415841,87.6122283168317,21.9192574257426,0.687128712871287,1839.63861386139,688.880559668317,661.791472788119,20,40,9,32,5306290.71459014,396808.006994496,2,1,5306302.39390047,396798.491490578,224.243991038836,0,0,85.060415841584,25857.1946123764,43.8385148514851,23.5097691606086,23.5289361823441,0.687128712871287,0.701768921801144,0.564653026728964,1.96305079899735,1.55741449093126,1.57068894931615,53.5129180978429,-0.0101522864905611,1350.67203245644,1350.64383298668,1350.64158630706,1.05807181586302,3059.01966406707,-138.094322340445,0,3059.01966406707,85.0476236643465,85.0476236643465,-0.00544064307420506,85.0473517208862,25.7,1014.9,37.13,555.269329122362 +46612,2874.10627376238,457.170240990099,45,85.0439801980198,87.5952996039604,21.665504950495,0.577722772277228,1839.05940594059,656.418285328713,635.879969071287,20,40,9,32,5306304.9387945,396826.869526852,1.22772277227723,0.613861386138614,3257341.51316516,243588.318387259,149.323466271704,0,0,85.0439801980197,25880.8176299232,43.3310099009901,23.2376038221061,23.3128958301579,0.577722772277228,0.592362981207085,0.470774289663847,1.4688777195824,1.1653551946043,1.1812696755555,53.4960696223906,0.00554415645229222,1292.2982544,1289.20324253246,1288.78552911945,1.0582762937707,2926.51955017881,20.9039595646232,0,2926.51955017881,85.0403404568179,85.0403404568179,0.000791044450992625,85.039971239981,25.7,1014.9,37.26,544.045326375238 +46613,2874.11410445545,457.185181980198,45,85.071198019802,87.623333960396,20.8687656765347,0.793366336633663,1839.9702970297,574.282178217822,585.261386138614,20,40,9,32,5306319.11119721,396845.739057492,0,0,0,0,0,0,0,85.0711980198019,25904.4406094611,41.7375313530693,22.3830513138627,22.6357326168381,0.793366336633663,0.808006545563522,0.645271912589031,2.03597804329741,1.61527236557954,1.5565519433142,53.5225663701106,-0.0045361280064209,1159.54356435644,1161.92395303166,1162.16518325935,1.05793846334295,2626.37040704177,166.988426149396,0,2626.37040704177,85.057512890893,85.057512890893,0.00671638946071767,85.0570124469588,25.7,1014.9,37.39,513.363770401627 +46614,2874.12193891089,457.200128514851,45,85.0263564356436,87.5771471287129,21.3747722772277,1.3890099009901,1840.5198019802,541.010891089109,562.547524752475,20,40,9,32,5306333.29050636,396864.615526004,0,0,0,0,0,0,0,85.0263564356435,25928.0658990651,42.7495445544554,22.9257749173579,23.0637308871391,1.3890099009901,1.40365010991996,1.11139577669389,1.742164572908,1.38217123714772,1.47204318191096,53.5385508211808,-0.00302408533761394,1103.55841584158,1110.19310851877,1110.61270155587,1.05849598676387,2501.74786786786,63.6521887302345,0,2501.74786786786,85.0515690618566,85.0515690618566,0.00257055408511978,85.0519137199433,25.7,1014.9,37.52,532.720393371186 +46615,2874.12976039604,457.215095346535,45,85.0196039603961,87.5701920792079,20.8227821782178,0.550891089108911,1848.21287128713,578.611881188119,591.879207920792,20,40,9,32,5306347.44539892,396883.516753584,0,0,0,0,0,0,0,85.0196039603959,25951.6888836911,41.6455643564357,22.3337311471423,22.5939708839141,0.550891089108911,0.565531298038768,0.45426610149858,1.93874838930298,1.53813382583493,1.50778753406625,53.7623331361643,0.00475213410196476,1170.49108910891,1161.88087442408,1161.50329090052,1.0585817194073,2664.49594286511,-352.694009848294,0,2664.49594286511,85.0236556219977,85.0236556219977,-0.0141462166018691,85.0244437529466,25.7,1014.9,37.65,511.31433154321 +46616,2874.13758435644,457.230084653465,45,85.0555049504951,87.6071700990099,20.8670825082178,0.592574257425743,1841.47524752475,561.150495049505,587.461386138614,20,40,9,32,5306361.60443716,396902.445964615,0,0,0,0,0,0,0,85.0555049504949,25975.3095257978,41.7341650164357,22.3812460109814,22.6338004699733,0.592574257425743,0.6072144663556,0.477567547021481,1.94353676639078,1.54193275343699,1.53235646581306,53.5663436054741,-0.00129603657326312,1148.61188118812,1153.9178413881,1154.24900518623,1.05813447483277,2604.19454019017,79.9361097106528,0,2604.19454019017,85.037025781786,85.037025781786,0.00320774651722421,85.0365019330503,25.7,1014.9,37.78,513.055844240714 +46617,2874.14537574258,457.245077029703,45,85.0593762376238,87.6111575247525,20.5781386138614,-0.663168316831683,1839.55940594059,590.972277227723,563.175247524752,20,40,9,32,5306375.70312935,396921.377827612,0,0,0,0,0,0,0,85.0593762376237,25998.9321270354,41.1562772277228,22.0713356830563,22.3882885473858,-0.663168316831683,-0.648528107901826,-0.508206877048949,1.99912271461373,1.58603266226197,1.65320008470661,53.5106140328238,0.00374410565609344,1154.14752475247,1156.26424860308,1156.2369825554,1.05808523830677,2613.9871139068,430.70139873863,0,2613.9871139068,85.0595971963532,85.0595971963532,0.0171973880556543,85.0595973597358,25.7,1014.9,37.91,501.611124270347 +46618,2874.15319079208,457.260056732674,45,85.0849306930694,87.6374786138614,19.0672211217822,0.404653465346535,1842.0495049505,596.491089108911,549.832673267327,20,40,9,32,5306389.8459973,396940.294595473,0,0,0,0,0,0,0,85.0849306930692,26022.5656530806,38.1344422435643,20.4507825425201,21.1038048818189,0.404653465346535,0.419293674276392,0.321336269242335,3.4161872364433,2.71028111370764,2.63094074918939,53.5830480768629,-0.00345609752870165,1146.32376237624,1136.99825507303,1136.48391324847,1.05776673144309,2598.99114220184,270.036544353153,0,2598.99114220184,85.1006171943926,85.1006171943926,0.0108295483013474,85.1009511551154,25.7,1014.9,38.04,445.778887650881 +46619,2874.16104742574,457.275037623762,45,85.1414356435644,87.6956787128713,18.7952871287129,-0.156633663366337,1841.73267326733,536.239603960396,499.852475247525,20,40,9,32,5306404.06592805,396959.214125906,0,0,0,0,0,0,0,85.1414356435643,26046.2102704073,37.5905742574258,20.1591163934436,20.8761223250973,-0.156633663366337,-0.14199345443648,-0.10772811047373,3.66885737678818,2.91074059147548,2.82412902205164,53.5738318167863,-0.000360010159239753,1036.09207920792,1037.36826781688,1037.65058934465,1.05706486258522,2346.8420224837,307.62871337538,0,2346.8420224837,85.1457439466718,85.1457439466718,0.0123081615092171,85.145922677982,25.7,1014.9,38.17,435.910796373481 +46620,2874.16891891089,457.290007524753,45,85.1812772277228,87.7367155445545,19.6537227721782,1.22207920792079,1841.83663366337,502.480198019802,473.409900990099,20,40,9,32,5306418.31367427,396978.120365391,0,0,0,0,0,0,0,85.1812772277226,26069.8670717549,39.3074455443564,21.0798421016698,21.6081123889591,1.22207920792079,1.23671941685065,0.962942040465364,2.92001863739305,2.31663864327304,2.31345324797566,53.576855902124,-0.00172804876435082,975.890099009901,974.734084893638,974.772767562471,1.05657135425933,2209.72393501365,29.1269752801994,0,2209.72393501365,85.1792222331143,85.1792222331143,0.00117907830388462,85.1790595002356,25.7,1014.9,38.283589108911,467.593045920211 +46621,2874.17678356436,457.304945742574,45,85.2115148514852,87.7678602970297,20.1442205720792,1.87138613861386,1841.85643564356,475.59603960396,454.782178217822,20,40,9,32,5306432.54953128,396996.986822347,0,0,0,0,0,0,0,85.211514851485,26093.5312053908,40.2884411441584,21.605931550116,22.0274066712749,1.87138613861386,1.88602634754372,1.47264818049231,2.44211770972234,1.93748909178716,2.08232825159984,53.5774319183787,0.00388810971978935,930.378217821782,931.491236153318,931.48297029703,1.0561964557167,2105.93863622167,85.6828361074975,0,2105.93863622167,85.1950154886775,85.1950154886775,0.00339563659335306,85.1946303630362,25.7,1014.9,38.3000000000001,485.607627997296 +46622,2874.18467188119,457.319898217821,45,85.1908613861386,87.7465872277227,19.4768162816832,2.17356435643564,1843.33168316832,440.289108910891,428.780198019802,20,40,9,32,5306446.8289647,397015.871726782,0,0,0,0,0,0,0,85.1908613861385,26117.1970915569,38.9536325633663,20.8900988693253,21.458149399524,2.17356435643564,2.1882045653655,1.6945074766046,3.05221581699885,2.42151917070691,2.38842541591665,53.6203451293601,-0.0038161076879414,869.069306930693,865.108842270366,865.084884488449,1.05645181217733,1969.19312921084,46.9777682338416,0,1969.19312921084,85.1948815802371,85.1948815802371,0.00191021577404271,85.1948236680809,25.7,1014.9,38.3000000000001,460.879177027992 +46623,2874.19255950495,457.334833663366,45,85.1846831683168,87.7402236633663,20.2720363036634,2.25742574257426,1841.19801980198,409.239603960396,380.250495049505,20,40,9,32,5306461.1075536,397034.735303371,0,0,0,0,0,0,0,85.1846831683167,26140.8624144942,40.5440726073267,21.7430218851704,22.1346829744189,2.25742574257426,2.27206595150411,1.77699416574934,2.38153810340768,1.88942739273304,1.90064811723712,53.5582793779072,-0.0074882113121869,789.490099009901,792.055112243898,792.422508250825,1.05652828443147,1787.33699723968,-164.322764405556,0,1787.33699723968,85.1852381139103,85.1852381139103,-0.00651216111709206,85.1852203677509,25.7,1014.9,38.3000000000001,490.602603058562 +46624,2874.20047633663,457.349746039604,45,85.1405940594059,87.6948118811881,20.63460011,2.96485148514851,1841.34653465347,417.993069306931,375.69900990099,20,40,9,32,5306475.440819,397053.571018025,0,0,0,0,0,0,0,85.1405940594058,26164.5200487901,41.26920022,22.1318941552207,22.4399044804969,2.96485148514851,2.97949169407837,2.3357719876179,2.10609035889508,1.67089697619091,1.63490240621783,53.562599499818,0.00813622959881845,793.692079207921,799.495872953631,799.584752475247,1.05707547005775,1797.65955468847,-248.759681565623,0,1797.65955468847,85.144425546515,85.144425546515,-0.0100167194937328,85.1448176331918,25.7,1014.9,38.3000000000001,503.993589099846 +46625,2874.20840386139,457.364612178218,45,85.073405940594,87.6256081188119,20.5448217821782,2.74594059405941,1841.34653465347,439.069306930693,418.890099009901,20,40,9,32,5306489.7949795,397072.349401529,0,0,0,0,0,0,0,85.0734059405939,26188.1639931521,41.0896435643565,22.0356013054348,22.3598761658451,2.74594059405941,2.76058080298926,2.16294196483621,2.10017132728941,1.6662010276196,1.70952808657718,53.5625994998181,-0.00482413613381271,857.959405940594,853.494500539162,853.32060348892,1.05791247905797,1944.94141870687,-529.421297213937,0,1944.94141870687,85.0896909126555,85.0896909126555,-0.0211376335653267,85.0899786892973,25.7,1014.9,38.3000000000001,500.221968977684 +46626,2874.2163190099,457.379454059406,45,85.0492871287128,87.6007657425742,20.1459675467327,2.71712871287129,1839.07920792079,443.583168316832,453.752475247525,20,40,9,32,5306504.12681393,397091.097069056,0,0,0,0,0,0,0,85.0492871287127,26211.7913294007,40.2919350934654,21.6078052892685,22.0192108558612,2.71712871287129,2.73176892180114,2.13202881525884,2.43644446697602,1.9329881433307,1.85875771527174,53.4966456386453,-0.00540015238859632,897.335643564356,897.554631898833,897.920330033003,1.05821203745104,2032.19900386762,-326.875145551132,0,2032.19900386762,85.0448989314772,85.0448989314772,-0.01303112984566,85.0445539839697,25.7,1014.9,38.3000000000001,485.277946222213 +46627,2874.2242250495,457.394307227723,45,85.0118316831683,87.5621866336634,21.0724257425743,2.54980198019802,1838.64851485149,464.408910891089,516.550495049505,20,40,9,32,5306518.44158467,397109.858400945,0,0,0,0,0,0,0,85.0118316831682,26235.4085574535,42.1448514851485,22.6014894227287,22.8056261253945,2.54980198019802,2.56444218912787,2.02003899987999,1.77099778656328,1.4050464805137,1.46118959110811,53.4841172851038,0.00684019302555533,980.959405940594,984.604744632879,984.365308816596,1.05867670582662,2221.97621396714,-113.213127828276,0,2221.97621396714,85.0056171943926,85.0056171943926,-0.00458424555327225,85.0056266855256,25.7,1014.9,38.3000000000001,520.623662640981 +46628,2874.23208990099,457.409192772277,45,85.0100693069306,87.5603713861386,20.9290693069307,3.09217821782178,1838.74752475248,496.29900990099,531.124752475248,20,40,9,32,5306532.6794017,397128.658604861,0,0,0,0,0,0,0,85.0100693069306,26259.0206353138,41.8581386138614,22.4477307143835,22.682876429515,3.09217821782178,3.10681842675164,2.44131404003664,1.85925884812672,1.47506965889201,1.48965402842371,53.4869973663777,-0.00129603657326311,1027.42376237624,1031.24214292716,1031.08491277699,1.05869836929481,2327.57617533868,78.231685797471,0,2327.57617533868,85.0045781786098,85.0045781786098,0.0031396704026843,85.0045089108909,25.7,1014.9,38.3000000000001,514.834987176007 +46629,2874.23996178218,457.424117821782,45,85.0385148514851,87.5896702970297,20.8111716171287,1.97237623762376,1837.96534653465,523.19702970297,517.189108910891,20,40,9,32,5306546.92942323,397147.50815245,0,0,0,0,0,0,0,85.0385148514851,26282.6363188122,41.6223432342574,22.3212780970353,22.5853421776006,1.97237623762376,1.98701644655362,1.56046532556911,1.8770895091928,1.48921586944417,1.46231485634766,53.4642447243138,-0.000576016254783609,1040.38613861386,1038.47632585041,1038.42273455917,1.05834421344659,2354.82321761006,176.950917352716,0,2354.82321761006,85.0273731987059,85.0273731987059,0.0070826389569662,85.0271651107967,25.7,1014.9,38.3000000000001,510.532442333588 +46630,2874.24782118812,457.439057722772,45,85.0392178217822,87.5903943564356,22.4150297029703,2.6580198019802,1840.15841584158,512.073267326733,508.987128712871,20,40,9,32,5306561.1560671,397166.375692803,0,0,0,0,0,0,0,85.039217821782,26306.2581609739,44.8300594059406,24.0415158145881,23.9492188628017,2.6580198019802,2.67266001091005,2.12941518561466,1.6163374703141,1.28234450162375,1.30252086041882,53.528038524531,-0.000432012191087705,1021.0603960396,1016.52465444564,1016.33382366808,1.05833540266564,2313.74408944784,310.167409734574,0,2313.74408944784,85.0532372316438,85.0532372316438,0.0124102756810309,85.0533186232908,25.7,1014.9,38.2936881188119,574.123383443886 +46631,2874.25564029703,457.453996831683,45,85.0358613861386,87.5869372277228,20.5855726072277,1.47841584158416,1838.05940594059,479.829702970297,489.825742574257,20,40,9,32,5306575.30814515,397185.240823198,0,0,0,0,0,0,0,85.0358613861385,26329.8849561609,41.1711452144555,22.0793091040801,22.3930143429375,1.47841584158416,1.49305605051402,1.16827212086623,2.11357152736336,1.67683226843477,1.74073111557434,53.466980801524,0.00129603657326312,969.655445544555,974.934761297913,975.208920320604,1.05837793041936,2194.94618786717,-386.779573152988,0,2194.94618786717,85.0400627389471,85.0400627389471,-0.0154818699691616,85.0404683639791,25.7,1014.9,38.25,502.408548902679 +46632,2874.26343920792,457.468962277228,45,85.0669603960396,87.6189692079208,20.0850704069307,-0.863861386138614,1846.96534653465,492.949504950495,498.032673267327,20,40,9,32,5306589.42228567,397204.137996972,0,0,0,0,0,0,0,85.0669603960395,26353.5062147143,40.1701408138614,21.5424893129342,21.9684887369566,-0.863861386138614,-0.849221177208754,-0.649622130923069,3.07527167785679,2.43981086841508,2.31676126737322,53.7260441121129,0.00460813003826886,990.982178217822,990.724791687089,990.542753418199,1.05799019138372,2252.86650283999,142.437308100753,0,2252.86650283999,85.0500092147827,85.0500092147827,0.00565984816301977,85.0493690711927,25.7,1014.9,38.2,485.402605229377 +46633,2874.27123792079,457.483967722772,45,85.0572871287128,87.6090057425742,19.9640781078218,0.0838613861386139,1840.4702970297,493.777227722772,479.321782178218,20,40,9,32,5306603.53523272,397223.084892136,0,0,0,0,0,0,0,85.0572871287128,26377.1332092963,39.9281562156436,21.4127175343099,21.865091658822,0.0838613861386139,0.0985015950684714,0.0800048210904406,2.70943899309939,2.14957226389783,2.06315652084978,53.5371107805439,-0.00122403454141517,973.09900990099,973.712459562788,973.588599717115,1.058110835056,2204.89528267853,277.672042079851,0,2204.89528267853,85.05847887462,85.05847887462,0.0111168295047411,85.0586401697311,25.7,1014.9,38.15,479.126037556616 +46634,2874.27905376238,457.498984554455,45,85.0546633663367,87.6063032673267,21.7858921893069,-1.02039603960396,1839.21287128713,479.390099009901,465.933663366337,20,40,9,32,5306617.67971665,397242.046441124,0,0,0,0,0,0,0,85.0546633663365,26400.762321865,43.5717843786138,23.3667266358665,23.4155965309283,-1.02039603960396,-1.0057558306741,-0.790604973143894,1.82143992360974,1.44506547300734,1.63284855270763,53.5005337483651,-0.00403211378348525,945.323762376237,948.101323399667,948.419858557284,1.05814359116727,2140.68466508733,-73.5281493068681,0,2140.68466508733,85.0691107734534,85.0691107734534,-0.00290821161325483,85.0694015087222,25.7,1014.9,38.1,549.742359207232 +46635,2874.28683693069,457.513981584158,45,85.0536930693069,87.6053038613861,19.6528091307921,-0.177326732673267,1838.38613861386,502.040594059406,467.234653465347,20,40,9,32,5306631.76417884,397260.98215563,0,0,0,0,0,0,0,85.0536930693068,26424.3904272006,39.3056182615842,21.0788621643633,21.6007495315454,-0.177326732673267,-0.16268652374341,-0.12049251653468,2.84315435431848,2.25565726247713,2.19920159752624,53.4764850697279,0.00979227633132131,969.275247524753,966.149965689638,965.877963224893,1.05815598074237,2193.87260855281,103.574579860241,0,2193.87260855281,85.0637053230074,85.0637053230074,0.0040627825158806,85.0643900990098,25.7,1014.9,38.05,467.142572262733 +46636,2874.29466128713,457.528976237624,45,85.063702970297,87.615614059406,19.6555720567327,0.316534653465347,1840.25742574257,493.758415841584,449.934653465346,20,40,9,32,5306645.92504952,397279.916176224,0,0,0,0,0,0,0,85.0637029702969,26448.0230322611,39.3111441134653,21.0818255745651,21.6035298448587,0.316534653465347,0.331174862395204,0.270385761057095,3.2211049646228,2.55550979693264,2.42599594760607,53.5309186058049,-0.00482413613381271,943.693069306931,947.282678168807,947.295756718529,1.05803323135465,2137.74325882134,-125.221827469282,0,2137.74325882134,85.0739320654836,85.0739320654836,-0.00496955636157819,85.0740664780762,25.7,1014.9,38,468.94561789905 +46637,2874.3024980198,457.543959009901,45,85.0807227722772,87.6331444554456,19.869202420099,-0.211584158415842,1839.76237623762,495.047524752475,457.670297029703,20,40,9,32,5306660.10916979,397298.835713766,0,0,0,0,0,0,0,85.0807227722771,26471.6536050883,39.738404840198,21.3109574484643,21.7862537181252,-0.211584158415842,-0.196943949485984,-0.15590028772936,2.64981576690312,2.10226932271996,2.10046058442004,53.5165181994354,-0.00612017270707583,952.717821782178,955.17698264876,955.324526166903,1.05782137026804,2157.5593396394,-118.06091432837,0,2157.5593396394,85.0728295265169,85.0728295265169,-0.00467274450217141,85.0723467232437,25.7,1014.9,37.95,475.281734766091 +46638,2874.31033861386,457.558919108911,45,85.0937128712871,87.6465242574258,20.1740280528713,-0.490594059405941,1839.38118811881,501.039603960396,467.125742574257,20,40,9,32,5306674.3010063,397317.727045866,0,0,0,0,0,0,0,85.093712871287,26495.2831322061,40.3480561057426,21.6379019302739,22.0465722140696,-0.490594059405941,-0.475953850476083,-0.365063044627121,2.43631635939529,1.93288650734516,1.9605173622331,53.5054298865308,0.00979227633132132,968.165346534654,967.267728654054,967.169891560585,1.05765786829942,2191.60449298044,-94.9725517624821,0,2191.60449298044,85.0662935986667,85.0662935986667,-0.00387897700661423,85.0655013672795,25.7,1014.9,37.9,487.008120431483 +46639,2874.31816128713,457.573857623762,45,85.065306930693,87.6172661386139,21.0411215624752,0.162178217821782,1839.70792079208,484.076237623762,483.818811881188,20,40,9,32,5306688.4601865,397336.590811167,0,0,0,0,0,0,0,85.0653069306929,26518.9122625966,42.0822431249505,22.5679137393196,22.7822853675899,0.162178217821782,0.17681842675164,0.138762653321554,2.40412807362172,1.90734946942052,1.92734848629177,53.5149341547347,-0.00266407517837418,967.89504950495,962.659004019214,962.793795379538,1.0580114272005,2192.17523532312,115.083211340642,0,2192.17523532312,85.0537358102146,85.0537358102146,0.00462509122199659,85.0534899575671,25.7,1014.9,37.85,521.688337149908 +46640,2874.32597940594,457.58879930693,45,85.037504950495,87.5886300990099,21.6137524752475,-0.116633663366337,1839.9603960396,497.758415841584,496.537623762376,20,40,9,32,5306702.6109207,397355.45827969,0,0,0,0,0,0,0,85.0375049504949,26542.5371741203,43.227504950495,23.1820960682197,23.2680622116437,-0.116633663366337,-0.101993454436479,-0.0737697822954284,1.68581610986948,1.33746637626347,1.34660892001276,53.5222783619832,-0.0103682925861049,994.29603960396,995.814753455544,995.688448844884,1.05835752892701,2253.00656737651,66.951171374741,0,2253.00656737651,85.0523082050778,85.0523082050778,0.00276252872811501,85.0525644507307,25.7,1014.9,37.7987376237624,542.26990354193 +46641,2874.33383,457.603758217821,45,85.0501782178218,87.6016835643565,19.9740588558416,-0.973960396039604,1838.9504950495,504.086138613861,490.30198019802,20,40,9,32,5306716.8214893,397374.34818251,0,0,0,0,0,0,0,85.0501782178217,26566.162006656,39.9481177116832,21.4234225083625,21.8735319042912,-0.973960396039604,-0.959320187109746,-0.743184662821494,2.62876532145551,2.0855686500744,1.97418660368435,53.4929015329892,0.00900025398099386,994.388118811881,963.197343397706,958.846185761433,1.05819919939177,2251.49133151905,-141.56487388402,0,2251.49133151905,85.0529893147729,85.0529893147729,-0.00573609341132761,85.0530802451673,25.7,1014.9,37.74,479.420106260754 +46642,2874.34166386139,457.618699405941,45,84.9467425742574,87.4951448514852,22.2609862486139,-0.253168316831683,1831.74257425743,-237.658415841584,-239.812871287129,20,40,9,32,5306731.00151656,397393.215367429,0,0,0,0,0,0,0,84.9467425742573,26589.7828969751,44.5219724972277,23.8762946128712,23.8137968091616,-0.253168316831683,-0.238528107901825,-0.183453716508537,1.72211421874553,1.36626400125913,1.55024605153098,53.283231616248,-0.00100802844587131,-477.471287128713,-685.810008822665,-706.949684111269,1.05948915617138,-1074.26643219009,-3070.26555408961,0,-1074.26643219009,84.904969708852,84.904969708852,-0.12280250302258,84.901638095238,25.7,1014.9,37.68,568.223870867905 +46643,2874.34945217822,457.633528811881,45,83.7428712871287,86.2551574257426,20.4268712871287,1.09386138613861,1793.13366336634,-3492.43663366337,-3086.98811881188,20,40,9,32,5306745.09971581,397411.941736422,0,0,0,0,0,0,0,83.7428712871286,26613.2570718651,40.8537425742574,21.9090920511689,22.1840236766841,1.09386138613861,1.10850159506847,0.865295275435035,2.14435446128613,1.70125435032342,1.75321600450558,52.1601439234837,-0.0257767274015664,-6579.42475247525,-6347.04420154887,-6295.35891056082,1.07479496204476,-14728.6591585532,-15215.1037785973,0,-14728.6591585532,83.6612450740122,83.6612450740122,-0.60839623566316,83.6516936680482,25.7,1014.9,37.62,493.619442347681 +46644,2874.35704217822,457.647999603961,45,80.967207920792,83.3962241584158,19.2303872388119,-0.326435643564357,1731.58415841584,-4503.59603960396,-3836.12079207921,20,40,9,32,5306758.83856417,397430.214836046,0,0,0,0,0,0,0,80.967207920792,26636.1411485427,38.4607744776238,20.6257883682967,21.0064493246767,-0.326435643564357,-0.311795434634499,-0.236714009985367,2.47983831661087,1.96741527597196,1.84267400210369,50.3697413995525,-0.00986427836316927,-8339.71683168316,-8341.74482893834,-8341.67375744127,1.11168146318548,-18676.4783495996,-19549.6370785181,0,-18676.4783495996,80.9868053132045,80.9868053132045,-0.781905913363617,80.9888754173407,25.7,1014.9,37.56,442.41676198908 +46645,2874.36435891089,457.662005445544,45,78.2264851485149,80.5732797029703,19.633900990099,-0.483267326732673,1674.07920792079,-4465.53762376238,-3803.09306930693,20,40,9,32,5306772.08157744,397447.899764929,0,0,0,0,0,0,0,78.2264851485148,26658.2465048684,39.267801980198,21.0585820054913,21.1925199576129,-0.483267326732673,-0.468627117802816,-0.365642031123309,1.6279125804865,1.29152778120358,1.28835391095375,48.6969901956609,-0.0147604165288299,-8268.63069306931,-8267.08277619841,-8268.08761043844,1.15063417250568,-18530.5733558653,-18934.8719793233,0,-18530.5733558653,78.2282572296833,78.2282572296833,-0.757275975122266,78.2294870656502,25.7,1014.9,37.5,450.093422491107 +46646,2874.37141653465,457.675556633663,45,75.4934356435643,77.7582387128713,17.5592161715842,-0.115049504950495,1613.35643564356,-4450.28712871287,-3837.67227722772,20,40,9,32,5306784.85474868,397465.009822489,0,0,0,0,0,0,0,75.4934356435642,26679.5946739828,35.1184323431683,18.8333532846031,19.2706028855008,-0.115049504950495,-0.100409296020637,-0.0806219519507324,2.5974791280346,2.06074730004887,2.120727400688,46.930636350367,-0.0180725099938357,-8287.95940594059,-8286.95420056857,-8287.09574987645,1.19230841129515,-18548.1690421981,-19022.1653804288,0,-18548.1690421981,75.5009338300165,75.5009338300165,-0.760741049352453,75.5012925750057,25.7,1014.9,37.44,373.192553918777 +46647,2874.37821029703,457.688644554455,45,72.7596534653465,74.9424430693069,17.6083663366337,-0.933069306930693,1557.35148514851,-4492.9198019802,-3841.47722772277,20,40,9,32,5306797.14946026,397481.534132012,0,0,0,0,0,0,0,72.7596534653465,26700.1817413645,35.2167326732673,18.8860698986779,19.1555221494325,-0.933069306930693,-0.918429098000835,-0.723784152093083,2.0514074250306,1.62751348675157,1.63786427125167,45.3015183777753,-0.016200457165789,-8334.39702970297,-8337.26189589256,-8335.81077952212,1.23712052261754,-18681.0540736047,-18910.0804227803,0,-18681.0540736047,72.7641615527889,72.7641615527889,-0.756272533193908,72.7665269713082,25.7,1014.9,37.38,368.248001015809 +46648,2874.38473891089,457.701268415842,45,70.051,72.15253,16.6988058307921,-1.37247524752475,1485.5297029703,-4495.18811881188,-3840.29108910891,20,40,9,32,5306808.96334057,397497.471672412,0,0,0,0,0,0,0,70.0509999999999,26720.0148885317,33.3976116615842,17.9105095904702,18.2267202794275,-1.37247524752475,-1.35783503859489,-1.05893617992089,2.20618279515462,1.75030674528239,1.66045722282127,43.2123074216751,-0.014688414496982,-8335.47920792079,-8333.18834427998,-8331.0406724461,1.28498308794156,-18510.9689736006,-18954.0976380916,0,-18510.9689736006,70.0437236545436,70.0437236545436,-0.758046596738893,70.0465039268527,25.7,1014.9,37.32,334.232369297116 +46649,2874.39101178218,457.713448019802,45,67.3823762376238,69.4038475247525,17.7778118811881,-1.27356435643564,1440.9900990099,-4450.06336633663,-3827.27920792079,20,40,9,32,5306820.31336976,397512.847423567,0,0,0,0,0,0,0,67.3823762376237,26739.0939788783,35.5556237623762,19.0678108016836,18.9913794084662,-1.27356435643564,-1.25892414750579,-0.998294159640069,1.5300783711751,1.2139096088322,1.24982484753969,41.9167028606031,-0.0142564023058943,-8277.34257425742,-8320.01735124008,-8352.59774824314,1.33585763735725,-18535.916454297,-18532.9186192715,0,-18535.916454297,67.3668839329476,67.3668839329476,-0.74120184295657,67.3609242577147,25.7,1014.9,37.26,361.518273796133 +46650,2874.39701356436,457.725167128713,45,64.6169603960396,66.5554692079208,17.0472376237624,-0.367227722772278,1442.68811881188,-4833.0801980198,-4165.98910891089,20,40,9,32,5306831.17147551,397527.64066418,0,0,0,0,0,0,0,64.6169603960395,26757.424950853,34.0944752475248,18.2842243957596,18.2110273391759,-0.367227722772278,-0.35258751384242,-0.277391158001343,1.45352684793259,1.15317636053233,1.17353213712778,41.9660962544508,0.0429852130132267,-8999.06930693069,-9029.62560533282,-9023.98667407819,1.39305732114928,-21081.0656859336,-19813.1558047349,0,-21081.0656859336,64.6121229291245,64.6121229291245,-0.79290020586217,64.5991958735941,25.7,1014.9,37.2050495049505,332.704534996055 +46651,2874.40271346535,457.736385346535,45,61.6160594059406,63.4645411881188,15.7920198019802,-0.817425742574257,1530.23762376238,-5196.26534653465,-4531.78415841584,20,40,9,32,5306841.48150933,397541.800076576,0,0,0,0,0,0,0,61.6160594059405,26774.9616118266,31.5840396039604,16.937925081727,16.9707041131751,-0.817425742574257,-0.8027855336444,-0.635491092146027,1.26947545863189,1.00715655252769,1.01794927180813,44.5128081209128,-0.0175684957709,-9728.04950495049,-9663.73239878444,-9626.4005888571,1.46099817320145,-25300.1027284065,-21304.5934294409,0,-25300.1027284065,61.6170302911479,61.6170302911479,-0.85201886525285,61.6213130475143,25.7,1014.9,37.18,288.780291877815 +46652,2874.40812485149,457.747054653465,45,58.5873861386139,60.3450077227723,15.9175841584158,0.998712871287129,1460.27227722772,-5132.43069306931,-4486.37425742574,20,40,9,32,5306851.26928783,397555.266301043,0,0,0,0,0,0,0,58.5873861386138,26791.6502627342,31.8351683168317,17.0726006766737,16.9039828962898,0.998712871287129,1.01335308021699,0.810173600857699,1.38215015789496,1.09654864033472,1.11862478498953,42.4775986886986,-0.0204485770448181,-9618.80495049505,-9620.72069404961,-9621.12840585603,1.53654149344108,-25106.6625996663,-21139.9206830245,0,-25106.6625996663,58.5799662778158,58.5799662778158,-0.845404589963956,58.5751807322587,25.7,1014.9,37.16,286.407961275278 +46653,2874.41328059406,457.757179702971,45,55.5493465346535,57.2158269306931,15.6100891089109,0.684158415841584,1387.4900990099,-5059.7801980198,-4497.67128712871,20,40,9,32,5306860.59559236,397568.04622166,0,0,0,0,0,0,0,55.5493465346534,26807.4948427122,31.2201782178218,16.7427930791133,16.4684058524713,0.684158415841584,0.698798624771442,0.564210243734199,1.6105873999422,1.27778260086924,1.21006737289861,40.3604509442415,-0.023400660350584,-9557.45148514851,-9542.33953533967,-9534.40398296612,1.62057570876841,-24998.5166653922,-20902.9019374638,0,-24998.5166653922,55.545652092932,55.545652092932,-0.835895718284687,55.547658421322,25.7,1014.9,37.14,271.560518526759 +46654,2874.41818821782,457.766759306931,45,52.5622772277228,54.1391455445545,14.3093564356436,1.1549504950495,1313.31188118812,-4910.84851485148,-4445.82178217822,20,40,9,32,5306869.47438316,397580.138612552,0,0,0,0,0,0,0,52.5622772277227,26822.503955831,28.6187128712871,15.347676251284,15.1902245021578,1.1549504950495,1.16959070397936,0.939796583499945,1.22848129690691,0.974633246688298,1.02466689158108,38.2026940538221,-0.0174244917072041,-9356.6702970297,-9354.74419174591,-9351.90512159423,1.71268939320288,-24481.6128663439,-20488.6532094184,0,-24481.6128663439,52.5599703950593,52.5599703950593,-0.819381814419072,52.5675481813699,25.7,1014.9,37.12,231.249034407897 +46655,2874.42287019802,457.775806534654,45,49.6488316831683,51.1382966336634,13.8963564356436,-0.72,1239.74752475248,-4749.09603960396,-4336.09603960396,20,40,9,32,5306877.94699901,397591.560496022,0,0,0,0,0,0,0,49.6488316831683,26836.6930340488,27.7927128712871,14.9047080213508,14.6714251954565,-0.72,-0.705359791070143,-0.570890931848729,1.43949881397906,1.14204701870905,1.12721659586765,36.062793667301,-0.0260647355289582,-9085.19207920792,-9333.27343397706,-9623.35052846,1.81320523808624,-23756.4713018627,-20290.2999237692,0,-23756.4713018627,49.6441685128908,49.6441685128908,-0.811366532692866,49.6206115059482,25.7,1014.9,37.1,215.657407228061 +46656,2874.4272719802,457.784309207921,45,46.4760891089109,47.8703717821782,13.1442178217822,-1.73722772277228,1376.79207920792,-6101.39702970297,-5442.2900990099,20,40,9,32,5306885.91265137,397602.294916374,0,0,0,0,0,0,0,46.4760891089108,26850.0583630092,26.2884356435643,14.0979924996884,13.8495221786013,-1.73722772277228,-1.72258751384242,-1.38570154076939,1.46151359374665,1.15951275981072,1.09669876780947,40.0492581625946,0.0934586373386402,-11543.6871287129,-11459.7948926576,-11258.1049740862,1.93745903969342,-36104.3156392494,-24659.5722180496,0,-36104.3156392494,46.4491760611704,46.4491760611704,-0.987411364898868,46.3687643754482,25.7,1014.9,37.08,192.182954208976 +46657,2874.43135950495,457.792172178218,45,42.6259702970297,43.9047494059406,11.5370891089109,-1.42049504950495,1464.79702970297,-6787.67128712871,-6094.73069306931,20,40,9,32,5306893.31034985,397612.222256746,0,0,0,0,0,0,0,42.6259702970297,26862.4394440048,23.0741782178218,12.3742468308859,12.261515918005,-1.42049504950495,-1.40585484057509,-1.12492612957116,0.933456629325933,0.740571197602523,0.848806813751522,42.6092184029167,-0.0372970524972385,-12882.401980198,-12731.983383982,-12538.9657075672,2.1130194505424,-46362.5923384094,-27759.1553451827,0,-46362.5923384094,42.6223481031271,42.6223481031271,-1.10988301800477,42.6044761633314,25.7,1014.9,37.06,150.730715128056 +46658,2874.43508148515,457.799321782178,45,38.6291287128713,39.7880025742574,9.72360396039604,-1.06732673267327,1334.96534653465,-6625.10792079208,-5959.05247524752,20,40,9,32,5306900.04671694,397621.249093178,0,0,0,0,0,0,0,38.6291287128713,26873.7175949949,19.4472079207921,10.4291710288332,10.4888656215907,-1.06732673267327,-1.05268652374341,-0.8273482462267,1.38852423410827,1.10160560506838,1.08540127229057,38.832567828428,-0.0408251520577882,-12584.1603960396,-12963.872208607,-13205.7908222323,2.33195869096167,-45541.5270790477,-27846.1093667033,0,-45541.5270790477,38.6293229095186,38.6293229095186,-1.11331269265541,38.5768957959845,25.7,1014.9,37.04,111.483008218682 +46659,2874.43843495049,457.805753960396,45,34.363099009901,35.393991980198,7.10330693069307,-2.63079207920792,1342.58910891089,-7426.81980198019,-6697.39702970297,20,40,9,32,5306906.11633619,397629.370278515,0,0,0,0,0,0,0,34.3630990099009,26883.8699973051,14.2066138613861,7.61873921976114,8.01471810942537,-2.63079207920792,-2.61615187027807,-1.97925285125324,2.01020495188472,1.59482491406034,1.51191367782872,39.0543340865196,0.0774021842365472,-14124.2168316832,-12978.4410057837,-10481.952357529,2.62358732380817,-57169.8862275809,-29265.7710486245,0,-57169.8862275809,34.4040970493088,34.4040970493088,-1.17184453593874,34.747522375116,25.7,1014.9,37.02,64.9726694449027 +46660,2874.44142445544,457.811487425743,45,31.4354752475248,32.3785395049505,6.44854455445544,-1.87831683168317,1560.36138613861,-1799.81584158416,-1731.69405940594,20,40,9,32,5306911.52722676,397636.609273985,0,0,0,0,0,0,0,31.4354752475247,26892.9116567661,12.8970891089109,6.91646577949761,7.28965124620557,-1.87831683168317,-1.86367662275331,-1.39485979155833,1.93934273482465,1.53860535837425,1.60583322865622,45.3890728485024,-0.000144004063695899,-3531.5099009901,-4287.78658955005,-6348.23145500163,2.86319241465928,-18304.7418444507,-9469.89118008316,0,-18304.7418444507,31.5281383197725,31.5281383197725,-0.378789116535419,32.1143524511235,25.7,1014.9,37.0037871287129,53.8483555336343 +46661,2874.44427148515,457.81696029703,45,30.5721089108911,31.4892721782178,6.99320792079208,-1.74425742574257,1524.4702970297,-1005.51881188119,-896.462376237624,20,40,9,32,5306916.67997125,397643.519017318,0,0,0,0,0,0,0,30.572108910891,26901.5260251104,13.9864158415842,7.50065117246516,7.70370286814497,-1.74425742574257,-1.72961721681272,-1.31267529089425,1.48549186844437,1.17853626776112,1.26996538160688,44.3450433867071,-0.0147604165288299,-1901.98118811881,-1936.82898735418,-2673.17956507766,2.94412617199617,-9936.10277023982,-6009.3585751936,0,-9936.10277023982,30.5807783550632,30.5807783550632,-0.240096286856407,30.609871371806,25.7,1014.9,37.01,60.2347559119412 +46662,2874.44699277228,457.822349306931,45,29.7648712871287,30.6578174257426,6.61819801980198,-0.776039603960396,1480.13861386139,-1086.88316831683,-913.741584158416,20,40,9,32,5306921.60165798,397650.320171096,0,0,0,0,0,0,0,29.7648712871287,26909.904230886,13.236396039604,7.09842969050629,7.3384813715246,-0.776039603960396,-0.761399395030539,-0.563305845944884,1.40686176171087,1.11615394545302,1.00185317848307,43.0554869963103,-0.00273607721022213,-2000.62475247525,-2014.06186648368,-2072.58142898255,3.02398261523727,-10424.1707232115,-6400.99779770859,0,-10424.1707232115,29.7414058425644,29.7414058425644,-0.25598797503513,29.6975039032183,25.7,1014.9,37.02,54.8511985600205 +46663,2874.44944940594,457.827771980198,45,28.7745643564356,29.6378012871287,7.66803960396039,-2.25425742574257,1443.79702970297,-1264.11881188119,-1011.94455445545,20,40,9,32,5306926.03237853,397657.154541979,0,0,0,0,0,0,0,28.7745643564356,26918.0289151819,15.3360792079208,8.22445019473129,8.17481953198452,-2.25425742574257,-2.23961721681272,-1.77907826394727,0.770227987721004,0.611071414968072,0.651610511261898,41.9983531647187,-0.0123123474459996,-2276.06336633663,-2266.44031957651,-2162.1171926683,3.1279534092284,-11959.5553572872,-6591.36600381163,0,-11959.5553572872,28.7717680619547,28.7717680619547,-0.263421886743127,28.7737816297922,25.7,1014.9,37.03,67.1080344161885 +46664,2874.45141752475,457.83330970297,45,27.7878712871287,28.6215074257426,5.27067326732673,-2.09930693069307,1398.84653465347,-1225.46831683168,-1008.50594059406,20,40,9,32,5306929.55566577,397664.116137251,0,0,0,0,0,0,0,27.7878712871287,26925.8851252755,10.5413465346535,5.65312544257619,6.07839550324369,-2.09930693069307,-2.08466672176322,-1.56730856586804,2.28949974462142,1.81640744145696,1.63028760722581,40.6907962663599,-0.0233286583187361,-2233.97425742574,-2232.95988628566,-2230.54896957427,3.23908436813298,-11776.4175684828,-6353.8078939855,0,-11776.4175684828,27.8072948730516,27.8072948730516,-0.253710148242547,27.8665649634049,25.7,1014.9,37.04,38.5331416835612 +46665,2874.45281871287,457.839015346535,45,27.0158712871287,27.8263474257426,5.13076237623762,-2.64980198019802,1355.75247524752,-1203.20594059406,-996.307920792079,20,40,9,32,5306932.02509869,397671.268231395,0,0,0,0,0,0,0,27.0158712871287,26933.4927672722,10.2615247524752,5.50306229542336,5.91484193656942,-2.64980198019802,-2.63516177126817,-1.99077469251016,2.05293779135916,1.62872762481552,1.79282907949917,39.437240891887,-0.00799222553512255,-2199.51386138614,-2195.00737182629,-2187.04574938171,3.33159374720602,-11559.6877347753,-5274.7761840363,0,-11559.6877347753,27.0049098127634,27.0049098127634,-0.210839895870777,27.0271215727941,25.7,1014.9,37.05,35.4949265113556 +46666,2874.45369752475,457.844685940594,45,26.2200594059406,27.0066611881188,4.68117821782178,-2.55782178217822,1321.24257425743,-1171.18415841584,-972.485148514852,20,40,9,32,5306933.52769214,397678.359504117,0,0,0,0,0,0,0,26.2200594059406,26940.8846192799,9.36235643564357,5.02085527639315,5.48670014495158,-2.55782178217822,-2.54318157324837,-1.90001336722462,2.29600763047878,1.82157056598983,1.80210892100919,38.4333885638629,-0.0120963413504557,-2143.66930693069,-2138.42967356142,-2369.47324306523,3.43269279100413,-11311.7705709132,-5025.95631192244,0,-11311.7705709132,26.2438602097833,26.2438602097833,-0.200808199631843,26.1368130203256,25.7,1014.9,37.06,30.508587897234 +46667,2874.45412613861,457.85044009901,45,25.3884455445545,26.1500989108911,5.19187128712871,-1.63247524752475,1277.4702970297,-1346.5198019802,-1103.71485148515,20,40,8.97029702970297,32,5306934.19452505,397685.540056903,0,0,0,0,0,0,0,25.3884455445544,26948.0695049784,10.3837425742574,5.56860540944411,5.8737734617223,-1.63247524752475,-1.61783503859489,-1.2599293535368,1.6073953179164,1.27525011683686,1.29877987166169,37.1601046326637,-0.0288728147710283,-2450.23465346535,-2544.247642388,-3004.61998801914,3.54594789226334,-12901.7607679279,-10331.9632830463,0,-12901.7607679279,25.3039559847073,25.3039559847073,-0.412730505723838,24.7973875402165,25.7,1014.9,37.07,35.2532544574267 +46668,2874.45438524753,457.855871782178,45,23.1626633663366,23.8575432673267,5.91154455445545,-3.32425742574257,1185.5396039604,-2323.79207920792,-1914.7297029703,20,40,8,32,5306934.5545074,397692.313415118,0,0,0,0,0,0,0,23.1626633663366,26954.8362161721,11.8230891089109,6.34049982435444,6.35815620000214,-3.32425742574257,-3.30961721681272,-2.61436409301571,0.951825170993641,0.755144143440284,0.719601796146383,34.4859491698309,0.00288008127391804,-4238.52178217822,-4148.55640623468,-3240.25541893542,3.88981912221407,-22761.4825437905,-17098.9256095562,0,-22761.4825437905,23.1690745024997,23.1690745024997,-0.684034245008657,23.113574213408,25.7,1014.9,37.08,40.8642291294202 +46669,2874.45485950495,457.860710891089,45,20.9367425742574,21.5648448514852,6.29617821782178,-3.5,1289.80693069307,-1976.09504950495,-1853.22871287129,20,40,8,32,5306935.32611538,397698.355822882,0,0,0,0,0,0,0,20.9367425742574,26960.9401755505,12.5923564356436,6.75304339102299,6.55771421471741,-3.5,-3.48535979107015,-2.8384966734389,1.03264762165687,0.819265793231404,0.803031917559478,37.518962759394,0.0181445120256836,-3829.32376237624,-3848.50562689932,-3309.43850530529,4.30154541545989,-24505.6233957794,-12409.762735402,0,-24505.6233957794,20.9793326144495,20.9793326144495,-0.496793615005068,21.4085772118947,25.7,1014.9,37.09,43.1009572011996 +46670,2874.45585970297,457.864938019802,45,19.5242475247525,20.1099749504951,5.876,-3.5,1241.08415841584,-1082.3603960396,-1406.60891089109,20,40,8,32,5306937.08547032,397703.653319114,0,0,0,0,0,0,0,19.5242475247524,26966.5415296759,11.752,6.30237607527237,6.11920671835315,-3.5,-3.48535979107015,-2.83821359769909,0.969207941163988,0.768935013329975,0.766831038370466,36.1016747644989,-0.0324729163634258,-2488.96930693069,-2512.36693461425,-3342.20746888861,4.61107410345525,-16569.3332598629,-8205.12584594109,0,-16569.3332598629,19.5507890402901,19.5507890402901,-0.327427049635653,19.6774963507338,25.7,1014.89873762376,37.1315594059406,37.5856804937749 +46671,2874.45744722772,457.868395049505,45,18.2912277227723,18.8399645544555,5.50667326732673,-3.5,1121.93564356436,-1420.26435643564,-1646.28217821782,20,40,8.22772277227723,32,5306939.94977056,397708.010990634,0,0,0,0,0,0,0,18.2912277227722,26971.8096168046,11.0133465346535,5.90625014539516,5.73425789606395,-3.5,-3.48535979107015,-2.8386178728061,0.904649399295789,0.717716568718006,0.729870863746651,32.6357849594659,-0.0388090951660455,-3066.54653465346,-3029.27550240173,-3108.7553830383,4.92505989115889,-19690.9478150422,-10596.7072705641,0,-19690.9478150422,18.270630526419,18.270630526419,-0.422971876395561,18.0415316970846,25.7,1014.89,37.36,33.005671269276 +46672,2874.45949425743,457.870898217822,45,16.5702475247525,17.0673549504951,5.0159603960396,-3.49247524752475,992.282178217822,-1487.26435643564,-1677.41485148515,20,40,8.86138613861386,32,5306943.68630174,397711.195773205,0,0,0,0,0,0,0,16.5702475247525,26976.6508128442,10.0319207920792,5.37993001948838,5.21805196530818,-3.49247524752475,-3.4778350385949,-2.83447456932102,0.848419610762885,0.673105859953937,0.666681909340124,28.8643185312703,-0.0389530992297414,-3164.67920792079,-3157.27093422214,-2876.64562702596,5.43818356977592,-19844.9582331032,-12262.6360142238,0,-19844.9582331032,16.5620073522203,16.5620073522203,-0.489627923188357,16.4936112817412,25.7,1014.88,37.62,27.3793571140282 +46673,2874.46167128713,457.872300990099,45,14.839801980198,15.284996039604,4.62296039603961,-3.5,875.30198019802,-1440.81683168317,-1595.8396039604,20,40,8.9009900990099,32,5306947.68794008,397713.014345376,0,0,0,0,0,0,0,14.839801980198,26981.0105304184,9.24592079207921,4.95841303555679,4.78443308635218,-3.5,-3.48535979107015,-2.85564700123535,0.883974246307629,0.701313639724816,0.696141766709371,25.4615025061361,-0.027936788357005,-3036.65643564356,-3056.58154102539,-2707.52676436991,6.07402895832877,-18757.7899058181,-11720.5705724418,0,-18757.7899058181,14.8505747475738,14.8505747475738,-0.468200285375071,15.1403478338255,25.7,1014.87,37.88,22.9455088327281 +46674,2874.46377435644,457.872843168317,45,13.2255148514851,13.6222802970297,4.00418811881188,-3.45306930693069,771.341584158416,-1388.47326732673,-1509.65148514852,20,40,9,32,5306951.57158313,397713.758669315,0,0,0,0,0,0,0,13.2255148514851,26984.9039795108,8.00837623762377,4.29474121866744,4.1653985737167,-3.45306930693069,-3.43842909800084,-2.79977465374188,0.694697801968281,0.551148459406198,0.550431423390053,22.4374171685221,-0.0257767274015664,-2898.12475247525,-2825.59217723752,-1978.87113485888,6.81695858854548,-17693.9692475689,-9972.36638249904,0,-17693.9692475689,13.2483078129595,13.2483078129595,-0.398329684453594,14.0722074513126,25.7,1014.86,38.14,17.5453674189909 +46675,2874.46563227723,457.87266029703,45,12.2639801980198,12.6318996039604,3.39032673267327,-3.08712871287129,716.777227722772,-878.362376237624,-1153.37821782178,20,40,9,32,5306955.01713729,397713.591936896,0,0,0,0,0,0,0,12.2639801980198,26988.411480776,6.78065346534653,3.63633663842008,3.58802400998939,-3.08712871287129,-3.07248850394143,-2.46216776130906,0.351558158835345,0.278913704757376,0.296493409909274,20.8502043784659,-0.00756021334403484,-2031.74059405941,-2107.87787471817,-106.804741515978,7.33991313898783,-12436.7111372763,-4004.39558393659,0,-12436.7111372763,12.2627614939712,12.2627614939712,-0.160010184186736,13.5382504234832,25.7,1014.85,38.4,12.916377382522 +46676,2874.46732376238,457.871945346535,45,11.7616138613861,12.1144622772277,3.32389108910891,-3.27772277227723,665.495049504951,-649.131683168317,-895.89900990099,20,40,9,32,5306958.16614481,397712.757067281,0,0,0,0,0,0,0,11.7616138613861,26991.74577159,6.64778217821782,3.56508027175137,3.50266937805614,-3.27772277227723,-3.26308256334737,-2.62822703005408,0.390024248732338,0.309431328573144,0.306140937984536,19.3584662826401,-0.024912703019391,-1545.03069306931,-1516.66416037643,1037.58041524139,7.65320171385248,-9255.21521126498,-2789.92401385403,0,-9255.21521126498,11.7774810312714,11.7774810312714,-0.111072988486967,13.5809367458873,25.7,1014.84,38.66,12.3074902762409 +46677,2874.4688439604,457.870788415841,45,11.5928316831683,11.9406166336634,3.3960396039604,-1.83089108910891,797.509900990099,1116.30792079208,827.270297029703,20,40,9,32,5306961.00762964,397711.36611462,0,0,0,0,0,0,0,11.5928316831683,26994.9730979927,6.79207920792079,3.64246404878786,3.55457375215937,-1.83089108910891,-1.81625088017906,-1.46704434266609,0.471740932338047,0.374262430887653,0.362433588127326,23.1986226492187,0.124563515096955,1943.57821782178,2238.01798843251,1911.0151930967,7.76407789452856,17658.0405672467,3758.48555500253,0,17658.0405672467,11.6822338006078,11.6822338006078,0.147003561742314,13.8193248313004,25.7,1014.83,38.92,12.6713865887623 +46678,2874.47027683168,457.869148613862,45,13.3871089108911,13.7887221782178,3.72322772277228,-2.73336633663366,1112.87128712871,5144.8396039604,4266.04356435644,20,40,8.93069306930693,32,5306963.69801911,397709.370910038,0,0,0,0,0,0,0,13.3871089108911,26998.3751075636,7.44645544554456,3.99339369005971,3.93576856004703,-2.73336633663366,-2.71872612770381,-2.17435012780855,0.50337475316608,0.39935957609972,0.406326061830071,32.3721135188387,-0.0195845526626427,9410.88316831683,8793.04904421135,3489.80811633381,6.75923211477234,81825.4460720716,18709.116557216,0,81825.4460720716,13.4184778943241,13.4184778943241,0.748687492511621,14.2052919415557,25.7,1014.82,39.18,15.7560784493283 +46679,2874.47170415841,457.866655841584,45,16.0492079207921,16.5306841584158,4.53543564356436,-3.13178217821782,962.747524752475,3781.76336633663,3045.88712871287,20,40,8.82178217821782,32,5306966.39697647,397706.313206217,0,0,0,0,0,0,0,16.0492079207921,27002.4954223326,9.07087128712872,4.86453728572797,4.77945721949874,-3.13178217821782,-3.11714196928797,-2.51216282326829,0.548506033266548,0.435165124106245,0.426887841028697,28.0051902872605,0.00093602641402336,6827.65049504951,6612.25093618273,5770.41790362237,5.6161347751599,43025.5013517892,14082.1499746549,0,43025.5013517892,15.9863452602686,15.9863452602686,0.563264494766312,15.1810671483091,25.7,1014.81,39.44,22.9131572851078 +46680,2874.47283415842,457.863371683168,45,16.8925643564356,17.3993412871287,4.65876237623762,-2.03920792079208,840.792079207921,968.718811881188,686.989108910891,20,40,9,32,5306968.56266112,397702.260119034,0,0,0,0,0,0,0,16.8925643564356,27007.1355694998,9.31752475247524,4.99681288978541,4.93282021507986,-2.03920792079208,-2.02456771186223,-1.61800274904772,0.46546410099728,0.369282616767593,0.366849492416155,24.457650178112,0.0241206806690636,1655.70792079208,2527.58274678953,7777.76248895424,5.32889345716244,9707.63740812639,429.678130113532,0,9707.63740812639,16.8911178315851,16.8911178315851,0.0166064873814126,16.889292083162,25.7,1014.80252475248,39.6570792079208,24.3948506229802 +46681,2874.47343514851,457.859696138614,45,17.617702970297,18.1462340594059,4.71457425742574,-1.69128712871287,1220.26237623762,4788.15940594059,4010.94356435644,20,40,9.43564356435644,32,5306969.75708263,397697.70221136,0,0,0,0,0,0,0,17.617702970297,27011.8725013205,9.42914851485149,5.05667460944436,5.02193779365119,-1.69128712871287,-1.67664691978302,-1.33870036815545,0.407650793716308,0.323415600705636,0.350095741298917,35.4959936725939,0.0359290138921275,8799.10297029703,8584.22407607098,8265.2518499908,5.11306154537808,63968.6565686362,13761.5449136347,0,63968.6565686362,17.7159261837075,17.7159261837075,0.549522650284826,18.8444040863548,25.7,1014.81,39.62,25.2884931154407 +46682,2874.47347029703,457.855480792079,103.811881188119,20.4342475247525,21.0472749504951,4.22957425742574,2.75673267326733,965.985148514852,6723.17524752475,5453.8396039604,20,40,10,32,5306969.91529528,397692.453428987,0,0,0,0,0,0,0,20.4342475247524,27017.133086469,8.45914851485148,4.53648189390536,4.77075164271011,2.75673267326733,2.77137288219718,2.07165119858698,1.2327915883086,0.978052878158133,1.03821150577409,28.0993689449176,-0.0473053349241037,12177.0148514852,12002.6362807568,9234.84291898844,4.41280864234821,61004.9843666463,20336.2175307526,0,61004.9843666463,20.3936263111459,20.3936263111459,0.814541602675119,20.63228946871,25.7,1014.82,39.54,23.113245115287 +46683,2874.47275742574,457.850731089109,212.524752475248,23.1780792079208,23.8734215841584,4.40907920792079,2.77544554455446,1092.26237623762,6421.77326732673,5177.75544554455,20,40,10,32,5306968.69972314,397686.514565988,0,0,0,0,0,0,0,23.1780792079208,27023.199325798,8.81815841584159,4.72901213648415,5.08081233649099,2.77544554455446,2.79008575348431,2.07103700368926,1.7490843163229,1.38766111477768,1.41877154177776,31.7726246016727,0.0350649895099521,11599.5287128713,11300.1312910499,10726.6213914655,3.88788505027162,57235.8936519387,18109.5664199109,0,57235.8936519387,23.1714460347025,23.1714460347025,0.723759380888586,22.9039197335113,25.7,1014.83,39.46,26.297305272118 +46684,2874.4711970297,457.845823267327,225,25.4675247524752,26.2315504950495,4.02038613861386,3.14316831683168,1010.89108910891,5172.44059405941,4243.60396039604,20,40,10,32,5306965.91773918,397680.350927992,0,0,0,0,0,0,0,25.4675247524752,27029.979491502,8.04077227722772,4.312114604043,4.88132779199789,3.14316831683168,3.15780852576154,2.23994659513779,2.78513567615776,2.20962731248382,2.0329826655994,29.4056298067031,-0.0698419708925123,9416.04455445545,9648.36415057347,10087.7080473363,3.53562933570401,39041.1751738224,13588.1968415467,0,39041.1751738224,25.4426068032546,25.4426068032546,0.5445912165474,25.2908395445374,25.7,1014.84,39.38,24.2366454075604 +46685,2874.4689890099,457.840998019802,225,27.3456336633663,28.1660026732673,5.59660396039604,2.18287128712871,952.722772277228,5060.01881188119,4113.16435643564,20,40,10,32,5306961.93431301,397674.268845808,0,0,0,0,0,0,0,27.3456336633663,27037.3154115241,11.1932079207921,6.0027064164014,6.33010117304456,2.18287128712871,2.19751149605857,1.70514385201747,1.6736603458192,1.32782242660617,1.40095863633561,27.7135820582763,0.032256910267882,9173.18316831684,9202.73830996961,9275.58838162948,3.29268707599915,33461.0034347402,14079.8347468715,0,33461.0034347402,27.3692776198412,27.3692776198412,0.562770262174734,27.4603930070282,25.7,1014.85,39.3,40.6026461353255 +46686,2874.46641376238,457.83595990099,225,29.5528316831683,30.4394166336633,6.70785148514851,3.07742574257426,1042.5297029703,4985.26336633663,3989.92772277228,20,40,10,32,5306957.27536264,397667.909570609,0,0,0,0,0,0,0,29.5528316831683,27045.2152638893,13.415702970297,7.19458861750856,7.40214070371909,3.07742574257426,3.09206595150411,2.39519701681157,1.15304428507277,0.914784211990346,0.907642854806431,30.3259597777837,0.0200165648537304,8975.19108910892,8920.02066464072,8284.28802759747,3.04689902113922,33155.6311855754,15642.9214296824,0,33155.6311855754,29.5494045681796,29.5494045681796,0.62545066387826,29.5066715910459,25.7,1014.86,39.22,55.0261948952304 +46687,2874.46358960396,457.83057,225,31.6247722772277,32.5735154455446,7.17964356435643,1.67504950495049,1286.31683168317,3505.76336633663,2870.70891089109,20,40,10,32,5306952.16312206,397661.103982671,0,0,0,0,0,0,0,31.6247722772277,27053.7286008805,14.3592871287129,7.70061501514351,7.92270503605081,1.67504950495049,1.68968971388035,1.31071969464325,1.25077057900876,0.992316768151732,0.952253445550331,37.4174398944883,0.161716563530498,6376.47227722772,6811.07064993628,8302.98680014377,2.84659653536383,26503.6958562441,12448.43959453,0,26503.6958562441,31.6013862366434,31.6013862366434,0.495327255497825,31.593671887979,25.7,1014.87,39.14,63.0736891016546 +46688,2874.4606090099,457.824831683168,225,33.5975841584158,34.6055116831683,8.05908910891089,2.49861386138614,1700.33168316832,5367.7702970297,4442.05940594059,20,40,10,32,5306946.76881473,397653.859310838,0,0,0,0,0,0,0,33.5975841584158,27062.7609800334,16.1181782178218,8.64387515120629,8.78405179844646,2.49861386138614,2.51325407031599,1.95680054674668,1.09198211749532,0.866339666041066,1.04469118474688,49.4606437454403,0.0371530484335426,9809.82970297029,9410.56691500833,8881.52842618274,2.68050528796267,51989.1683802888,18366.0025626578,0,51989.1683802888,33.6594840701892,33.6594840701892,0.733932675445766,33.909309840156,25.7,1014.88,39.06,77.5340074070701 +46689,2874.45736376238,457.818665940594,225,36.621198019802,37.719833960396,6.39313586359406,-2.5,1850.44554455446,5698.4801980198,4709.37623762376,20,40,10,32,5306940.89373121,397646.073593925,0,0,0,0,0,0,0,36.6211980198019,27072.5150939773,12.7862717271881,6.85703650658288,7.5398879662366,-2.5,-2.48535979107015,-1.77786427554281,3.356862168078,2.66321472031894,2.46415132485444,53.8272789688911,0.0490333836884546,10407.8564356436,10265.214880894,9677.4134988363,2.45904569528586,55075.9213704953,20531.1094117807,0,55075.9213704953,36.6050524458386,36.6050524458386,0.820310372621425,36.5220090169761,25.7,1014.89,38.98,57.4201874510279 +46690,2874.45384485149,457.811998514851,225,39.2205940594059,40.3972118811881,6.89500715070297,1.00534653465347,1814.70792079208,4665.35544554455,3955.79900990099,20,40,10,32,5306934.5228252,397637.654048939,0,0,0,0,0,0,0,39.2205940594059,27083.0739633118,13.7900143014059,7.39532472862872,8.11606385103959,1.00534653465347,1.01998674358332,0.725714405032351,3.54197022055798,2.8100728472037,2.78849561833815,52.7877136330704,-0.142852031186335,8621.15445544555,8610.60302911479,9100.28627260685,2.29528156040878,41391.9776320189,16281.9576324168,0,41391.9776320189,39.228254582884,39.228254582884,0.653557930050426,39.1920403401649,25.7,1014.89873762376,38.8949504950495,66.3738528863211 +46691,2874.4501239604,457.804883861386,225,41.642,42.89126,7.77632673269307,0.111188118811881,1482.88613861386,4569.89108910891,4214.29702970297,20,40,10,32,5306927.78767804,397628.670849107,0,0,0,0,0,0,0,41.642,27094.3026016781,15.5526534653861,8.34059488659391,9.00506952447262,0.111188118811881,0.125828327741739,0.098079490383104,3.29019450039138,2.61032297050546,2.67000258964035,43.1354092516615,0.0288728147710283,8784.18811881188,8931.1468483482,8830.96552159785,2.16186768120574,32761.3943088607,17227.956684693,0,32761.3943088607,41.6374790706793,41.6374790706793,0.688730135389774,41.6531527647498,25.7,1014.9,38.78,82.0882005802028 +46692,2874.44620168317,457.797299702971,225,44.1407326732673,45.4649546534653,8.95278712871287,0.725940594059406,1567.17326732673,4558.39801980198,4308.60792079208,20,40,10,32,5306920.68988515,397619.096265193,0,0,0,0,0,0,0,44.1407326732673,27106.2195692523,17.9055742574257,9.60242195490239,10.149478094248,0.725940594059406,0.740580802989265,0.559284402178496,2.78527804405278,2.20974026209411,2.30403257455064,45.5872224401479,0.0164164632613328,8867.00594059406,8862.15285756299,8789.51219590051,2.03943540710608,32966.8236044922,17083.7716332084,0,32966.8236044922,44.1259370649936,44.1259370649936,0.683131555729831,44.1117756627466,25.7,1014.9,38.66,104.18648951627 +46693,2874.44207425743,457.789266930693,225,46.5180693069307,47.9136113861386,10.1148404840495,-1.54019801980198,1649.93069306931,4402.33465346535,4066.09801980198,20,40,10,32,5306913.22201836,397608.956188228,0,0,0,0,0,0,0,46.5180693069306,27118.8159875417,20.229680968099,10.8487965745184,11.2742967416814,-1.54019801980198,-1.52555781087212,-1.16531035741881,2.28914892025467,1.81612910991667,1.90768496957142,47.9945383729523,0.0200885668855783,8468.43267326733,8452.44537790413,8459.86926046091,1.93513811601552,31452.7520089705,16129.6366888637,0,31452.7520089705,46.5139299088324,46.5139299088324,0.644916348070445,46.4980358911302,25.7,1014.9,38.54,128.843822017362 +46694,2874.43773089109,457.780828217822,225,48.7661089108911,50.2290921782178,10.7815346534653,-1.41980198019802,1730.34653465347,4267.55445544555,3807.00099009901,20,40,10,32,5306905.36314652,397598.303406548,0,0,0,0,0,0,0,48.766108910891,27132.0573112765,21.5630693069307,11.5638676063172,11.9707411212243,-1.41980198019802,-1.40516177126816,-1.0726195882114,2.33619310560417,1.85345228872324,1.70484419878689,50.3337403836286,0.0235446644142799,8074.55544554455,8085.24994608372,8095.09718462359,1.84584203920346,30000.8634069288,15059.5358429359,0,30000.8634069288,48.7581076365062,48.7581076365062,0.602066518533044,48.7429226138768,25.7,1014.9,38.42,144.781318642702 +46695,2874.43318613861,457.772016831683,225,50.8656435643565,52.3916128712871,12.7861881188119,-2.91128712871287,1801.95544554455,4165.09306930693,3645.9198019802,20,40,10,32,5306897.13949678,397587.179827304,0,0,0,0,0,0,0,50.8656435643564,27145.8995045108,25.5723762376238,13.7139833379734,13.7962978401872,-2.91128712871287,-2.89664691978302,-2.2838000053559,1.24872759645761,0.990695938659439,0.989223604027879,52.4167591649898,0.0179285059301398,7811.01287128713,7809.86050387217,7806.1197739568,1.76961454849206,28977.3538966301,14203.6339767843,0,28977.3538966301,50.860641897853,50.860641897853,0.567905924255786,50.8499965853497,25.7,1014.9,38.3,191.202414888996 +46696,2874.42844118812,457.762857524752,225,52.8409603960396,54.4261892079208,13.122,-2.09653465346535,1873.83663366337,3997.53564356436,3499.52376237624,20,40,10,32,5306888.55272527,397575.616313463,0,0,0,0,0,0,0,52.8409603960395,27160.3103529157,26.244,14.0741625016549,14.1957886388477,-2.09653465346535,-2.08189444453549,-1.63305238589514,1.32092765062975,1.04797688659576,1.07213040396316,54.5076981698543,0.0155524388791574,7497.05940594059,7495.90934222135,7494.18275745606,1.7034058408866,27840.7881821042,13235.8699086135,0,27840.7881821042,52.8364621115576,52.8364621115576,0.529226437495242,52.8281843835608,25.7,1014.9,38.18,202.068771068613 +46697,2874.42350881188,457.753376237624,225,54.7193861386139,56.3609677227723,12.5634851485149,-2.19207920792079,1937.35148514851,3806.0603960396,3336.7900990099,20,40,10,32,5306879.62591961,397563.645588802,0,0,0,0,0,0,0,54.7193861386138,27175.2514934822,25.1269702970297,13.4751205279169,13.8283238371176,-2.19207920792079,-2.17743899899094,-1.6842925988141,1.93408561563749,1.53443454750841,1.50890385101339,56.3552703070727,0.0267847558474377,7142.8504950495,6992.81777276738,6978.16671682633,1.64492235933276,26483.0716962792,12525.5048933993,0,26483.0716962792,54.7058497206156,54.7058497206156,0.50066306135564,54.686336571006,25.7,1014.9,38.06,191.537764573696 +46698,2874.41841019802,457.743581485149,225,56.3731881188119,58.0643837623762,13.3526732673267,-1.06009900990099,1710.14851485149,3400.25148514852,3039.52574257426,20,40,10,32,5306870.39814172,397551.278951195,0,0,0,0,0,0,0,56.3731881188118,27190.6899543733,26.7053465346535,14.3215739518259,14.5948028715316,-1.06009900990099,-1.04545880097113,-0.816343019592179,1.63330673643247,1.29580731214639,1.33954639833417,49.7462038037493,-0.155884398950814,6439.77722772278,6575.05894520145,6579.89567193257,1.59661376372246,20255.783495881,11182.9655473213,0,20255.783495881,56.3761661601803,56.3761661601803,0.449111742857445,56.3838716217707,25.7,1014.9,37.94,213.405513820801 +46699,2874.41315693069,457.733504554456,225,58.0361188118812,59.7772023762376,13.6876633663366,-0.921188118811881,1479.54455445545,3466.40792079208,3046.11089108911,20,40,10,32,5306860.8901599,397538.555744711,0,0,0,0,0,0,0,58.0361188118811,27206.58132071,27.3753267326733,14.6808717029241,14.9750755639142,-0.921188118811881,-0.906547909882023,-0.705167473960481,1.70519579422973,1.35284152665068,1.33297230191793,43.0382065086668,0.0260647355289582,6512.51881188119,6548.37068914812,6579.44482431407,1.55086443125171,17385.8786342497,11342.2983881769,0,17385.8786342497,58.0268821684148,58.0268821684148,0.45344002222005,58.0195827031603,25.7,1014.9,37.82,224.531020007148 +46700,2874.40774346535,457.72314990099,225,59.6450297029703,61.4343805940594,14.3379405940594,-2.26316831683168,1522.70297029703,3466.24356435644,3052.28415841584,20,40,10,32,5306851.09160746,397525.481332381,0,0,0,0,0,0,0,59.6450297029702,27222.9260909795,28.6758811881188,15.3783345419804,15.6202680672184,-2.26316831683168,-2.24852810790183,-1.76384607571403,1.57134241972289,1.24664703325118,1.26030170659065,44.2936339359677,-0.000504014222935653,6518.52772277228,6511.64348593275,6506.6683196222,1.50903616635655,17428.1869396397,11322.8735479993,0,17428.1869396397,59.6450545044603,59.6450545044603,0.452919920704946,59.6447021450196,25.7012623762376,1014.9,37.7164108910891,244.358720701541 +46701,2874.40217336634,457.712518712871,225,61.241594059406,63.0788418811881,15.0660396039604,-0.720594059405941,1561.21287128713,3412.70693069307,3011.87425742574,20,40,10,32,5306841.00906287,397512.05730749,0,0,0,0,0,0,0,61.2415940594059,27239.7210853414,30.1320792079208,16.159266090726,16.3318305003924,-0.720594059405941,-0.705953850476082,-0.554565862244713,1.37140349552473,1.0880226216942,1.07339301307832,45.413841547458,0.0108723068090406,6424.58118811881,6420.84490736202,6419.61940473131,1.46967629483661,17151.7618087514,10846.5247638225,0,17151.7618087514,61.243957553181,61.243957553181,0.433756494461318,61.240845952935,25.71,1014.9,37.71,267.153066585502 +46702,2874.39644722772,457.701623564357,225,62.7922673267327,64.6760353465346,15.2125643564356,-0.425346534653465,1599.5198019802,3342.31584158416,2949.73465346535,20,40,10,32,5306830.64335069,397498.299346575,0,0,0,0,0,0,0,62.7922673267326,27256.950906546,30.4251287128713,16.3164230162596,16.5453160165335,-0.425346534653465,-0.410706325723608,-0.317898475781504,1.64402610358013,1.30431167573081,1.27671963778639,46.528144992337,0.0216006095543853,6292.05049504951,6294.20609744143,6294.03338146073,1.43337496393134,16784.6146002153,10578.3309809544,0,16784.6146002153,62.7860113714341,62.7860113714341,0.422925584637672,62.7845586718025,25.72,1014.9,37.72,274.290881751345 +46703,2874.39057386139,457.690471485148,225,64.2734851485149,66.2016897029703,15.7683267326733,-0.748910891089109,1636.60396039604,3264.37128712871,2891.37623762376,20,40,10,32,5306820.01064033,397484.216491133,0,0,0,0,0,0,0,64.2734851485148,27274.6030183447,31.5366534653465,16.9125127888152,17.1033521499961,-0.748910891089109,-0.734270682159252,-0.580890852881844,1.39692096841377,1.10826727459347,1.1411313979559,47.6068794334829,0.00136803860511107,6155.74752475247,6157.74137829624,6156.97755007706,1.40033156232937,16414.2986100419,10240.202425092,0,16414.2986100419,64.2791409665718,64.2791409665718,0.409594919888025,64.2783295717754,25.73,1014.9,37.73,292.842423616624 +46704,2874.38455811881,457.679066633663,225,65.7284752475247,67.7003295049505,16.3085346534653,-0.222475247524753,1672.28217821782,3168.98118811881,2846.1405940594,20,40,10,32,5306809.11982874,397469.814076311,0,0,0,0,0,0,0,65.7284752475246,27292.6629033832,32.6170693069307,17.4919194388616,17.6463165312898,-0.222475247524753,-0.207835038594896,-0.164664765371618,1.3887425227178,1.10177878746583,1.15307053432972,48.6447167205393,0.0120243393186078,6015.12178217822,6014.75294578963,6014.11727783344,1.36932407966673,16027.5923421999,9848.59824825681,0,16027.5923421999,65.7281250857758,65.7281250857758,0.393828491760072,65.7259367491912,25.74,1014.9,37.74,311.764629538445 +46705,2874.37840326733,457.66741970297,225,67.1388316831683,69.1529966336634,15.7944867987129,-0.402079207920792,1708.90099009901,3095.79900990099,2772.59801980198,20,40,10,32,5306797.97673374,397455.105523865,0,0,0,0,0,0,0,67.1388316831682,27311.1184470576,31.5889735974257,16.9405710894168,17.2901663557316,-0.402079207920792,-0.387438998990935,-0.297223499664771,2.04098194358373,1.6192422816006,1.50272611348328,49.7099147796979,0.0154804368473094,5868.39702970297,5877.33823154592,5879.69130677504,1.34055731314039,15641.9945681162,9496.89266658411,0,15641.9945681162,67.1301830212723,67.1301830212723,0.379727205393813,67.1268881065575,25.75,1014.9,37.75,299.614678900335 +46706,2874.37211782178,457.655534752475,225,68.4995148514851,70.5545002970297,17.0368157315842,-0.853564356435644,1743.60891089109,3032.88415841584,2752.52376237624,20,40,10,32,5306786.59704023,397440.096166381,0,0,0,0,0,0,0,68.499514851485,27329.9566471401,34.0736314631683,18.2730462671137,18.4249229531137,-0.853564356435644,-0.838924147505786,-0.662129606582746,1.52452169300364,1.20950113855211,1.34796333318913,50.7195272702699,0.00316808940130984,5785.40792079208,5779.93713361435,5778.92954146849,1.31393321275699,15421.2094948941,9448.97148688723,0,15421.2094948941,68.4911500833251,68.4911500833251,0.377928634447607,68.4904269396046,25.76,1014.9,37.76,340.42800626239 +46707,2874.36570861386,457.643410693069,225,69.8217920792079,71.9164458415841,16.4568712871287,-1.34217821782178,1777.81683168317,2976.0099009901,2699.56534653465,20,40,10,32,5306774.99342927,397424.784868768,0,0,0,0,0,0,0,69.8217920792078,27349.1719950774,32.9137425742574,17.6510197198497,18.0073256362109,-1.34217821782178,-1.32753800889192,-1.0353881196055,2.19877219408961,1.74442743869946,1.70056993943005,51.7145953504086,0.00504014222935656,5675.57524752475,5678.5139692187,5679.82001688541,1.28904207241322,15133.5946363808,9222.22863602575,0,15133.5946363808,69.8249427507106,69.8249427507106,0.368840473156221,69.8254359505717,25.77,1014.9,37.77,325.279165288605 +46708,2874.35917306931,457.631067227723,225,71.0983762376238,73.2313275247525,16.0834515952475,-0.914455445544555,1809.9504950495,2913.1297029703,2669.55148514851,20,40,10,32,5306763.16069842,397409.196082272,0,0,0,0,0,0,0,71.0983762376237,27368.7500796483,32.1669031904951,17.2505038362303,17.7627478337358,-0.914455445544555,-0.899815236614696,-0.694841766730467,2.75856803796017,2.18854949588331,2.18856712561405,52.6493257278586,0.0137523880829586,5582.68118811881,5584.21705715126,5583.67295573932,1.26588456769685,14882.8225616407,8685.31414542655,0,14882.8225616407,71.1076119988236,71.1076119988236,0.347280767680728,71.1090214421251,25.78,1014.9,37.78,316.527253086881 +46709,2874.3525260396,457.618494356436,225,72.3631881188119,74.5340837623762,17.5975544554456,-2.45277227722772,1841.27227722772,2842.76534653465,2625.47821782178,20,40,10,32,5306751.12658153,397393.317837785,0,0,0,0,0,0,0,72.3631881188118,27388.6791669696,35.1951089108911,18.8744734825226,19.12327912271,-2.45277227722772,-2.43813206829787,-1.90897362592408,1.86326658382674,1.47824925345891,1.43341780069305,53.5604394388626,0.0083522356943623,5468.24356435644,5465.10898931477,5464.71436000966,1.24375322011544,14570.4310979243,8470.84636567091,0,14570.4310979243,72.3565279874521,72.3565279874521,0.338753553573182,72.3555044024792,25.79,1014.9,37.79,366.600125985353 +46710,2874.34577811881,457.605692178218,225,73.556396039604,75.7630879207921,18.5439405940594,-1.77673267326733,1872.19306930693,2733.63366336634,2608.74752475247,20,40,10,32,5306738.91070262,397377.150604223,0,0,0,0,0,0,0,73.5563960396039,27408.9480652644,37.0878811881188,19.8895315761185,19.9969641032104,-1.77673267326733,-1.76209246433747,-1.39615853798806,1.57791330732977,1.25186014112514,1.25691108720954,54.4598888207072,0.00144004063695902,5342.38118811881,5342.02663464366,5341.15451804604,1.22357737382567,14239.1063270425,8153.44743728202,0,14239.1063270425,73.5569018723654,73.5569018723654,0.326124072803325,73.5542342934958,25.7987376237624,1014.9,37.7962128712871,400.644423080194 +46711,2874.33895534653,457.592645445545,225,74.7269900990099,76.9687998019802,19.3487524752475,-1.58306930693069,1903.85148514851,2638.98910891089,2566.82475247525,20,40,10,32,5306726.56163631,397360.676245742,0,0,0,0,0,0,0,74.7269900990098,27429.5425481027,38.6975049504951,20.7527424585376,20.7490995859575,-1.58306930693069,-1.56842909800084,-1.23966101286365,1.52818956951726,1.21241110096173,1.22826125221098,55.3807948080425,0.0206645831403619,5205.81386138614,5205.78505048524,5206.86766222077,1.20441324734365,13889.0379143732,7941.41358685521,0,13889.0379143732,74.7168615821978,74.7168615821978,0.317457983422091,74.7146820227477,25.8,1014.9,37.78,431.424437896754 +46712,2874.33205623762,457.579364356436,225,75.8269702970297,78.1017794059406,19.3037425742574,-2.70326732673267,1928.34653465347,2617.6396039604,2484.59405940594,20,40,10,32,5306714.07640819,397343.907411777,0,0,0,0,0,0,0,75.8269702970296,27450.4546778331,38.6074851485148,20.7044665356053,20.7735940339087,-2.70326732673267,-2.68862711780282,-2.12250847460788,1.62285819474906,1.28751781182619,1.27807080357302,56.0933269152098,0.00590416661153197,5102.23366336634,5099.54199588276,5099.5050195006,1.18693944486503,13588.2026878603,7710.15074721333,0,13588.2026878603,75.8315189687285,75.8315189687285,0.308349399296369,75.8318499413788,25.8,1014.9,37.76,432.290624701457 +46713,2874.32507019802,457.565876336633,225,76.8896534653465,79.196343069307,18.9159405940594,-2.45168316831683,1955.64356435644,2572.9297029703,2421.0603960396,20,40,10,32,5306701.43478898,397326.877908517,0,0,0,0,0,0,0,76.8896534653464,27471.671216667,37.8318811881188,20.2885247517484,20.5046851098025,-2.45168316831683,-2.43704295938698,-1.91053215519901,1.81488947303096,1.43986857914257,1.51086570562996,56.887365322429,0.00885624991729796,4993.9900990099,4992.72710518577,4988.92289075061,1.17052679228402,13301.3235459832,7167.43859587777,0,13301.3235459832,76.8953343789824,76.8953343789824,0.286612695923055,76.8965868663788,25.8,1014.9,37.74,421.185838546954 +46714,2874.31799118812,457.552196930693,225,77.9298712871288,80.2677674257426,18.2195742574257,-2.86920792079208,1908.42574257426,2506.56930693069,2314.94455445545,20,40,10,32,5306688.62524891,397309.606894399,0,0,0,0,0,0,0,77.9298712871286,27493.1778243953,36.4391485148515,19.54162847203,19.9718565747114,-2.86920792079208,-2.85456771186223,-2.21970549954748,2.44600717793358,1.94057485714651,1.84802935593667,55.5138545628975,-0.0789862289372021,4821.51386138614,4794.45236741496,4799.66248330518,1.15489850814307,12354.1354816196,6757.00936501022,0,12354.1354816196,77.919326536614,77.919326536614,0.270985143068758,77.9175642850572,25.8,1014.9,37.72,399.300612305034 +46715,2874.31082188119,457.538345247525,225,78.9042376237624,81.2713647524753,20.8552673267327,-2.15386138613861,1713.56435643564,2499.88217821782,2235.09207920792,20,40,10,32,5306675.65231822,397292.118254584,0,0,0,0,0,0,0,78.9042376237623,27514.9583814635,41.7105346534653,22.3685734927518,22.2703406467388,-2.15386138613861,-2.13922117720876,-1.70091904425791,1.81321302583189,1.43853854572599,1.51147919027541,49.8455666076995,0.00640818083446763,4734.97425742574,4769.58245270071,4769.14434515941,1.14064107406962,10768.8774128644,6902.66264391177,0,10768.8774128644,78.9000684246641,78.9000684246641,0.276054090557567,78.8991220873222,25.8,1014.9,37.7,497.210717131354 +46716,2874.30353950495,457.52435,225,79.8826237623763,82.2791024752475,19.3123635863366,-1.19643564356436,1733.02475247525,2603.06732673267,2227.75148514851,20,40,10.2475247524752,32,5306662.47317992,397274.446996951,0,0,0,0,0,0,0,79.8826237623761,27537.0123803359,38.6247271726733,20.71371310815,21.0135741088441,-1.19643564356436,-1.1817954346345,-0.936735326199998,2.38005031372672,1.88824703346278,1.91405812276412,50.4116465820881,0.0109443088408885,4830.81881188119,4825.06400352907,4823.93704547446,1.12667199618651,10975.3963429125,6811.52465931236,0,10975.3963429125,79.8804708361924,79.8804708361924,0.27237117276085,79.8804209235081,25.8,1014.9,37.68,443.385968619214 +46717,2874.29608366337,457.510263069307,225,80.8426930693069,83.2679738613861,18.8936573159406,0.293762376237624,1756.64356435644,2581.24059405941,2198.91188118812,20,40,11,32,5306648.97481049,397256.655744304,0,0,0,0,0,0,0,80.8426930693068,27559.3386701049,37.7873146318812,20.2646245477159,20.7128832851394,0.293762376237624,0.308402585167482,0.219375061247824,2.84243658798355,2.25508781226642,2.16175222085762,51.0986899699812,-0.000792022350327458,4780.15247524752,4779.94103519263,4779.9521256383,1.11328881326761,10877.2225951166,6729.47771905668,0,10877.2225951166,80.8473428095284,80.8473428095284,0.269185210600265,80.8481848926819,25.8,1014.9,37.66,431.144640783918 +46718,2874.2885119802,457.496042871287,225,81.7843861386139,84.2379177227722,21.4562216719802,-2.77524752475248,1777.19801980198,2513.47722772277,2210.60396039604,20,40,11,32,5306635.26487276,397238.694600769,0,0,0,0,0,0,0,81.7843861386138,27581.9299602864,42.9124433439604,23.0131344675338,22.9466433616271,-2.77524752475248,-2.76060731582262,-2.18980488534462,2.27528505264279,1.8051300118138,1.79631484409366,51.6965948424466,0.0038161076879414,4724.08118811881,4701.93796686599,4698.62211196572,1.10046609157697,10750.1002392671,6251.84328953566,0,10750.1002392671,81.7919998039406,81.7919998039406,0.250042207191,81.7915049709532,25.8,1014.9,37.64,529.44840809344 +46719,2874.2808490099,457.481674356436,225,82.6724950495049,85.1526699009901,21.6756732673267,-1.91811881188119,1791.67326732673,2214.77128712871,1967.99900990099,20,40,11,32,5306621.38918552,397220.545629128,0,0,0,0,0,0,0,82.6724950495048,27604.77599637,43.3513465346535,23.248509975395,23.1849844350096,-1.91811881188119,-1.90347860295133,-1.51311690863248,1.82877080119139,1.45088152982193,1.55228236381237,52.1176627246934,0.00856824178990616,4182.77029702971,4176.13554553475,4175.08170587701,1.08864081721803,9491.81898381075,5312.90492762663,0,9491.81898381075,82.6479318694244,82.6479318694244,0.212446492173983,82.6459583976745,25.8,1014.9,37.62,538.848422218162 +46720,2874.27310603961,457.467188613861,225,83.2913564356436,85.7900971287129,23.9433762376238,-1.86841584158416,1805.38613861386,1773.62772277228,1646.37722772277,20,40,11,32,5306607.36796825,397202.24792094,0,0,0,0,0,0,0,83.2913564356435,27627.8317370191,47.8867524752475,25.6807626891159,25.1500158067872,-1.86841584158416,-1.8537756326543,-1.50374904362204,3.0139358927868,2.3911492441059,2.21075122097881,52.516553981131,-0.00302408533761394,3420.00495049505,3429.58768748162,3430.95484603506,1.08054826228836,7763.1387026976,3659.6299897584,0,7763.1387026976,83.2870498970688,83.2870498970688,0.146409938023511,83.2853941320736,25.8,1014.9,37.5987376237624,633.921203353339 +46721,2874.26532435643,457.452600099011,225,83.734801980198,86.246846039604,22.3391782178218,-1.34277227722772,1813.90594059406,1480.82871287129,1448.4900990099,20,40,11,32,5306593.27737954,397183.820841176,0,0,0,0,0,0,0,83.7348019801979,27651.0337922446,44.6783564356436,23.9601603712127,23.8105541313727,-1.34277227722772,-1.32813206829787,-1.05467391038849,2.1398372953883,1.69767059200662,1.78739286964742,52.7643849747517,0.00619217473892378,2929.31881188119,2934.94893637879,2936.44229725382,1.07482407421591,6645.15751705075,2678.25531095786,0,6645.15751705075,83.7290836192529,83.7290836192529,0.107079643607927,83.7287540499998,25.8,1014.9,37.57,568.92912869125 +46722,2874.2575269307,457.437924653466,225,84.0765742574257,86.5988714851485,23.5157623762376,-1.27118811881188,1821,1325.37920792079,1322.47227722772,20,40,11,32,5306579.15961786,397165.284877589,0,0,0,0,0,0,0,84.0765742574256,27674.3440845988,47.0315247524752,25.2221201824013,24.8310306235525,-1.27118811881188,-1.25654790988202,-1.00074990451437,2.52618543244487,2.0041854246862,1.98545777438596,52.9707427980279,-0.000864024382175409,2647.85148514851,2660.4705715126,2661.15578791524,1.07045394234104,6005.59555940246,2178.875551295,0,6005.59555940246,84.0781296931672,84.0781296931672,0.0871619340151703,84.0777827334134,25.8,1014.9,37.54,617.888840524942 +46723,2874.24968564357,457.423208514852,225,84.3328415841584,86.8628268316832,23.0908217821782,-1.91712871287129,1826.22277227723,1208.02574257426,1262.18217821782,20,40,11,32,5306564.96157181,397146.696690619,0,0,0,0,0,0,0,84.3328415841583,27697.7369838837,46.1816435643564,24.7663449214395,24.4839924352859,-1.91712871287129,-1.90248850394143,-1.52070894732054,2.16134347048255,1.71473282430005,1.67734365738887,53.1226670852271,0.00345609752870164,2470.20792079208,2469.03823154593,2469.33140557046,1.06720082632715,5601.74149707006,1578.87923503106,0,5601.74149707006,84.3430673463385,84.3430673463385,0.063126981014937,84.3429999074673,25.8,1014.9,37.51,600.708792915748 +46724,2874.24184831683,457.408421584159,225,84.5409207920792,87.0771484158416,23.4641188118812,-1.22,1830.09900990099,1106.58514851485,1194.86831683168,20,40,11,32,5306550.77249281,397128.020369447,0,0,0,0,0,0,0,84.5409207920791,27721.1959881192,46.9282376237624,25.1667292422308,24.8136830742922,-1.22,-1.20535979107014,-0.959968404434757,2.27557516651495,1.80536017781294,1.96259576303457,53.235422267101,0.00302408533761394,2301.45346534653,2301.27775708264,2301.56402922268,1.06457383280229,5217.18426884774,1251.17534970093,0,5217.18426884774,84.5424340750905,84.5424340750905,0.050022328965563,84.5432537685009,25.8,1014.9,37.48,616.625282509314 +46725,2874.23401722773,457.39358,225,84.7107821782178,87.2521056435644,24.3973564356436,-0.73,1834.5099009901,1068.39801980198,1082.94653465347,20,40,11,32,5306536.59624147,397109.276089837,0,0,0,0,0,0,0,84.7107821782177,27744.7058528881,48.7947128712871,26.167684734495,25.6173733432909,-0.73,-0.715359791070143,-0.567796706311502,3.58836471321257,2.84688058299769,2.80234661358601,53.363729887854,0.00187205282804673,2151.34455445545,2147.46603274189,2147.21357850071,1.06243923242291,4879.10622490931,864.948652430179,0,4879.10622490931,84.7052045877854,84.7052045877854,0.03458266618741,84.7049917963224,25.8,1014.9,37.45,659.185342394807 +46726,2874.22617128713,457.378717227723,225,84.8344851485148,87.3795197029703,21.6985341032673,-2.48673267326733,1836.85643564356,1002.14257425743,997.443564356436,20,40,11,32,5306522.3930106,397090.50483677,0,0,0,0,0,0,0,84.8344851485148,27768.2525598738,43.3970682065346,23.2730296461732,23.3275645070323,-2.48673267326733,-2.47209246433747,-1.95241872057468,3.25603477488844,2.58322186261172,2.50739023677953,53.4319878140459,0.00453612800642091,1999.58613861386,2002.15682776198,2002.47801980198,1.06088952569985,4533.76502939086,685.461614560793,0,4533.76502939086,84.8239882364473,84.8239882364473,0.0273815747911332,84.8234802451673,25.8,1014.9,37.42,550.218569777626 +46727,2874.2182870297,457.363861584158,225,84.9154950495049,87.4629599009901,22.0750291528713,-0.856732673267326,1838.31683168317,916.174257425743,974.932673267327,20,40,11,32,5306508.11870534,397071.741104008,0,0,0,0,0,0,0,84.9154950495048,27791.8266595988,44.1500583057426,23.6768440425453,23.6529074669068,-0.856732673267326,-0.842092464337468,-0.688865756793312,2.24142351281077,1.77826547379646,1.91015350873566,53.4744690128362,-0.00165604673250288,1891.10693069307,1889.51856680718,1889.44252710985,1.0598774228482,4287.12631755639,536.680029342133,0,4287.12631755639,84.9083517302224,84.9083517302224,0.0214807371826631,84.9079811409711,25.8,1014.9,37.39,562.02921593122 +46728,2874.21041247525,457.348974257426,225,84.9805742574257,87.5299914851485,20.0046221122772,-1.9490099009901,1837.65841584158,853.234653465346,935.840594059406,20,40,11,32,5306493.86313746,397052.938136359,0,0,0,0,0,0,0,84.9805742574255,27815.4229729651,40.0092442245545,21.4562035049831,21.8955871786215,-1.9490099009901,-1.93436969206024,-1.50479062470094,2.73163198781,2.16717939437918,2.14078589563043,53.4553164723646,-0.00554415645229222,1789.07524752475,1789.7040192138,1789.76398868458,1.0590658386332,4051.2393487073,292.988450455539,0,4051.2393487073,84.9676481717478,84.9676481717478,0.0117649141151487,84.9673146628947,25.8,1014.9,37.36,480.860359835617 +46729,2874.20254633663,457.334068217822,225,84.9943861386138,87.5442177227723,21.0893586358416,-2.10168316831683,1840.40099009901,840.261386138614,911.833663366336,20,40,11,32,5306479.62363481,397034.112046196,0,0,0,0,0,0,0,84.9943861386138,27839.0285503303,42.1787172716832,22.6196510056785,22.8189380141956,-2.10168316831683,-2.08704295938698,-1.63943260549825,2.36154793605575,1.87356790691334,1.8459016010826,53.5350947236521,-4.3969228698026E-18,1752.09504950495,1754.53622193903,1754.67079679396,1.05889418388908,3972.7386559714,333.709280680205,0,3972.7386559714,85.0032198804037,85.0032198804037,0.0133483645394123,85.0032188590286,25.8,1014.9,37.33,523.346158017191 +46730,2874.19468465346,457.319146534653,225,85.0324653465346,87.5834393069307,22.3347409237624,-2.15811881188119,1839.32673267327,830.770297029703,897.227722772278,20,40,11,32,5306465.39279337,397015.266525507,0,0,0,0,0,0,0,85.0324653465345,27862.6456196097,44.6694818475247,23.9554010968902,23.8807412461579,-2.15811881188119,-2.14347860295133,-1.69797898276175,2.46510260784485,1.95572449019196,2.03849851167288,53.5038458418302,0.00129603657326311,1727.99801980198,1728.49601999804,1728.7076756247,1.05841939800612,3914.29876434657,60.5802473563112,0,3914.29876434657,85.0339368689343,85.0339368689343,0.00241261749939453,85.0338939179631,25.8,1014.9,37.3126237623762,573.61784468519 +46731,2874.18682306931,457.304223366336,225,85.0273861386138,87.5782077227723,19.1354180413861,-1.47673267326733,1839.30198019802,825.427722772277,877.168316831683,20,40,11,32,5306451.16222886,396996.419065155,0,0,0,0,0,0,0,85.0273861386138,27886.2659884766,38.2708360827723,20.5239279874689,21.1580230499322,-1.47673267326733,-1.46209246433747,-1.12718611815267,3.373038878683,2.67604874556408,2.64203584713133,53.5031258215116,0.000216006095543851,1702.59603960396,1708.06588569748,1708.33521923621,1.05848333300989,3856.68580849325,86.2625210520741,0,3856.68580849325,85.0336565042642,85.0336565042642,0.00344873596270584,85.0340832626119,25.8,1014.9,37.37,448.177538438091 +46732,2874.17896316832,457.289294455445,225,85.0392475247525,87.590424950495,18.7230566557426,-1.97455445544554,1841.23267326733,825.435643564356,905.340594059406,20,40,11,32,5306436.9349704,396977.564414675,0,0,0,0,0,0,0,85.0392475247524,27909.889432041,37.4461133114852,20.0816447112187,20.8081958224991,-1.97455445544554,-1.95991424651569,-1.50562787985113,3.73378260111554,2.96224994887267,2.75442983837554,53.5592874063531,0.00100802844587131,1730.77623762376,1728.98155082835,1728.72194247996,1.05833633661961,3924.13955655165,-87.1710166294196,0,3924.13955655165,85.0409259876482,85.0409259876482,-0.00349502772059252,85.0410743045732,25.8,1014.9,37.44,433.025204409166 +46733,2874.1711109901,457.274358712872,225,85.0505148514851,87.6020302970297,20.5856045105941,-0.536336633663366,1841.83663366337,790.891089108911,924.345544554456,20,40,11,32,5306422.72222973,396958.7014173,0,0,0,0,0,0,0,85.050514851485,27933.5126306108,41.1712090211881,22.079343322428,22.3943615959403,-0.536336633663366,-0.521696424733509,-0.403041075296598,2.72981609129286,2.16573872684717,2.21613297196235,53.5768559021239,-0.00295208330576598,1715.23663366337,1711.79656896383,1711.67799151344,1.05819547668254,3889.9013971634,-1.99513228553135,0,3889.9013971634,85.0428369767669,85.0428369767669,-5.58224139173407E-05,85.0426727015558,25.8,1014.9,37.51,504.359067965456 +46734,2874.16328267327,457.259392970297,225,85.048900990099,87.6003680198021,20.5915720572277,-2.70584158415842,1841.05445544554,786.226732673267,895.365346534654,20,40,11,32,5306408.55441668,396939.801749603,0,0,0,0,0,0,0,85.0489009900989,27957.1361719199,41.1831441144555,22.0857438879713,22.3983630191858,-2.70584158415842,-2.69120137522856,-2.10958851172297,2.24733144877428,1.782952619481,1.88398438853406,53.55410326006,-0.000216006095543851,1681.59207920792,1681.1079894128,1681.21131541726,1.05821482498478,3811.92981920422,160.103981987325,0,3811.92981920422,85.0507168905008,85.0507168905008,0.00640596237840994,85.0506148043375,25.8,1014.9,37.58,502.834991112876 +46735,2874.15547336634,457.244403960396,225,85.0635643564356,87.6154712871288,20.3153938390099,-2.28118811881188,1841.4702970297,779.142574257426,902.89900990099,20,40,11,32,5306394.42239515,396920.873637134,0,0,0,0,0,0,0,85.0635643564355,27980.7622414744,40.6307876780198,21.7895255430075,22.1641748598879,-2.28118811881188,-2.26654790988203,-1.76192865143899,2.93946663602443,2.33206799176652,2.23737548818802,53.5661996014104,0.00187205282804671,1682.04158415842,1684.67873737869,1684.54932578972,1.05803244530588,3813.17205461873,339.876140411887,0,3813.17205461873,85.074799725517,85.074799725517,0.0135798233288574,85.0751592644978,25.8,1014.9,37.65,494.170399174999 +46736,2874.14767910891,457.229382574258,225,85.1368217821783,87.6909264356436,20.7000682069307,-2.71772277227723,1842.85148514851,782.622772277227,874.076237623762,20,40,11,32,5306380.31903212,396901.905603191,0,0,0,0,0,0,0,85.1368217821782,28004.4028150443,41.4001364138614,22.2021127678465,22.4956189305259,-2.71772277227723,-2.70308256334737,-2.11718734035113,2.22618360205305,1.7661746721388,1.82878954250003,53.6063767351816,-0.00446412597457296,1656.69900990099,1650.94839721596,1650.53330504479,1.05712213569035,3755.09787194873,378.110592643834,0,3755.09787194873,85.1344680913635,85.1344680913635,0.0151605507085467,85.134552192362,25.8,1014.9,37.72,507.294602243921 +46737,2874.13988267327,457.214346732674,225,85.2267821782179,87.7835856435643,21.8691782178218,-1.28019801980198,1844.33663366337,734.60495049505,786.30297029703,20,40,11,32,5306366.21201738,396882.919398967,0,0,0,0,0,0,0,85.2267821782177,28028.0622153193,43.7383564356436,23.4560560901749,23.4959000344111,-1.28019801980198,-1.26555781087212,-1.00035107915298,1.63405519268866,1.29640111064605,1.30115475226713,53.6495779542904,0.00360010159239754,1520.90792079208,1515.61604744633,1515.41104196134,1.05600619225111,3446.81535252468,457.28246894422,0,3446.81535252468,85.2111188118811,85.2111188118811,0.0182620984870478,85.2105066478075,25.8,1014.9,37.79,552.88120413578 +46738,2874.13205673267,457.199330297029,225,85.2231881188118,87.7798837623763,20.3780302531683,-1.80940594059406,1844.37128712871,693.19900990099,638.808910891089,20,40,11,32,5306352.04997862,396863.956296213,0,0,0,0,0,0,0,85.2231881188117,28051.7359106438,40.7560605063366,21.856706999446,22.2272386155579,-1.80940594059406,-1.7947657316642,-1.39190082728619,2.55131565757868,2.02412284902782,2.01232921118907,53.6505859827363,0.00864024382175412,1332.00792079208,1344.53031075385,1345.04079207921,1.05605087141572,3018.74342628227,-87.1100144531713,0,3018.74342628227,85.226668954024,85.226668954024,-0.00355493470136255,85.2264666666666,25.8,1014.9,37.86,495.903855879951 +46739,2874.12418445545,457.18436980198,225,85.2040495049505,87.760170990099,19.4784581953465,-1.60138613861386,1843.29207920792,639.334653465347,642.889108910891,20,40,11,32,5306337.80092395,396845.061243774,0,0,0,0,0,0,0,85.2040495049505,28075.407222635,38.9569163906931,20.8918599240206,21.4604031483194,-1.60138613861386,-1.586745929684,-1.22534011093035,3.08770021053112,2.4496712229703,2.44274853269802,53.6191930968505,-0.0113043190001283,1282.22376237624,1282.49573571218,1282.74094295144,1.05628786758267,2904.7443328727,-256.096890273912,0,2904.7443328727,85.1987879619644,85.1987879619644,-0.0101515102005441,85.1987717114568,25.8,1014.9,37.93,461.275312266108 +46740,2874.11628930693,457.169445445544,225,85.1595544554455,87.7143410891089,19.6531721682178,-1.47910891089109,1842.73267326733,624.874572283168,674.531912217822,20,40,11,32,5306323.50875969,396826.210353708,0.336633663366337,0.336633663366337,893142.653914662,66791.1138520122,0.318972180197777,0,0,85.1595544554454,28099.0683899893,39.3063443364357,21.0792515446196,21.6064413706184,-1.47910891089109,-1.46446870196123,-1.12781222087575,2.97222865367127,2.35806020809703,2.25483463767675,53.6029206376529,0.00417611784718116,1299.40648450099,1303.73510788064,1303.98410428784,1.05683978212977,2944.41563484083,-252.048205639618,0,2944.41563484083,85.1621641995881,85.1621641995881,-0.0101161106209645,85.1621449316358,25.8,1014.9,37.9949504950495,467.948417115945 +46741,2874.10840425743,457.154519108911,225,85.1481188118812,87.7025623762376,19.8182634769307,-1.67950495049505,1841.79207920792,682.187120519802,692.761768675247,20,40,11,32,5306309.23540695,396807.357238193,2,2,5306309.46482252,396807.170326059,15.5984032098254,0,0,85.1481188118811,28122.7209139167,39.6365269538614,21.256322258416,21.7464746590669,-1.67950495049505,-1.66486474156519,-1.29240784847327,2.84453310230016,2.2567511119522,2.37258684951662,53.5755598655507,0.00115203250956721,1374.94888919505,1369.83951663989,1369.44494542781,1.05698183324372,3114.44110938612,-41.5647161353724,0,3114.44110938612,85.1451352808547,85.1451352808547,-0.00167194937315105,85.1449637906647,25.8,1014.9,38.03,474.245933507832 +46742,2874.10054277228,457.139566237624,225,85.1341287128713,87.6881525742574,18.7471342135644,-1.56891089108911,1841.83168316832,693.829230766337,678.548971182178,20,40,11,32,5306295.00635529,396788.471758948,2,2,5306294.54004133,396788.851679695,39.2272393686642,0,0,85.1341287128712,28146.3701998903,37.4942684271287,20.1074693920164,20.8339104664647,-1.56891089108911,-1.55427068215925,-1.19473402390693,3.74549578244713,2.97154276918584,2.92643764854177,53.5767118980602,-0.00367210362424549,1372.37820194851,1371.43917963688,1371.36436680704,1.05715580599034,3109.20103843962,-43.7689406221801,0,3109.20103843962,85.1309244191745,85.1309244191745,-0.00172096417560423,85.1310759075907,25.8,1014.9,38.06,434.091906725179 +46743,2874.09270465347,457.124588217822,225,85.0964356435644,87.6493287128713,19.4609625957426,-0.538118811881188,1841.55940594059,688.159833079208,661.073265962376,20,40,11,32,5306280.82120735,396769.555636127,2,2,5306279.61777035,396770.536114353,62.8521013808551,0,0,85.0964356435643,28170.0165529981,38.9219251914851,20.8730948034681,21.4389953067208,-0.538118811881188,-0.523478602951331,-0.401346674057763,3.07836856191869,2.44226782577818,2.4161411318702,53.568791674557,0.00316808940130984,1349.23309904158,1349.26527933437,1349.26784316996,1.05762370225436,3057.66787794317,-188.6059940853,0,3057.66787794317,85.1104161356729,85.1104161356729,-0.00757006393710547,85.1106746817538,25.8,1014.9,38.09,460.281682030404 +46744,2874.08486980198,457.109619009901,225,85.0804158415841,87.6328283168317,19.99990429,-0.972277227722772,1840.4801980198,670.391345546535,656.401735786139,20,40,11,32,5306266.64197616,396750.650504402,2,2,5306264.7032421,396752.230052426,86.4647051389533,0,0,85.080415841584,28193.6539062434,39.99980858,21.4511433466701,21.8973313647943,-0.972277227722772,-0.957637018792915,-0.746200971083317,2.64842137721149,2.10116306367009,2.25391482076508,53.5373987886713,0.0038161076879414,1326.79308133267,1327.76687781793,1327.84446114039,1.05782305883297,3005.61287588764,-145.37911026746,0,3005.61287588764,85.0870431330261,85.0870431330261,-0.00584637671687415,85.0873060820366,25.8,1014.9,38.12,480.782415251999 +46745,2874.07704465346,457.094642277228,225,85.0987326732673,87.6516946534654,18.7744427941584,-0.663762376237624,1840.42574257426,656.860033663366,668.829363960396,20,40,11,32,5306252.48094687,396731.736228483,2,2,5306249.79149793,396733.927407683,110.07290114303,0,0,85.0987326732672,28217.2891665844,37.5488855883168,20.1367595460303,20.8557105688915,-0.663762376237624,-0.649122167307767,-0.497658245784152,3.68636626836246,2.92463152158888,2.82916775306515,53.5358147439706,0.000936026414023364,1325.68939762376,1326.70950630876,1326.79077936927,1.05759531729707,3002.3734820401,192.711208450362,0,3002.3734820401,85.097744142731,85.097744142731,0.00770077007700929,85.0977001414426,25.8,1014.9,38.15,435.027243798026 +46746,2874.06921207921,457.079666138614,225,85.1229900990099,87.6766798019802,18.7075555554455,-0.0912871287128713,1843.38613861386,660.006523177228,686.930246457426,20,40,11,32,5306238.30621024,396712.822353272,2,2,5306234.87448129,396715.618291505,133.689444515228,0,0,85.1229900990098,28240.9312792907,37.4151111108911,20.0650188154304,20.7998164701365,-0.0912871287128713,-0.0766469197830136,-0.0590737075526297,3.77129788638605,2.99201323820861,3.00151065950998,53.6219291740608,0.000432012191087708,1346.93676963465,1347.06530729388,1347.07554801529,1.05729395215109,3054.56386347298,81.6084752541202,0,3054.56386347298,85.1170638172727,85.1170638172727,0.00326084588655941,85.1170665723714,25.8,1014.9,38.18,432.663236420564 +46747,2874.06136811881,457.06470039604,225,85.112603960396,87.6659820792079,18.832095710396,-1.6070297029703,1840.96534653465,676.937946131683,694.062515379208,20,40,11,32,5306224.11021166,396693.920956631,2,2,5306219.9550925,396697.306263769,157.309743444353,0,0,85.1126039603959,28264.5760305833,37.6641914207921,20.1985958904764,20.9049836788409,-1.6070297029703,-1.59238949404044,-1.22758796335511,3.66717572886756,2.90940643199191,2.88782371860119,53.5515111869135,-0.00655218489816352,1371.00046151089,1370.11925121471,1370.04904432512,1.05742308751658,3105.40185175508,-154.376592308125,0,3105.40185175508,85.1154020194097,85.1154020194097,-0.00612140421961792,85.1152042432813,25.8,1014.9,38.21,437.219517628331 +46748,2874.05351841584,457.049745247525,225,85.1059405940594,87.6591188118812,19.5052205725743,-0.958118811881188,1841.07425742574,692.087630353465,683.668795579208,20,40,11,32,5306209.90340042,396675.032472312,2,2,5306205.03771285,396678.996702034,180.926861531774,0,0,85.1059405940593,28288.2148690322,39.0104411451485,20.9205642408956,21.4777448375311,-0.958118811881188,-0.94347860295133,-0.73606680601114,3.05561533374206,2.42421622604585,2.5366480796827,53.5546792763148,0.00180005079619877,1375.75642593267,1374.67564836352,1374.58954175331,1.05750566763599,3116.60214634015,73.3463138607473,0,3116.60214634015,85.1031592981079,85.1031592981079,0.00291910379156777,85.1032325318245,25.8,1014.9,38.24,462.270903217873 +46749,2874.04566871287,457.034789108911,225,85.1102673267327,87.6635753465347,18.9060379536634,-0.83980198019802,1841.47524752475,691.527026031683,665.3050251,20,40,11,32,5306195.69667205,396656.142661541,2,2,5306190.11971671,396660.686383631,204.544955628008,0,0,85.1102673267326,28311.8567333886,37.8120759073267,20.2779035529884,20.9683430922367,-0.83980198019802,-0.825161771268161,-0.6337371302134,3.55855835983947,2.823233285287,2.72606980605971,53.5663436054741,-0.00460813003826886,1356.83205113168,1356.54536820342,1356.52252789306,1.05745193794314,3074.23790640152,29.4940140969421,0,3074.23790640152,85.1112426232721,85.1112426232721,0.00121720092801118,85.1113418198961,25.8,1014.9,38.27,439.791227971613 +46750,2874.03780712871,457.019843366337,225,85.1343168316832,87.6883463366337,19.1657288233663,0.319207920792079,1839.22277227723,675.77155019802,655.854769834653,20,40,11,32,5306181.46776444,396637.265312726,2,2,5306175.19897433,396642.3726945,228.167397555293,0,0,85.134316831683,28335.501212019,38.3314576467327,20.5564381895069,21.1913364501329,0.319207920792079,0.333848129721937,0.257796016689825,3.28644556118677,2.60734869584794,2.62641027160288,53.5008217564925,-0.000360010159239754,1331.62632003267,1332.39730670745,1332.45873197279,1.05715312254776,3012.59237332629,21.6778539931965,0,3012.59237332629,85.1248634447602,85.1248634447602,0.0008700127438533,85.1245231494576,25.8,1014.9,38.2949504950495,449.433124387147 +46751,2874.02994287129,457.004905148515,225,85.1142277227723,87.6676545544554,18.7257744775248,-1.85762376237624,1842.25247524752,659.306714668317,664.006550890099,20,40,11,32,5306167.23379779,396618.397154856,1.46534653465347,2,5306160.28069111,396624.061774853,117.545630180023,0,0,85.1142277227721,28359.1463857813,37.4515489550495,20.0845597444006,20.8143154847901,-1.85762376237624,-1.84298355344638,-1.41699883583948,3.7723780138627,2.99287017282541,2.97402783084593,53.5889522434744,0.010224288522409,1323.31326555842,1324.43308024193,1324.52229697745,1.05740271918161,2999.42726450551,-33.0361505343114,0,2999.42726450551,85.1140560729339,85.1140560729339,-0.00140509100414589,85.1141158887316,25.8,1014.9,38.29,433.270992416297 +46752,2874.02205227723,456.989997524753,225,85.0987722772278,87.6517354455446,19.2211144117822,-1.66673267326733,1841.69306930693,657.27021330099,682.265658357426,20,40,11,32,5306152.95042436,396599.566137906,1,2,5306145.36152444,396605.74846398,24.3278221311834,0,0,85.0987722772276,28382.7875479101,38.4422288235643,20.6158426836095,21.2354199274753,-1.66673267326733,-1.65209246433747,-1.2733860175139,3.33736355674359,2.64774521751201,2.65007781587875,53.5726797842768,-0.00720020318479509,1339.53587165842,1339.97496189491,1340.00994464535,1.0575952382146,3035.82591280442,-162.434382738017,0,3035.82591280442,85.1016246446426,85.1016246446426,-0.00643863891339372,85.1015449316359,25.8,1014.9,38.28,451.820797515267 +46753,2874.01415168317,456.975103762376,225,85.0628217821782,87.6147064356436,19.0307640265347,-2.04059405940594,1839.39108910891,671.534396056436,693.844753041584,20,40,11,32,5306138.64827844,396580.751961596,1,2,5306130.44333101,396587.436153111,47.9475855639989,0,0,85.0628217821781,28406.4218495052,38.0615280530693,20.4116800365872,21.0713524223773,-2.04059405940594,-2.02595385047608,-1.55796320173566,3.44423344837531,2.73253197797511,2.68055820223143,53.5057178946582,-0.00187205282804672,1365.37914909802,1364.73381735032,1364.68240313627,1.05804230175249,3091.83516472266,-420.71960675328,0,3091.83516472266,85.0645338692284,85.0645338692284,-0.0168134387696169,85.0642725129655,25.8,1014.9,38.27,444.326334647419 +46754,2874.00627247525,456.96020029703,225,85.016910891089,87.5674182178218,23.179296479802,-2.62316831683168,1839.19801980198,688.98483909703,688.098068682178,20,40,11,32,5306124.38602397,396561.926315817,1,2,5306115.53543459,396569.136481988,71.5510458759705,0,0,85.016910891089,28430.0421835537,46.358592959604,24.8612395466217,24.598086333152,-2.62316831683168,-2.60852810790183,-2.08455172981095,2.70306247678057,2.14451336327149,2.19835586319322,53.500101736174,0.00684019302555534,1377.08290777921,1375.94646907925,1375.85592789197,1.05861299055108,3119.69325968713,-208.625537098527,0,3119.69325968713,85.0110842074305,85.0110842074305,-0.00840059253449131,85.0112155586986,25.8,1014.9,38.26,607.773555971526 +46755,2873.99841336634,456.945286237624,225,84.9779306930693,87.5272686138613,23.5929504950495,-2.29940594059406,1838.90099009901,693.577685563366,670.309080383168,20,40,11,32,5306110.16129675,396543.08804814,1,2,5306100.63632776,396550.847600217,95.1405897601235,0,0,84.9779306930692,28453.6528836912,47.185900990099,25.3049092486531,24.9477755207081,-2.29940594059406,-2.28476573166421,-1.83319013361694,2.27262399156032,1.80301882085877,1.77950171115401,53.4914614923523,-0.00309608736946189,1363.88676594653,1363.30405679259,1363.25763178217,1.05909860938631,3090.724453631,-382.026173633657,0,3090.724453631,84.9749792177236,84.9749792177236,-0.01525585726891,84.9748653465345,25.8,1014.9,38.25,622.757057651727 +46756,2873.99056990099,456.930364653465,225,84.9720792079208,87.5212415841584,23.3227524752475,-2.66851485148515,1839.50495049505,681.090293595049,656.832901949505,20,40,11,32,5306095.96577534,396524.240834031,1,2,5306085.74449075,396532.56764225,118.718623457004,0,0,84.9720792079207,28477.252916667,46.6455049504951,25.0151050390571,24.7176820003807,-2.66851485148515,-2.65387464255529,-2.12871754762733,2.16096371668025,1.71443154117737,1.8339007978077,53.5090299881232,-0.000216006095543852,1337.92319554455,1338.4299560468,1338.47033015366,1.05917239093593,3033.10220726607,268.78836949315,0,3033.10220726607,84.9659915694539,84.9659915694539,0.0107533030530787,84.965956812824,25.8,1014.9,38.24,611.858508354982 +46757,2873.9827180198,456.915447524753,225,84.9681584158415,87.5172031683168,20.3884856985149,-2.15405940594059,1839.32673267327,663.003513778218,660.059469679208,20,40,11,32,5306081.75462585,396505.398797259,1,2,5306070.84895466,396514.283143616,142.302513842062,0,0,84.9681584158415,28500.8576555284,40.7769713970297,21.8679211159552,22.2212236616616,-2.15405940594059,-2.13941919701074,-1.6711898773268,2.30292133828509,1.8270556551832,1.7720705080644,53.5038458418301,-0.00079202235032746,1323.06298345743,1324.1933003475,1324.28335380418,1.05922071535932,2999.24281285585,199.539014054747,0,2999.24281285585,84.9851834133907,84.9851834133907,0.00798805128038151,84.9856447901932,25.8,1014.9,38.23,494.922452628832 +46758,2873.9748880198,456.900503564357,225,85.0059603960396,87.5561392079208,19.7018575361386,-0.782376237623763,1837.85643564356,655.946248076237,677.022292087129,20,40,11,32,5306067.58466791,396486.523972202,1,2,5306055.95379492,396495.999106956,165.885808358708,0,0,85.0059603960395,28524.4675911995,39.4037150722772,21.131469634817,21.6393620102952,-0.782376237623763,-0.767736028693904,-0.600524119381237,2.84325575264655,2.25573770829421,2.22708715064823,53.4610766349124,0.00331209346500574,1332.96854016337,1333.68320530311,1333.74014337653,1.0587495913622,3017.9416726741,129.847715799197,0,3017.9416726741,85.0149265758258,85.0149265758258,0.0051669770937377,85.0151556812823,25.8,1014.9,38.22,469.310580986415 +46759,2873.96708574257,456.885523168317,225,85.0560198019802,87.6077003960396,19.4006919693069,-0.47039603960396,1840.56435643564,666.406914016832,692.125828478218,20,40,11,32,5306053.46693708,396467.604590072,1,2,5306041.0576509,396477.713862075,189.47066127386,0,0,85.0560198019801,28548.0876330862,38.8013839386139,20.808450801751,21.3858179368535,-0.47039603960396,-0.455755830674103,-0.356752645941538,3.09481282428743,2.45531411705033,2.45026499086684,53.5398468577541,0.0041041158153332,1358.53274249505,1358.17469605021,1358.14617013854,1.05812726053195,3078.53456584929,61.4253395522577,0,3078.53456584929,85.0388326634642,85.0388326634642,0.00242350967771333,85.0387346534652,25.8,1014.9,38.21,457.990360508481 +46760,2873.9592809901,456.870530693069,225,85.0574455445545,87.6091689108911,18.9342123210891,-0.250396039603961,1839.80693069307,684.768023580198,691.483957146535,20,40,11,32,5306039.34495222,396448.669986562,1,2,5306026.15235635,396459.417384776,213.070002097067,0,0,85.0574455445543,28571.7138084162,37.8684246421782,20.3081223173178,20.989162494527,-0.250396039603961,-0.235755830674103,-0.18714809538388,3.52608084002652,2.79746677939117,2.67423541355448,53.5178142360086,-0.00388810971978935,1376.25198072673,1375.15040895043,1375.06264564519,1.05810890323963,3117.35818203803,113.573843266508,0,3117.35818203803,85.0567438486422,85.0567438486422,0.00457471489723572,85.0563367279584,25.8,1014.9,38.189900990099,440.811876531734 +46761,2873.95147287129,456.855546831683,225,85.0416237623762,87.5928724752475,20.5343707370297,-1.68267326732673,1839.83663366337,694.148457317822,675.686811631683,20,40,11,32,5306025.21660023,396429.74590804,1,2,5306011.24967567,396441.124116051,236.66520440557,0,0,85.0416237623761,28595.3383547859,41.0687414740594,22.0243919084121,22.3495294932503,-1.68267326732673,-1.66803305839688,-1.29835416929061,2.23274292694777,1.77137860656932,1.90076493441573,53.5186782603908,-0.000504014222935657,1369.8352689495,1362.85416211281,1362.42484927331,1.0583055073002,3103.46067380206,-195.686510073674,0,3103.46067380206,85.0432187040485,85.0432187040485,-0.00782330708316278,85.0431169259782,25.8,1014.9,38.11,500.728262763011 +46762,2873.9436409901,456.840585445545,225,85.0391584158416,87.5903331683168,21.0218503850495,-2.57128712871287,1840.33663366337,660.448119123763,715.586669032673,20,40,11,32,5306011.04379058,396410.848942685,0.099009900990099,0.198019801980198,525346.843893434,39250.608801441,24.7060932573971,0,0,85.0391584158415,28618.9583135043,42.043700770099,22.5472442009346,22.7637301957791,-2.57128712871287,-2.55664691978302,-2.00539201732267,2.22287511495246,1.76354983647171,1.79718176323829,53.5332226708241,0.00784822147142665,1376.03478815644,1463.76478014456,1470.65550145283,1.05833629990977,3118.65005261042,270.942155583998,0,3118.65005261042,85.0357244387804,85.0357244387804,0.0107737258874145,85.0362030174445,25.8,1014.9,38.02,519.996334704503 +46763,2873.93582524753,456.825594851485,225,85.2230594059406,87.7797511881188,20.2824851486139,-1.95752475247525,1849.80693069307,1570.56435643564,1527.09801980198,20,40,11,32,5305996.90158929,396391.916038264,0,0,0,0,0,0,0,85.2230594059405,28642.5944457925,40.5649702972277,21.7542289223436,22.1454425484825,-1.95752475247525,-1.94288454354539,-1.516164273053,2.40993353332376,1.91195531409407,1.92367135582427,53.8087024446744,0.004392123942725,3097.66237623762,3063.99953926086,3062.10713814238,1.05605754121575,7042.67330942941,3679.63236284777,0,7042.67330942941,85.2660355847465,85.2660355847465,0.147149244627439,85.2686737388023,25.8,1014.9,37.93,491.233489340175 +46764,2873.92797356436,456.810483861386,225,86.0443069306931,88.6256361386139,20.3718905391089,-1.29217821782178,1868.4801980198,2081.57128712871,1963.76633663366,20,40,11,32,5305982.695568,396372.831873704,0,0,0,0,0,0,0,86.0443069306929,28666.3744986528,40.7437810782178,21.8501217736126,22.2690770194803,-1.29217821782178,-1.27753800889192,-0.998656400125766,2.59378800479671,2.05781889451732,2.052831899735,54.3518857729353,0.00878424788545001,4045.33762376238,3585.36719929419,3554.02135785007,1.04598480280939,9202.10375654523,4868.56338774141,0,9202.10375654523,86.0128048230564,86.0128048230564,0.194670457144723,86.0100749646392,25.8,1014.9,37.84,497.370903820233 +46765,2873.92007693069,456.795233069307,225,86.1193564356436,88.7029371287129,20.7337486248515,-1.44,1855.4504950495,-523.60495049505,-476.579207920792,20,40,11,32,5305968.40947274,396353.571974568,0,0,0,0,0,0,0,86.1193564356435,28690.3274284658,41.467497249703,22.2382371143593,22.5808860561158,-1.44,-1.42535979107014,-1.10968082871768,2.41118779412689,1.91295039988156,1.85428762151241,53.9728670772877,-0.0128883637007832,-1000.18415841584,-640.05872953632,-617.70753418199,1.04506916871016,-2254.49315593471,-4478.46086225245,0,-2254.49315593471,86.0646532692872,86.0646532692872,-0.179033373634393,86.0610029231493,25.8,1014.9,37.75,511.335578958681 +46766,2873.91223188119,456.780161188119,225,85.0584752475248,87.6102295049506,20.9674851485149,-1.07762376237624,1825.80693069307,-2291.39504950495,-2099.35247524753,20,40,11,32,5305954.21498863,396334.53655821,0,0,0,0,0,0,0,85.0584752475246,28714.1142164196,41.9349702970297,22.4889340977925,22.7189390885481,-1.07762376237624,-1.06298355344638,-0.836150695606774,1.80072405428734,1.42863024112673,1.48343350451696,53.1105707438766,-0.0173524896753562,-4390.74752475248,-4473.50931281247,-4478.93846774798,1.05812128069679,-9844.78643709824,-12060.2941369192,0,-9844.78643709824,84.9601978237427,84.9601978237427,-0.482271618250939,84.9522352170329,25.8,1014.9,37.66,516.576117717397 +46767,2873.90455683168,456.765385544555,225,82.3110396039604,84.7803707920792,19.6546336632673,-2.61831683168317,1758.30198019802,-4677.17722772277,-3929.13861386139,20,40,11,32,5305940.32883422,396315.875717822,0,0,0,0,0,0,0,82.3110396039603,28737.3981894669,39.3092673265346,21.0808190891115,21.4442555207499,-2.61831683168317,-2.60367662275331,-2.02879097645538,2.87930352852939,2.28433672802129,2.17241210098994,51.1469313313193,-0.016056453102093,-8606.31584158416,-8526.86327810999,-8510.56905234936,1.09355460138659,-19252.042466991,-22363.00507929,0,-19252.042466991,82.3217673757473,82.3217673757473,-0.894390800466185,82.3199413914352,25.8,1014.9,37.57,463.279943039255 +46768,2873.89716792079,456.751174653466,225,78.7783663366337,81.1417173267327,21.1313069306931,-2.28732673267327,1679.43069306931,-5183.70594059406,-4373.86930693069,20,40,11,32,5305926.96012377,396297.927804269,0,0,0,0,0,0,0,78.7783663366336,28759.7922770357,42.2626138613861,22.6646431652889,22.4980674802892,-2.28732673267327,-2.27268652374341,-1.81405551004693,2.03358769708446,1.61337595014684,1.76120869878099,48.8526585885162,-0.0254887192741746,-9557.57524752476,-9515.15012253701,-9499.75503968732,1.14273762696959,-21336.6445737356,-28986.4122431288,0,-21336.6445737356,78.7188430546024,78.7188430546024,-1.15925181627073,78.7040127398036,25.8,1014.9,37.48,507.742503836721 +46769,2873.89013742574,456.737707326733,225,74.1791881188119,76.4045637623763,20.5919801980198,-1.71792079207921,1580.96534653465,-5424.52079207921,-4602.65643564356,20,40,11,32,5305914.23872953,396280.917973739,0,0,0,0,0,0,0,74.1791881188118,28781.0391779708,41.1839603960396,22.086181644398,21.7752383648061,-1.71792079207921,-1.70328058314935,-1.36439276513981,2.09023946493736,1.65832144225333,1.60253873121851,45.9884177616047,-0.0316808940130984,-10027.1772277228,-9990.29347122831,-9957.20355679905,1.21369262360234,-22377.8956100843,-32124.269633701,0,-22377.8956100843,74.1901368493284,74.1901368493284,-1.28471609537192,74.1954791782168,25.8,1014.9,37.39,475.474685210531 +46770,2873.8835070297,456.725062673267,225,69.8532178217822,71.9488143564356,17.5786534653465,-1.8129702970297,1492.55940594059,-4818.40495049505,-4107.14554455446,20,40,11,32,5305902.24008349,396264.946169607,0,0,0,0,0,0,0,69.8532178217821,28801.0159689773,35.1573069306931,18.8542009931082,18.9632046576177,-1.8129702970297,-1.79833008809985,-1.42362553004477,1.51716478262116,1.20366442824181,1.19763855508556,43.4167931921233,-0.0237606705098238,-8925.5504950495,-8964.64928928536,-9003.09186023006,1.28873557851566,-19973.0096850426,-25882.049782053,0,-19973.0096850426,69.9150973433976,69.9150973433976,-1.03509051400189,69.9524299513331,25.8,1014.9,37.3353465346535,360.401438846663 +46771,2873.87721168317,456.713076336634,225,66.6780891089109,68.6784317821782,16.9794554455445,-2.2309900990099,1425.69306930693,-4650.81287128713,-3973.09207920792,20,40,11,32,5305890.84736412,396249.805503808,0,0,0,0,0,0,0,66.6780891089108,28819.9568724977,33.9589108910891,18.2115237867858,18.2712460361299,-2.2309900990099,-2.21634989008005,-1.75274480714438,1.46331939760549,1.1609454201876,1.18006621550578,41.4717303037828,-0.0163444612294848,-8623.90495049505,-8602.75790608764,-8641.24002432426,1.35000463278701,-19310.0228458008,-21514.2227709366,0,-19310.0228458008,66.6519880403881,66.6519880403881,-0.860437157577141,66.6418556672489,25.8,1014.9,37.49,334.374982826186 +46772,2873.87120089109,456.70164980198,225,63.3890594059406,65.2907311881188,16.6824752475248,-1.6409900990099,1499.98514851485,-5130.90198019802,-4374.3900990099,20,40,11,32,5305879.96923734,396235.371586891,0,0,0,0,0,0,0,63.3890594059405,28838.0246965901,33.3649504950495,17.8929940225193,17.8301398518528,-1.6409900990099,-1.62634989008005,-1.29481651632951,1.29965676866914,1.03110132748274,1.0237851743595,43.6327992876671,0.0390251012615893,-9505.29207920792,-9542.50696990491,-9538.83932501481,1.42014040166741,-23613.6054497318,-23917.4992222502,0,-23613.6054497318,63.3791029310851,63.3791029310851,-0.957035802590154,63.3628718886647,25.8,1014.9,37.68,318.605257032687 +46773,2873.86551485148,456.69083009901,225,59.7046237623763,61.4957624752475,15.7456435643564,-1.24465346534653,1496.67326732673,-5635.72178217822,-4728.24455445544,20,40,11,32,5305869.67910493,396221.704349614,0,0,0,0,0,0,0,59.7046237623761,28855.129850523,31.4912871287129,16.8881836776321,16.8213874093655,-1.24465346534653,-1.23001325641668,-0.974644278710778,1.23120809125959,0.976796588075501,0.963386028799747,43.5364605690546,-0.0314648879175545,-10363.9663366337,-10337.6610234291,-10279.4528778028,1.50798081078204,-27203.7233648502,-27317.4520521996,0,-27203.7233648502,59.6921732183119,59.6921732183119,-1.09240107179034,59.672131077329,25.8,1014.9,37.87,283.447367525914 +46774,2873.8602090099,456.680671980198,225,55.6835742574257,57.3540814851485,14.2136237623762,-1.52128712871287,1389.5297029703,-5546.48811881188,-4598.8099009901,20,40,11,32,5305860.07843903,396208.873851469,0,0,0,0,0,0,0,55.6835742574257,28871.1503974427,28.4272475247525,15.2449969950515,15.2875547822355,-1.52128712871287,-1.50664691978301,-1.19312769916569,1.37651768502622,1.09208003724507,1.04206446044489,40.4197806184842,-0.0289448168028762,-10145.298019802,-10118.546652289,-10072.6325923043,1.616962056303,-26510.3127639234,-26445.1499325761,0,-26510.3127639234,55.7220932261542,55.7220932261542,-1.05753384744416,55.7733198013709,25.8,1014.9,38.06,235.130071503764 +46775,2873.85527851485,456.671141485148,225,52.3178217821783,53.8873564356436,13.5264059405941,-1.27128712871287,1306.54455445545,-5230.04752475247,-4165.67128712871,20,40,11,32,5305851.1590085,396196.837635709,0,0,0,0,0,0,0,52.3178217821782,28886.1248509905,27.0528118811881,14.5079130674646,14.5101530385693,-1.27128712871287,-1.25664691978301,-0.997587852640008,1.01135178161406,0.802370433266111,0.852050004973436,38.0058404987498,-0.0167764734205726,-9395.71881188119,-9415.31078325654,-9472.13491024775,1.72074417612426,-24571.9004455806,-21338.426279597,0,-24571.9004455806,52.3264616214096,52.3264616214096,-0.853379026021412,52.3549697963598,25.8,1014.9,38.25,210.910393071536 +46776,2873.85064435644,456.66213990099,225,49.342504950495,50.8227800990099,12.9597128712871,-2.32386138613861,1230.40099009901,-5267.0396039604,-4194.73366336634,20,40,11,32,5305842.77666712,396185.470112551,0,0,0,0,0,0,0,49.342504950495,28900.2381802809,25.9194257425742,13.9000994456092,13.8568390501741,-2.32386138613861,-2.30922117720876,-1.83897164490916,0.970733404673177,0.770145261671898,0.79878126753403,35.7909139950431,-0.0225366359684086,-9461.77326732674,-9564.01507695324,-9839.61020326478,1.82453585366314,-24703.4506658293,-21397.1971045783,0,-24703.4506658293,49.3172900696009,49.3172900696009,-0.855675914126066,49.2756343285654,25.8,1014.9,38.44,192.353156313282 +46777,2873.84630584158,456.653678118812,225,45.9621782178218,47.3410435643564,10.2742277227723,-0.512772277227723,1358.22772277228,-6549.59207920792,-5243.90297029703,20,40,11,32,5305834.92988309,396174.784831895,0,0,0,0,0,0,0,45.9621782178217,28913.4859323437,20.5484554455446,11.0197493178864,11.378311082603,-0.512772277227723,-0.498132068297866,-0.412824726948521,2.04224580952047,1.62024498775852,1.52654496263744,39.509242923735,0.092234602797225,-11793.495049505,-11701.9753651603,-11478.7194788099,1.95916861900494,-36903.9901644595,-25642.0892605586,0,-36903.9901644595,45.9387462993824,45.9387462993824,-1.02670217516801,45.8670103759951,25.8,1014.9,38.63,131.170919962666 +46778,2873.84231287129,456.645865841584,225,41.9752277227723,43.2344845544554,10.4128712871287,-2.06158415841584,1447.47524752475,-7194.55544554455,-5683.67227722772,20,40,11,32,5305827.70862755,396164.920118116,0,0,0,0,0,0,0,41.9752277227722,28925.7069215351,20.8257425742574,11.1684531781638,11.2673419124628,-2.06158415841584,-2.04694394948599,-1.60220910780893,1.10115293208099,0.873615463252556,0.958700349381838,42.1053481840447,-0.0405371439303964,-12878.2277227723,-13043.4225075973,-13381.8054153165,2.14594278895329,-46506.396326888,-30611.3841969276,0,-46506.396326888,41.9324191745907,41.9324191745907,-1.22392820965265,41.7188777319583,25.8,1014.9,38.82,127.56260096175 +46779,2873.83876336634,456.638821980198,225,36.5583861386139,37.6551377227723,9.36460396039604,-2.85267326732673,1253.4900990099,-8818.78316831683,-7167.21782178218,20,40,11,32,5305821.29161378,396156.027367252,0,0,0,0,0,0,0,36.5583861386138,28936.6750586913,18.7292079207921,10.0441211631043,10.0646743404483,-2.85267326732673,-2.83803305839688,-2.24974065299711,0.964305395344977,0.765045508328433,0.771915762924094,36.4625489481208,-0.0636497961535886,-15986.000990099,-15802.4064013332,-15329.2683715813,2.46993567747032,-57404.2775902901,-46800.1269295715,0,-57404.2775902901,36.454553083031,36.454553083031,-1.87118365301877,36.0681209207672,25.8,1014.9,39.01,101.605103272087 +46780,2873.83581346535,456.632954653465,225,29.2036633663366,30.0797732673267,7.761,-2.77178217821782,1315.23267326733,-9169.45247524752,-7573.47722772277,20,40,11,32,5305815.95891063,396148.620179941,0,0,0,0,0,0,0,29.2036633663366,28945.8012353415,15.522,8.32415601092391,8.27854040652363,-2.77178217821782,-2.75714196928797,-2.19805401717274,0.704473612214582,0.558904238597423,0.606414165431156,38.2585676305361,0.0236166664461279,-16742.9297029703,-16697.0725517106,-15888.7638093078,3.09819890532502,-79197.7737534873,-47854.5790252832,0,-79197.7737534873,29.2929410842074,29.2929410842074,-1.91442287793135,29.683469676568,25.8,1014.9,39.1747524752475,69.1039154691109 +46781,2873.83346485149,456.628303960396,225,23.1956138613861,23.8914822772277,5.71607920792079,-2.51257425742574,1303.65346534653,-8668.08217821782,-7141.50099009901,20,40,11,32,5305811.7127314,396142.7485714,0,0,0,0,0,0,0,23.1956138613861,28953.0356674922,11.4321584158416,6.13085106268922,6.19382176006087,-2.51257425742574,-2.49793404849589,-1.95428496958237,0.945823988002252,0.750383018889512,0.679985058577202,37.9217421255514,0.0300248472805955,-15809.5831683168,-15449.4407999216,-14905.6136716524,3.90143176865605,-93937.2383265863,-39017.7899231588,0,-93937.2383265863,23.1876420939123,23.1876420939123,-1.56135564051455,23.8489073655077,25.8,1014.9,39.19,38.9092744431412 +46782,2873.83162178218,456.624656435644,225,18.067396039604,18.6094179207921,5.02687128712871,-3.21811881188119,1196.9702970297,-6755.04851485149,-5575.23663366337,20,40,11,32,5305808.38050919,396138.143444906,0,0,0,0,0,0,0,18.0673960396039,28958.7116642744,10.0537425742574,5.39163262993084,5.31330590312486,-3.21811881188119,-3.20347860295134,-2.57331960321323,0.545523273217671,0.432798708664798,0.473395155156206,34.8184545529047,-0.0853944097716697,-12330.2851485148,-12774.428526615,-12691.9597055755,4.9987161896234,-85505.8507318922,-29681.5971107334,0,-85505.8507318922,18.1335705323007,18.1335705323007,-1.18512618588591,19.2207389212531,25.8,1014.9,39.18,28.3264704520792 +46783,2873.83015376238,456.62179970297,214.306930693069,14.0975841584158,14.5205116831683,4.65719801980198,-3.5,927.549504950495,-6470.29801980198,-5321.28118811881,20,40,11,32,5305805.72528097,396134.535899197,0,0,0,0,0,0,0,14.0975841584158,28963.1794015406,9.31439603960396,4.99513502004865,4.77100979155326,-3.5,-3.48535979107015,-2.88265054879558,1.11845028144857,0.887338563323901,0.834732903711509,26.9813213943826,-0.0796342472238337,-11791.5792079208,-11578.6550436232,-9257.94448947581,6.42564748196548,-81248.9023196267,-25793.583609509,0,-81248.9023196267,14.1523826095481,14.1523826095481,-1.02976968488928,16.2919199431071,25.8,1014.9,39.17,22.8662129900304 +46784,2873.82888405941,456.61975019802,219.653465346535,11.2248514851485,11.561597029703,3.99982178217822,-3.44960396039604,680.148514851485,-3798.50495049505,-3315.47128712871,20,40,11,32,5305803.41930683,396131.940518402,0,0,0,0,0,0,0,11.2248514851485,28966.6463310786,7.99964356435643,4.29005805060471,4.04697171460748,-3.44960396039604,-3.43496375146619,-2.86990770246876,1.1984436746925,0.95080246852722,0.976994788341381,19.7847183111799,-0.0624977636440214,-7113.97623762377,-7048.50877364964,-6836.77594371113,8.03776671539796,-45573.2118549955,-13419.6509044715,0,-45573.2118549955,11.297524556416,11.297524556416,-0.53534375714799,14.8034523409905,25.8,1014.9,39.16,16.5762881772804 +46785,2873.82759326733,456.61839009901,219.653465346535,10.1777821782178,10.4831156435644,3.83729702970297,-3.5,626.470297029703,-428.247524752475,-603.596039603961,20,40,11,32,5305801.0588121,396130.203219532,0,0,0,0,0,0,0,10.1777821782178,28969.5768427673,7.67459405940594,4.11574012826987,3.84862989334094,-3.5,-3.48535979107015,-2.93905526195787,1.30621223796389,1.03630220301775,1.02112662978673,18.2232822485253,0.0383770829749578,-1031.84356435644,-1210.23257523772,-5197.1584183015,8.84321262556176,-6029.86589825236,-1397.36305388428,0,-6029.86589825236,10.2480899911773,10.2480899911773,-0.0568244943306226,13.481420264132,25.8,1014.9,39.15,14.8911790556135 +46786,2873.82616485149,456.617578811881,225,10.5761782178218,10.8934635643564,3.74248514851485,-3.5,710.648514851485,647.492079207921,504.061386138614,20,40,11,32,5305798.43108617,396129.14498136,0,0,0,0,0,0,0,10.5761782178218,28972.4415042359,7.48497029702971,4.01404847890779,3.79079736284227,-3.5,-3.48535979107015,-2.91152099105491,1.09853114346304,0.871535429670221,0.861739423062102,20.6719273476104,0.00172804876435082,1151.55346534653,1075.23759435349,-3356.25948677259,8.5130157660987,8105.31434939908,4145.58015882983,0,8105.31434939908,10.5800019605921,10.5800019605921,0.165783038699908,12.1159811653407,25.8,1014.9,39.14,14.4514223969967 +46787,2873.82457910891,456.61726,225,11.2107623762376,11.5470852475248,3.63279207920792,-3.5,686.509900990099,538.555445544555,368.20198019802,20,40,11,32,5305795.50089519,396128.69496965,0,0,0,0,0,0,0,11.2107623762376,28975.4659310511,7.26558415841584,3.89639582818907,3.73384559528469,-3.5,-3.48535979107015,-2.87211456205782,0.814668315355072,0.646328785930852,0.713455009414053,19.9697635330292,-0.0451452739686652,906.757425742575,780.010626409175,-1669.9490030455,8.03149189197253,6128.07784383385,4080.81064523073,0,6128.07784383385,11.1946508185472,11.1946508185472,0.164185973052751,11.3719626761216,25.8,1014.9,39.13,14.022475413319 +46788,2873.82298356436,456.617703465347,225,11.5986138613861,11.9465722772277,4.41462376237624,-3.5,544.623762376238,-213.869306930693,-381.455445544554,20,40,11,32,5305792.5354561,396129.19419446,0,0,0,0,0,0,0,11.5986138613861,28978.6450889169,8.82924752475247,4.73495901656381,4.42133054269,-3.5,-3.48535979107015,-2.9428654451027,1.5327353106061,1.21601752981594,1.18864065743202,15.8424630634409,-0.0119523372867599,-595.324752475247,-518.927595333791,-353.690522884153,7.76032157059801,-2928.83351738617,1857.65047562227,0,-2928.83351738617,11.6040967552201,11.6040967552201,0.0745215610669989,11.1976315463327,25.8,1014.9,39.12,19.6647817976788 +46789,2873.82158970297,456.61918009901,214.306930693069,11.7904455445545,12.1441589108911,4.34648514851485,-3.5,549.039603960396,-189.156435643564,-338.107920792079,20,40,10.970297029703,32,5305789.92043851,396130.987155573,0,0,0,0,0,0,0,11.7904455445544,28981.9043627068,8.6929702970297,4.66187610815635,4.37435020886267,-3.5,-3.48535979107015,-2.92978579667146,1.40803361294595,1.11708365042839,1.1557324105721,15.9709146882577,0.00489613816566066,-527.264356435644,-487.064895598471,146.419553507524,7.63409853614227,-2557.2774697524,307.469506019435,0,-2557.2774697524,11.7880125477894,11.7880125477894,0.0122128549488603,11.342390757739,25.8,1014.9,39.11,19.2322452383749 +46790,2873.8206290099,456.621398118812,160.841584158416,11.7601485148515,12.112952970297,4.40468316831683,-3.5,552.044554455446,39.2415841584158,-137.324752475248,20,40,10.6732673267327,32,5305788.09117544,396133.718100463,0,0,0,0,0,0,0,11.7601485148515,28985.1739754956,8.80936633663366,4.72429711013528,4.42213351560465,-3.5,-3.48535979107015,-2.93567684512667,1.47833950436004,1.17286183718854,1.11135631231564,16.0583251549211,-0.000936026414023361,-98.0831683168317,-100.095305597555,8.40819973627803,7.65335795423298,-482.034750551902,-269.483349108461,0,-482.034750551902,11.7485595699744,11.7485595699744,-0.0107617525002338,11.5430963939946,25.8,1014.9,39.0962128712871,19.6964815301048 +46791,2873.82028457143,456.623110285714,86.1428571428571,11.7383428571429,12.0904931428571,4.06374285714286,-3.5,548.457142857143,94.9885714285714,-117.205714285714,20,40,11,32,5305787.41476977,396135.839453861,0,0,0,0,0,0,0,11.7383428571428,28987.3594205561,8.12748571428571,4.3586173857924,4.13078225896974,-3.5,-3.48535979107014,-2.9015792186528,1.1247134549355,0.892307541789844,0.916393928723172,15.9539715815634,0.00103888645952043,-22.2171428571429,-69.0983387902187,-198.147987918141,7.66730341388882,-109.170654603129,116.236047967024,0,-109.170654603129,11.7392811116057,11.7392811116057,0.00463057614220026,11.6567136715908,25.8,1014.9,39.0732,17.1695155609401 diff --git a/DemoData/Results/DataDemo_LS2_1Hz.csv b/DemoData/Results/DataDemo_LS2_1Hz.csv new file mode 100644 index 0000000000000000000000000000000000000000..1053fbf9baf70a38c88a5c0f2736d8f667c0438a --- /dev/null +++ b/DemoData/Results/DataDemo_LS2_1Hz.csv @@ -0,0 +1,309 @@ +# Resultfile Programm VECTO_CSE 2.0.1-beta0 Comp 23/06/2014 +# Datafile: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS2.csdat +# +Time [s],Lat [mm.mm],Long [mm.mm],Heading [°],v_veh_GPS [km/h],v_veh_CAN [km/h],vair_ar [m/s],beta_ar [°],n_eng [rpm],tq_l [Nm],tq_r [Nm],t_amb_veh [°C],t_tire [°C],Satelites [#],Zone (UTM) [-],Lat (UTM) [m],Long (UTM) [m],Sec_ID [-],Dir_ID [-],Lat (root) [m],Long (root) [m],dist (root) [m],slope_deg [°],altitude [m],v_veh [km/h],dist [m],vair_ic [m/s],vair_uf [m/s],vair [m/s],beta_ic [°],beta_uf [°],beta [°],vwind_ha [m/s],vwind [m/s],vwind 1s [m/s],omega_wh [rad/s],omega_p_wh [rad/s2],tq_sum [Nm],tq_sum_1s [Nm],tq_sum_float [Nm],t_float [s],F_trac [N],F_acc [N],F_grd [N],F_res [N],v_veh_1s [km/h],v_veh_avg [km/h],a_veh_avg [m/s2],v_veh_float [km/h],t_amp_stat [°C],p_amp_stat [mbar],rh_stat [%],vair_sq [m/s] +47190,2873.92223156863,456.823372745098,45,14.8783137254902,15.3246631372549,4.43619607843137,-2.89392156862745,718.686274509804,309.030272307843,300.34177622549,20,40,10.6470588235294,32,5305971.77111824,396388.69595986,0,0,0,0,0,0,0,14.8783137254902,1.06922788671024,8.87239215686274,4.75809666948996,4.62787647486917,-2.89392156862745,-2.87928135969759,-2.34779894200485,0.680305702571379,0.539730281044687,0.56231590392197,8.36229451939191,0.000684442843919345,609.372048533333,608.815350492582,622.388812184593,6.04954523580346,1232.97112952847,2456.75862037574,0,1232.97112952847,14.9861166954688,14.9861166954688,0.0982656308554643,15.1895291346566,25.5,1014.9,36.9,21.4703358659417 +47191,2873.92318594059,456.825484455446,45,15.7684653465347,15.7012962302971,4.69487128712871,-0.866039603960396,748.306930693069,301.092780144555,308.553627551485,20,40,10.3663366336634,32,5305973.49171316,396391.358160956,0,0,0,0,0,0,0,15.2439769226185,4.22472872074428,9.38974257425743,5.03554194630416,4.86908514663516,-0.866039603960396,-0.851399395030538,-0.705596314970647,0.871096637173699,0.691097003923045,0.700091086189399,8.70694650405804,0.00210245932996017,609.64640769604,610.500474409313,627.237339352363,5.90397867923842,1253.57003774106,1310.90430116002,0,1253.57003774106,15.2079553758693,15.2079553758693,0.0524207518486063,15.1941203902502,25.5,1014.9,36.9000000000001,23.885715973827 +47192,2873.92457415842,456.828329702971,45,15.9029306930693,15.70545829,4.4500297029703,1.47643564356436,750,302.061461674257,323.219532091089,20,40,10,32,5305975.99953543,396394.948522018,0,0,0,0,0,0,0,15.2480177572816,8.4602682140237,8.90005940594059,4.77293409364388,4.6609040624556,1.47643564356436,1.49107585249421,1.20239263658311,0.704617373060244,0.559018293325084,0.553649444003031,8.72664625997164,0,625.280993765347,625.479010218087,631.198811179064,5.90240655753575,1288.28429223495,0,0,1288.28429223495,15.2480177572816,15.2480177572816,0,15.163896946104,25.5,1014.9,36.9000000000001,21.9402929317955 +47193,2873.9259819802,456.831095247525,45,15.5442277227723,15.70545829,4.5650396039604,1.41633663366337,749.613861386139,314.925775668317,330.328436730693,20,40,10,32,5305978.54545565,396398.440249715,0,0,0,0,0,0,0,15.2480177572816,12.6958287021574,9.13007920792079,4.89628937758184,4.75885568230538,1.41633663366337,1.43097684259322,1.16641404719434,0.715343940906883,0.567528369687268,0.548347803825994,8.72215333318433,-1.03052879760998E-19,645.25421239901,644.614123177963,631.296494844708,5.90240655753575,1328.74787053117,-95.3422213377722,0,1328.74787053117,15.2466362461114,15.2466362461114,-0.00381368885351089,15.1310289842775,25.5,1014.9,36.9000000000001,22.714776602888 +47194,2873.92738148515,456.833786435644,45,15.1516534653465,15.598293389901,4.53929702970297,1.08287128712871,748.688118811881,327.858331173267,323.344447325743,20,40,9.96039603960396,32,5305981.07763518,396401.839075515,0,0,0,0,0,0,0,15.1439741649524,16.9236473535463,9.07859405940594,4.8686788629263,4.73096087608874,1.08287128712871,1.09751149605857,0.900711319718383,0.71272955702269,0.565454210756597,0.551995604504617,8.71138182921988,-5.76016254783606E-05,651.20277849901,650.313078685413,631.226022420489,5.94315950261482,1348.56913189823,-1458.59431107551,0,1348.56913189823,15.1384711045157,15.1384711045157,-0.0583433742958579,15.0911201882136,25.5,1014.9,36.9000000000001,22.4420100515529 +47195,2873.92881910891,456.83637009901,45,14.9504356435644,15.3989487128713,3.96039603960396,0.0106930693069308,745.405940594059,328.96899629604,308.688611536634,20,40,10,32,5305983.68283035,396405.105227601,0,0,0,0,0,0,0,14.9504356435643,21.0985419677642,7.92079207920792,4.24777148546689,4.22723916040919,0.0106930693069308,0.0253332782367882,0.0301688221089921,0.471351503057007,0.373953471585227,0.397684885104431,8.67319195152773,-0.000460813003826886,637.657607832673,637.336283331095,630.34092177866,6.01992915126335,1331.73354904263,-779.152367080045,0,1331.73354904263,14.956603470248,14.956603470248,-0.0311625221928142,15.0279935342206,25.5,1014.9,36.9000000000001,18.007481287552 +47196,2873.93018633663,456.838965445544,45,14.899,15.34597,4.40620792079208,2.96990099009901,741.554455445545,317.236630641584,299.83543719505,20,40,10.5940594059406,32,5305986.15736842,396408.383588984,0,0,0,0,0,0,0,14.899,25.242773045872,8.81241584158416,4.72593250215719,4.60350146799438,2.96990099009901,2.98454119902886,2.42525467252209,0.659219224357001,0.523001021287093,0.493564109904068,8.62837788690556,-0.00169924795161164,617.072067836634,617.614542909235,629.492705718255,6.0406910921979,1286.49911158172,-255.944116526466,0,1286.49911158172,14.8946405254387,14.8946405254387,-0.0102250324042263,14.9681537185426,25.5,1014.9,36.9000000000001,21.2883123709639 +47197,2873.93150158416,456.841614257426,45,14.8647821782178,15.3107256435644,4.26432673267327,2.92405940594059,741.356435643564,303.447917094059,304.924491955446,20,40,11,32,5305988.53442756,396411.726818208,0,0,0,0,0,0,0,14.8647821782178,29.3752328368511,8.52865346534653,4.57375608869034,4.48087181655723,2.92405940594059,2.93869961487045,2.376305792479,0.54854087240799,0.435192764238513,0.454825878864079,8.62607382188643,0.00187205282804672,608.372409049505,609.279934620547,629.175584281591,6.05459665406687,1270.95308342527,3.07519930168469,0,1270.95308342527,14.8710117635526,14.8710117635526,0.000108921783267436,14.9162646591487,25.5,1014.9,36.9000000000001,20.1686708826145 +47198,2873.9328729703,456.844193762376,45,14.8709405940594,15.3170688118812,3.23481188118812,1.44693069306931,742.232673267327,300.280135288119,319.276922348515,20,40,11,32,5305991.01702636,396414.985579189,0,0,0,0,0,0,0,14.8709405940594,33.5061634199094,6.46962376237624,3.4695372716145,3.6053275317909,1.44693069306931,1.46157090199916,1.08170642341575,1.08431392723983,0.860255997381435,0.79824557250266,8.6362693095961,-0.000172804876435082,619.557057636634,619.995258880522,629.600543339147,6.05208909346002,1295.30618634136,51.7062810278324,0,1295.30618634136,14.8743939809822,14.8743939809822,0.00206951388207786,14.9004292683402,25.5,1014.9,36.9000000000001,13.8528045779765 +47199,2873.9342219802,456.846799207921,45,14.8978613861386,15.3447972277228,2.70424752475247,-0.845445544554456,742.851485148515,310.645729215842,329.697170057426,20,40,11,32,5305993.45759846,396418.275906225,0,0,0,0,0,0,0,14.8978613861386,37.6409910326706,5.40849504950495,2.90047394513522,3.15548055302361,-0.845445544554456,-0.830805335624598,-0.546311848497719,1.36875456319559,1.08592105325949,1.10669441423475,8.64346951278089,-0.00077762194395787,640.342899273268,639.908895985756,630.402909564169,6.04114754064187,1337.46798551576,165.141940177881,0,1337.46798551576,14.8969081462602,14.8969081462602,0.00661155224433201,14.9057856471797,25.5,1014.9,36.9000000000001,10.6400940975006 +47200,2873.93558732673,456.849396237624,45,14.9291485148515,15.377022970297,4.03963366336634,0.74940594059406,744.613861386139,325.014619614852,326.60490739901,20,40,11,32,5305995.92862163,396421.556290469,0,0,0,0,0,0,0,14.9291485148515,41.7820035189192,8.07926732673267,4.33275877346237,4.29347984161968,0.74940594059406,0.764046149523918,0.621164553040043,0.688095146474989,0.545910148024174,0.593444876596741,8.66397569145119,0.000892825194914591,651.619527013861,650.712339816939,630.911410105987,6.02849979508018,1361.38437125168,213.280898712983,0,1361.38437125168,14.9255824919125,14.9255824919125,0.00852449106296395,14.9186034762062,25.5,1014.9,36.9075742574258,18.7335696486431 +47201,2873.93698287129,456.85195029703,45,14.9424752475247,15.3907495049505,3.65706930693069,1.05584158415842,744.346534653465,330.176114925743,312.843146394059,20,40,11,32,5305998.45654451,396424.784150065,0,0,0,0,0,0,0,14.9424752475247,45.9319225508224,7.31413861386139,3.92243466739498,3.96858162549916,1.05584158415842,1.07048179308827,0.915031693092922,0.728106574391684,0.577653787909671,0.582401213125633,8.66086520367536,-0.00158404470065492,643.019261319802,642.472953942564,630.568195660775,6.02310977145439,1341.73588697388,128.946929204497,0,1341.73588697388,14.9454815214194,14.9454815214194,0.00516970013833548,14.9364472941036,25.5,1014.9,36.96,16.1929685845058 +47202,2873.93838712871,456.854494455446,45,14.9564158415841,15.4051083168317,3.83822772277228,1.36861386138614,745.069306930693,321.384760165347,301.064386651485,20,40,11,32,5306001.00082976,396427.999963367,0,0,0,0,0,0,0,14.9564158415841,50.0855559116585,7.67645544554455,4.11673835456895,4.12359628955563,1.36861386138614,1.383254070316,1.077984870713,0.457041271921343,0.362600244582318,0.418247367804442,8.6692750409952,0.00181445120256836,622.449146816832,622.765991734007,629.673851560589,6.01750500611247,1298.85178994487,-19.470675760469,0,1298.85178994487,14.9566746397412,14.9566746397412,-0.000792405973271236,14.955657060115,25.5,1014.9,37.02,17.2122610038016 +47203,2873.93979425743,456.857042673267,45,14.9653465346535,15.4143069306931,3.83647524752475,0.616930693069307,745.455445544554,306.723286346535,302.097965552475,20,40,11,32,5306003.55034462,396431.220925879,0.97029702970297,0.97029702970297,5148399.30752813,384656.257632475,1.94111452533453,0,0,14.9653465346534,54.2397501085782,7.6729504950495,4.11485871568664,4.12268186663296,0.616930693069307,0.631570901999164,0.487008064495368,0.889342963231702,0.705572988254935,0.648264283914241,8.67376796778251,-0.000720020318479509,608.82125189901,609.70994336467,629.055096427493,6.01392340128442,1270.32739979813,141.703694380427,0,1270.32739979813,14.9616502303695,14.9616502303695,0.00567346338594221,14.971840635188,25.5,1014.9,37.08,17.5516822635468 +47204,2873.94120217822,456.859594950495,45,14.9892475247525,15.438924950495,4.67934653465347,2.58346534653465,746.420792079208,299.671384894059,314.993615426733,20,40,11,32,5306006.10123771,396434.446968462,1,1,5306005.92624673,396434.589525521,6.05103117161141,0,0,14.9892475247524,58.4004287664439,9.35869306930693,5.01889068208112,4.84120372272496,2.58346534653465,2.59810555546451,2.12905394495165,0.896273494326387,0.71107142444529,0.719967373531082,8.68500028475079,0.000748821131218688,614.665000320792,615.308479494696,629.296387399037,6.00432459995128,1282.13340159559,228.910815206063,0,1282.13340159559,14.9921498872659,14.9921498872659,0.00915079131675812,14.9825572800915,25.5,1014.9,37.14,23.5179164124958 +47205,2873.94261336634,456.862155346535,45,15.0066237623762,15.4568224752475,4.68379207920792,2.8590099009901,747.118811881188,306.712541479208,327.895135249505,20,40,11,32,5306008.65800327,396437.683229977,1,1,5306008.53089895,396437.786775995,10.1749399659988,0,0,15.0066237623762,62.5672939204593,9.36758415841584,5.02365880557356,4.84592775352353,2.8590099009901,2.87365010991995,2.35615628772597,0.896598268131984,0.711329088399462,0.716600039753733,8.69312211394323,-0.00112323169682803,634.607676728713,634.414331825615,630.212833434829,5.99737246664263,1323.43282035226,-26.6245334849506,0,1323.43282035226,15.0062014508381,15.0062014508381,-0.00105654129769425,14.9953899919761,25.5,1014.9,37.2,23.5457800123887 +47206,2873.94402376238,456.864724059406,45,15.0010693069307,15.4511013861386,4.63250495049505,2.35574257425743,746.905940594059,321.373149209901,328.940927193069,20,40,11,32,5306011.21311749,396440.929822116,1,1,5306011.13995107,396440.989427422,14.30581506885,0,0,15.0010693069307,66.7352022262899,9.2650099009901,4.96865016483676,4.8021161743489,2.35574257425743,2.37038278318728,1.94014736658284,0.838595368324311,0.665311656388716,0.667071012885275,8.69064524404767,0.00112323169682803,650.31407640297,649.461667837791,630.951481592493,5.99959460156472,1356.30731665258,-12.620266972381,0,1356.30731665258,14.9995080874424,14.9995080874424,-0.000513293903646921,15.0088650780221,25.5,1014.9,37.26,23.1057958069247 +47207,2873.94542584158,456.867297029703,45,15.018702970297,15.4692640594059,4.68385148514852,2.38485148514851,747.391089108911,330.174312951485,317.169494970297,20,40,11,32,5306013.7527327,396444.181438148,1,1,5306013.74528046,396444.187509146,18.4307960344074,0,0,15.018702970297,70.9029651525825,9.36770297029703,5.02372252214584,4.84667890918012,2.38485148514851,2.39949169407837,1.96466257127688,0.894653503922113,0.709786181836146,0.678863238871698,8.69629020334455,-0.00123843494778476,647.343807921782,646.616036196216,630.834413272057,5.9925473782947,1349.40491388603,212.370350067835,0,1349.40491388603,15.0186313106558,15.0186313106558,0.00850406822860764,15.0181938124895,25.5,1014.9,37.32,23.5383149508155 +47208,2873.94683178218,456.869885742574,45,15.0345049504951,15.4855400990099,4.26457425742574,2.33683168316832,747.188118811881,325.024283345545,303.403439076238,20,40,11,32,5306016.29915042,396447.452789319,1,1,5306016.36298729,396447.400784371,22.5753740289219,0,0,15.034504950495,75.0780202130886,8.52914851485148,4.57402157440818,4.49089037029891,2.33683168316832,2.35147189209817,1.9020281667478,0.492733031531852,0.390916813696389,0.423423162014333,8.69392853669993,0.00103682925861049,628.427722421782,628.493697503931,629.922963381032,5.98623685209175,1308.23232361964,35.5956375634449,0,1308.23232361964,15.0337296343496,15.0337296343496,0.00141598318247764,15.0263178076075,25.5,1014.9,37.38,20.2395396745767 +47209,2873.9482339604,456.872478217822,45,15.033099009901,15.484091980198,4.34718811881188,2.72009900990099,747.40099009901,310.657973860396,300.299207814852,20,40,11,32,5306018.83851666,396450.72869912,1,1,5306018.98011343,396450.613346773,26.7190326028419,0,0,15.033099009901,79.2546292339907,8.69437623762376,4.66263008759502,4.56100693338006,2.72009900990099,2.73473921883084,2.21538714746656,0.576770434336306,0.457589091853803,0.455400500114169,8.6964054065955,-0.00083522356943623,610.957181675247,611.756246379914,629.0497783642,5.98680653184687,1272.34672081915,-38.4506251510467,0,1272.34672081915,15.0355239682384,15.0355239682384,-0.00153171257719922,15.0367901344142,25.5,1014.9,37.44,20.8847488261593 +47210,2873.94963326733,456.875078910891,45,15.0419504950495,15.493209009901,4.42388118811881,3.49306930693069,747.331683168317,300.283703189109,310.710817094059,20,40,11,32,5306021.37238241,396454.014747069,1,1,5306021.60000974,396453.829309609,30.8670771578963,0,0,15.0419504950495,83.4308265387211,8.84776237623762,4.74488818241108,4.62661803932498,3.49306930693069,3.50770951586055,2.84510229018174,0.650821611612579,0.516338654839892,0.481773271075955,8.6955989838388,0.000604817067522787,610.994520283168,611.792018203862,629.036912532206,5.98327718367948,1271.55530507427,110.771020065367,0,1271.55530507427,15.0390864621116,15.0390864621116,0.0044263089675316,15.0457592973476,25.5,1014.9,37.5025247524752,21.4853788572527 +47211,2873.95103267327,456.877686831683,45,15.0613465346535,15.5131869306931,4.06125742574257,3.4319801980198,747.638613861386,303.439527934653,325.065881354455,20,40,11,32,5306023.90627186,396457.309798577,1,1,5306024.22432432,396457.05069594,35.022117099663,0,0,15.0613465346535,87.6112650150688,8.12251485148515,4.35595160577302,4.31921840888781,3.4319801980198,3.44662040694965,2.75405002901987,0.379400001566789,0.301002429790029,0.326001478873299,8.69917028461846,-0.000921626007653771,628.505409289109,628.568124517636,629.924974002207,5.9755775591789,1306.84077128709,172.877320950953,0,1306.84077128709,15.061122831095,15.061122831095,0.00692197932664634,15.0493731893591,25.5,1014.9,37.58,18.7061602806508 +47212,2873.95243564357,456.88029970297,45,15.0636534653465,15.5155630693069,4.17563366336634,3.35861386138614,748.381188118812,317.223997390099,330.166420719802,20,40,11,32,5306026.44665493,396460.611132202,1,1,5306026.8543055,396460.279038117,39.1861288961071,0,0,15.0636534653465,91.7965905101184,8.35126732673268,4.47862724627331,4.41669438296087,3.35861386138614,3.37325407031599,2.70847096494988,0.48473423496515,0.384570853780652,0.384300387244121,8.70781052844022,0.000662418693001148,647.390418109901,646.660690549662,630.901945390652,5.97466059969836,1347.2611751815,-127.449899507353,0,1347.2611751815,15.064031271444,15.064031271444,-0.0051029855460815,15.0534863090402,25.5,1014.9,37.66,19.6015047719887 +47213,2873.95383158416,456.882911287129,45,15.0555742574258,15.5072414851485,3.88305940594059,3.5,748.876237623762,328.963733893069,321.323022814852,20,40,11,32,5306028.97404719,396463.910625979,1,1,5306029.47820352,396463.499913111,43.3405092997197,0,0,15.0555742574257,95.9792415827256,7.76611881188119,4.16482312778444,4.1672305049484,3.5,3.51464020892985,2.783419582528,0.409644616516821,0.324997428605074,0.322536204595619,8.71357069098805,-0.000144004063695902,650.286756707921,649.435494521145,631.042378823392,5.9778687224668,1354.90240567479,4.05773878962601,0,1354.90240567479,15.0539204979904,15.0539204979904,0.000163382674900543,15.0597372942262,25.5,1014.9,37.74,17.4573109504908 +47214,2873.95525415842,456.885506633663,45,15.0446534653465,15.4959930693069,3.84913861386139,3.5,748.049504950495,327.865277861386,306.66626689604,20,40,11,32,5306031.5511389,396467.19077578,1,1,5306032.11245517,396466.733497354,47.5112824699983,0,0,15.0446534653465,100.16024152772,7.69827722772277,4.12844096501141,4.13774196103217,3.5,3.51464020892985,2.78045685617312,0.365756690662614,0.290178313512806,0.306899445407963,8.70395121953317,0.000403211378348525,634.531544757426,634.341394461788,630.235173747844,5.98220108877817,1321.57063786926,18.0809615503553,0,1321.57063786926,15.0492668365846,15.0492668365846,0.000720245291858835,15.0545830819645,25.5,1014.9,37.82,17.1696494075678 +47215,2873.9567170297,456.888068514852,45,15.0873465346535,15.5399669306931,4.09562376237624,3.5,747.638613861386,314.938544687129,299.671506759406,20,40,11,32,5306034.20362433,396470.430576103,1,1,5306034.75702443,396469.979746612,51.6983913533332,0,0,15.0873465346535,104.34390142871,8.19124752475248,4.39281164283816,4.34991411203596,3.5,3.51464020892985,2.81043385860924,0.446580201814021,0.354300804657425,0.335432095446212,8.69917028461846,-8.6402438217541E-05,614.610051446535,615.25583635725,629.180321873051,5.96528699487375,1275.76662836152,102.299622563596,0,1275.76662836152,15.0796482697775,15.0796482697775,0.00409273600626807,15.0525558240342,25.5,1014.9,37.9,18.9957487953658 +47216,2873.95814118812,456.890667326733,45,15.0336930693069,15.4847038613861,3.88643564356436,3.35910891089109,747.465346534653,302.068313250495,306.769692614852,20,40,11,32,5306036.78357666,396473.715089248,1,1,5306037.39455385,396473.217354362,55.8743541624037,0,0,15.0336930693069,108.530255746642,7.77287128712872,4.1684443529758,4.16887095206021,3.35910891089109,3.37374911982094,2.67464456892656,0.373476494983779,0.296302930931304,0.303864472735921,8.69715422772672,0.000403211378348525,608.838005865346,609.725994308774,628.94765637729,5.98660082402195,1268.00184448555,-366.718783662197,0,1268.00184448555,15.0380583276149,15.0380583276149,-0.0146717642061247,15.0538439799037,25.5,1014.9,37.98,17.4368606431853 +47217,2873.9595590099,456.893248613861,45,15.0327128712871,15.4836942574258,3.58688118811881,3.49950495049505,747.079207920792,301.087414968317,321.434785125743,20,40,11,32,5306039.35218482,396476.977559359,1,1,5306040.01676397,396476.436157437,60.0260621422679,0,0,15.0327128712871,112.702136494717,7.17376237623762,3.8471535372438,3.91391620145233,3.49950495049505,3.5141451594249,2.74183119568062,0.495485405003451,0.393100448644253,0.376862822715147,8.69266130093941,4.12211519043994E-19,622.522200094059,622.835979590746,629.644104915764,5.9869759001815,1295.89051386576,259.19961649204,0,1295.89051386576,15.0314756396432,15.0314756396432,0.0103679922447725,15.0561739207719,25.5,1014.9,38.06,15.3858382410301 +47218,2873.96095366337,456.895869108911,45,15.0679306930693,15.5199686138614,3.62953465346535,3.5,748.341584158416,312.89768320297,330.183765864356,20,40,11,32,5306041.87700295,396480.288095559,1,1,5306042.64504233,396479.662409366,64.1873778767418,0,0,15.0679306930693,116.884323705938,7.2590693069307,3.89290203614227,3.9522267186356,3.5,3.51464020892985,2.74783131171454,0.455924403901391,0.361714161328833,0.380674859811951,8.70734971543639,0.000230406501913443,643.081449067327,642.532532197412,630.680364037187,5.97296807356021,1337.83537414289,43.3389105671867,0,1337.83537414289,15.0660092147829,15.0660092147829,0.00173185635395308,15.0566291262986,25.5,1014.9,38.14,15.6759825348052 +47219,2873.9623,456.898534059406,45,15.0645544554456,15.5164910891089,3.42829702970297,3.45386138613861,748.737623762376,326.64081180099,324.972862295049,20,40,11,32,5306044.31133014,396483.652398685,1,1,5306045.26355075,396482.876668552,68.3332250126431,0,0,15.0645544554455,121.069031874255,6.85659405940595,3.67706214753699,3.78082837606038,3.45386138613861,3.46850159506847,2.68195885123473,0.596014793151597,0.472856879780087,0.471295088031231,8.71195784547466,2.06105759521997E-19,651.61367409604,650.706732497098,631.123300042419,5.97430315365589,1356.60522328691,39.9602516842342,0,1356.60522328691,15.0654279972552,15.0654279972552,0.00159842716944953,15.0559473177922,25.5,1014.9,38.22,14.3454582777192 +47220,2873.96370623762,456.901146138614,45,15.0627227722772,15.5146044554455,3.23548514851485,3.41039603960396,747.816831683168,329.681431716832,310.592955122772,20,40,11,32,5306046.85779792,396486.952830948,1,1,5306047.89551786,396486.107448472,72.5003810842391,0,0,15.0627227722772,125.253882204288,6.4709702970297,3.47025939276703,3.61669023172742,3.41039603960396,3.42503624853381,2.61678580488323,0.75757453838692,0.60103261955675,0.626522937187487,8.70124394313568,-0.00123843494778476,640.274386839604,639.843258432899,630.533783016247,5.97502518562454,1331.5286984935,-20.9933094067336,0,1331.5286984935,15.0638807960004,15.0638807960004,-0.000830528597415389,15.0648908349966,25.5,1014.9,38.2924257425743,13.1165232210808 +47221,2873.96507346535,456.903792871287,45,15.0622178217822,15.5140843564356,2.77327722772277,3.4650495049505,747.455445544554,319.224011010891,300.264864686138,20,40,10.970297029703,32,5306049.33123349,396490.295129721,1,1,5306050.51885225,396489.327631605,76.6538691038874,0,0,15.0622178217822,129.438408111878,5.54655445544554,2.97451260212691,3.22338590343725,3.4650495049505,3.47968971388035,2.56688846223602,1.23013468989047,0.975944989712534,0.926035107955234,8.69703902447577,0.00086402438217541,619.48887569703,619.929937956269,629.456532540619,5.97523110920104,1287.71307964645,-6.27196421923428,0,1287.71307964645,15.0651911577296,15.0651911577296,-0.000257327712968142,15.0673234427784,25.5,1014.9,38.32,10.4378733241873 +47222,2873.96645524753,456.906412178218,45,15.0751881188119,15.5274437623762,2.89117821782178,3.09178217821782,747.519801980198,304.883054069307,303.48418969901,20,40,10.5049504950495,32,5306051.83224361,396493.60374671,1,1,5306053.13669342,396492.541071731,80.7986597926914,0,0,15.0751881188119,133.623550108578,5.78235643564357,3.10096875924926,3.32452386189709,3.09178217821782,3.10642238714768,2.32002324684367,1.11130458244394,0.881669420587847,0.889930376729714,8.69778784560698,-0.00080642275669705,608.367243768317,609.274986082306,628.870797147532,5.97009096880309,1263.61757847796,56.7267328764036,0,1263.61757847796,15.0704021174395,15.0704021174395,0.00227510374799821,15.0692123185999,25.5,1014.9,38.34,11.1061595344325 +47223,2873.96786752475,456.909020990099,45,15.0660297029703,15.5180105940594,2.79014851485149,1.31049504950495,748.064356435644,299.843570551485,317.29109760099,20,40,10.9207920792079,32,5306054.38997742,396496.900301042,1,1,5306055.77125579,396495.775037383,84.9699249159426,0,0,15.0660297029703,137.810213804948,5.58029702970297,2.99260810865499,3.2382251739549,1.31049504950495,1.32513525843481,0.986355621702364,1.20788756981761,0.958294918099178,0.949024983648863,8.7041240244096,0.000547215442044427,617.134668152475,617.674516425429,629.330748407662,5.97371505152319,1283.54722940643,2.1456690792101,0,1283.54722940643,15.07056327811,15.07056327811,8.1691337450638E-05,15.0737414218797,25.5,1014.9,38.36,10.5275541252486 +47224,2873.96921029703,456.911695742574,45,15.0726534653465,15.5248330693069,2.9869801980198,2.63168316831683,749.064356435644,308.738838371287,328.991580932673,20,40,11,32,5306056.81749272,396500.276681096,1,1,5306058.39296062,396498.993220204,89.1208328739515,0,0,15.0726534653465,141.9965563242,5.97396039603961,3.2037223514827,3.40601034242696,2.63168316831683,2.64632337724669,1.98442803696527,1.00660931563827,0.798607929902864,0.811985062539409,8.71575955275623,1.37403839681331E-19,637.73041930396,637.406039524272,630.401966293983,5.97109497303617,1327.56618513838,-9.12201216752104,0,1327.56618513838,15.0720300950887,15.0720300950887,-0.000364887973947681,15.0775349670526,25.5,1014.9,38.38,11.6605501810001 +47225,2873.97059762376,456.914336336634,45,15.0848514851485,15.537397029703,3.0090297029703,1.56079207920792,748.321782178218,323.390589321782,327.828269276238,20,40,11,32,5306059.32830331,396503.611989649,1,1,5306061.02778156,396502.227503251,93.2925073828079,0,0,15.0848514851485,146.184470268094,6.01805940594059,3.22737181922804,3.42546739465393,1.56079207920792,1.57543228813778,1.19971012309511,0.999589648599336,0.793038776433412,0.75299612507211,8.70711930893447,0.000345609752870164,651.21885859802,650.328484039526,631.113955138088,5.96626747562991,1353.2065742404,178.355599570809,0,1353.2065742404,15.0851585138712,15.0851585138712,0.00713165375943795,15.0774401781332,25.5,1014.9,38.4,11.8429749826403 +47226,2873.97196534653,456.91700990099,45,15.0948712871287,15.5477174257426,3.19291089108911,3.2660396039604,747.975247524752,330.328071139604,314.870706009901,20,40,11,32,5306061.80206592,396506.987712931,1,1,5306063.66761357,396505.467937469,97.4721158543719,0,0,15.0948712871287,150.376873045872,6.38582178217822,3.42459584929827,3.58231496191212,3.2660396039604,3.28067981289025,2.4982114769263,0.811902390565267,0.644134399850436,0.685199677072183,8.70308719515099,-2.06105759521997E-19,645.198777149505,644.561014073375,630.808347630387,5.96231167116811,1339.18762831525,-113.313656034613,0,1339.18762831525,15.0930407803156,15.0930407803156,-0.00453250770622006,15.0774396477017,25.5,1014.9,38.42,12.897509288675 +47227,2873.97331772277,456.919693861386,45,15.077099009901,15.529411980198,3.34215841584158,0.577029702970297,747.663366336634,323.172995039604,302.032015041584,20,40,10.8514851485149,32,5306064.24717115,396510.375873125,1,1,5306066.30210375,396508.701814502,101.6432666733,0,0,15.077099009901,154.567590180086,6.68431683168317,3.58467311772808,3.70838878075532,0.577029702970297,0.591669911900154,0.473839761233246,0.66478425972134,0.527416121865943,0.531236923925948,8.69945829274586,0.000316808940130984,625.205010081188,625.406214918684,629.751343262544,5.96933989649516,1298.66858936583,-140.961168643843,0,1298.66858936583,15.0742886971865,15.0742886971865,-0.00564078685096234,15.076679981647,25.5,1014.9,38.44,13.8258110392735 +47228,2873.97470534653,456.922340990099,45,15.0658415841584,15.5178168316832,3.2709702970297,1.71990099009901,748.920792079208,308.503704988119,301.116029635644,20,40,10.3762376237624,32,5306066.7583917,396513.719322619,1,1,5306068.94107464,396511.941191686,105.821511751914,0,0,15.0658415841584,158.752552968865,6.5419405940594,3.50831942527682,3.64735010132526,1.71990099009901,1.73454119902887,1.33124987197956,0.711161107368365,0.564209858740241,0.561993111005436,8.71408910561736,0,609.619734623762,610.474920578786,628.947091239002,5.97380399874582,1269.38405721596,117.293871359328,0,1269.38405721596,15.0677465934712,15.0677465934712,0.00469180581424568,15.0731312603469,25.5,1014.9,38.46,13.3426491927523 +47229,2873.97608217822,456.924998415842,45,15.0755247524753,15.5277904950495,3.12385148514852,3.09207920792079,748.925742574257,299.807078613861,312.964902557426,20,40,10.4356435643564,32,5306069.24939348,396517.075237005,1,1,5306071.57808371,396515.178160687,109.99665068393,0,0,15.0755247524752,162.939240592627,6.24770297029703,3.35052533402044,3.52254010259861,3.09207920792079,3.10671941685065,2.35802692378434,0.869533996694469,0.689857260699023,0.672381997863485,8.71414670724284,-0.000489613816566066,612.771981171287,613.494894213234,629.101594599553,5.96995632518486,1275.12387561889,-105.507359608859,0,1275.12387561889,15.074456327811,15.074456327811,-0.00421663453473998,15.0678825252043,25.5,1014.9,38.48,12.4543039307647 +47230,2873.97743722772,456.927674356435,45,15.053603960396,15.5052120792079,3.23938613861386,3.43029702970297,748.123762376238,305.078754094059,326.684834678218,20,40,10.7326732673267,32,5306071.6996355,396520.453487613,1,1,5306074.20977055,396518.408596585,114.163363025322,0,0,15.053603960396,167.124228408909,6.47877227722772,3.47444344768022,3.61947578905044,3.43029702970297,3.44493723863282,2.63251425408815,0.754031991123281,0.598222088904147,0.61795542995583,8.70481524391534,0.000230406501913443,631.763588772277,631.689585988717,630.093486168896,5.97866148598699,1315.15643511568,-51.0485144695384,0,1315.15643511568,15.054631016567,15.054631016567,-0.0020436449585536,15.0603041096214,25.5012623762376,1014.9,38.4835891089109,13.1478433733593 +47231,2873.97872683168,456.930401386139,45,15.0605148514852,15.5123302970297,3.2500099009901,3.40534653465347,747.816831683168,319.47197730099,329.661783688119,20,40,10.9108910891089,32,5306074.02751059,396523.893199621,1,1,5306076.82273941,396521.616055875,118.300439453848,0,0,15.0605148514851,171.306329784046,6.5000198019802,3.48583809468998,3.62891703671955,3.40534653465347,3.41998674358332,2.61419055593969,0.742893236693988,0.589384998408085,0.587185769858298,8.70124394313569,-0.00115203250956721,649.133760989109,648.33088019554,630.991737667714,5.97591634794337,1350.14350868387,50.3659864438541,0,1350.14350868387,15.0613813351632,15.0613813351632,0.00202322212419216,15.0546932756745,25.51,1014.9,38.39,13.2119736495648 +47232,2873.98006722772,456.933084257426,45,15.0521188118812,15.5036823762376,3.33706930693069,3.18871287128713,747.381188118812,329.753685204951,319.158756385149,20,40,10.990099009901,32,5306076.45045847,396527.279590861,1,1,5306079.44752445,396524.838019702,122.456224265748,0,0,15.0521188118812,175.490003408909,6.67413861386139,3.57921473136926,3.70256593172948,3.18871287128713,3.20335308021698,2.46330809726686,0.653474800977054,0.518443600654605,0.534617164896277,8.69617500009359,0.000230406501913443,648.912441590099,648.118847686129,630.964424521598,5.97924524613704,1349.64549148662,-165.175931283741,0,1349.64549148662,15.0515909224586,15.0515909224586,-0.00660882919975231,15.0506806143333,25.52,1014.9,38.28,13.7461242823823 +47233,2873.98145059406,456.935725643564,45,15.0344851485148,15.4855197029703,3.04334653465347,3.39485148514851,747.044554455446,326.470922973267,304.832187649505,20,40,10.9405940594059,32,5306078.95393069,396530.615731356,1,1,5306082.07982538,396528.069209402,126.623908882649,0,0,15.0344851485148,179.668027226291,6.08669306930693,3.26417875914961,3.45159007151905,3.39485148514851,3.40949169407837,2.56859044569056,0.946829427619255,0.751180698822235,0.721875730078686,8.69225808956106,-0.000720020318479508,631.303110622772,631.248430180757,630.068354855462,5.98625582612581,1313.97068547342,-35.6386343331658,0,1313.97068547342,15.0355668071758,15.0355668071758,-0.00142006774935061,15.0498533852672,25.53,1014.9,38.17,11.9740737218734 +47234,2873.98283039604,456.938365742574,45,15.0308316831683,15.4817566336634,2.88036633663366,3.29792079207921,747.079207920792,312.641847050495,299.853858694059,20,40,10.970297029703,32,5306081.45083114,396533.950147273,1,1,5306084.70866024,396531.296144446,130.786105718922,0,0,15.0308316831683,183.843620873155,5.76073267326733,3.08937234309393,3.31275534769534,3.29792079207921,3.31256100100906,2.46653385447152,1.12753165889698,0.894543404300504,0.935982070393592,8.69266130093941,0.000374410565609345,612.495705744554,613.230211716665,629.138264628063,5.98770764517513,1275.18823397265,86.4248583768988,0,1275.18823397265,15.0349649054014,15.0349649054014,0.0034541820518694,15.0514755338874,25.54,1014.9,38.06,11.0623936420224 +47235,2873.98420049505,456.941014851485,45,15.0689108910891,15.5209782178218,2.49527722772277,0.491881188118812,747.435643564356,300.980846085149,308.800822208911,20,40,10.960396039604,32,5306083.92955901,396537.295461033,1,1,5306087.33558218,396534.520731349,134.94527385195,0,0,15.0689108910891,188.023836027171,4.99055445544554,2.67634028270456,2.98747654266297,0.491881188118812,0.506521397048671,0.356944025238254,1.52033366624046,1.20617850748585,1.1934637845572,8.69680861797385,-0.000259207314652623,609.781668294059,610.630059268385,628.954906029187,5.97258314973621,1266.94377411578,95.4621832526855,0,1266.94377411578,15.0613376139594,15.0613376139594,0.00382043154810742,15.0560269100558,25.55,1014.9,37.95,8.95451029593342 +47236,2873.98562881188,456.943614653465,45,15.0536930693069,15.5053038613861,2.22612871287129,-2.15831683168317,748.841584158416,302.208990566337,323.447281190099,20,40,11,32,5306086.51722944,396540.581287312,1,1,5306089.97683349,396537.762907768,139.127129467199,0,0,15.0536930693069,192.207347440812,4.45225742574257,2.38766173255223,2.75755642244403,-2.15831683168317,-2.14367662275331,-1.49336785995753,1.80257849566992,1.43010148878026,1.39414371962824,8.7131674796097,0.000259207314652623,625.656271756435,625.838540993745,629.778406141875,5.97861813057246,1303.68166662904,29.4914196118552,0,1303.68166662904,15.0573478090383,15.0573478090383,0.0011777167815784,15.0646028576981,25.56,1014.9,37.84,7.63525070512308 +47237,2873.98701257426,456.946253465347,45,15.0795544554456,15.5319410891089,2.44620792079208,1.06158415841584,748.816831683168,315.197130136634,330.327348806931,20,40,11,32,5306089.02150031,396543.914222777,1,1,5306092.60788358,396540.992562054,143.292833661219,0,0,15.0795544554455,196.39222662123,4.89241584158416,2.62371039399962,2.94626751469118,1.06158415841584,1.0762243673457,0.796389486999624,1.57639372449799,1.25065455830294,1.27297814100438,8.71287947148231,0,645.524478943565,644.873048941388,630.815220016131,5.96836708147296,1342.72888298469,160.591497541369,0,1342.72888298469,15.0786143515341,15.0786143515341,0.00642366216819681,15.0742629208173,25.57,1014.9,37.73,8.71456980979078 +47238,2873.98842910891,456.94886950495,45,15.0970099009901,15.5499201980198,2.54631683168317,0.928514851485149,748.435643564356,328.004029163366,323.115522615842,20,40,11,32,5306091.58698717,396547.219877935,1,1,5306095.24999522,396544.235794548,147.476051433492,0,0,15.0970099009901,200.583580334102,5.09263366336634,2.73108343772351,3.03232055530547,0.928514851485149,0.943155060415002,0.70414306458157,1.47701432803665,1.17181048955651,1.20137967419254,8.70844414632048,0.000201605689174262,651.119551779208,650.233344279267,631.126432637599,5.96146461257303,1352.1167060847,33.9403519216169,0,1352.1167060847,15.0953747671797,15.0953747671797,0.00135607620167927,15.0826935717861,25.58,1014.9,37.62,9.22891320262108 +47239,2873.98976237624,456.951553564356,45,15.0805247524752,15.5329404950495,2.78026732673267,2.19851485148515,748.10396039604,328.855083750495,308.442322351485,20,40,11,32,5306093.99671715,396550.607492244,1,1,5306097.87010634,396547.452021064,151.624436090024,0,0,15.0805247524752,204.775731049173,5.56053465346535,2.98200991879875,3.2303986676726,2.19851485148515,2.213155060415,1.68247158163997,1.29025753865324,1.02364431361543,0.981072025308207,8.70458483741343,-1.37403839681331E-19,637.29740610198,636.991196193893,630.38605844497,5.96798731827388,1324.26925517091,-33.4591161443542,0,1324.26925517091,15.084293794726,15.084293794726,-0.00133837641189704,15.0857079501034,25.59,1014.9,37.51,10.8266142719863 +47240,2873.99110386139,456.954231287129,45,15.104702970297,15.5578440594059,3.63224752475247,3.5,748.618811881188,316.967838230693,299.798220680198,20,40,11,32,5306096.42181282,396553.987483523,1,1,5306100.49261427,396550.671189698,155.776615579804,0,0,15.104702970297,208.967436632232,7.26449504950495,3.89581175960982,3.95664322286576,3.5,3.51464020892985,2.74766079296958,0.438795372527064,0.348124598750209,0.354016231883404,8.71057540646318,0.000518414629305246,616.766058910891,617.321374571806,629.284380892255,5.95843058489891,1280.44205002357,99.8624589286082,0,1280.44205002357,15.1002477208117,15.1002477208117,0.00399062183445843,15.0867550010116,25.5987376237623,1014.9,37.410099009901,15.6930971137435 +47241,2873.99246227723,456.956894059406,45,15.0911188118812,15.5438523762376,3.79210891089109,3.5,749.326732673267,303.271371323762,305.130564804951,20,40,11,32,5306098.87860575,396557.34941144,1,1,5306103.11892155,396553.895022106,159.934810542988,0,0,15.0911188118812,213.16167681375,7.58421782178218,4.06727305562069,4.09188250150319,3.5,3.51464020892985,2.77087352936871,0.380609204010952,0.301961767882538,0.305189250333432,8.71881243890658,1.03052879760998E-19,608.401936128713,609.308222699941,628.850198006919,5.96379575256635,1265.40662166437,-169.06702395408,0,1265.40662166437,15.0892948730517,15.0892948730517,-0.00676268121861632,15.0859710501151,25.5999999999999,1014.9,37.37,16.7919708116103 +47242,2873.99383742574,456.959542871287,45,15.0665148514852,15.5185102970297,3.68771287128713,3.5,748.232673267327,300.358151532673,319.536822129703,20,40,11,32,5306101.36670701,396560.694502683,1,1,5306105.74947372,396557.124065174,164.099726371073,0,0,15.0665148514851,217.350004976566,7.37542574257426,3.95530179926378,4.00164614422466,3.5,3.51464020892985,2.75693498166791,0.414256100449165,0.328656015486574,0.320101761087994,8.70608247967587,-0.000547215442044427,619.894973662376,620.31899544976,629.476549384113,5.97352979886961,1289.53212469673,-14.6013944464415,0,1289.53212469673,15.0709991177335,15.0709991177335,-0.000580008495899431,15.0827777300628,25.5999999999999,1014.9,37.34,16.0581203587544 +47243,2873.99527524752,456.962134455445,45,15.0823762376238,15.5348475247525,3.7350198019802,3.5,748.257425742574,310.906579695049,329.771946109901,20,40,11,32,5306103.97218047,396563.970387802,1,1,5306108.392959,396560.368983826,168.285118998574,0,0,15.0823762376238,221.536744580526,7.4700396039604,4.00604142965769,4.04280658379437,3.5,3.51464020892985,2.76358178027101,0.376254024053152,0.298506523433257,0.304068043286001,8.70637048780326,2.88008127391806E-05,640.678525804951,640.23043913434,630.562626742354,5.96725722669662,1331.40571755856,35.8816352460404,0,1331.40571755856,15.0795243603568,15.0795243603568,0.00143504449454678,15.0792787235967,25.5999999999999,1014.9,37.31,16.379650625659 +47244,2873.99664594059,456.964791485149,45,15.0856633663366,15.5382332673267,3.80453465346535,3.5,748.128712871287,325.218479612871,326.425810959406,20,40,11,32,5306106.451849,396567.325561611,1,1,5306111.0250844,396563.599958065,172.452525708052,0,0,15.0856633663366,225.726921890758,7.60906930693069,4.08060043865634,4.10214211206007,3.5,3.51464020892985,2.77286843544516,0.377475663668931,0.29947572873415,0.304502147630784,8.70487284554082,-0.000576016254783607,651.644290572277,650.736064261357,631.137122616896,5.96594968706258,1353.66993910515,-26.6907282162227,0,1353.66993910515,15.0824360356828,15.0824360356828,-0.00106334890914717,15.075443422027,25.5999999999999,1014.9,37.28,16.8749554122079 +47245,2873.9980419802,456.967427821782,45,15.0593861386139,15.5111677227723,3.45984158415842,3.5,748.915841584158,330.135556506931,312.57483790396,20,40,11,32,5306108.97893198,396570.655798319,1,1,5306113.6639131,396566.839160697,176.630545644057,0,0,15.0593861386138,229.913562732342,6.91968316831683,3.71089564741873,3.80735430808687,3.5,3.51464020892985,2.72183503075998,0.568686554767016,0.451175630118332,0.455549507342707,8.71403150399188,0.000115203250956722,642.710394410891,642.17704753833,630.65093793675,5.97636234898718,1338.85192124699,-48.5838133516097,0,1338.85192124699,15.0649054994608,15.0649054994608,-0.00194425383132269,15.0744496277073,25.5999999999999,1014.9,37.25,14.5505182285425 +47246,2873.99939574257,456.970094752475,45,15.0796336633663,15.5320226732673,3.0879900990099,3.5,748.707920792079,321.137072540594,300.953547692079,20,40,11,32,5306111.42702179,396574.022737106,1,1,5306116.28920227,396570.061743357,180.787128645822,0,0,15.0796336633663,234.099652253794,6.1759801980198,3.31206176321953,3.49213117350684,3.5,3.51464020892985,2.65641602880038,0.910582456811767,0.72242364494631,0.720842017248103,8.71161223572179,-2.88008127391805E-05,622.090620232673,622.422509458494,629.58596072732,5.96833469115048,1293.80153954532,70.3525606879933,0,1293.80153954532,15.0755185766101,15.0755185766101,0.00281426657517306,15.0749557718782,25.5999999999999,1014.9,37.22,12.243448508586 +47247,2874.00080465346,456.972716534653,45,15.0752772277228,15.5275355445545,2.86886138613861,3.5,748.188118811881,306.496192392079,302.246500954455,20,40,11,32,5306113.97827556,396577.335265972,1,1,5306118.92900199,396573.302137933,184.966685985374,0,0,15.0752772277228,238.287466747743,5.73772277227723,3.07703256692865,3.3054411132565,3.5,3.51464020892985,2.61426599720667,1.13323976110527,0.899072009010809,0.875365801259285,8.70556406504656,0.000403211378348525,608.742693346535,609.634681243996,628.886908111557,5.9700734779804,1265.52562881691,-46.4574206962603,0,1265.52562881691,15.0760016665033,15.0760016665033,-0.00186120097158245,15.076510100065,25.5999999999999,1014.9,37.19,10.9526607881933 +47248,2874.00216544554,456.975375049505,45,15.065099009901,15.517051980198,3.05845544554455,3.5,747.712871287129,299.673673734653,315.264962422772,20,40,11,32,5306116.43957853,396580.69194942,1,1,5306121.55454031,396576.525026426,189.123663459389,0,0,15.065099009901,242.474012759844,6.11691089108911,3.28038400736666,3.46616836380813,3.5,3.51464020892985,2.65217264075994,0.935468631547342,0.742167448406124,0.771490769528681,8.70003430900064,-0.000115203250956722,614.938636157426,615.570633167846,629.218542049718,5.97409838553198,1278.44687890748,21.8293413556777,0,1278.44687890748,15.0693633957455,15.0693633957455,0.000874097310722851,15.0786001296554,25.5999999999999,1014.9,37.16,12.0492308233481 +47249,2874.00353693069,456.978025544554,45,15.0886237623762,15.5412824752475,3.01022772277228,3.45722772277228,747.980198019802,306.942108773267,328.039818662376,20,40,11,32,5306118.9208697,396584.038995348,1,1,5306124.18333299,396579.751909691,193.285793509813,0,0,15.0886237623762,246.661768287897,6.02045544554456,3.22865677010239,3.4264941485967,3.45722772277228,3.47186793170213,2.61011244240713,0.990622840315431,0.785924830545771,0.729759908662212,8.70314479677647,0.00080642275669705,634.981927435644,634.772878421704,630.263846352432,5.96478307382592,1318.53362422568,130.241851842472,0,1318.53362422568,15.0871502793844,15.0871502793844,0.0052037381956003,15.0824710593058,25.5999999999999,1014.9,37.13,11.7731765472257 +47250,2874.00492346535,456.980668217822,45,15.0894059405941,15.5420881188119,3.6499900990099,3.5,749.168316831683,321.618931841584,328.825925758416,20,40,11,32,5306121.43021426,396587.376795018,1,1,5306126.81878894,396582.986972233,197.458473432936,0,0,15.089405940594,250.854522743342,7.2999801980198,3.91484177586471,3.97086228749156,3.5,3.51464020892985,2.75081255549988,0.421148291300857,0.334124033895559,0.387878852400147,8.71696918689128,1.37403839681331E-19,650.4448576,649.586961261748,631.090013470333,5.96447898757344,1352.7293174673,-62.4595186078767,0,1352.7293174673,15.0892162533085,15.0892162533085,-0.00249839340369957,15.085852582102,25.5999999999999,1014.9,37.1126237623762,15.8060394931253 +47251,2874.00631029703,456.983302079208,45,15.0807623762376,15.5331852475248,3.67177227722772,3.5,748.668316831683,330.21033949703,316.900540475248,20,40,11,32,5306123.94030762,396590.703625382,1,1,5306129.44917221,396586.215807971,201.623121840985,0,0,15.0807623762376,255.044530911659,7.34354455445545,3.93820451903478,3.98890087928567,3.5,3.51464020892985,2.75258657030475,0.477269974862827,0.378648976031296,0.372690678698446,8.71115142271796,-0.000576016254783607,647.110879972278,646.392882247535,630.901596060054,5.96789788112676,1345.65658054672,71.2696170090777,0,1345.65658054672,15.0861174394667,15.0861174394667,0.00285511224389862,15.0858423687584,25.5999999999999,1014.9,37.17,15.9952462120932 +47252,2874.00770752475,456.985936930693,45,15.1047920792079,15.5579358415842,4.01727722772277,3.5,747.970297029703,324.817431168317,303.227807044554,20,40,11,32,5306126.46963782,396594.032031231,1,1,5306132.08800084,396589.455010512,205.801141658608,0,0,15.1047920792079,259.237224366005,8.03455445544554,4.30878010342691,4.28425272574712,3.5,3.51464020892985,2.79957454844061,0.425256245813441,0.337383138493999,0.34185296613293,8.70302959352551,-2.88008127391804E-05,628.045238212871,628.127262898834,629.901027528915,5.95840226985929,1302.70757936816,19.67055329921,0,1302.70757936816,15.1001596902264,15.1001596902264,0.000786959884109145,15.088747089523,25.5999999999999,1014.9,37.24,18.4414762502201 +47253,2874.00910970297,456.988567623762,45,15.0826336633663,15.5351126732673,3.51962376237624,3.5,748.504950495049,310.39842189703,300.378373528713,20,40,11,32,5306129.00823274,396597.355418684,1,1,5306134.72806792,396592.695733285,209.981122317825,0,0,15.0826336633663,263.430482754344,7.03924752475248,3.77501575799185,3.85955254434908,3.5,3.51464020892985,2.73065162390999,0.525834247129611,0.417178137583535,0.398403995538635,8.70925056907718,-0.000288008127391803,610.776795425742,611.5834294025,628.994433392074,5.96717396252202,1269.66163872761,-235.121432708308,0,1269.66163872761,15.0809238309969,15.0809238309969,-0.009402672940561,15.0850305718681,25.5999999999999,1014.9,37.31,14.9486207273952 +47254,2874.01053653465,456.991178118812,45,15.0774158415842,15.5297383168317,3.74907920792079,2.45178217821782,748.707920792079,300.210082313861,310.971995961386,20,40,11,32,5306131.5929471,396600.654462502,1,1,5306137.37461231,396595.944407039,214.171358388341,0,0,15.0774158415841,267.616968700439,7.49815841584158,4.02112101843109,4.05466155289446,2.45178217821782,2.46642238714768,1.93647277183746,0.415633734505505,0.329748981213004,0.346135956536584,8.71161223572179,6.87019198406656E-20,611.182078275247,611.971705984158,629.021086635131,5.96922581947906,1271.29369343683,226.523455988426,0,1271.29369343683,15.0804105479855,15.0804105479855,0.00906093084556031,15.0847130903378,25.5999999999999,1014.9,37.38,16.5169514704989 +47255,2874.01191138614,456.993837227723,45,15.0956336633663,15.5485026732673,4.1259801980198,0.245742574257426,748.09900990099,303.619524836634,325.268946729703,20,40,11,32,5306134.08029301,396604.012332344,1,1,5306140.01112052,396599.180761243,218.345704335992,0,0,15.0956336633663,271.809742325302,8.2519603960396,4.42537081127426,4.37645864304237,0.245742574257426,0.260382783187283,0.213535594250134,0.428516063787208,0.339969361811672,0.352942422743916,8.70452723578795,-0.000172804876435082,628.888471566337,628.935112936163,629.932301052474,5.96203482156839,1305.49328534011,-200.039048422277,0,1305.49328534011,15.0892386040584,15.0892386040584,-0.00800030498099383,15.0852157990656,25.5999999999999,1014.9,37.45,19.2345629306945 +47256,2874.01328712871,456.996483069307,45,15.0590495049505,15.510820990099,4.493,-2.00643564356436,747.747524752475,317.492123742574,330.124675234653,20,40,11,32,5306136.56958756,396607.353702843,1,1,5306142.64032675,396602.408152156,222.50848916556,0,0,15.0590495049505,275.996134432013,8.986,4.8190224142612,4.68650148470771,-2.00643564356436,-1.9917954346345,-1.62873367797099,0.750409877378191,0.595348433042929,0.552717580406579,8.70043752037898,0.00083522356943623,647.616798977228,646.877572146711,630.902139878519,5.97650367690365,1346.99670356062,104.754780307763,0,1346.99670356062,15.0656112145868,15.0656112145868,0.00418395799976207,15.0836258084261,25.5999999999999,1014.9,37.52,22.1396821426395 +47257,2874.0146749505,456.999115940594,45,15.1025742574257,15.5556514851485,4.05092079207921,-2.62831683168317,747.727722772277,329.073475573267,321.074847077228,20,40,11,32,5306139.08154835,396610.679315336,1,1,5306145.2708586,396605.637170283,226.673372823465,0,0,15.1025742574257,280.185793562926,8.10184158415842,4.34486492219595,4.31290764467905,-2.62831683168317,-2.61367662275332,-2.08070897920755,0.401557306395811,0.31858124519222,0.350537210054173,8.70020711387707,-0.000172804876435082,650.148322650495,649.302869355975,631.088627685803,5.95927817722024,1348.32607405825,99.0182978221418,0,1348.32607405825,15.0993239878443,15.0993239878443,0.00396202986635081,15.0871640125625,25.5999999999999,1014.9,37.59,18.6785601225381 +47258,2874.01607871287,457.001735148515,45,15.0863564356436,15.5389471287129,4.19119801980198,-3.2490099009901,749.262376237624,327.715738856436,306.439832536634,20,40,11,32,5306141.62334343,396613.988434669,1,1,5306147.90521554,396608.870883753,230.844312675133,0,0,15.0863564356435,284.379356846755,8.38239603960396,4.49532098821119,4.43125575872852,-3.2490099009901,-3.23436969206025,-2.59419133084706,0.505938741590709,0.401393753070146,0.392951892689783,8.71806361777536,0.000403211378348525,634.155571393069,633.981197497226,630.223546653748,5.9656940786408,1319.27031652262,-90.0915819534853,0,1319.27031652262,15.0876342515439,15.0876342515439,-0.0036066725484421,15.0877864483664,25.5999999999999,1014.9,37.66,19.7277659660694 +47259,2874.01748673267,457.004355544554,45,15.0865346534653,15.5391306930693,3.95056435643564,-3.35237623762376,748.336633663366,314.667210475248,299.674996480198,20,40,11,32,5306144.17300008,396617.299172317,1,1,5306150.54350102,396612.109419587,235.021472554436,0,0,15.0865346534653,288.569861274698,7.90112871287128,4.23722639275422,4.22652716273049,-3.35237623762376,-3.33773602869391,-2.64775152821441,0.493872049091208,0.391820469604465,0.382626719812161,8.70729211381091,-2.57632199402496E-19,614.342206955445,614.999231013734,629.170667089117,5.96561086140061,1276.46083596107,41.2188462946211,0,1276.46083596107,15.0879110871483,15.0879110871483,0.00164880349421015,15.0918353792715,25.5999999999999,1014.9,37.73,17.9948477603273 +47260,2874.01888465346,457.006994356436,45,15.1030495049505,15.556140990099,3.7339801980198,-3.33574257425743,748.054455445545,301.924647252475,306.999897985148,20,40,11,32,5306146.70354077,396620.632510937,1,1,5306153.18522799,396615.352179889,239.20408127848,0,0,15.1030495049505,292.762327116282,7.4679603960396,4.00492638964275,4.04317812863156,-3.33574257425743,-3.32110236532757,-2.60682957061129,0.442052786879069,0.350708915120102,0.400975363034023,8.70400882115865,-0.000547215442044426,608.924545237624,609.80890236017,628.857180500571,5.9591009873895,1263.35172623964,34.138622541569,0,1263.35172623964,15.0985920988138,15.0985920988138,0.00136969142458779,15.0920672707537,25.5999999999999,1014.9,37.7962128712871,16.4534508074333 +47261,2874.02028930693,457.009625148515,45,15.0943366336634,15.5471667326733,3.39424752475248,-3.29108910891089,748.311881188119,301.203503041584,321.680056391089,20,40,11,32,5306149.24673356,396623.956080475,1,1,5306155.8272184,396618.595263569,243.3871071061,0,0,15.0943366336634,296.956139740044,6.78849504950495,3.64054193219069,3.75363439599065,-3.29108910891089,-3.27644889998104,-2.52133816897644,0.660900781225776,0.52433510853338,0.486627805218696,8.70700410568352,5.15264398804992E-20,622.883559432673,623.182175760484,629.618438433691,5.96253248905744,1293.50833820173,-2.55171604571386,0,1293.50833820173,15.0950733261445,15.0950733261445,-0.000102114171813542,15.0923632005408,25.5999999999999,1014.9,37.84,14.2203546591941 +47262,2874.02169326733,457.012255247525,45,15.0898910891089,15.5425878217822,3.13453465346535,-1.34079207920792,749.257425742574,313.166794509901,330.218601757426,20,40,11,32,5306151.78865989,396627.278760785,1,1,5306158.46826816,396621.837192597,247.568643627414,0,0,15.0898910891089,301.149068370407,6.26906930693069,3.36198369760248,3.53248256450046,-1.34079207920792,-1.32615187027807,-1.08938250185508,0.895518008191374,0.710472048690486,0.755410992190692,8.71800601614989,-0.000172804876435082,643.385396267327,642.823725323194,630.710462784166,5.96429057217813,1338.16080291024,-94.3178490341603,0,1338.16080291024,15.0901314577002,15.0901314577002,-0.00377141674563542,15.0959087825841,25.5999999999999,1014.9,37.88,12.7370147527216 +47263,2874.0230960396,457.014883663366,45,15.0880396039604,15.5406807920792,2.21310891089109,0.990693069306931,748.277227722772,326.815526652475,324.765234851485,20,40,11,32,5306154.32842485,396630.599302159,1.63366336633663,1,5306161.10727517,396625.076550704,92.5723900534457,0,0,15.0880396039604,305.339249613532,4.42621782178218,2.37369718379375,2.74839429232162,0.990693069306931,1.00533327823679,0.54768506623609,1.83494928038229,1.45578331485406,1.37791322703831,8.70660089430517,0.000432012191087705,651.580761503961,650.6752009657,631.145127678668,5.96502726513192,1353.59660097464,111.861779752269,0,1353.59660097464,15.0889397117929,15.0889397117929,0.00447123920312964,15.0973361854549,25.5999999999999,1014.9,37.92,7.91753393039116 +47264,2874.02450405941,457.017511287129,45,15.1059108910891,15.5590882178218,2.79232673267327,1.45584158415842,748.064356435644,329.601118084158,310.333756059406,20,40,11,32,5306156.87792959,396633.91902811,2,1,5306163.7499453,396628.320179331,4.73350602522488,0,0,15.1059108910891,309.53336870044,5.58465346534654,2.994944382972,3.24230498149385,1.45584158415842,1.47048179308827,1.04605226496442,1.22811766226728,0.974344751934392,0.976708533940827,8.7041240244096,-0.000489613816566066,639.934874143564,639.517992194961,630.539914439831,5.95796963102042,1327.45441002858,69.3462750574502,0,1327.45441002858,15.1048507009117,15.1048507009117,0.00277750547331851,15.0968059059454,25.5999999999999,1014.9,37.96,10.6691882760787 +47265,2874.02591415842,457.020138910891,45,15.1064257425743,15.5596185148515,2.70693069306931,-1.23554455445545,749.019801980198,318.962508891089,300.192400428713,20,40,11,32,5306159.43128762,396637.238820116,2,1,5306166.39428948,396631.565842043,8.92001800364376,0,0,15.1064257425742,313.72973049912,5.41386138613861,2.90335181031662,3.16959534948411,-1.23554455445545,-1.22090434552559,-0.843792346922566,1.35839936924714,1.07770561170294,1.04435143040181,8.71524113812692,0.000979227633132132,619.154909319802,619.609985296804,629.411413908225,5.95776474706081,1285.93199522061,-32.9707247954016,0,1285.93199522061,15.1049810802862,15.1049810802862,-0.00132612271128204,15.0977391624917,25.5999999999999,1014.9,38,10.5774898475228 +47266,2874.02732366337,457.022765643564,45,15.0942871287129,15.5471157425743,2.94912871287129,1.12247524752475,749.059405940594,304.680787293069,303.665083553465,20,40,11,32,5306161.983567,396640.557479519,2,1,5306169.03764869,396634.81029582,13.1049706041264,0,0,15.0942871287129,317.924534432013,5.89825742574257,3.16312427551035,3.37505496691735,1.12247524752475,1.13711545645461,0.907742733765987,1.05953596721319,0.840598047612171,0.941989498792302,8.71570195113075,-6.87019198406656E-20,608.345870846534,609.254509998431,628.839088716481,5.96256547726003,1264.57989159769,-57.89874274945,0,1264.57989159769,15.0973388883443,15.0973388883443,-0.00231594941672109,15.1005984230426,25.5999999999999,1014.9,38.04,11.6160937582177 +47267,2874.02873069307,457.025388712871,45,15.0965148514851,15.5494102970297,3.06867326732673,0.428415841584158,748.628712871287,299.886502272277,317.559036582178,20,40,11,32,5306164.53134498,396643.871490726,2,1,5306171.67693587,396638.049751587,17.2834763757012,0,0,15.0965148514851,322.117465510121,6.13734653465347,3.29134325779917,3.47704444735901,0.428415841584158,0.443056050514016,0.342371945915825,1.23261511810009,0.977912872988579,0.929994801442562,8.71069060971413,-0.000345609752870164,617.445538854455,617.972342538535,629.321871633281,5.96167359398756,1282.56626532115,43.7090656124576,0,1282.56626532115,15.096139692187,15.096139692187,0.00175091766602516,15.0994402249201,25.5999999999999,1014.9,38.08,12.6887787754227 +47268,2874.0301390099,457.028014950495,45,15.1075544554455,15.5607810891089,3.65563366336634,0.637128712871287,748.430693069307,308.987497368317,329.100223184158,20,40,11,32,5306167.08143835,396647.189488197,2,1,5306174.31909882,396641.292737062,21.466535043111,0,0,15.1075544554455,326.312000521122,7.31126732673268,3.9208948502315,3.97701276797347,0.637128712871287,0.651768921801144,0.474794425988651,0.726733473362787,0.576564418525543,0.615528791505516,8.708386544695,2.23281239482163E-19,638.087720552475,637.748347883913,630.441862856093,5.95732418975454,1324.12881442759,-35.4671841052911,0,1324.12881442759,15.1027298304088,15.1027298304088,-0.00141870622706076,15.0985827205399,25.5999999999999,1014.9,38.12,16.1792709038486 +47269,2874.03155079208,457.030642178218,45,15.0949504950495,15.547799009901,3.55919801980198,1.44019801980198,749.405940594059,323.616359651485,327.677729611881,20,40,11,32,5306169.63793053,396650.508830982,2,1,5306176.96447342,396644.539664518,25.6546783891964,0,0,15.0949504950495,330.50678049912,7.11839603960396,3.81746161456038,3.89409898292683,1.44019801980198,1.45483822873184,1.1064443867925,0.710097633797277,0.563366136738151,0.586214854009645,8.71973406491424,-0.000115203250956721,651.294089263366,650.400557914763,631.143365764312,5.9622871893584,1354.41842463934,-7.37422695979368,0,1354.41842463934,15.0966819919615,15.0966819919615,-0.000294088814820733,15.0984725617948,25.5999999999999,1014.9,38.16,15.4696844218964 +47270,2874.03297821782,457.033245445544,45,15.0919702970297,15.5447294059406,3.40032673267327,-0.92019801980198,748.737623762376,330.323380612871,314.599389904951,20,40,11,32,5306172.22393639,396653.798844519,2,1,5306179.60726077,396647.783416385,29.8387256089856,0,0,15.0919702970297,334.699080114081,6.80065346534654,3.64706226142088,3.75873747095151,-0.92019801980198,-0.905557810872124,-0.631817739484614,0.847899302862261,0.672693066222572,0.608254062579116,8.71195784547466,0.000115203250956722,644.922770517822,644.296589086707,630.796327600792,5.96346740494033,1340.24432624834,48.9342551405211,0,1340.24432624834,15.0946628761886,15.0946628761886,0.00195650753194331,15.0982925713527,25.5999999999999,1014.90126237624,38.2025247524753,14.4625919235547 +47271,2874.03438792079,457.035874455446,45,15.1059900990099,15.5591698019802,4.36088118811881,1.65069306930693,748.163366336634,322.942156107921,301.889369270297,20,40,11,32,5306174.77654114,396657.120332334,2,1,5306182.25213482,396651.029729471,34.0260764918393,0,0,15.1059900990099,338.894165675138,8.72176237623762,4.67731675750602,4.57692731384435,1.65069306930693,1.66533327823679,1.36169593660967,0.584023349696655,0.463343296222572,0.503446661531038,8.70527605691917,-0.000489613816566066,624.831525378218,625.048402186639,629.720066014798,5.95793739894085,1296.28874852393,-31.3722581804179,0,1296.28874852393,15.1046915988628,15.1046915988628,-0.00125123898528725,15.0961820003555,25.5999999999999,1014.91,38.26,21.0625420392445 +47272,2874.03578891089,457.038515445545,45,15.0962772277228,15.5491655445545,4.93848514851485,2.03178217821782,749.10396039604,308.258949907921,301.233202056436,20,40,11,32,5306177.31274126,396660.4564508,2,1,5306184.89762847,396654.276803042,38.2144083092983,0,0,15.0962772277228,343.08860299637,9.8769702970297,5.29683298980394,5.06790868974139,2.03178217821782,2.04642238714768,1.68457463562238,1.13381500714109,0.899528388699248,0.862456031308907,8.71622036576006,0.000921626007653771,609.492151964356,610.35269147465,628.90367491319,5.96176750910083,1266.86170317689,-22.4295774545694,0,1266.86170317689,15.0952687971767,15.0952687971767,-0.000904050801116663,15.0976965083796,25.5999999999999,1014.92,38.32,25.7582663913341 +47273,2874.03719405941,457.041147425743,45,15.0919801980198,15.5447396039604,4.8979900990099,1.84871287128713,749.10396039604,299.773434071287,313.23416539604,20,40,11,32,5306179.85684709,396663.781481473,2,1,5306187.54084666,396657.52108373,42.3991376447945,0,0,15.0919801980198,347.281232479318,9.7959801980198,5.25339952636504,5.03314512202951,1.84871287128713,1.86335308021698,1.53751863139372,1.0941233553891,0.868038447817884,0.877929798364618,8.71622036576006,-5.76016254783607E-05,613.007599467327,613.720625622704,629.093084263246,5.96345259485072,1274.53302871643,-60.3946764016675,0,1274.53302871643,15.0898367807078,15.0898367807078,-0.0024153405439603,15.0983049588407,25.5999999999999,1014.93,38.38,25.4065312269591 +47274,2874.0385980198,457.043775643564,45,15.094297029703,15.5471259405941,4.69187128712871,1.42811881188119,748.727722772277,305.287152738614,326.858628918812,20,40,11,32,5306182.39883792,396667.101783354,2,1,5306190.18090544,396660.761486551,46.5788650017203,0,0,15.094297029703,351.472355884158,9.38374257425743,5.03232425940391,4.8580674673522,1.42811881188119,1.44275902081105,1.18307447557278,0.871427983741034,0.69135988247196,0.689686882787861,8.7118426422237,-0.000230406501913443,632.145781657426,632.055741495667,630.119514793638,5.96253956643029,1313.45424648105,202.654277279623,0,1313.45424648105,15.0979440250956,15.0979440250956,0.00810786524197044,15.0951010514652,25.5999999999999,1014.94,38.44,23.6567024323354 +47275,2874.04001217822,457.046402376238,45,15.1096732673267,15.5629634653465,4.70340594059406,1.66564356435644,748.40099009901,319.730818381188,329.5803237,20,40,11,32,5306184.959754,396670.420570675,2,1,5306192.82777301,396664.010246474,50.7693720071578,0,0,15.1096732673267,355.669647138284,9.40681188118812,5.04469589385534,4.86862540978885,1.66564356435644,1.68028377328629,1.37215498880559,0.892935803472989,0.708423419562286,0.694009657001028,8.70804093494213,-1.37403839681331E-19,649.311142081188,648.500818117263,631.048782488911,5.95647725985797,1347.17729540985,-162.294054710882,0,1347.17729540985,15.1077236545437,15.1077236545437,-0.0064917382827382,15.0935727394677,25.5999999999999,1014.95,38.5,23.8226444885048 +47276,2874.04142445544,457.049028811881,45,15.0884752475247,15.5411295049505,4.47837623762376,1.03623762376238,749.20297029703,329.824991425742,318.896936117822,20,40,11,32,5306187.51719398,396673.738922669,2,1,5306195.47304057,396667.257042553,54.9573458928432,0,0,15.0884752475247,359.862810422112,8.95675247524753,4.80333751805111,4.675985218417,1.03623762376238,1.05087783269223,0.850584678165695,0.666564843088099,0.528828773203911,0.575299565398247,8.71737239826962,-0.000201605689174262,648.721927543564,647.936327888883,630.991029854999,5.96484545990137,1349.28533092476,-70.9732857899526,0,1349.28533092476,15.0874775022056,15.0874775022056,-0.00283741245411713,15.0923809698968,25.5999999999999,1014.96,38.56,21.9196792089461 +47277,2874.04281732673,457.051672772277,45,15.0815841584158,15.5340316831683,4.87042574257426,0.164356435643564,748.70297029703,326.289135720792,304.630723436634,20,40,11,32,5306190.03829845,396677.078456972,2,1,5306198.11418431,396670.498777064,59.1387909680976,0,0,15.0815841584158,364.052632424313,9.74085148514851,5.22383503682619,5.00914380372602,0.164356435643564,0.178996644573421,0.14785511097605,1.06692916801518,0.846463549447002,0.817036183959239,8.71155463409631,0.000172804876435082,630.919859157425,630.881260511891,630.046063929025,5.96757538013899,1311.98926525438,88.2934575213635,0,1311.98926525438,15.0845722968336,15.0845722968336,0.00353042730015502,15.0919472687901,25.5999999999999,1014.97,38.62,25.1668770931915 +47278,2874.04421415842,457.054318514852,45,15.0939603960396,15.5467792079208,3.13952475247525,1.05910891089109,748.376237623762,312.37410070099,299.897975806931,20,40,11,32,5306192.5667011,396680.420339601,2,1,5306200.75938969,396673.745496811,63.3266663953129,0,0,15.0939603960396,368.244566142684,6.2790495049505,3.36733588967417,3.53700444948187,1.05910891089109,1.07374911982095,0.755577350531549,1.23547185434319,0.980179305637215,0.947690621694203,8.70775292681474,-0.00112323169682803,612.272076507921,613.015966289462,629.050531615737,5.96269399762602,1271.60341497861,-58.5507715920383,0,1271.60341497861,15.0913298696206,15.0913298696206,-0.00233364920650356,15.088440508669,25.5999999999999,1014.98,38.68,13.1572862842214 +47279,2874.04560871287,457.056961386139,45,15.0796534653465,15.5320430693069,3.97974257425743,-2.73564356435644,748.613861386139,300.873305382178,309.049959577228,20,40,11,32,5306195.09095147,396683.75856728,2,1,5306203.40114869,396676.98798649,67.5090855463114,0,0,15.0796534653465,372.435108249395,7.95948514851485,4.2685218491734,4.25104917200727,-2.73564356435644,-2.72100335542658,-2.15997437784336,0.530434998848215,0.420828209909422,0.530819764005305,8.7105178048377,0.00123843494778476,609.923264959406,610.765714333555,628.951027131503,5.9683246905312,1268.33179521099,2.30716172705437,0,1268.33179521099,15.083504950495,15.083504950495,8.30528597421983E-05,15.0866437629995,25.5999999999999,1014.99,38.74,18.2555990000062 +47280,2874.04701772277,457.059583663366,45,15.0848118811881,15.5373562376238,2.99830693069307,-1.57594059405941,749.079207920792,302.360527948515,323.672383074258,20,40,11,32,5306197.64243951,396687.071619417,2,1,5306206.0414464,396680.228682578,71.689191181369,0,0,15.0848118811881,376.625568755446,5.99661386138614,3.21587097793113,3.41638847339848,-1.57594059405941,-1.56130038512955,-1.20078584771328,1.10311902580556,0.87517529189211,0.845602852205231,8.71593235763267,1.37403839681331E-19,626.032911022772,626.199375917204,629.786035361358,5.96628795756217,1302.20352266399,27.0942416531303,0,1302.20352266399,15.0873081070483,15.0873081070483,0.00108377174351129,15.0867572530367,25.5999999999999,1014.99747524752,38.7962128712871,12.1554104701775 +47281,2874.04843247525,457.062199504951,45,15.095702970297,15.5485740594059,3.24283168316832,-2.07168316831683,748.757425742574,315.468422825743,330.321457560396,20,40,11,32,5306200.20471018,396690.376842814,2,1,5306208.68221235,396683.469953382,75.8700381316208,0,0,15.095702970297,380.817217022773,6.48566336633663,3.47813900887257,3.62497771375584,-2.07168316831683,-2.05704295938698,-1.59335786371002,1.00292474909808,0.79568472622142,0.770395478813946,8.71218825197657,-2.88008127391803E-05,645.789880386139,645.127313749623,630.839287791092,5.96198518994327,1341.74986157092,-36.1873131093727,0,1341.74986157092,15.0902518380551,15.0902518380551,-0.00144729819516741,15.083654532976,25.5999999999999,1014.99,38.83,13.7299405379162 +47282,2874.0498319802,457.064834554455,45,15.0783267326733,15.5306765346535,4.15511881188119,-0.775643564356436,748.069306930693,328.145651913861,322.884054629703,20,40,11,32,5306202.73831067,396693.705483049,2,1,5306211.32300687,396686.711259254,80.0509303140034,0,0,15.0783267326732,385.007179233995,8.31023762376238,4.45662378997859,4.40035420596198,-0.775643564356436,-0.761003355426578,-0.626021718306895,0.560232300243891,0.444468326104059,0.564648643539363,8.70418162603508,-1.37403839681331E-19,651.029706543564,650.147269084178,631.101397523034,5.96884923477989,1352.93955997421,-9.02049766615302,0,1352.93955997421,15.0814735810214,15.0814735810214,-0.000360803407073977,15.0829203346416,25.5999999999999,1014.98,38.86,19.5676853880836 +47283,2874.05122811881,457.067477128713,45,15.0838712871287,15.5363874257426,3.28859405940594,0.0268316831683168,748.658415841584,328.736829259406,308.198088233663,20,40,11,32,5306205.26550964,396697.04338157,2,1,5306213.96578106,396689.954994975,84.2349567079139,0,0,15.0838712871287,389.197201043676,6.57718811881188,3.52722200838714,3.66332691350819,0.0268316831683168,0.0414718920981738,-0.0249930570539933,1.18027049991265,0.936384519810443,0.828065093874499,8.711036219467,-2.88008127391803E-05,636.934917493069,636.643918138633,630.368893696998,5.96666273007546,1324.1897195385,-91.1251934850461,0,1324.1897195385,15.0799049112832,15.0799049112832,-0.00364479517258772,15.091076993755,25.5999999999999,1014.97,38.89,14.4589613475529 +47284,2874.0526219802,457.070116732673,45,15.0724059405941,15.5245781188119,4.08306930693069,-2.79920792079208,749.222772277228,316.698429130693,299.765768143564,20,40,11,32,5306207.78855852,396700.377501838,2,1,5306216.60504938,396693.19442759,88.4134326171402,0,0,15.072405940594,393.383975933666,8.16613861386139,4.37934620722923,4.33856234410716,-2.79920792079208,-2.78456771186223,-2.22359236004471,0.495589302933734,0.393182877556578,0.441476938136057,8.71760280477154,1.03052879760998E-19,616.464197274257,617.032179491295,629.294762517579,5.97119687497221,1283.59771157497,20.7970735199194,0,1283.59771157497,15.071817370846,15.071817370846,0.000831890119708903,15.0882730401052,25.5999999999999,1014.96,38.92,18.9708705898323 +47285,2874.05401405941,457.072761089109,45,15.110297029703,15.5636059405941,3.09266336633663,-0.755544554455446,748.693069306931,303.098501089109,305.339730565347,20,40,11,32,5306210.30820212,396703.717479776,2,1,5306219.24582753,396696.435713372,92.5942988859503,0,0,15.1102970297029,397.573441637737,6.18532673267327,3.31707413357238,3.49810438011082,-0.755544554455446,-0.740904345525588,-0.55248367468069,0.919144658981608,0.729216590773491,0.676388963308747,8.71143943084535,-0.000864024382175411,608.438231654456,609.342995212734,628.814342375648,5.95625639144529,1262.81173463551,520.928722128317,0,1262.81173463551,15.1109155965101,15.1109155965101,0.0208435447505108,15.0893185106728,25.5999999999999,1014.95,38.95,12.3444904762146 +47286,2874.05541653465,457.075407425743,45,15.1156732673267,15.5691434653465,3.11556435643564,2.68178217821782,748.059405940594,300.440756259406,319.795300157426,20,40,10.990099009901,32,5306212.84706051,396707.060266059,2,1,5306221.89564685,396699.68809627,96.7894790917406,0,0,15.1156732673267,401.77752417349,6.23112871287129,3.34163687218709,3.51777197786594,2.68178217821782,2.69642238714768,2.04175667488643,0.930530920534418,0.738250044593911,0.727521764345337,8.70406642278412,0.000691219505740329,620.236056416832,620.645765870611,629.445149452263,5.95414521391857,1285.78679752351,-586.311801052405,0,1285.78679752351,15.1123867267915,15.1123867267915,-0.0234576675489339,15.0966870514951,25.5999999999999,1014.94,38.98,12.4725170426002 +47287,2874.05682514851,457.078043168317,45,15.0648811881188,15.5168276237624,4.52933663366337,2.23881188118812,748.732673267327,311.168712985148,329.84209289505,20,40,11,32,5306215.39752785,396710.390056982,2,1,5306224.54373407,396702.93835319,100.981917042648,0,0,15.0648811881188,405.964231351709,9.05867326732673,4.85799571764036,4.71781639712637,2.23881188118812,2.25345209011797,1.83629294999286,0.73140080151759,0.580267310221436,0.586317702372827,8.71190024384918,-0.000144004063695902,641.010805880198,640.54877624726,630.57515948036,5.97419285735587,1334.48598625055,164.478557972868,0,1334.48598625055,15.0688313890795,15.0688313890795,0.00658023723164346,15.1008683261728,25.5999999999999,1014.93,39.01,22.3325321601078 +47288,2874.05822920792,457.080691287129,45,15.1175544554455,15.5710810891089,4.56178217821782,3.11415841584158,749.084158415842,325.419137318812,326.243133873267,20,40,11,32,5306217.93928472,396713.735109781,2,1,5306227.19581966,396706.193517688,105.180685176524,0,0,15.1175544554455,410.156232891864,9.12356435643564,4.89279558553504,4.74838887514729,3.11415841584158,3.12879862477144,2.54967452242231,0.751127688974049,0.595917919162046,0.588178496816257,8.71598995925814,0.000316808940130984,651.662271192079,650.753290386668,631.188462628468,5.95339262321388,1352.58557636727,329.173891786282,0,1352.58557636727,15.1144974022154,15.1144974022154,0.013164559030165,15.1026936025824,25.5999999999999,1014.92,39.04,22.6003620897159 +47289,2874.0596340594,457.083343663366,45,15.1157821782178,15.5692556435644,4.41977227722772,2.16485148514851,748.282178217822,330.090254855445,312.307289418812,20,40,11,32,5306220.48241576,396717.085488938,2,1,5306229.85106172,396709.45255645,109.384450640089,0,0,15.1157821782178,414.358534046979,8.83954455445545,4.74048111949491,4.62763269958238,2.16485148514851,2.17949169407837,1.76428350417357,0.628041198103084,0.498265487234033,0.50271982119944,8.70665849593065,1.03052879760998E-19,642.397544274257,641.877325056053,630.687039301258,5.95407289522731,1332.06221156015,-270.772071514621,0,1332.06221156015,15.1165620037251,15.1165620037251,-0.0108309098236573,15.0982886309315,25.5999999999999,1014.91,39.07,21.5269858010096 +47290,2874.06102712871,457.085991188119,45,15.0909504950495,15.543679009901,4.3590198019802,2.44178217821782,748.282178217822,320.887461668317,300.847110651485,20,40,11,32,5306223.00383223,396720.42943149,2,1,5306232.49448859,396712.697093264,113.569510347114,0,0,15.0909504950495,418.551998403416,8.7180396039604,4.67532030490785,4.57436598789523,2.44178217821782,2.45642238714768,1.98481962785665,0.582457610930657,0.462101094928329,0.4694710402504,8.70665849593065,5.76016254783607E-05,621.734572319802,622.081401839359,629.562140565484,5.96386296191169,1291.34426596859,-21.7725739851337,0,1291.34426596859,15.0900473482992,15.0900473482992,-0.000871374266138509,15.1049918368575,25.5999999999999,1014.90126237624,39.0760148514852,21.0167402537382 +47291,2874.06241158416,457.088643861386,45,15.0987623762376,15.5517252475248,4.39736633663366,2.55594059405941,749.054455445545,306.271763373267,302.399033084158,20,40,11,32,5306225.50917998,396723.779498504,2,1,5306235.13450371,396715.937442504,117.749168591482,0,0,15.0987623762376,422.7446922428,8.79473267326733,4.71644935231588,4.60752290772251,2.55594059405941,2.57058080298926,2.08180917051116,0.59529612955901,0.472286717717153,0.462514839934186,8.71564434950527,-1.37403839681331E-19,608.670796457426,609.56580125424,628.861453283913,5.96076954032891,1264.86754342095,104.156727664405,0,1264.86754342095,15.1015458288403,15.1015458288403,0.00416625820997936,15.1079388009245,25.5999999999999,1014.9,38.94,21.2868606921964 +47292,2874.0637980198,457.091295445545,45,15.1127128712871,15.5660942574258,4.35348514851485,3.24673267326733,748.455445544554,299.680765585148,315.536226384158,20,40,11,32,5306228.01822193,396727.128271662,2,1,5306237.7753591,396719.178823083,121.930157137094,0,0,15.1127128712871,426.941589712548,8.7069702970297,4.66938404425691,4.57087024347573,3.24673267326733,3.26137288219718,2.63604245566205,0.567048665631635,0.449876187294292,0.459454672992273,8.70867455282239,-0.00115203250956721,615.216991969307,615.837308761553,629.193994921582,5.95526726847529,1276.26348017424,15.5102877569378,0,1276.26348017424,15.1112278208019,15.1112278208019,0.000629023298368739,15.1051857513383,25.5999999999999,1014.9,38.78,20.9564708760856 +47293,2874.06518059406,457.093951188119,45,15.1129207920792,15.5663084158416,4.40716831683168,2.21475247524752,748.108910891089,307.174201266337,328.180415622772,20,40,11,32,5306230.52002046,396730.482093598,2,1,5306240.41579694,396722.41969118,126.11048464356,0,0,15.1129207920792,431.139150603637,8.81433663366337,4.72696258674241,4.61667232940733,2.21475247524752,2.22939268417738,1.80798847747574,0.603316623381304,0.478649891461636,0.479614092582389,8.7046424390389,0.000864024382175411,635.354616889109,635.129929277404,630.290373394069,5.95518187683444,1317.42552146524,28.718298663872,0,1317.42552146524,15.1103754533869,15.1103754533869,0.0011423172020159,15.107584580089,25.5999999999999,1014.9,38.62,21.3910993773487 +47294,2874.06656069307,457.09661029703,45,15.1029405940594,15.5560288118812,4.22340594059406,2.76574257425743,749.262376237624,321.862640211881,328.706591513861,20,40,11,32,5306233.01716086,396733.840023657,2,1,5306243.05638806,396725.660747397,130.291054801464,0,0,15.1029405940594,435.336142352813,8.44681188118812,4.52986598981675,4.45969521905925,2.76574257425743,2.78038278318728,2.23334228326255,0.497349765812961,0.394579566017344,0.387526455650345,8.71806361777537,0,650.569231725743,649.706116466121,631.104129829424,5.95912972908828,1351.93566756941,-16.8489266513445,0,1351.93566756941,15.1095929810803,15.1095929810803,-0.000673953533965808,15.110377049197,25.5999999999999,1014.9,38.46,19.9779195712145 +47295,2874.06796722772,457.09925039604,45,15.119,15.57257,3.1750099009901,-0.516732673267327,748.089108910891,330.24159939703,316.630990383168,20,40,11,32,5306235.56369487,396737.175148499,2,1,5306245.70551797,396728.912284109,134.485143530251,0,0,15.119,439.533988639942,6.3500198019802,3.40539592218395,3.56860859407965,-0.516732673267327,-0.502092464337469,-0.302834323128486,0.895803708557646,0.710698713171469,0.709299462106093,8.70441203253699,0.000115203250956721,646.872589780198,646.164591060034,630.927324019931,5.95278408288628,1340.71828649172,-61.1100914497524,0,1340.71828649172,15.1133730026468,15.1133730026468,-0.00244529403435485,15.1104033172629,25.5999999999999,1014.9,38.3,13.0256495876018 +47296,2874.0693529703,457.10191009901,45,15.1109504950495,15.564279009901,2.55179207920792,0.651287128712871,748.178217821782,324.607502388119,303.055864212871,20,40,11,32,5306238.07127968,396740.533999758,2,1,5306248.35072711,396732.159008476,138.673024916015,0,0,15.1109504950495,443.731273898468,5.10358415841584,2.73695598180217,3.03789145971336,0.651287128712871,0.665927337642728,0.503059329169478,1.48304682468159,1.17659645724319,1.13611684862414,8.7054488617956,-8.5877399800832E-20,627.66336660099,627.761415180982,629.868170411925,5.95595756838751,1301.75441936819,63.1409136988738,0,1301.75441936819,15.1080601901774,15.1080601901774,0.00252562384951563,15.1088343575003,25.5999999999999,1014.9,38.14,9.57994627150309 +47297,2874.07071138614,457.104592970297,45,15.1044356435644,15.5575687128713,3.29087128712871,2.57792079207921,749.316831683168,310.140311991089,300.4621214,20,40,11,32,5306240.52773145,396743.920800585,2,1,5306250.9892226,396735.397492521,142.850277284377,0,0,15.1044356435643,447.928588557434,6.58174257425743,3.52966447699129,3.66637990361411,2.57792079207921,2.59256100100906,1.99341917460582,0.763343537567206,0.605609537752721,0.712190730238916,8.71869723565563,-0.000259207314652623,610.602433391089,611.41638385671,628.953894179598,5.95853968738032,1268.85336639324,-5.08642069222201,0,1268.85336639324,15.11044417214,15.11044417214,-0.000201505299045673,15.1064256532712,25.5999999999999,1014.9,37.98,13.5662330887817 +47298,2874.07207831683,457.107268712871,45,15.1138811881188,15.5672976237624,2.31309900990099,1.02930693069307,748.306930693069,300.141096336634,311.234437130693,20,40,11,32,5306243.00011652,396747.299001279,2,1,5306253.6298635,396738.638609851,147.030926270803,0,0,15.1138811881188,452.125615482628,4.62619801980198,2.48094279437308,2.83489895610069,1.02930693069307,1.04394713962292,0.79044769733531,1.73193950047923,1.37405902936404,1.21689505487161,8.70694650405804,0.000172804876435082,611.375533467327,612.157043513793,628.991782030179,5.95480042223499,1267.94887928618,-91.5976268634541,0,1267.94887928618,15.1091819429468,15.1091819429468,-0.00366521800695062,15.1061254493094,25.5999999999999,1014.9,37.82,8.20793912417968 +47299,2874.07347940594,457.109921683168,45,15.0949405940594,15.5477888118812,3.54856435643565,0.908712871287129,748.569306930693,303.803088187129,325.468793994059,20,40,10.970297029703,32,5306245.53628425,396750.649966282,2,1,5306256.28261436,396741.894590903,151.230747659045,0,0,15.0949405940594,456.320475768656,7.09712871287129,3.8060563481219,3.88501444287773,0.908712871287129,0.923353080216986,0.700066321794348,0.601360088889721,0.477097646776601,0.577869458452487,8.70999939020839,-0.000460813003826886,629.271882181188,629.302435078316,629.965126027034,5.96227770465923,1307.15122987668,-35.0769437783773,0,1307.15122987668,15.0939946083717,15.0939946083717,-0.00139964491498453,15.1061161995012,25.5999999999999,1014.9,37.66,15.2173726788242 +47300,2874.07487039604,457.112579009901,45,15.0982772277228,15.5512255445545,3.84187128712871,2.0290099009901,749.420792079208,317.759469119802,330.078189941584,20,40,11,32,5306248.05364997,396754.006019961,2,1,5306258.93035577,396745.144423375,155.422638123996,0,0,15.0982772277227,460.513457671847,7.68374257425743,4.12064630433558,4.13486590012333,2.0290099009901,2.04365010991995,1.61234575882611,0.348681021438572,0.276631086561036,0.311744730601478,8.71990686979067,0.000316808940130984,647.837659061386,647.089164615391,630.954251818303,5.96096530206429,1346.9541771816,133.11380999566,0,1346.9541771816,15.1006335653367,15.1006335653367,0.00532219063490378,15.1029824302302,25.5999999999999,1014.9,37.5252475247525,17.1503153362037 +47301,2874.07622188119,457.11527019802,45,15.1199801980198,15.5735796039604,3.79863366336634,0.572673267326733,748.737623762376,329.178806869307,320.824767593069,20,40,11,32,5306250.49708612,396757.402938831,2,1,5306261.56861317,396748.3826152,159.59951356327,0,0,15.1199801980198,464.711021505731,7.59726732673267,4.074271259143,4.09925474806176,0.572673267326733,0.587313476256589,0.525889473950544,0.609503889726253,0.483558647908386,0.427351344047413,8.71195784547466,0,650.003574462376,649.164195014067,631.098432525606,5.95240202647741,1348.29517907182,-28.7290262730679,0,1348.29517907182,15.1171857661014,15.1171857661014,-0.00114912481347078,15.101985326595,25.5999999999999,1014.9,37.54,17.0753809400942 +47302,2874.07758039604,457.117954455445,45,15.1000594059406,15.5530611881188,3.10556435643564,-0.229009900990099,748.376237623762,327.562214970297,306.216080782178,20,40,10.960396039604,32,5306252.95370013,396760.791454985,2,1,5306264.20801336,396751.622209671,163.778198246706,0,0,15.1000594059406,468.908126786259,6.21112871287129,3.33091124918629,3.50850657218037,-0.229009900990099,-0.214369692060242,-0.14314313417413,1.06675107711962,0.846322258482147,0.935249699228781,8.70775292681474,0.000460813003826886,633.778295752475,633.619752898147,630.194605857609,5.96025761957711,1315.74849620957,-133.989910128295,0,1315.74849620957,15.0987729634349,15.0987729634349,-0.00536303630363423,15.1059163745759,25.5999999999999,1014.9,37.58,12.8158113023963 +47303,2874.07894950495,457.120635445544,45,15.0843267326733,15.5368565346535,3.32012871287129,-3.47188118811881,749.252475247525,314.395980566337,299.683288791089,20,40,11,32,5306255.43001277,396764.176249597,2,1,5306266.85345016,396754.869213472,167.966440068856,0,0,15.0843267326733,473.100131681749,6.64025742574258,3.56104488884017,3.68997669073744,-3.47188118811881,-3.45724097918896,-2.59044292567831,1.21082898105872,0.960628528871266,0.917269318448812,8.71794841452441,1.03052879760998E-19,614.079269357426,614.747326664533,629.15998049494,5.96647842611546,1277.66613375192,109.228394801576,0,1277.66613375192,15.0909417704146,15.0909417704146,0.00436912503131757,15.1096841406942,25.5999999999999,1014.9,37.62,14.6642468984808 +47304,2874.0803260396,457.123315544555,45,15.1244752475247,15.5782095049505,4.5079801980198,-3.03366336633663,749.108910891089,301.785078839604,307.232610455446,20,40,10.7128712871287,32,5306257.92010226,396767.560177458,2,1,5306269.50395896,396758.122442638,172.16271185732,0,0,15.1244752475247,477.295831021683,9.0159603960396,4.83508960990497,4.70305851491172,-3.03366336633663,-3.01902315740678,-2.45485662007512,0.703660502255745,0.558259146155975,0.570806351178777,8.71627796738554,-0.000489613816566066,609.01768929505,609.89813795424,628.840118689576,5.95063877490221,1263.5223743771,128.879454960259,0,1263.5223743771,15.1192329183413,15.1192329183413,0.00515880796000568,15.1090406465464,25.5999999999999,1014.9,37.66,22.1898522698717 +47305,2874.08170653465,457.12598980198,45,15.1211881188119,15.5748237623762,4.83938613861386,-3.47980198019802,748.30198019802,301.323914687129,321.923234233663,20,40,10.2079207920792,32,5306260.41765989,396770.936957417,2,1,5306272.15394706,396761.375032679,176.358159252605,0,0,15.1211881188119,481.4970801966,9.67877227722772,5.19054312780885,4.98473141611855,-3.47980198019802,-3.46516177126817,-2.85057144720225,1.03433492488639,0.820604439435365,0.812585804976866,8.70688890243256,0.000201605689174263,623.247148920792,623.530508498863,629.632500660982,5.95192825689136,1291.92647365549,-44.7558526601977,0,1291.92647365549,15.1229193216351,15.1229193216351,-0.00179176333474877,15.1092184371478,25.5999999999999,1014.9,37.7,24.9407740333694 +47306,2874.08309326733,457.128651188119,45,15.1069801980198,15.5601896039604,4.79491089108911,-1.96128712871287,748.960396039604,313.43648029802,330.24866839901,20,40,10.8811881188119,32,5306262.92706053,396774.297908811,2,1,5306274.80090904,396764.623908484,180.548815732976,0,0,15.1069801980198,485.696224118493,9.58982178217822,5.14284065402705,4.9461488720212,-1.96128712871287,-1.94664691978302,-1.60021866613525,0.989879284742019,0.785334920073035,0.815948035305269,8.71454991862118,-0.000230406501913443,643.68514869703,643.1108997005,630.733277174983,5.95752064665953,1336.73991127702,-71.1485865815443,0,1336.73991127702,15.1096910106852,15.1096910106852,-0.00284422006557444,15.1145769434484,25.5999999999999,1014.9,37.74,24.547171583371 +47307,2874.08447316832,457.131317920792,45,15.1064851485148,15.5596797029703,4.5119801980198,3.4660396039604,749.034653465347,326.986538719802,324.554547155445,20,40,10.990099009901,32,5306265.42368931,396777.665290473,2,1,5306277.44592435,396767.870394946,184.736390250224,0,0,15.1064851485148,489.892792847865,9.02396039603961,4.8393798591053,4.70529044566337,3.4660396039604,3.48067981289025,2.82667339391775,0.765688164810983,0.607469681385864,0.574387347277451,8.71541394300336,0.000403211378348525,651.541085875248,650.637190184845,631.160290413444,5.9577215781321,1353.22541191311,20.0550942189164,0,1353.22541191311,15.1082757572787,15.1082757572787,0.000799213584726108,15.1170663374612,25.5999999999999,1014.9,37.78,22.368086489139 +47308,2874.08584346535,457.133986831683,45,15.1199603960396,15.5735592079208,4.51775247524753,3.46534653465347,748.569306930693,329.516228710891,310.076019324753,20,40,10.7425742574257,32,5306267.90248164,396781.035064136,2,1,5306280.08499492,396771.109584851,188.914553091384,0,0,15.1199603960396,494.090210202101,9.03550495049505,4.84557098604536,4.71097483054808,3.46534653465347,3.47998674358332,2.82980999637658,0.731133526927613,0.580055264094203,0.562836228480582,8.70999939020839,-3.43509599203328E-20,639.592248035644,639.189743179267,630.525112843515,5.9524128507314,1326.4058011706,94.2520686637893,0,1326.4058011706,15.1169547103225,15.1169547103225,0.00377005522334337,15.1149194455137,25.5999999999999,1014.9,37.82,22.3101017311919 +47309,2874.08721326733,457.136657326733,45,15.1245445544554,15.5782808910891,4.76819801980198,0.714851485148515,749.074257425743,318.699764972277,300.124576608911,20,40,10.7128712871287,32,5306270.38032361,396784.406791699,2,1,5306282.72464313,396774.349483745,193.09363044386,0,0,15.1245445544554,498.291049421023,9.53639603960396,5.11418943535758,4.92454339167444,0.714851485148515,0.729491694078373,0.598292035350462,0.952602422646708,0.755760787180837,0.778024727091532,8.71587475600719,0.000115203250956721,618.824341581188,619.293288670925,629.379580988176,5.95060521466418,1283.79753272029,-19.5170388269782,0,1283.79753272029,15.1244752475247,15.1244752475247,-0.000781513794943881,15.1158906868291,25.5999999999999,1014.9,37.86,24.3203683731973 +47310,2874.08858564356,457.139330693069,45,15.114702970297,15.568144059406,4.22420792079208,1.67544554455446,749.173267326733,304.481754383168,303.849529564356,20,40,11,32,5306272.86287195,396787.782178096,2,1,5306285.36796068,396777.593886379,197.278517074585,0,0,15.114702970297,502.490959046986,8.44841584158416,4.53072616354256,4.46111163845065,1.67544554455446,1.69008575348431,1.37372150284506,0.769720633298644,0.61066889806437,0.622828939577555,8.71702678851675,1.37403839681331E-19,608.331283947525,609.240535187521,628.820603124698,5.95448181303013,1263.02777714199,-70.3225446204576,0,1263.02777714199,15.1137918831487,15.1137918831487,-0.0028129050528793,15.1170012764207,25.5999999999999,1014.9,37.8911633663366,20.2915107494497 +47311,2874.0899619802,457.142002673267,45,15.1129306930693,15.5663186138614,4.51404950495049,2.21257425742574,748.589108910891,299.93417029802,317.826173606931,20,40,10.960396039604,32,5306275.35278914,396791.155966245,2,1,5306288.01343548,396780.840936817,201.46681905241,0,0,15.1129306930693,506.688633634444,9.02809900990099,4.84159931970645,4.70761415443824,2.21257425742574,2.2272144663556,1.81384234853645,0.745257168494156,0.591260457587763,0.563460954077936,8.71022979671031,-0.000432012191087706,617.760343904951,618.273937901402,629.338614284754,5.95517845218031,1281.74389709353,104.891960668622,0,1281.74389709353,15.1164683854524,15.1164683854524,0.00419893474495898,15.1185983953057,25.5999999999999,1014.9,37.87,22.2668642818255 +47312,2874.09134029703,457.144674059406,45,15.1214653465346,15.5751093069307,3.40262376237624,-2.18287128712871,749.455445544554,309.238040559406,329.204446671287,20,40,11,32,5306277.84638951,396794.529077132,2,1,5306290.66004808,396784.089383794,205.656922396979,0,0,15.1214653465346,510.889371065687,6.80524752475247,3.64952596888245,3.76238906342005,-2.18287128712871,-2.16823107819886,-1.63805444684313,0.800055254270496,0.634735304447028,0.695859664752929,8.72031008116902,5.76016254783607E-05,638.442487230693,638.088228033448,630.460022730946,5.9518236469272,1325.46596659599,-99.1758888204279,0,1325.46596659599,15.1206621899814,15.1206621899814,-0.00396747595551607,15.1183958615435,25.5999999999999,1014.9,37.84,14.4143814419874 +47313,2874.09271841584,457.147344059406,45,15.113396039604,15.5667979207921,2.68938613861386,-2.5349504950495,748.935643564356,323.839429763366,327.523216966337,20,40,11,32,5306280.3396559,396797.90045198,2,1,5306293.30567733,396787.336623801,209.845468894923,0,0,15.1133960396039,515.087726208702,5.37877227722772,2.884534182636,3.15508933124185,-2.5349504950495,-2.52031028611965,-1.77629174942267,1.37483002488764,1.0907411078822,1.09864658770446,8.71426191049379,-8.64024382175411E-05,651.362646729703,650.46623860943,631.164806956294,5.95500419440977,1352.05823702908,59.6524211655957,0,1352.05823702908,15.1144495637682,15.1144495637682,0.00238674857584926,15.1156985807962,25.5999999999999,1014.9,37.81,10.4292744764222 +47314,2874.09410574257,457.150005841584,45,15.1289801980198,15.5828496039604,3.33851485148515,1.9129702970297,748.757425742574,330.31388800099,314.328199342574,20,40,11,32,5306282.85016356,396801.26189297,2,1,5306295.95332072,396790.586335963,214.037204175115,0,0,15.1289801980198,519.287972495832,6.6770297029703,3.58076516796145,3.70818380239798,1.9129702970297,1.92761050595956,1.48446132041278,0.993936524126281,0.788553789097439,0.740181835395339,8.71218825197657,0.000662418693001148,644.642087343564,644.027683793785,630.817504304365,5.94886258641981,1336.41235115211,4.61614472626515,0,1336.41235115211,15.1242986962062,15.1242986962062,0.000179720942393406,15.116166271216,25.5999999999999,1014.9,37.78,14.1694716928082 +47315,2874.0954990099,457.15266009901,45,15.1110594059406,15.5643911881188,4.27714851485149,1.72811881188119,749.128712871287,322.708828239604,301.750832138614,20,40,11,32,5306285.37184479,396804.614155119,2,1,5306298.6009272,396793.836002828,218.228881027028,0,0,15.1110594059406,523.488349063489,8.55429702970297,4.58750824887453,4.50590108709284,1.72811881188119,1.74275902081104,1.42526935215193,0.667588569099275,0.52964096090958,0.636497226498315,8.71650837388745,-6.87019198406656E-20,624.459660378218,624.692141187001,629.700550936337,5.95592240931423,1296.73708429417,-153.579874288993,0,1296.73708429417,15.1120277423782,15.1120277423782,-0.00614318857628459,15.1165221367,25.5999999999999,1014.9,37.75,20.5273603420079 +47316,2874.09689356436,457.155300792079,45,15.1019702970297,15.5550294059406,3.25040594059406,-1.95752475247525,749.014851485148,308.016307344555,301.354688764356,20,40,11,32,5306287.89621432,396807.949561423,2,1,5306301.24135216,396797.0768551,222.40918812103,0,0,15.1019702970297,527.683670873171,6.50081188118812,3.48626287183853,3.63180234324227,-1.95752475247525,-1.94288454354539,-1.53214220860675,1.09010400069186,0.864849635152985,0.781729579514378,8.71518353650145,-0.000691219505740328,609.370996108911,610.2366194955,628.891570246003,5.95951040752907,1265.99101452314,101.167528987057,0,1265.99101452314,15.1024082933046,15.1024082933046,0.00405189033754763,15.1127942346335,25.5999999999999,1014.9,37.72,13.8862652064793 +47317,2874.09830009901,457.157945940594,45,15.128504950495,15.5823600990099,3.44618811881188,-0.82029702970297,748.60396039604,299.744561272277,313.503981613861,20,40,11,32,5306290.44267796,396811.290911305,2,1,5306303.8935023,396800.33209884,226.608058466613,0,0,15.128504950495,531.882323430929,6.89237623762376,3.69625145522259,3.79984008810604,-0.82029702970297,-0.805656820773115,-0.622975928262906,0.690024616079502,0.547440920393088,0.585103906846094,8.71040260158674,0.000172804876435082,613.248542886139,613.951458699128,629.065681299479,5.949070471685,1271.10897854518,85.2638069712975,0,1271.10897854518,15.1279939221645,15.1279939221645,0.00340925181627208,15.106963981897,25.5999999999999,1014.9,37.69,14.6179801513257 +47318,2874.09970346535,457.160594158416,45,15.1097722772277,15.5630654455446,2.9359702970297,-0.806534653465346,748.559405940594,305.498595219802,327.028706866337,20,40,11,32,5306292.98320631,396814.635976358,2,1,5306306.54510375,396803.586669122,230.806060132394,0,0,15.1097722772277,536.08354053764,5.87194059405941,3.14901105474988,3.36471142775005,-0.806534653465346,-0.791894444535489,-0.62823771861811,1.07610268288866,0.853741488970539,0.806824038791895,8.70988418695744,-0.000460813003826885,632.527302086139,632.421252768581,630.137183458399,5.95643560760927,1312.62684275288,-241.143578316483,0,1312.62684275288,15.1089351044015,15.1089351044015,-0.00964230086374984,15.1009874691351,25.5999999999999,1014.9,37.66,11.4378305780907 +47319,2874.10109544554,457.163242673267,45,15.0821485148515,15.534612970297,2.7210297029703,0.936138613861386,749.20297029703,319.98817689703,329.49429450099,20,40,11,32,5306295.5026389,396817.98103127,2,1,5306309.18828384,396806.83090303,234.9907291269,0,0,15.0821485148515,540.275516527741,5.44205940594059,2.91847387680488,3.1801727541918,0.936138613861386,0.950778822791244,0.750057576096902,1.29518785913944,1.02755585404732,1.05308711815244,8.71737239826962,0.000115203250956721,649.48247139802,648.664958202539,631.033195550079,5.96735379484657,1351.42916470266,-32.8592448826365,0,1351.42916470266,15.0845380845015,15.0845380845015,-0.00131523053295444,15.0950155560605,25.5999999999999,1014.9,37.63,10.2819222045498 +47320,2874.10247653465,457.165901386139,45,15.0902277227723,15.5429345544554,2.52366336633663,-0.137128712871287,748.841584158416,329.891651743564,318.633894611881,20,40,11,32,5306298.00167218,396821.338424969,2,1,5306311.82936749,396810.072563791,239.172079074602,0,0,15.0902277227723,544.466232534343,5.04732673267327,2.70678618482664,3.01273927913029,-0.137128712871287,-0.12248850394143,-0.0443056336223096,1.50332498431778,1.19268442586986,1.0120789141805,8.7131674796097,-2.88008127391804E-05,648.525546355445,647.748187142584,630.983487716196,5.96416190602333,1348.07756127018,-0.685550212911324,0,1348.07756127018,15.0879903930987,15.0879903930987,-2.7230445819729E-05,15.0856043735826,25.5999999999999,1014.9,37.5987376237624,9.19915003922391 +47321,2874.10382584158,457.168593762376,45,15.0713168316832,15.5234563366337,3.16419801980198,1.13346534653465,748.435643564356,326.103810647525,304.432508769307,20,40,10.970297029703,32,5306300.44108604,396824.736693501,2,1,5306314.46668107,396813.309597159,243.347460244217,0,0,15.0713168316832,548.656522743365,6.32839603960396,3.39379950602863,3.55661121065426,1.13346534653465,1.14810555546451,0.936794543432483,0.929271102219604,0.737250549674862,0.778134728525017,8.70844414632048,0.000748821131218689,630.536319416832,630.513814668327,630.028858909686,5.97163083955326,1311.60541356128,-128.218074341975,0,1311.60541356128,15.0743845701402,15.0743845701402,-0.00513430055876615,15.0667870759366,25.5999999999999,1014.9,37.56,13.009711304508 +47322,2874.10514683168,457.171314356436,45,15.0646831683168,15.5166236633663,4.22423762376237,1.38554455445545,749.341584158416,312.107177257426,299.946825638614,20,40,10.009900990099,32,5306302.82742084,396828.169168823,2,1,5306317.09956868,396816.541198103,247.515834245595,0,0,15.0646831683168,552.841894305522,8.44847524752475,4.5307580218287,4.45835907679333,1.38554455445545,1.4001847633853,1.13422406693518,0.549973556180376,0.436329404446283,0.527521062043804,8.71898524378302,1.20228359721165E-19,612.05400289604,612.807043361994,629.07460111802,5.97425580129048,1275.26089698306,-8.88393937352073,0,1275.26089698306,15.0677562003725,15.0677562003725,-0.000355357317911398,15.037080377709,25.5999999999999,1014.9,37.52,20.0153895443024 +47323,2874.10642584158,457.174074653465,45,15.036396039604,15.4874879207921,4.3129504950495,2.31504950495049,748.925742574257,300.770191743564,309.300961582178,20,40,10,32,5306305.13511159,396831.649704121,0.495049504950495,0.247524752475248,1313445.22993378,98222.4111574162,61.9048105391782,0,0,15.0363960396039,557.024837622354,8.62590099009901,4.62590810310316,4.53218221860207,2.31504950495049,2.32968971388035,1.88505224234654,0.533630487490922,0.423363396630163,0.473006889645782,8.71414670724284,-0.000432012191087705,610.071153325743,610.907397087305,629.008013254399,5.98551997128781,1272.82957504495,-376.371778849692,0,1272.82957504495,15.0377572786981,15.0377572786981,-0.0150516289252676,15.0068369620448,25.5999999999999,1014.9,37.48,20.6081229367635 +47324,2874.1076219802,457.17691009901,45,14.9715940594059,15.4207418811881,4.87175247524752,3.01891089108911,748.321782178218,302.516026326733,323.894767166337,20,40,9.8019801980198,32,5306307.28762455,396835.22109543,0,0,0,0,0,0,0,14.9715940594059,561.194453518944,9.74350495049505,5.22525804027382,5.00376551021817,3.01891089108911,3.03355110001896,2.5053480736444,1.10439900098784,0.876190778550904,0.815279306270013,8.70711930893448,8.5877399800832E-20,626.410793493069,626.561401883394,629.808822256598,6.01148917603113,1311.57453350245,-754.894980767791,0,1311.57453350245,14.9653378100186,14.9653378100186,-0.0301958413663143,14.9677517938602,25.5999999999999,1014.9,37.44,25.1243386667021 +47325,2874.10868851485,457.179846336634,45,14.8871089108911,15.3337221782178,4.96608910891089,3.26346534653465,748.945544554455,315.739568721782,330.310764837624,20,40,9.72277227722772,32,5306309.19782378,396838.913736327,0,0,0,0,0,0,0,14.8871089108911,565.336658166908,9.93217821782178,5.32643995705764,5.07919028756881,3.26346534653465,3.27810555546451,2.71526734888922,1.22471046166447,0.971641600495298,0.961318802044386,8.71437711374475,-0.000259207314652623,646.050333559406,645.376837923331,630.625726136657,6.0455155133395,1361.43130794706,96.687197271188,0,1361.43130794706,14.8964778943241,14.8964778943241,0.00386944635057452,14.9373881220092,25.5999999999999,1014.9,37.4,25.8806684134522 +47326,2874.10943613861,457.183000693069,45,14.8930297029703,15.3398205940594,4.88041584158416,3.09089108910891,747.970297029703,328.283155050495,322.650115922772,20,40,9.9009900990099,32,5306310.51243494,396842.867497525,0,0,0,0,0,0,0,14.8930297029703,569.477374201011,9.76083168316831,5.23455004039828,5.00670406562789,3.09089108910891,3.10553129803876,2.56540253064334,1.13066706265894,0.897030921819817,0.92078089511411,8.70302959352551,0.000460813003826886,650.933270973267,650.054880091168,630.839530948414,6.04320977194535,1369.39762463566,-564.05879101683,0,1369.39762463566,14.888512890893,14.888512890893,-0.0225658704484306,14.9112058572017,25.5999999999999,1014.9,37.36,25.1307900474434 +47327,2874.11008930693,457.186107029703,45,14.8449306930693,15.2902786138614,4.83310891089109,3.46,747.579207920792,328.614269886139,307.955985707921,20,40,10.6336633663366,32,5306311.653154,396846.758316406,0,0,0,0,0,0,0,14.8449306930693,573.602377336323,9.66621782178218,5.18381041000438,4.96354048604345,3.46,3.47464020892985,2.86696971099225,1.09947212795717,0.872281973207273,0.864139940574165,8.69847906511272,-0.000720020318479509,636.57025559406,636.294557990639,630.235812237163,6.06270373351977,1342.82984638471,406.61689917594,0,1342.82984638471,14.8503465346534,14.8503465346534,0.0162701913755696,14.9174038109929,25.5999999999999,1014.9,37.32,24.6958794818188 +47328,2874.11041831683,457.189351683168,45,14.8904257425743,15.3371385148515,4.61718811881188,3.26366336633663,747.569306930693,316.428487774257,299.738089752475,20,40,11,32,5306312.1903424,396850.810683792,0,0,0,0,0,0,0,14.8904257425742,577.736803271416,9.23437623762376,4.95222190861672,4.78250379096336,3.26366336633663,3.27830357526649,2.6828911586915,0.862776261257201,0.684495914420436,0.695401941323264,8.69836386186177,0.000921626007653771,616.166577526733,616.74704830845,629.473514843147,6.04424396852143,1295.76618087936,-161.165820825699,0,1295.76618087936,14.8884460347025,14.8884460347025,-0.00645361565859281,14.957809689593,25.5999999999999,1014.9,37.28,22.9279437957293 +47329,2874.11042712871,457.192741485148,68.1683168316832,14.9869504950495,15.436559009901,4.56728712871287,3.02950495049505,748.039603960396,302.929360587129,305.551923692079,20,40,10.7128712871287,32,5306312.13118439,396855.033241404,0,0,0,0,0,0,0,14.9869504950495,581.875377666355,9.13457425742575,4.89869998789984,4.74563551839857,3.02950495049505,3.0441451594249,2.4851187899353,0.784358690552236,0.622282210617194,0.643313606464401,8.70383601628221,0.000115203250956721,608.481284279208,609.384241286501,629.018658577788,6.00548628565343,1272.21673550692,1277.91218220891,0,1272.21673550692,14.9730673463386,14.9730673463386,0.0511156313651169,15.0140578024762,25.5999999999999,1014.9,37.24,22.5738108927038 +47330,2874.11020287129,457.196208019802,89.5544554455445,15.0742079207921,15.5264341584158,4.68315841584158,2.65326732673267,749.316831683168,300.527923615842,320.052275414851,20,40,10.5148514851485,32,5306311.63859614,396859.343658198,0,0,0,0,0,0,0,15.0742079207921,586.055069470536,9.36631683168317,5.02297916213589,4.84923122368082,2.65326732673267,2.66790753566253,2.18867612057742,0.881246307156382,0.699149390095259,0.671788148920977,8.71869723565562,0.000518414629305246,620.580199030693,620.975467753122,629.522819501614,5.97052384626286,1292.14912905017,744.840546568346,0,1292.14912905017,15.0904599596765,15.0904599596765,0.0297897374556723,15.0801847609461,25.5987376237624,1014.9,37.2037871287129,23.5938991559404 +47331,2874.10997584159,457.199649405941,80.6435643564356,15.2801782178218,15.6884015871287,4.39056435643564,1.00841584158416,749.955445544554,311.432046930693,329.907588425743,20,40,10.7623762376238,32,5306311.14143583,396863.622659351,0,0,0,0,0,0,0,15.2314578515813,590.265606116478,8.78112871287128,4.70915380478959,4.60939155283339,1.00841584158416,1.02305605051402,0.8257963108705,0.562859144585501,0.446552370717236,0.467398717292404,8.72612784534233,0,641.339635356436,640.86380755376,630.745529636743,5.90884883358504,1322.71599413138,590.31843338132,0,1322.71599413138,15.2223866141031,15.2223866141031,0.0236127373635724,15.1420269868956,25.59,1014.9,37.19,21.3090322529633 +47332,2874.10988663367,457.203163267327,46.7821782178218,15.4924059405941,15.70545829,4.52236633663366,-1.34623762376238,749.985148514852,325.616529839604,326.056933381188,20,40,11,32,5306310.89795866,396867.996497942,0,0,0,0,0,0,0,15.2480177572816,594.500707567845,9.04473267326733,4.85051963982593,4.72260063070365,-1.34623762376238,-1.33159741483252,-1.0821862439461,0.665382498783083,0.527890743401094,0.506294913760555,8.7264734550952,0,651.673463220792,650.764012783727,631.437510450968,5.90240655753575,1342.63483962663,0,0,1342.63483962663,15.2480177572816,15.2480177572816,0,15.2004604801387,25.58,1014.9,37.18,22.3554936589797 +47333,2874.11006584158,457.206674455445,45,15.6143663366337,15.70545829,3.69017821782178,-2.20495049504951,749.648514851485,330.040224182178,312.040584781188,20,40,10.8910891089109,32,5306311.15174313,396872.375893662,0,0,0,0,0,0,0,15.2480177572816,598.736268055977,7.38035643564356,3.95794603701349,4.01440942106108,-2.20495049504951,-2.19031028611965,-1.69617903101738,0.683553793328569,0.542307200406983,0.57672560003222,8.72255654456267,-0.000316808940130984,642.080808963367,641.57388042387,630.801269687991,5.90240655753575,1322.2813110298,-0.0587457457929967,0,1322.2813110298,15.2480177572816,15.2480177572816,0,15.2338909521343,25.57,1014.9,37.17,16.4651015270439 +47334,2874.11068019802,457.209983267327,45,15.7098811881188,15.70545829,2.75410891089109,1.54049504950495,745.356435643564,320.636005760396,300.745108882178,20,40,10.970297029703,32,5306312.21608149,396876.517619541,0,0,0,0,0,0,0,15.2480177572816,602.97182854411,5.50821782178218,2.95395338813725,3.21786927463061,1.54049504950495,1.55513525843481,1.09752464191916,1.33332515928234,1.05781262779861,0.936518465945904,8.67261593527294,-0.0014688414496982,621.381114642574,621.742775767395,629.428345266553,5.90240655753575,1272.37092039603,-0.270201947861946,0,1272.37092039603,15.2480177572816,15.2480177572816,0,15.24785681844,25.56,1014.9,37.16,10.6751432035831 +47335,2874.11169267327,457.213124752475,45,15.7419207920792,15.70545829,3.63060396039604,0.515643564356436,730.450495049505,306.050069646535,302.555514131683,20,40,10.970297029703,32,5306314.02160117,396880.46410501,0,0,0,0,0,0,0,15.2480177572816,607.207389032242,7.26120792079208,3.89404893444335,3.96375828136763,0.515643564356436,0.530283773286293,0.386873388551873,0.648417920461739,0.514431652009423,0.619319479547201,8.4991774409576,-0.00126723576052394,608.605583778218,609.503324993824,628.580997570389,5.90240655753575,1221.255750372,-0.231141367431948,0,1221.255750372,15.2480177572816,15.2480177572816,0,15.2480119490292,25.55,1014.9,37.15,16.0904734653978 +47336,2874.11321693069,457.215785247525,45,15.5727227722772,15.70545829,3.84313861386139,-0.605148514851485,710.851485148515,299.692658219802,315.80732229604,20,40,10.8712871287129,32,5306316.78582778,396883.828419423,0,0,0,0,0,0,0,15.2480177572816,611.442949520374,7.68627722772277,4.12200559121093,4.14453532282171,-0.605148514851485,-0.590508305921628,-0.496292524486357,0.517063080221672,0.410219406585958,0.408944300659959,8.27113260568876,-0.00221766258091689,615.499980515841,616.108422690736,629.038274161702,5.90240655753575,1201.87265172242,-0.390954718426508,0,1201.87265172242,15.2480177572816,15.2480177572816,0,15.2480109359619,25.54,1014.9,37.14,17.3507485436331 +47337,2874.11503009901,457.217948514851,45,15.4599603960396,15.70545829,4.25451485148515,-3.25910891089109,697.777227722772,307.408746231683,328.316882070297,20,40,10.7128712871287,32,5306320.0962872,396886.582959048,0,0,0,0,0,0,0,15.2480177572816,615.678510008507,8.5090297029703,4.56323223483509,4.49442373531503,-3.25910891089109,-3.24446870196124,-2.605082704075,0.4942706054146,0.392136669976773,0.41198785337216,8.11900671280042,-0.00187205282804672,635.72562830198,635.485372506548,630.379757052715,5.90240655753575,1218.56095625946,-0.596533018755146,0,1218.56095625946,15.2480012151969,15.2480012151969,-1.09405321961181E-05,15.2480109359619,25.53,1014.9,37.13,20.2793083105585 +47338,2874.11703970297,457.219481485148,45,15.4760099009901,15.7054173168317,4.384,-2.31762376237624,697.920792079208,322.104197955446,328.582961873267,20,40,11,32,5306323.78464448,396888.558915067,0,0,0,0,0,0,0,15.2479779775065,619.914060330696,8.768,4.70211312355243,4.60471901242205,-2.31762376237624,-2.30298355344638,-1.86340919062371,0.556618082526837,0.441600934669871,0.439232365037003,8.12067715993929,0.0030816869630923,650.687159828713,649.819096131536,631.372093060628,5.90242196008136,1247.54942139212,0.806051764845135,0,1247.54942139212,15.247994125732,15.247994125732,1.09405321961181E-05,15.2480109359619,25.52,1014.9,37.12,21.2888952778573 +47339,2874.11927445545,457.22023029703,45,15.889297029703,15.70545829,4.26775247524753,-3.17029702970297,708.430693069307,330.268082842574,316.360929167327,20,40,11,32,5306327.90750983,396889.565593162,0,0,0,0,0,0,0,15.2480177572816,624.149619824334,8.53550495049505,4.57743041102527,4.50573425412487,-3.17029702970297,-3.15565682077312,-2.53739998790959,0.490080625604526,0.388812489432769,0.406462275543726,8.24296541082986,0.00192965445352508,646.629012009901,645.931234174041,631.102933036291,5.90240655753575,1258.38468368888,0.34016991127552,0,1258.38468368888,15.2480177572816,15.2480177572816,0,15.2480109359619,25.51,1014.9,37.11,20.376800906487 +47340,2874.12164346535,457.220201485149,45,16.1546930693069,15.70545829,4.90391089108911,-2.72148514851485,721.425742574257,324.394562778218,302.887664462376,20,40,11,32,5306332.29637564,396889.608125907,0,0,0,0,0,0,0,15.2480177572816,628.385180312466,9.80782178217822,5.25974994473581,5.04704734876498,-2.72148514851485,-2.706844939585,-2.22041400278179,1.07300756289004,0.851285931152333,0.801375695514711,8.39416967771055,0.00210245932996017,627.282227240594,627.396268988639,629.819741464737,5.90240655753575,1243.10819847003,0.376759610033982,0,1243.10819847003,15.2480177572816,15.2480177572816,0,15.2480109359619,25.5012623762376,1014.9,37.1050495049505,25.6456426811771 +47341,2874.12393247525,457.219314653465,45,16.399900990099,15.70545829,4.96151485148515,1.24118811881188,731.445544554455,309.883725023762,300.550425188119,20,40,11,32,5306336.55615274,396888.579283822,0,0,0,0,0,0,0,15.2480177572816,632.620740800599,9.9230297029703,5.32153378099193,5.09622327098544,1.24118811881188,1.25582832774174,1.0327826665898,1.11620968205069,0.885560951673497,0.88007079972963,8.51075536767875,0.00144004063695902,610.434150211881,611.255162087707,628.702278758149,5.90240655753575,1226.56440462892,0.261176465099203,0,1226.56440462892,15.2480177572816,15.2480177572816,0,15.2480174871303,25.5,1014.9,37.13,26.052496736941 +47342,2874.12606574257,457.217533465347,45,16.5374059405941,15.70545829,4.65134653465346,2.34108910891089,737.504950495049,300.076766893069,311.498058357426,20,40,11,32,5306340.54734917,396886.431301899,0,0,0,0,0,0,0,15.2480177572816,636.856301288731,9.30269306930693,4.98885893767888,4.83222828384088,2.34108910891089,2.35572931784075,1.9302892884837,0.800314455799302,0.634940945695455,0.631535680554896,8.58125975726426,-0.000633617880261968,611.574825250495,612.347972719704,628.777934976555,5.90240655753575,1239.06254971295,-0.115102497923745,0,1239.06254971295,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.16,23.4112798844683 +47343,2874.12786871287,457.215006633663,45,16.6092376237624,15.70545829,4.22230693069307,2.77207920792079,740.648514851485,303.990160455446,325.665360515842,20,40,10.9009900990099,32,5306343.94332063,396883.343636047,0,0,0,0,0,0,0,15.2480177572816,641.091861776863,8.44461386138614,4.52868723322953,4.46706680064854,2.77207920792079,2.78671941685065,2.22350642329092,0.61886828513589,0.490988025241477,0.507205209748717,8.61783678944302,0.000230406501913443,629.655520971287,629.669975818655,629.977152141764,5.90240655753575,1281.12175264938,0.0418198503081539,0,1281.12175264938,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.19,20.1377827699452 +47344,2874.12920227723,457.211898118812,45,16.5081881188119,15.70545829,3.67313861386139,3.35633663366337,738.980198019802,318.025949723762,330.02697940198,20,40,10.7722772277228,32,5306346.48274088,396879.515905954,0,0,0,0,0,0,0,15.2480177572816,645.327422264996,7.34627722772277,3.93967000019727,3.99966738129053,3.35633663366337,3.37097684259322,2.62918195035376,0.821678101591244,0.651890100323796,0.658867058882841,8.59842504165681,0.00138243901148066,648.052929125742,647.295401631546,631.19737552127,5.90240655753575,1315.58356682549,0.253254690287724,0,1315.58356682549,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.22,16.3897426404565 +47345,2874.12991782178,457.208522376238,45,16.4841089108911,15.70545829,3.10487128712871,2.22633663366337,737.663366336634,329.279694777228,320.572862723762,20,40,11,32,5306347.88332666,396875.334867192,0,0,0,0,0,0,0,15.2480177572816,649.562982753128,6.20974257425742,3.33016788917634,3.51619624175264,2.22633663366337,2.24097684259322,1.68979435089171,0.937304303502143,0.743623805065086,0.813495846338253,8.58310300927957,-0.00109443088408885,649.85255750099,649.019514946819,631.31673736766,5.90240655753575,1316.8903289244,-0.199244207640466,0,1316.8903289244,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.25,12.4195730089271 +47346,2874.13002683168,457.204973762376,80.6435643564356,16.4166831683169,15.70545829,2.07767326732673,3.5,734.470297029703,327.40475429802,305.995081760396,20,40,11,32,5306348.1642525,396870.918425404,0,0,0,0,0,0,0,15.2480177572816,653.79854324126,4.15534653465346,2.2284340184195,2.64222271022246,3.5,3.51464020892985,2.37778046218389,2.01773450547592,1.60079859333505,1.51298178671007,8.54594996084603,-0.000921626007653771,633.399836058416,633.257173929556,630.225496950248,5.90240655753575,1277.99539916038,-0.167080021731742,0,1277.99539916038,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.28,7.1748803118506 +47347,2874.1295680198,457.201458613861,171.534653465347,16.4674257425743,15.70545829,2.01431683168317,3.24445544554455,736.346534653465,314.124939929703,299.69638109604,20,40,11,32,5306347.39263459,396866.524866812,0,0,0,0,0,0,0,15.2480177572816,658.034103729392,4.02863366336634,2.16048029408074,2.58832286909587,3.24445544554455,3.25909565447441,2.18913503800525,2.08359369173991,1.65304892282264,1.61590269985858,8.56778097690233,0.00224646339365607,613.821321025742,614.500202223311,628.926935676,5.90240655753575,1241.62892827752,0.408749338879441,0,1241.62892827752,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.31,6.7575145155323 +47348,2874.12866316832,457.198061188119,225,16.2874257425743,15.70545829,2.31530693069307,1.11059405940594,744.782178217822,301.649651756436,307.467757070297,20,40,11,32,5306345.79217949,396862.263170102,0,0,0,0,0,0,0,15.2480177572816,662.269664217524,4.63061386138614,2.48331092697623,2.84450116817933,1.11059405940594,1.1252342683358,0.812708790131425,1.76292222130025,1.39863961505229,1.48661722050862,8.66593414671745,0.000950426820392952,609.117408826733,609.993673111783,628.614944791778,5.90240655753575,1246.26162570786,0.174955512016234,0,1246.26162570786,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.34,8.17383086928278 +47349,2874.12757237624,457.194871980198,225,16.0312574257426,15.70545829,1.96050495049505,0.322079207920792,749.851485148515,301.448612187129,322.164242463366,20,40,11,32,5306343.84266514,396858.254664267,0,0,0,0,0,0,0,15.2480177572816,666.505224705657,3.9210099009901,2.10276369902196,2.54256651460127,0.322079207920792,0.336719416850649,0.271976217478944,2.14066484256984,1.69832713842565,1.63968651269688,8.72491821120729,-1.03052879760998E-19,623.612854650495,623.880868676385,629.576367277931,5.90240655753575,1284.59663468781,-8.7938457396052E-18,0,1284.59663468781,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.37,6.5089721522201 +47350,2874.12625792079,457.191889405941,225,16.2782574257426,15.70545829,2.45921782178218,3.09564356435644,750,313.706656077228,330.273956369307,20,40,11,32,5306341.47425069,396854.496126511,0,0,0,0,0,0,0,15.2480177572816,670.740785193789,4.91843564356436,2.63766432332938,2.96690603268076,3.09564356435644,3.11028377328629,2.2192396856558,1.61005352140274,1.27735904067702,1.32876550843049,8.72664625997164,0,643.980612446535,643.393965356112,630.92727573427,5.90240655753575,1326.8116507473,0,0,1326.8116507473,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.3949504950495,8.83703813541199 +47351,2874.12486960396,457.188917920792,225,16.3373564356436,15.70545829,2.41859405940594,1.92247524752475,750,327.153794409901,324.340865232673,20,40,10.7227722772277,32,5306338.96877494,396850.748952028,0,0,0,0,0,0,0,15.2480177572816,674.976345681921,4.83718811881188,2.5940928073172,2.9323974378825,1.92247524752475,1.93711545645461,1.3779301337926,1.65280494169219,1.31127649278815,1.25470871189236,8.72664625997164,0,651.494659642574,650.59271206367,631.425651156554,5.90240655753575,1342.2930568196,0,0,1342.2930568196,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.39,8.64094369153006 +47352,2874.12345425743,457.185967128713,225,16.1710396039604,15.70545829,2.73558415841584,1.7429702970297,750,329.426790207921,309.819825670297,20,40,11,32,5306336.41277244,396847.026653894,0,0,0,0,0,0,0,15.2480177572816,679.211906170053,5.47116831683168,2.93408443701397,3.2022067445316,1.7429702970297,1.75761050595956,1.29833031345064,1.31603861199735,1.04409809771433,1.1016715004427,8.72664625997164,0,639.246615878218,638.858614259485,630.613289480148,5.90240655753575,1317.0580623938,0,0,1317.0580623938,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.38,10.2895668296655 +47353,2874.1219929703,457.183174752475,225,15.8917128712871,15.70545829,2.03789108910891,2.87891089108911,750,318.435861624753,300.06141450099,20,40,11,32,5306333.76814667,396843.50014971,0,0,0,0,0,0,0,15.2480177572816,683.447466658186,4.07578217821782,2.18576515384799,2.6085235369189,2.87891089108911,2.89355110001896,1.93592456978757,2.05734072123796,1.6322207523491,1.55500542149136,8.72664625997164,0,618.497276125743,618.979947362072,629.237072284362,5.90240655753575,1274.30760500921,0,0,1274.30760500921,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.37,6.93434724418196 +47354,2874.1205450495,457.180415544554,225,15.7905247524752,15.70545829,2.31576237623762,2.92227722772277,750,304.286017709901,304.037469948515,20,40,11,32,5306331.14754345,396840.015398578,0,0,0,0,0,0,0,15.2480177572816,687.683027146318,4.63152475247525,2.48379942069706,2.84495810111594,2.92227722772277,2.93691743665263,2.07143598230804,1.76187030105696,1.39780505904841,1.48238789501161,8.72664625997164,0,608.323487658416,609.233066042702,628.562287313055,5.90240655753575,1253.34625802175,0,0,1253.34625802175,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.36,8.15077149907592 +47355,2874.1191229703,457.177641584158,225,15.6852772277228,15.70545829,2.13808910891089,-0.134851485148515,750,299.986559704951,318.092424961386,20,40,11,32,5306328.57513838,396836.513124813,0,0,0,0,0,0,0,15.2480177572816,691.91858763445,4.27617821782178,2.2932337724303,2.69366642524459,-0.134851485148515,-0.120211276218658,-0.153440102434748,1.95160921437115,1.54833714575753,1.50458723358603,8.72664625997164,0,618.078984666337,618.579208028507,629.209328756079,5.90240655753575,1273.44578716715,0,0,1273.44578716715,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.35,7.3206241061777 +47356,2874.11773257426,457.174838613861,225,15.6237722772277,15.70545829,2.5020099009901,-2.22524752475248,750,309.490389469307,329.304218731683,20,40,11,32,5306326.06206966,396832.975763246,0,0,0,0,0,0,0,15.2480177572816,696.154148122582,5.0040198019802,2.68356149422985,3.00336675668017,-2.22524752475248,-2.21060731582262,-1.58535410168129,1.56414836515654,1.24093952693708,1.25354926971606,8.72664625997164,0,638.79460820099,638.42557348757,630.583309696535,5.90240655753575,1316.12677806508,0,0,1316.12677806508,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.34,9.05763854724088 +47357,2874.11635049505,457.172047722772,225,15.5337623762376,15.70545829,3.01021782178218,-3.48089108910891,750,324.059729750495,327.364779768317,20,40,11,32,5306323.56413968,396829.45371963,0,0,0,0,0,0,0,15.2480177572816,700.389708610715,6.02043564356435,3.22864615067368,3.43564970862797,-3.48089108910891,-3.46625088017906,-2.58970096596128,1.0498913781036,0.832946374590757,0.845438325997957,8.72664625997164,0,651.424509518812,650.52550554129,631.420998393354,5.90240655753575,1342.14852451581,0,0,1342.14852451581,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.33,11.9857359712618 +47358,2874.11496445545,457.169276930693,225,15.5234950495049,15.70545829,3.16478217821782,-3.46623762376238,750,330.299596276237,314.057219305941,20,40,11,32,5306321.05842814,396825.956576636,0,0,0,0,0,0,0,15.2480177572816,704.625269098847,6.32956435643564,3.39442605232274,3.56716122639278,-3.46623762376238,-3.45159741483252,-2.61586583358825,0.877165862227964,0.695912110619755,0.706402437516427,8.72664625997164,0,644.356815582178,643.754382455681,630.95222772181,5.90240655753575,1327.58675281369,0,0,1327.58675281369,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.32,12.7793744221603 +47359,2874.11357742574,457.166508613861,225,15.4730594059406,15.70545829,3.12247524752475,-3.13237623762376,750,322.473084548515,301.616447070297,20,40,10.990099009901,32,5306318.55082954,396822.462480913,0.138613861386139,0.138613861386139,367764.704456507,27502.3243121098,0.00892187527202598,0,0,15.2480177572816,708.860829586979,6.24495049504951,3.34904923342924,3.5312456175846,-3.13237623762376,-3.11773602869391,-2.35267239239714,0.933116701568515,0.740301511043447,0.741355222145609,8.72664625997164,0,624.089531618812,624.337543578688,629.607983275368,5.90240655753575,1285.82948874104,0,0,1285.82948874104,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.31,12.571533391797 +47360,2874.11221059406,457.163735841584,225,15.4170891089109,15.70545829,2.73147524752475,-2.93663366336634,749.995049504951,307.775853348515,301.480451677228,20,40,11,32,5306316.08074597,396818.963501593,2,2,5306317.87926274,396817.498193035,2.38936655689921,0,0,15.2480177572816,713.096390075112,5.4629504950495,2.9296773740978,3.19858866227753,-2.93663366336634,-2.92199345443648,-2.10785849421417,1.32731355072558,1.0530432319761,1.02208292032603,8.72658865834616,0,609.256305025743,610.126741019469,628.62415719837,5.90240655753575,1255.25990820943,0,0,1255.25990820943,15.2480177572816,15.2480177572816,0,15.2480177572816,25.5,1014.9,37.3037871287129,10.4887006373563 +47361,2874.11082960396,457.161000495049,225,15.3815445544555,15.70545829,3.06572277227723,-3.3680198019802,749.985148514852,299.720469262376,313.774266663366,20,40,11,32,5306313.58360456,396815.510666959,2,2,5306315.19219789,396814.200095042,6.64351370066986,0,0,15.2480177572816,717.331950563244,6.13144554455446,3.28817866804249,3.48288507494833,-3.3680198019802,-3.35337959305035,-2.51839128992678,0.982645891827734,0.779596204116697,0.85570697489325,8.7264734550952,0,613.494735925742,614.187321116195,628.905274649711,5.90240655753575,1263.97555083352,0,0,1263.97555083352,15.2480177572816,15.2480177572816,0,15.247994282384,25.5,1014.9,37.32,12.2386376351538 +47362,2874.1094419802,457.158286237624,225,15.3334158415842,15.70545829,2.45853465346535,-2.35594059405941,749.891089108911,305.713015273267,327.195015226733,20,40,11,32,5306311.07370756,396812.083877728,2,2,5306312.51279808,396810.911405118,10.8855255744938,0,0,15.2480177572816,721.567511051376,4.91706930693069,2.63693158274814,2.96638844667914,-2.35594059405941,-2.34130038512955,-1.68137264001973,1.61064360166137,1.27782718930877,1.21204580331539,8.72537902421111,0,632.9080305,632.786005257347,630.192877540613,5.90240655753575,1303.80814353314,0,0,1303.80814353314,15.2480177572816,15.2480177572816,0,15.2460907926207,25.5,1014.9,37.34,8.85674653669674 +47363,2874.1080809901,457.155563168317,225,15.3087425742574,15.70545829,2.95109900990099,0.916138613861386,749.826732673267,320.243972208911,329.403723035643,20,40,11,32,5306308.61334361,396808.646991934,2,2,5306309.84821593,396807.640902354,15.1040782134714,0,0,15.2480177572816,725.803071539508,5.90219801980198,3.16523754182437,3.38548543698386,0.916138613861386,0.930778822791241,0.640084628905258,1.09902312346433,0.871925749056578,0.919665250136422,8.7246302030799,0,649.647695244555,648.823249012754,631.303149711082,5.90240655753575,1338.17747292247,-0.409665533985719,0,1338.17747292247,15.2479894411998,15.2479894411998,-1.63866213594288E-05,15.2422003075595,25.5,1014.9,37.36,11.6876823463252 +47364,2874.10669138614,457.152871881188,225,15.2849306930693,15.7029767304951,2.31550495049505,-1.81069306930693,749.673267326733,329.953645285149,318.369714310891,20,40,11,32,5306306.0992709,396805.248742495,2,2,5306307.18112568,396804.36732115,19.3266016676928,0,0,15.2456084762088,730.038562713665,4.6310099009901,2.4835233155505,2.84456108730509,-1.81069306930693,-1.79605286037707,-1.26131487228035,1.76493768639117,1.40023861317305,1.38256252580563,8.72284455269007,0,648.32335959604,647.554484440065,631.211967978356,5.90334034773483,1335.38902887289,-84.4255727455841,0,1335.38902887289,15.2438147018091,15.2438147018091,-0.00337701941515771,15.2383372164719,25.5,1014.9,37.38,8.29614794949238 +47365,2874.10531594059,457.150182475248,225,15.2250594059406,15.6802421417822,2.63359405940594,2.15158415841584,749.668316831683,325.915005844554,304.237605792079,20,40,11,32,5306303.61138451,396801.853302331,2,2,5306304.52585843,396801.108251478,23.5304070022188,0,0,15.2235360599827,734.270647105729,5.26718811881188,2.82469370183449,3.11392708537024,2.15158415841584,2.1662243673457,1.65122252007561,1.44026882827514,1.1426579205887,1.12409921865441,8.72278695106459,-0.000201605689174262,630.152611636634,630.146207827144,630.014462211823,5.911907470306,1299.83167568174,-72.351293812008,0,1299.83167568174,15.2270787244083,15.2270787244083,-0.00289255029992099,15.2267396787588,25.5,1014.9,37.4,10.1725895358763 +47366,2874.10390871287,457.14752970297,225,15.2380198019802,15.6886897239604,3.09270297029703,1.50980198019802,749.653465346535,311.841160369307,300.000392874257,20,40,11,32,5306301.06381238,396798.502436456,2,2,5306301.8686062,396797.846745451,27.7373549394884,0,0,15.231737596078,738.499952425137,6.18540594059406,3.31711661128724,3.50514040434103,1.50980198019802,1.52444218912788,1.14858241645159,0.950763011629987,0.7543014640835,0.810417342028486,8.72261414618815,0.000201605689174262,611.841553243564,612.60350841544,628.835998341316,5.90872239340507,1261.35911716385,11.3302737443749,0,1261.35911716385,15.2298792679092,15.2298792679092,0.000451711100404283,15.213908760366,25.5,1014.9,37.42,12.4004417590331 +47367,2874.10252495049,457.144848712871,225,15.2023267326732,15.6582743395049,2.70846534653465,0.775742574257426,749.10396039604,300.671537484158,309.553749577228,20,40,11,32,5306298.56033677,396795.117197472,2,2,5306299.21211481,396794.586173266,31.9430983352479,0,0,15.2022080966067,742.728746700233,5.41693069306931,2.90499782176724,3.17646879161886,0.775742574257426,0.790382783187283,0.615920894324738,1.33721089489006,1.06089543184346,0.986703102016487,8.71622036576006,1.03052879760998E-19,610.225287061386,611.055063140849,628.789218846869,5.9202131820841,1259.5568388832,-369.161626859188,0,1259.5568388832,15.2006766265405,15.2006766265405,-0.0147664587291607,15.2028242172155,25.5,1014.9,37.44,10.2801626470844 +47368,2874.10115445545,457.142168910891,225,15.1660198019802,15.6210003960396,3.4839504950495,3.2850495049505,749.519801980198,302.675436947525,324.11436379802,20,40,11,32,5306296.0814123,396791.733875036,2,2,5306296.56635689,396791.338775325,36.1318485497273,0,0,15.1660198019802,746.944826443406,6.96790099009901,3.73675395633651,3.83404652262468,3.2850495049505,3.29968971388035,2.5581784555751,0.603089496265667,0.478469696908669,0.481199170594511,8.72105890230024,-0.000288008127391804,626.789800745545,626.92450543583,629.810544028531,5.93433650826532,1297.54106206166,-3.35499105260311,0,1297.54106206166,15.1705630820508,15.1705630820508,-0.000132067662214193,15.1911632177536,25.5,1014.9,37.46,14.7955948781677 +47369,2874.09979326733,457.139478811881,225,15.1843465346534,15.6398769306931,3.85545544554455,2.53732673267327,749.024752475248,316.010482854455,330.295273980198,20,40,11,32,5306293.61995886,396788.338032258,2,2,5306293.92143821,396788.092407476,40.3192700695711,0,0,15.1843465346534,751.159561921957,7.71091089108911,4.13521616053073,4.15132618756096,2.53732673267327,2.55196694160312,2.01532435280135,0.456097141670162,0.361851205313814,0.359798468504859,8.7152987397524,0.000345609752870164,646.305756834654,645.62154325922,630.967573781855,5.92716571508733,1335.44504430888,43.7692766685944,0,1335.44504430888,15.1796971865503,15.1796971865503,0.00174819462144008,15.1791535004732,25.5,1014.9,37.48,17.3490892624356 +47370,2874.09843831683,457.136775445545,225,15.1758910891089,15.6311678217822,3.32864356435644,0.547821782178218,749.450495049505,328.416495478218,322.41377979802,20,40,10.8118811881188,32,5306291.17035723,396784.925867697,2,2,5306291.27325544,396784.842033268,44.5118593088727,0,0,15.1758910891089,755.376670640331,6.65728712871287,3.57017759753393,3.70266178045077,0.547821782178218,0.562461991108076,0.44269507595793,0.690791082953377,0.548049007874472,0.556533207746481,8.72025247954354,-5.15264398804992E-20,650.830275276238,649.956206244888,631.237738913166,5.93046922072346,1346.31492932572,-76.2792671455117,0,1346.31492932572,15.175247132634,15.175247132634,-0.00305117145377341,15.1711306875665,25.4987376237624,1014.9,37.5025247524752,13.7612678309429 +47371,2874.09708574257,457.134076633663,225,15.1516534653465,15.6062030693069,2.95114851485148,0.136435643564356,748.955445544554,328.487444031683,307.716090664357,20,40,11,32,5306288.72505771,396781.519451926,2,2,5306288.62960412,396781.597220979,48.6972743445201,0,0,15.1516534653465,759.589093962666,5.90229702970297,3.16529063896794,3.38016726039759,0.136435643564356,0.151075852494214,0.105697294306242,1.06091563856873,0.84169262965913,0.804099647100636,8.7144923169957,8.64024382175411E-05,636.203534696039,635.943225240771,630.364255569942,5.93995239523613,1317.28567515511,-122.45298511126,0,1317.28567515511,15.1547877659053,15.1547877659053,-0.00489875720245417,15.1678296585773,25.49,1014.9,37.54,11.4700926419333 +47372,2874.09572534653,457.131393069307,225,15.1668910891089,15.6218978217822,3.29481188118812,0.340693069306931,749.648514851485,316.158098737624,299.715194175248,20,40,11,32,5306286.26493177,396778.131766144,2,2,5306285.98920944,396778.356405857,52.8775335204012,0,0,15.1668910891089,763.798848253098,6.58962376237624,3.53389100961933,3.67333992988244,0.340693069306931,0.355333278236788,0.290576267522698,0.724482607988367,0.574778662215494,0.615407637111587,8.72255654456267,1.71754799601664E-20,615.873292912871,616.466070350495,629.166209096503,5.93398881215918,1275.1047837472,200.484280569603,0,1275.1047837472,15.1663680031369,15.1663680031369,0.00801936629306175,15.1638650228051,25.48,1014.9,37.58,13.5469835469013 +47373,2874.09438811881,457.128681881188,225,15.1701881188119,15.6252937623762,3.07746534653465,2.80356435643564,749.178217821782,302.764002812871,305.767077675247,20,40,11,32,5306283.84833907,396774.710437483,2,2,5306283.34970844,396775.116687644,57.0563778155932,0,0,15.1701881188118,768.014207824057,6.15493069306931,3.3007733104969,3.48852098035891,2.80356435643564,2.8182045653655,2.11914690600465,0.940630292562206,0.746262526162608,0.727398772786114,8.71708439014223,-3.43509599203328E-20,608.531080488119,609.431947972679,628.730561204918,5.93269884368318,1258.83171949451,-176.759405005925,0,1258.83171949451,15.1699800019606,15.1699800019606,-0.00707038525634093,15.1568441759268,25.47,1014.9,37.62,12.2212489694089 +47374,2874.09301821782,457.12601009901,225,15.1490099009901,15.6034801980198,3.09650495049505,2.09940594059406,749.405940594059,300.619626263366,320.307667386138,20,40,11,32,5306281.37034805,396771.337106636,2,2,5306280.70921566,396771.875752127,61.2367922851409,0,0,15.1490099009901,772.22433562934,6.1930099009901,3.32119447191329,3.50359135267891,2.09940594059406,2.11404614952391,1.60141335899906,0.913499294057409,0.724737759586834,0.728473934546887,8.71973406491424,-2.06105759521997E-19,620.927293649505,621.307997773493,629.470910239683,5.94098838588118,1286.65072488525,-28.9323320454118,0,1286.65072488525,15.148971963533,15.148971963533,-0.00115729394721916,15.1530833722327,25.46,1014.9,37.66,12.3218278631706 +47375,2874.09163425743,457.123348415842,225,15.1480297029703,15.6024705940594,2.84687128712871,1.69,748.559405940594,311.696499012871,329.968412175247,20,40,11,32,5306278.86609104,396767.975886128,2,2,5306278.064174,396768.629233329,65.4244085120186,0,0,15.1480297029703,776.432676745954,5.69374257425742,3.0534468157556,3.29116544686691,1.69,1.70464020892986,1.27097256836139,1.17189871929946,0.929742647654853,0.968051151857868,8.70988418695744,1.37403839681331E-19,641.664911188119,641.175434333379,630.667208791365,5.94137771065743,1328.22145138192,-72.1945821784652,0,1328.22145138192,15.1476980688168,15.1476980688168,-0.00288778877887824,15.1484879818594,25.45,1014.9,37.7,10.8783037798208 +47376,2874.09025009901,457.120693069307,225,15.1360792079208,15.5901615841584,2.40215841584158,-1.05584158415842,749.485148514852,325.810595327723,325.867267847525,20,40,11,32,5306276.36132794,396764.622548963,2,2,5306275.42279079,396765.387204896,69.6062327116611,0,0,15.1360792079208,780.637995750357,4.80431683168317,2.57646455565252,2.91207620903849,-1.05584158415842,-1.04120137522856,-0.727660294565773,1.63783028819102,1.29939613677733,1.31579284495464,8.72065569092189,-0.000432012191087705,651.677863175248,650.768228104696,631.230689242098,5.94606406929388,1351.67299629673,21.4995885409721,0,1351.67299629673,15.1377519850995,15.1377519850995,0.000863205132396474,15.1386512600554,25.44,1014.9,37.74,8.50654430573329 +47377,2874.08888009901,457.118020891089,225,15.1382673267327,15.5924153465347,1.92580198019802,-2.16742574257426,748.544554455446,329.985480162376,311.774807572277,20,40,11,32,5306273.88316815,396761.2487128,2,2,5306272.78198323,396762.145883019,73.7871455390224,0,0,15.1382673267327,784.844072758059,3.85160396039604,2.06554260138056,2.50693499415108,-2.16742574257426,-2.1527855336444,-1.42292306668357,2.14561709527768,1.70225607909997,1.5929478579822,8.709711382081,0.000259207314652623,641.760287734653,641.266808740075,630.674995234621,5.94521069233361,1329.23171749521,-107.682290774501,0,1329.23171749521,15.1386852269385,15.1386852269385,-0.00430921805051333,15.1312201524273,25.43,1014.9,37.78,6.34571251286692 +47378,2874.08752752475,457.115325841584,225,15.1216336633663,15.5752826732673,2.62450495049505,-3.5,749.123762376238,320.382783636634,300.647574348515,20,40,11,32,5306271.43779853,396757.846963093,2,2,5306270.14058886,396758.903840885,77.9689874102225,0,0,15.1216336633663,789.046180156301,5.2490099009901,2.81494506627534,3.10021714122039,-3.5,-3.48535979107015,-2.53419491411485,1.40232708974249,1.11255629844419,1.16718050606687,8.71645077226197,-2.88008127391804E-05,621.030357985149,621.406737377257,629.512550161669,5.95174670762757,1288.70551539511,-89.3891176254211,0,1288.70551539511,15.1192687971767,15.1192687971767,-0.00357535753575257,15.1257044978234,25.42,1014.9,37.82,9.66525042959634 +47379,2874.08617069307,457.112641188119,225,15.1155544554456,15.5690210891089,2.70259405940594,-2.5729702970297,749.133663366337,305.831180664357,302.715895073267,20,40,11,32,5306268.98431295,396754.458018563,2,2,5306267.50222703,396755.665520889,82.1460281752536,0,0,15.1155544554455,793.245289094697,5.40518811881188,2.89870050054004,3.16642605559118,-2.5729702970297,-2.55833008809985,-1.86349288989738,1.31647433868803,1.04444378773035,1.07374326340595,8.71656597551292,0.000201605689174262,608.547075737624,609.447272036742,628.842964583372,5.95414097775716,1263.33731940443,-6.53131737884849,0,1263.33731940443,15.1144800509754,15.1144800509754,-0.000262773802133406,15.1228956702344,25.41,1014.9,37.86,10.0835136497865 +47380,2874.08480613861,457.10997039604,225,15.1086138613862,15.5618722772277,2.51618811881188,-1.67465346534654,748.524752475248,299.709347907921,316.078165223762,20,40,11,32,5306266.51621514,396751.086080754,2,2,5306264.86636341,396752.430267194,86.3191137829214,0,0,15.1086138613861,797.442933924181,5.03237623762376,2.69876851614782,3.00753866045076,-1.67465346534654,-1.66001325641668,-1.17707116547582,1.5100018375588,1.19798160309864,1.17598830813922,8.70948097557909,0,615.787513131683,616.383890014175,629.243047913477,5.95687650685755,1277.9097459817,21.5792574515991,0,1277.9097459817,15.1129985295559,15.1129985295559,0.00086320513239452,15.1189594348955,25.4012623762377,1014.9,37.9126237623762,9.13776689331396 +47381,2874.08343772277,457.107302376238,225,15.1226633663366,15.5763432673267,2.33686138613861,-0.277326732673268,748.990099009901,307.645670167327,328.449175234653,20,40,11,32,5306264.04090484,396747.717465176,2,2,5306262.22924913,396749.193478445,90.4941794238288,0,0,15.1226633663366,801.642268357627,4.67372277227723,2.50642942328588,2.85569692360941,-0.277326732673268,-0.262686523743409,-0.223699402780343,1.70430315679253,1.35213333994428,1.32188905623209,8.71489552837405,0.000259207314652623,636.09484540198,635.839096711195,630.332285165715,5.95134100783962,1319.66031002011,52.3651888531548,0,1319.66031002011,15.1207265954318,15.1207265954318,0.00209265976102462,15.1176743384177,25.4,1014.9,38.04,8.2166304731984 +47382,2874.08207019802,457.104632574257,225,15.1201584158416,15.5737631683168,2.19322772277228,1.8480198019802,749.163366336634,322.343529360396,328.455075558416,20,40,11,32,5306261.56728682,396744.346656375,2,2,5306259.59173602,396745.956200162,94.6698765044128,0,0,15.1201584158416,805.842854413734,4.38645544554456,2.35237337093671,2.73326997058519,1.8480198019802,1.86266001091005,1.23081502451378,1.85743926851407,1.47362606932337,1.44200148947101,8.7169115852658,0,650.798604918812,649.92586482289,631.132509054774,5.95232836460229,1350.68916576638,-51.2953827093807,0,1350.68916576638,15.1207242427213,15.1207242427213,-0.00205181409229832,15.1214891884987,25.4,1014.9,38.18,7.54674768235668 +47383,2874.08070851485,457.101954158416,225,15.1190396039604,15.5726107920792,2.32124752475248,-0.556138613861386,748.683168316832,330.289781526733,316.090441470297,20,40,11,32,5306259.10468337,396740.965308975,2,2,5306256.95345671,396742.717981451,98.8467866242404,0,0,15.1190396039604,810.042418605154,4.64249504950495,2.48968258420443,2.84216365094598,-0.556138613861386,-0.541498404931529,-0.417163941512394,1.72072896790333,1.36516499264646,1.419025822314,8.71132422759439,-0.000633617880261968,646.380222997029,645.692884716675,630.884957201211,5.95276449001418,1340.75920339637,4.64772611870742,0,1340.75920339637,15.1177797274777,15.1177797274777,0.000190613120715875,15.126977735432,25.4,1014.9,38.32,8.13596957018827 +47384,2874.07936891089,457.099242079208,225,15.1249504950495,15.578699009901,2.03560396039604,0.724158415841584,749.232673267327,324.178679075248,302.723260516832,20,40,11,32,5306256.6837306,396737.542759823,2,2,5306254.31161855,396739.475394615,103.029331095069,0,0,15.1249504950495,814.24238194399,4.07120792079208,2.18331206581513,2.59956536029619,0.724158415841584,0.738798624771444,0.506818128196392,2.02482183335791,1.60642142650424,1.65252124554683,8.71771800802249,0.000259207314652623,626.901939592079,627.03193876917,629.822857710428,5.95044554230676,1300.79995665766,185.04537280379,0,1300.79995665766,15.1275033820214,15.1275033820214,0.00739987365072367,15.1311973510276,25.4,1014.9,38.46,6.77415521737344 +47385,2874.07801079208,457.096551287129,225,15.1500594059406,15.6045611881188,1.85546534653465,1.36712871287129,749.188118811881,309.628741403961,300.643257234653,20,40,11,32,5306254.22800938,396734.14610906,2,2,5306251.66859116,396736.231348122,107.213758347667,0,0,15.1500594059406,818.447946300427,3.71093069306931,1.99010217979867,2.44770284189833,1.36712871287129,1.38176892180114,0.765267651478244,2.22576506641592,1.76584262089155,1.73250591977418,8.71719959339319,-0.000172804876435082,610.271998638614,611.09981463234,628.854503870832,5.9405811299418,1264.12805889451,-11.5710821801218,0,1264.12805889451,15.1473148710911,15.1473148710911,-0.000461556056586919,15.1378145755683,25.4,1014.9,38.6,6.29003752582864 +47386,2874.07663207921,457.09389,225,15.1385445544554,15.5927008910891,1.8809603960396,-1.02287128712871,748.727722772277,300.017114117822,311.762777039604,20,40,11,32,5306251.73348507,396730.785523791,2,2,5306249.02774354,396732.989977083,111.39473458874,0,0,15.1385445544554,822.654579358734,3.76192079207921,2.01744720873636,2.46869497470579,-1.02287128712871,-1.00823107819886,-0.822354229704835,2.19514808940261,1.74155220329594,1.6603139184992,8.7118426422237,0.000662418693001148,611.779891157426,612.544433761504,628.966555783465,5.94509781066002,1267.43115850586,18.4357559369088,0,1267.43115850586,15.1401127340457,15.1401127340457,0.000732498992469444,15.144945110642,25.4,1014.9,38.74,6.28014271159682 +47387,2874.07525881188,457.091220693069,225,15.1508118811881,15.6053362376238,2.08121782178218,-2.57920792079208,749.683168316832,304.180683017822,325.858584704951,20,40,11,32,5306249.24922851,396727.41512674,2,2,5306246.3861877,396729.747736747,115.576832117328,0,0,15.1508118811881,826.86103010131,4.16243564356436,2.23223577389899,2.63975551218599,-2.57920792079208,-2.56456771186223,-1.73444013953623,1.98462349111083,1.57452949545539,1.66227528350803,8.72295975594102,0,630.039267722772,630.037619989903,630.008694066674,5.94028697114326,1305.85560748408,120.596760281523,0,1305.85560748408,15.1520583276149,15.1520583276149,0.00482387347645377,15.1489685114671,25.4,1014.9,38.88,7.03646364859493 +47388,2874.07388128713,457.08855,225,15.1683564356436,15.6234071287129,1.76681188118812,1.55415841584158,749.247524752475,318.291482046535,329.971059673267,20,40,11,32,5306246.75711856,396724.042859061,2,2,5306243.74058261,396726.500526408,119.765340347791,0,0,15.1683564356435,831.072728643666,3.53362376237624,1.89501581509649,2.37332599833641,1.55415841584158,1.56879862477144,1.01946959817081,2.32394367725926,1.84373402915516,1.79565119514555,8.71789081289893,-0.000489613816566066,648.262541719802,647.496218571071,631.078873653474,5.93341375821991,1341.30257019946,-12.6170010444292,0,1341.30257019946,15.1649391236153,15.1649391236153,-0.000501040203028739,15.1490681497419,25.4,1014.9,39.02,5.65742861084198 +47389,2874.07250158416,457.085883267327,225,15.150603960396,15.6051220792079,2.15842574257426,-0.793069306930693,749.618811881188,329.376107663367,320.319211421782,20,40,11,32,5306244.26088745,396720.675449287,2,2,5306241.09571219,396723.254217781,123.9526854791,0,0,15.150603960396,835.283885354339,4.31685148514851,2.31504607900817,2.70545877462186,-0.793069306930693,-0.778429098000835,-0.516302819944931,1.90230700858495,1.50922253406968,1.50528768984584,8.7222109348098,2.88008127391804E-05,649.695319085148,648.868874485962,631.146606136505,5.94036530567091,1346.50674784944,-108.916460413259,0,1346.50674784944,15.1531754729928,15.1531754729928,-0.00435687133069084,15.1487063274468,25.4,1014.9,39.16,7.37685576082636 +47390,2874.07112435643,457.083215643564,225,15.1361089108911,15.5901921782178,1.97141584158416,-0.629306930693069,748.90099009901,327.243406191089,305.776904720792,20,40,11,32,5306241.76926314,396717.307008728,2,2,5306238.45217495,396720.009545501,128.137919921882,0,0,15.1361089108911,839.490351966002,3.94283168316832,2.11446630946442,2.54553893919394,-0.629306930693069,-0.614666721763212,-0.404935374003234,2.09878059166278,1.66509766757458,1.57302760122315,8.71385869911544,-1.37403839681331E-19,633.020310911881,632.893574217832,630.171230479929,5.94605823205485,1311.95491425028,-41.4919750713844,0,1311.95491425028,15.1365808254093,15.1365808254093,-0.00165969567254142,15.1438082366831,25.4,1014.9,39.2722277227723,6.79772460274747 +47391,2874.06975613861,457.080533861386,225,15.1496435643564,15.6041328712871,2.14291089108911,1.99871287128713,749.128712871287,313.854173528713,299.714269281188,20,40,11,32,5306239.2946459,396713.921228348,2,2,5306235.80693183,396716.762779425,132.325855106034,0,0,15.1496435643564,843.696409391745,4.28582178217822,2.29840543421385,2.69232029015163,1.99871287128713,2.01335308021698,1.31950963256181,1.91815391449537,1.52179490403276,1.55883205467453,8.71650837388745,0.000460813003826886,613.568442809901,614.257935152975,629.046484427308,5.94074314149868,1270.88339433089,42.9058342813879,0,1270.88339433089,15.1469676502304,15.1469676502304,0.00171279504188076,15.1313260963405,25.4,1014.9,39.22,7.55511131154872 +47392,2874.06837405941,457.077872475248,225,15.1266633663367,15.5804632673267,2.5549702970297,0.485049504950495,749.480198019802,301.518408436634,307.705264180198,20,40,11,32,5306236.79389976,396710.560390645,2,2,5306233.16347834,396713.518209928,136.510956971125,0,0,15.1266633663366,847.902131833991,5.10994059405941,2.74036481841926,3.04149639317099,0.485049504950495,0.499689713880352,0.405515051446781,1.47482362927037,1.17007246728749,1.24936975662142,8.72059808929641,-1.71754799601664E-20,609.223672616832,610.095477913351,628.850052859151,5.94976810467179,1264.39554309696,-225.162026634699,0,1264.39554309696,15.1278665817077,15.1278665817077,-0.00900646995392428,15.1193307848927,25.4,1014.9,39.14,9.33028647128838 +47393,2874.06698346535,457.075231980198,225,15.0998118811881,15.5528062376238,3.06166336633663,2.23554455445545,748.455445544554,301.577556457426,322.403005540594,20,40,11,32,5306234.27691728,396707.22528953,2,2,5306230.52614997,396710.281158408,140.686361554204,0,0,15.0998118811881,852.100385051814,6.12332673267327,3.28382470226989,3.47114266348222,2.23554455445545,2.2501847633853,1.68914884319037,0.937226874153023,0.743562375381044,0.804119331773069,8.70867455282239,-0.000518414629305246,623.98056199802,624.233146482237,629.676043745113,5.96035208231113,1295.55514855166,-191.766245002262,0,1295.55514855166,15.0979440250956,15.0979440250956,-0.00766673201973763,15.1069835670399,25.4,1014.9,39.06,12.1165747388596 +47394,2874.06559257426,457.072599108911,225,15.093702970297,15.546514059406,2.61462376237624,0.349108910891089,748.044554455446,313.977237163366,330.294457754455,20,40,11,32,5306231.75921648,396703.899671784,2,2,5306227.89317889,396707.049455012,144.854867706417,0,0,15.093702970297,856.291499518262,5.22924752475248,2.8043468764191,3.09043730603991,0.349108910891089,0.363749119820946,0.261626890230496,1.40117289470227,1.11164060126411,1.09625740976837,8.70389361790769,1.54579319641498E-19,644.271694917822,643.672833578198,630.76252016968,5.96277271836297,1337.48175049484,24.7449062745319,0,1337.48175049484,15.0907313008528,15.0907313008528,0.000989826705442227,15.0962393852646,25.4,1014.9,38.98,9.60046592604495 +47395,2874.06420306931,457.069961485148,225,15.0738415841584,15.5260568316832,1.71364356435643,1.53435643564356,748.806930693069,327.317241308911,324.124256044555,20,40,11,32,5306229.24419116,396700.568177429,2,2,5306225.25839754,396703.815529686,149.02623987873,0,0,15.0738415841584,860.482543990209,3.42728712871287,1.8379894829041,2.32257589498734,1.53435643564356,1.54899664457342,1.03287265675932,2.35563498420211,1.86887678180046,1.73383736677781,8.71276426823136,-0.000115203250956721,651.441497353466,650.541780544643,631.119274579624,5.97062673025461,1355.53801532187,-136.922623022842,0,1355.53801532187,15.0756699343201,15.0756699343201,-0.00547604265377024,15.0878913535518,25.4,1014.9,38.9,5.51758391267832 +47396,2874.0628219802,457.067317623762,225,15.0720891089109,15.5242517821782,2.14574257425742,-2.17762376237624,748.554455445545,329.33283060099,309.5652554,20,40,11,32,5306226.74489586,396697.22918969,2,2,5306222.62622247,396700.584803308,153.193485794542,0,0,15.0720891089109,864.668544815293,4.29148514851485,2.30144259082596,2.69022347683415,-2.17762376237624,-2.16298355344638,-1.51337589192257,1.8938734006197,1.50253161029806,1.53665365140123,8.70982658533196,0.000230406501913443,638.89808600099,638.524709207274,630.460933401968,5.97132206443342,1329.15642551309,79.9646969845613,0,1329.15642551309,15.0734749534359,15.0734749534359,0.00319685433889906,15.0885539049144,25.4,1014.9,38.82,7.36074710847719 +47397,2874.06144752475,457.064664950495,225,15.0822871287129,15.5347557425743,2.31364356435644,-1.30663366336634,748.163366336634,318.170881533663,300.002933883168,20,40,11,32,5306224.25808682,396693.879442987,2,2,5306219.99376043,396697.353724708,157.361186035129,0,0,15.0822871287129,868.856920860398,4.62728712871287,2.48152686295233,2.83362105906063,-1.30663366336634,-1.29199345443648,-0.893902287025602,1.71815964332386,1.3631265821611,1.46879229400194,8.70527605691917,-0.000259207314652623,618.173815416832,618.67005954029,629.370658095706,5.96729895755637,1284.49560600004,42.4999456205801,0,1284.49560600004,15.0815058327615,15.0815058327615,0.00170190286355512,15.0955034154959,25.4,1014.9,38.74,8.09504279935312 +47398,2874.06007287129,457.06200980198,225,15.0997524752475,15.5527450495049,2.26827722772277,-1.52435643564356,748.331683168317,304.093638609901,304.228845784159,20,40,11,32,5306221.77096809,396690.526603657,2,2,5306217.35966043,396694.120635672,161.531479495216,0,0,15.0997524752475,873.048791789991,4.53655445544555,2.43286864058631,2.79589115064861,-1.52435643564356,-1.50971622671371,-1.04830957686296,1.77261177910228,1.40632696463046,1.40686538248317,8.70723451218543,0.00086402438217541,608.322484394059,609.232104878061,628.839645127195,5.96038657077955,1262.83910731307,253.438119697745,0,1262.83910731307,15.1024933830017,15.1024933830017,0.0101310873661597,15.100360735409,25.4,1014.9,38.66,7.86532816635154 +47399,2874.05869554456,457.059351980198,225,15.1301188118812,15.5840223762376,2.49447524752475,-0.883069306930693,749.326732673267,300.043654050495,318.3577072,20,40,11,32,5306219.27895907,396687.170342946,2,2,5306214.721934,396690.88309556,165.70751430325,0,0,15.1301188118812,877.248225810893,4.9889504950495,2.67548010897875,2.99018668598541,-0.883069306930693,-0.868429098000835,-0.678300964327354,1.54152631868292,1.22299200208927,1.20632436215141,8.71881243890658,-1.20228359721165E-19,618.401361250495,618.888057214362,629.349620870096,5.9484098532271,1282.89148273072,32.9833032519434,0,1282.89148273072,15.129068228605,15.129068228605,0.00131931509982912,15.106445040642,25.4,1014.9,38.58,9.06916864404574 +47400,2874.05731643564,457.056694158416,225,15.1257722772277,15.5795454455446,3.13143564356436,-2.91970297029703,748.856435643564,309.744464984158,329.399508094059,20,40,11,32,5306216.78365077,396683.814020221,2,2,5306212.0828609,396687.643902563,169.885681133098,0,0,15.1257722772277,881.450853808693,6.26287128712871,3.3586598164151,3.53182695197644,-2.91970297029703,-2.90506276136718,-2.18341028073208,0.89970690167893,0.713795367384948,0.680082883242293,8.71334028448614,-0.000576016254783607,639.143973078218,638.760278498383,630.50083410372,5.95011834475987,1325.46647710735,-85.7131441656269,0,1325.46647710735,15.1237836486619,15.1237836486619,-0.00342422856146996,15.1127494810684,25.4,1014.9,38.5037871287129,12.6570104932306 +47401,2874.05594009901,457.054034851485,225,15.1088811881188,15.5621476237624,3.64250495049505,-3.41831683168317,748.034653465347,324.277190568317,327.202467650495,20,40,11,32,5306214.29351273,396680.455936635,2,2,5306209.44498828,396684.406183019,174.061947387604,0,0,15.1088811881188,885.649771602973,7.2850099009901,3.90681348775718,3.96566520988622,-3.41831683168317,-3.40367662275332,-2.65900261187936,0.482470839874292,0.382775156840458,0.383720206698787,8.70377841465673,-2.23281239482163E-19,651.479658218812,650.578340124056,631.14551790639,5.95677046070569,1351.07562152017,-79.1366376946833,0,1351.07562152017,15.1094910302911,15.1094910302911,-0.00316553932620831,15.1150630145406,25.4,1014.9,38.45,15.8150450315344 +47402,2874.05456475248,457.051377524752,225,15.1086534653465,15.5619130693069,3.9060198019802,-2.21207920792079,749.247524752475,330.280509931683,313.786534724753,20,40,11,32,5306211.80516645,396677.100349523,2,2,5306206.80905298,396681.170841348,178.235146474197,0,0,15.1086534653465,889.845760436857,7.8120396039604,4.18944958297143,4.18996945707377,-2.21207920792079,-2.19743899899094,-1.74286634044682,0.397809158285196,0.315607598160463,0.342042608013357,8.71789081289893,-0.000144004063695902,644.067044656436,643.476770744809,630.747644577229,5.95686303021531,1337.89891810199,85.1028089631964,0,1337.89891810199,15.1088110969513,15.1088110969513,0.00340516724939813,15.1115385081837,25.4,1014.9,38.4,17.6366256270327 +47403,2874.05318930693,457.048717326733,225,15.1168613861386,15.5703672277228,3.70173267326733,-3.41524752475248,748.594059405941,322.234998931683,301.486256177228,20,40,11,32,5306209.31670273,396673.741179745,2,2,5306204.17131646,396677.93328885,182.411197258385,0,0,15.1168613861386,894.044722235537,7.40346534653465,3.97033891032234,4.01651160575875,-3.41524752475248,-3.40060731582262,-2.66473665030868,0.477212281164005,0.37860320390832,0.375000801625283,8.71028739833578,0.000576016254783607,623.721255108911,623.984720491765,629.658930977388,5.95362951439384,1293.79452645268,-74.5039241838363,0,1293.79452645268,15.1159726497402,15.1159726497402,-0.00298445686152969,15.1082834610964,25.4,1014.9,38.35,16.2253559242623 +47404,2874.05181623762,457.046057029703,225,15.0929504950495,15.545739009901,3.38625742574257,-2.06326732673267,747.831683168317,307.537663280198,301.610451370297,20,40,11,32,5306206.83264475,396670.38196256,2,2,5306201.53531444,396674.697865284,186.584501978701,0,0,15.0929504950495,898.240361922006,6.77251485148515,3.63197205321876,3.74673313188027,-2.06326732673267,-2.04862711780282,-1.6038057086248,0.702512662226234,0.557348490814735,0.534204301058883,8.70141674801212,-0.000144004063695902,609.148114650495,610.023090473532,628.906202537599,5.96305768037874,1264.27606246569,-82.4336668694526,0,1264.27606246569,15.095346142535,15.095346142535,-0.00329624546612997,15.1076582458009,25.4,1014.9,38.3,14.1739246878727 +47405,2874.05044524752,457.043395940594,225,15.1060891089109,15.5592717821782,3.5710495049505,-3.5,749.19801980198,299.701165593069,314.044935836634,20,40,11,32,5306204.35245777,396667.021824831,2,2,5306198.90040603,396671.463784008,190.756075308334,0,0,15.1060891089109,902.434167120026,7.14209900990099,3.83017307073064,3.90467167264541,-3.5,-3.48535979107015,-2.71527342260408,0.483965907544442,0.383961290207768,0.400838192708724,8.71731479664414,0.000201605689174262,613.746101429703,614.428138949956,629.133714006363,5.95787256714685,1275.03555746261,139.116952737991,0,1275.03555746261,15.1050835212234,15.1050835212234,0.00556318008038248,15.1078397125064,25.4,1014.9,38.25,15.2906721648724 +47406,2874.0490739604,457.040733069307,225,15.1128811881188,15.5662676237624,3.65988118811881,-3.47742574257426,748.59900990099,305.93034570099,327.357501883168,20,40,11,32,5306201.87176227,396663.659454465,2,2,5306196.26420145,396668.228111816,194.929700726184,0,0,15.1128811881188,906.631428451161,7.31976237623762,3.92545058514967,3.98065356126131,-3.47742574257426,-3.4627855336444,-2.7102185553045,0.433491192257202,0.343916451299815,0.354855773724191,8.71034499996127,1.37403839681331E-19,633.287847584159,633.14988466019,630.178869281242,5.95519576978726,1313.97976814312,-31.7908650511683,0,1313.97976814312,15.1123758455053,15.1123758455053,-0.00127166181964942,15.1085841007089,25.4,1014.9,38.2,15.8946306569236 +47407,2874.04771059406,457.038057128713,225,15.1076732673267,15.5609034653465,3.44633663366337,-3.49920792079208,748.079207920792,320.498124149505,329.308637691089,20,40,10.990099009901,32,5306199.40603229,396660.281064793,2,2,5306193.62612312,396664.990139796,199.106292643782,0,0,15.1076732673267,910.829207604076,6.89267326732673,3.69641074665329,3.79865302284226,-3.49920792079208,-3.48456771186223,-2.69258070181453,0.605599455123679,0.480461008747928,0.441455148909112,8.70429682928604,-0.000633617880261968,649.806761840594,648.975640939682,631.056104417095,5.95724654295092,1347.79589584898,-25.5776915587477,0,1347.79589584898,15.1073533967258,15.1073533967258,-0.00101841867354912,15.1117716202737,25.4,1014.9,38.15,14.5239829227928 +47408,2874.04634326733,457.035385049505,225,15.1152871287129,15.5687457425743,3.57677227722772,-3.5,749.153465346535,330.01095260396,318.104477993069,20,40,11,32,5306196.93288209,396656.907350593,2,2,5306190.98737392,396661.751344344,203.283946688454,0,0,15.1152871287129,915.025560326848,7.15354455445545,3.83631110052714,3.91006839004345,-3.5,-3.48535979107015,-2.71568696143526,0.490253308012549,0.388949489496507,0.425120652564543,8.71679638201484,1.71754799601664E-19,648.11543059703,647.355280448731,630.984093021796,5.95425126899184,1345.54004698627,96.8045369533759,0,1345.54004698627,15.1148414861288,15.1148414861288,0.00387216939515716,15.1145852541685,25.4,1014.9,38.1,15.3368579270317 +47409,2874.04496089109,457.03272970297,225,15.1224257425743,15.5760985148515,3.71175247524752,-3.5,748.663366336634,325.722780462376,304.046075545545,20,40,11,32,5306194.43148366,396653.5539765,2,2,5306188.347315,396658.510941343,207.463674277608,0,0,15.1224257425742,919.225811591975,7.42350495049505,3.98108577218057,4.02532567381516,-3.5,-3.48535979107015,-2.73504615966841,0.426966593383526,0.338740067255873,0.333750785217238,8.71109382109248,-0.000288008127391804,629.768856007921,629.778555149887,629.982348524822,5.95143887041173,1305.99159018835,35.4482314424888,0,1305.99159018835,15.1220945005391,15.1220945005391,0.0014200677493489,15.1133516138564,25.4,1014.9,38.05,16.2603797994066 +47410,2874.04357643564,457.030074059406,225,15.1199405940594,15.5735388118812,3.93648514851485,-3.5,748.163366336634,311.576133412871,300.058660720792,20,40,11,32,5306191.92624236,396650.200160529,2,2,5306185.70550654,396655.268390962,211.646171726357,0,0,15.1199405940594,923.426627626078,7.87297029702971,4.22212556512339,4.21639832783675,-3.5,-3.48535979107015,-2.76520322123182,0.422614576295237,0.335287332114457,0.334941540385654,8.70527605691917,0.00083522356943623,611.634794133663,612.405425222488,628.992277853338,5.9524113385823,1267.73666254192,-66.9330825883151,0,1267.73666254192,15.121266738555,15.121266738555,-0.00268356043525116,15.1117056696856,25.4,1014.9,38.0113613861386,17.8610036993919 +47411,2874.04219485149,457.027416435644,225,15.1068514851485,15.560057029703,3.65538613861386,-3.5,749.242574257426,300.577373507921,309.808244325742,20,40,11,32,5306189.42636578,396646.843970358,2,2,5306183.06467579,396652.027040614,215.827121277751,0,0,15.1068514851485,927.625053121129,7.31077227722772,3.92062936451366,3.9764739690773,-3.5,-3.48535979107015,-2.72606346598701,0.497169128214227,0.39443625458902,0.38599307531791,8.71783321127345,8.5877399800832E-20,610.385617833663,611.208666200421,628.952933666819,5.95757003757854,1268.06864655784,-92.4136856614702,0,1268.06864655784,15.1069514753455,15.1069514753455,-0.00369653301963721,15.1111360790806,25.4,1014.9,38.04,15.9033331085446 +47412,2874.04081257426,457.024762574257,225,15.0998217821782,15.5528164356436,3.57278217821782,-3.5,748.881188118812,302.838709893069,324.331104151485,20,40,11,32,5306186.92512336,396643.492440717,2,2,5306180.4255823,396648.787822597,220.005320381126,0,0,15.0998217821782,931.820238407157,7.14556435643564,3.83203147075554,3.90578679840567,-3.5,-3.48535979107015,-2.71520205096184,0.500439363249396,0.39703074243168,0.401420995845336,8.71362829261353,-0.000403211378348525,627.169814044555,627.288572814097,629.851455843301,5.96034178315733,1302.91112168571,15.5816963766978,0,1302.91112168571,15.1014800509754,15.1014800509754,0.000626300253787084,15.1078816217306,25.4,1014.9,38.08,15.3130813442025 +47413,2874.0394109901,457.022136930693,225,15.1040693069307,15.5571913861386,3.50693069306931,-3.5,748.227722772277,316.281080310891,330.274989848515,20,40,11,32,5306184.38749016,396640.175415862,2,2,5306177.78886677,396645.551523256,224.17975474497,0,0,15.1040693069307,936.01529533785,7.01386138613861,3.76140165038093,3.85000064188903,-3.5,-3.48535979107015,-2.70543976722319,0.528861908978212,0.419580176511442,0.42570661186215,8.70602487805039,-8.5877399800832E-20,646.556070159406,645.861353072405,630.882262934473,5.95866922922849,1341.63809297003,-19.3679393589219,0,1341.63809297003,15.1029914714244,15.1029914714244,-0.000774706183489255,15.1030250465251,25.4,1014.9,38.12,14.8670250167561 +47414,2874.03801504951,457.019502475248,225,15.1032178217822,15.5563143564357,3.44237623762376,-3.5,748.668316831683,328.54563140198,322.175120328713,20,40,11,32,5306181.86050928,396636.847599204,2,2,5306175.15111652,396642.313953912,228.355827260021,0,0,15.1032178217822,940.210756806497,6.88475247524752,3.69216297516782,3.79502613080411,-3.5,-3.48535979107015,-2.69513774631695,0.586178154575011,0.465052841561079,0.448502638138338,8.71115142271796,-0.000230406501913443,650.720751730693,649.85127846666,631.099981432405,5.95900380092627,1351.1485690728,13.7425862273114,0,1351.1485690728,15.1031045975885,15.1031045975885,0.00055141652779205,15.1002589833704,25.4,1014.9,38.16,14.4497494702894 +47415,2874.03662435644,457.016859603961,225,15.0945742574257,15.5474114851485,3.78935643564356,-3.5,749.267326732673,328.356391447525,307.478478261386,20,40,11,32,5306179.34343829,396633.509470915,2,2,5306172.51227049,396639.075039611,232.533634606197,0,0,15.0945742574257,944.405576443461,7.57871287128713,4.06432085443829,4.08975817214355,-3.5,-3.48535979107015,-2.74678045766815,0.398158412312491,0.315884683849434,0.345594968472407,8.71812121940084,5.76016254783607E-05,635.834869708911,635.590029983218,630.308209063095,5.96241833651923,1322.04860763912,-74.7707533328012,0,1322.04860763912,15.0976147436526,15.0976147436526,-0.00299126447298261,15.1001422126301,25.4,1014.9,38.2,16.7885899295607 +47416,2874.03524089109,457.014217623762,225,15.0971089108911,15.5500221782178,3.48095049504951,-3.5,748.346534653465,315.887346793069,299.69708859604,20,40,11,32,5306176.83973756,396630.172689504,2,2,5306169.87941822,396635.843482042,236.701952657286,0,0,15.0971089108911,948.598360271843,6.96190099009901,3.73353626943627,3.82749650063139,-3.5,-3.48535979107015,-2.70140946784267,0.550350205458076,0.436628224549862,0.407820114244514,8.70740731706187,-0.000403211378348525,615.584435389109,616.189333712028,629.243755148585,5.96141096908963,1278.16325492403,42.7442101796318,0,1278.16325492403,15.0944835800412,15.0944835800412,0.00171279504187979,15.1003617994568,25.4,1014.9,38.24,14.6984983707625 +47417,2874.03385683168,457.011570990099,225,15.0974455445545,15.5503689108911,3.61952475247525,-3.04326732673267,748.247524752475,302.602479585149,305.98512510198,20,40,11,32,5306174.33504216,396626.830089074,2,2,5306167.24331964,396632.607939951,240.875410261164,0,0,15.0974455445544,952.792154606277,7.2390495049505,3.88216579371276,3.94553225383783,-3.04326732673267,-3.02862711780282,-2.36685175303518,0.489085935904196,0.388023338100534,0.396444641431358,8.7062552845523,0.00086402438217541,608.587604687129,609.48610033336,628.861199006978,5.96128956955762,1263.44292981101,25.0429020006767,0,1263.44292981101,15.1000521517498,15.1000521517498,0.000995272794606759,15.1001078545803,25.4,1014.9,38.28,15.6463293437302 +47418,2874.03246752475,457.008918910891,225,15.1082475247525,15.5614949504951,4.19269306930693,-3.46039603960396,749.237623762376,300.715835474257,320.561396014852,20,40,11,32,5306171.82074997,396623.480528569,2,2,5306164.59998405,396629.363515182,245.060325444365,0,0,15.1082475247525,956.987192807597,8.38538613861386,4.49692452194695,4.43374166598512,-3.46039603960396,-3.44575583067411,-2.76743266227243,0.455638516621659,0.361487348557378,0.367733322161488,8.71777560964797,1.71754799601664E-19,621.277231489109,621.643251704363,629.527792394348,5.95702254586872,1290.56960812623,-7.96524349824295,0,1290.56960812623,15.1045444564258,15.1045444564258,-0.000318596216056853,15.0999814256998,25.4,1014.9,38.32,19.7152863938348 +47419,2874.03108643564,457.006258118812,225,15.0995247524753,15.5525104950495,4.42986138613861,-3.39168316831683,748.653465346535,311.961986352475,330.024545079208,20,40,11,32,5306169.32187637,396620.120385023,1.95049504950495,2,5306161.95760363,396626.12026246,236.809501924855,0,0,15.0995247524752,961.182572675584,8.85972277227723,4.75130231735414,4.63507985931085,-3.39168316831683,-3.37704295938698,-2.73664316843277,0.648398582066157,0.51441630961608,0.504343716786247,8.71097861784153,-0.000345609752870164,641.986531431683,641.483558916175,630.637308136182,5.96046458383411,1333.31144372209,14.7080642317093,0,1333.31144372209,15.1018760905793,15.1018760905793,0.000590900674225564,15.099840272864,25.4,1014.9,38.36,21.5660695108919 +47420,2874.02972029703,457.003576138614,225,15.1034752475248,15.5565795049505,3.49516831683168,-3.27871287128713,748.381188118812,326.001272966337,325.674196691089,20,40,11,32,5306166.85117102,396616.734342587,1,2,5306159.31360148,396622.874852182,2.2584486947415,0,0,15.1034752475247,965.377635464362,6.99033663366337,3.7487857690691,3.84005605735396,-3.27871287128713,-3.26407266235728,-2.5212504653507,0.680254684876949,0.539689805425493,0.546251429093722,8.70781052844021,3.43509599203328E-20,651.675469657426,650.765935024096,631.14852346896,5.95890036501339,1352.59061466542,-32.8469820589582,0,1352.59061466542,15.1024146652289,15.1024146652289,-0.00131386901066459,15.098094133446,25.4,1014.9,38.4050495049505,14.987862856918 +47421,2874.02834554455,457.000908316832,225,15.0981089108911,15.5510521782178,4.20180198019802,-3.48683168316832,748.519801980198,329.926039943564,311.510041088119,20,40,11,32,5306164.36419581,396613.36564724,1,2,5306156.67194015,396619.632172457,6.44095348892902,0,0,15.0981089108911,969.572188159633,8.40360396039604,4.50669439636353,4.44090060952329,-3.48683168316832,-3.47219147423847,-2.78978541543782,0.456433499459069,0.362118059587198,0.372121724638349,8.70942337395361,0.000172804876435082,641.436081031683,640.95620622738,630.603039152007,5.96101929579837,1332.05315462358,-33.6990248488494,0,1332.05315462358,15.0967460052936,15.0967460052936,-0.0013492685902244,15.0962627212385,25.4,1014.9,38.48,19.7753676379056 +47422,2874.02696336634,456.998252970297,225,15.0857326732673,15.5383046534654,4.05910891089109,-3.4480198019802,749.356435643564,320.127874637624,300.554537614852,20,40,11,32,5306161.86318906,396610.012241838,1,2,5306154.03216853,396616.391812376,10.6204663366045,0,0,15.0857326732673,973.764663214638,8.11821782178218,4.35364718974216,4.31879991647603,-3.4480198019802,-3.43337959305035,-2.72743623442655,0.788838911784581,0.625836658354051,0.686349237412827,8.71915804865945,-1.71754799601664E-20,620.682412252475,621.07339195871,629.511083102739,5.96591296209749,1291.4586271048,-44.1472815881364,0,1291.4586271048,15.0883532006666,15.0883532006666,-0.00176589441122451,15.0924270417734,25.4,1014.9,38.56,19.0602812733866 +47423,2874.02558722772,456.995608712871,225,15.0927326732673,15.5455146534654,3.37350495049505,-1.9439603960396,748.504950495049,305.615165031683,302.880125642574,20,40,11,32,5306159.37312414,396606.672846721,1,2,5306151.40362228,396613.165231603,14.7822062222436,0,0,15.0927326732673,977.955611261943,6.7470099009901,3.61829422903555,3.73606607588018,-1.9439603960396,-1.92932018710975,-1.52851012415738,1.23641166075934,0.980924914529216,0.934620251143261,8.70925056907718,-0.000403211378348525,608.495290674257,609.397659951152,628.872182151204,5.96314062616251,1264.07574320152,28.9918785618102,0,1264.07574320152,15.0906616018037,15.0906616018037,0.00116274003638027,15.0871957127903,25.4,1014.9,38.64,14.8940198380731 +47424,2874.02419425743,456.992961287129,225,15.0854653465347,15.5380293069307,4.78973267326733,-3.36534653465347,748.024752475248,299.730829414851,316.348670259406,20,40,11,32,5306156.85195376,396603.328943531,1,2,5306148.76046008,396609.920709521,18.9670873424266,0,0,15.0854653465346,982.147608621679,9.57946534653465,5.1372866928098,4.9404828073655,-3.36534653465347,-3.35070632572361,-2.75322237621006,0.990218651448003,0.785604161513912,0.762551667982663,8.70366321140578,0.000576016254783607,616.079499674257,616.663624370562,629.271810880465,5.96601615702631,1279.63047634177,-60.3103952382393,0,1279.63047634177,15.0872017449269,15.0872017449269,-0.002416702066246,15.0847127659542,25.4,1014.9,38.72,24.4855971128693 +47425,2874.02278821782,456.990332772277,225,15.0739801980198,15.5261996039604,4.61077227722772,-3.2529702970297,747.732673267327,307.884898814852,328.577253653465,20,40,11,32,5306154.30615432,396600.008159265,1,2,5306146.11879371,396606.678023608,23.1496001185485,0,0,15.0739801980198,986.336525398356,9.22154455445544,4.94534051881026,4.78757555352484,-3.2529702970297,-3.23833008809985,-2.64429609979779,0.810527582711717,0.643043676332502,0.648681936421584,8.70026471550255,-0.00080642275669705,636.462152468317,636.190991032644,630.336094962903,5.97056824186796,1322.46000906654,-122.925845388843,0,1322.46000906654,15.0731761592001,15.0731761592001,-0.00491101090307187,15.0855604754669,25.4,1014.9,38.8,22.9920731048415 +47426,2874.02138079208,456.987711188119,225,15.0751188118812,15.5273723762376,4.62668316831683,-3.49970297029703,748.608910891089,322.580559427723,328.322972661386,20,40,11,32,5306151.75763445,396596.695959023,1,2,5306143.48024551,396603.439165285,27.3271759540324,0,0,15.0751188118812,990.522938627179,9.25336633663366,4.96240594075313,4.8010936336096,-3.49970297029703,-3.48506276136718,-2.84750413392945,0.832135237128454,0.66018641870109,0.643365508382179,8.71046020321222,0.000864024382175411,650.903532089109,650.026389095089,631.092886191262,5.970111437249,1353.94538236738,174.607106819193,0,1353.94538236738,15.076397510048,15.076397510048,0.00697780174057125,15.0869320681394,25.4,1014.9,38.88,23.1220838285679 +47427,2874.01997851485,456.985078217822,225,15.0931089108911,15.5459021782178,4.35767326732673,-3.17217821782178,748.693069306931,330.306688663366,315.819612034653,20,40,11,32,5306149.21890743,396593.369744018,1,2,5306140.83874115,396600.196678234,31.5094322300345,0,0,15.0931089108911,994.713460024319,8.71534653465346,4.67387606260279,4.57334363289663,-3.17217821782178,-3.15753800889193,-2.55156513335809,0.582551391011272,0.462175496699584,0.491986931237483,8.71143943084535,-2.91983159322829E-19,646.12630069802,645.449617369267,630.850687717991,5.96299995706705,1342.55736900251,36.0124777469101,0,1342.55736900251,15.0931135182825,15.0931135182825,0.00144049058371449,15.0891302099147,25.4,1014.9,38.96,20.9894918840493 +47428,2874.01856861386,456.982453564356,225,15.0997821782178,15.5527756435644,4.21492079207921,-3.45247524752475,748.613861386139,323.959918928713,302.562703886139,20,40,11,32,5306146.66587481,396590.053632572,1,2,5306138.19647751,396596.953259167,35.692890649577,0,0,15.0997821782178,998.907340332349,8.42984158415842,4.52076513940914,4.45217890057891,-3.45247524752475,-3.4378350385949,-2.76367562887258,0.457674591474864,0.363102697728486,0.35364928891656,8.7105178048377,0.000144004063695902,626.522622814852,626.668538682619,629.820581507398,5.9603600171643,1301.10331504745,7.85552417012768,0,1301.10331504745,15.0977286540535,15.0977286540535,0.000313150126890122,15.091666666145,25.4,1014.9,39.04,19.8733787372033 +47429,2874.01716207921,456.979825544555,225,15.0959504950495,15.548829009901,4.16261386138614,-3.48910891089109,748.217821782178,309.375441050495,300.740588422772,20,40,11,32,5306144.11915482,396586.733436782,1,2,5306135.55473209,396593.710476209,39.8755285962624,0,0,15.0959504950495,1003.10056566238,8.32522772277227,4.46466269751483,4.40743321394143,-3.48910891089109,-3.47446870196124,-2.78646076145571,0.459495632254204,0.364547446534665,0.361277159434382,8.70590967479943,-3.09158639282995E-19,610.116029473267,610.950390162847,628.947444112553,5.96187354796923,1266.68785409889,64.3319478293048,0,1266.68785409889,15.0986388589354,15.0986388589354,0.00257327712969778,15.0956572692464,25.4,1014.9,39.12,19.4862762360864 +47430,2874.01575673267,456.97719,225,15.1107821782178,15.5641056435644,3.77995049504951,-3.48821782178218,748.995049504951,299.962156732673,312.02851020396,20,40,11,32,5306141.57480551,396583.403904545,1,2,5306132.90936054,396590.463242121,44.0639077432789,0,0,15.1107821782178,1007.29627515083,7.55990099009901,4.05423239716031,4.08269160322018,-3.48821782178218,-3.47357761285233,-2.73445860412232,0.449889114180573,0.356925977715362,0.367284498063213,8.71495312999953,-0.000288008127391804,611.990666936634,612.746365076346,629.033319910036,5.95601848433211,1270.65550438978,-97.300625657847,0,1270.65550438978,15.1053941770414,15.1053941770414,-0.00388986918494353,15.1014442762636,25.4,1014.9,39.1823267326733,16.7558222766613 +47431,2874.01435316832,456.974554752475,225,15.0808514851485,15.533277029703,3.34095049504951,0.0228712871287129,748.787128712871,304.374596162376,326.048405994059,20,40,11,32,5306139.03375265,396580.074798523,1,2,5306130.2655127,396587.21787842,48.2498744078623,0,0,15.0808514851485,1011.48919368769,6.68190099009901,3.58337754742502,3.7076469418332,0.0228712871287129,0.037511496058571,0.0173130897245296,0.660928589316474,0.524357170480753,0.49053091303053,8.71253386172944,0.000201605689174262,630.423002156436,630.405252366229,630.020737619799,5.96784152586305,1311.15187942857,6.60701336979151,0,1311.15187942857,15.0851473384962,15.0851473384962,0.000262773802134873,15.1040581662786,25.4,1014.9,39.14,13.8122239128443 +47432,2874.01296168317,456.971900891089,225,15.1164851485149,15.5699797029703,3.24680198019802,-0.00188118811881165,748.381188118812,318.555982879208,329.910448271287,20,40,11,32,5306136.51549212,396576.72290485,1,2,5306127.61959853,396583.969978264,52.4391126689389,0,0,15.1164851485148,1015.68241555237,6.49360396039604,3.48239739978675,3.62952095120842,-0.00188118811881165,0.0127590208110467,0.0504545126113245,0.773747613146116,0.613863760251505,0.575138692149795,8.70781052844022,-0.000288008127391804,648.466431150495,647.691552497716,631.006307688927,5.95378003224256,1344.76591791948,222.112675959043,0,1344.76591791948,15.1127645328889,15.1127645328889,0.00888665599232827,15.1046172411621,25.4,1014.9,39.08,13.2698702441027 +47433,2874.01157386139,456.969233267327,225,15.1193762376238,15.5729575247525,3.78722772277228,1.70990099009901,748.519801980198,329.468015330693,320.063893166337,20,40,11,32,5306134.00432658,396573.353987209,1,2,5306124.96817846,396580.715319517,56.6370683614681,0,0,15.1193762376238,1019.88263232905,7.57445544554455,4.06203767726485,4.0894991382668,1.70990099009901,1.72454119902887,1.36619490543052,0.436836526147842,0.346570519895975,0.455092382381362,8.70942337395361,0.000288008127391804,649.53190849703,648.712320851701,631.075216075116,5.95263953205655,1346.97032516516,-82.6242859013945,0,1346.97032516516,15.1211718458974,15.1211718458974,-0.00330713764445488,15.1046395721019,25.4,1014.9,39.02,16.8185676705355 +47434,2874.01017386139,456.966601287129,225,15.1048118811881,15.5579562376238,3.42739603960396,-0.87009900990099,749.272277227723,327.078221221782,305.561618039604,20,40,11,32,5306131.46980889,396570.029060572,1,2,5306122.32898414,396577.475668087,60.8156671711285,0,0,15.1048118811881,1024.08076304962,6.85479207920792,3.67609577952405,3.78263433947554,-0.87009900990099,-0.855458800971133,-0.647409442178473,0.718895522045587,0.570346067494151,0.497476080954183,8.71817882102632,5.15264398804992E-20,632.639839261386,632.52906771789,630.142515677563,5.95837673757727,1314.53173874493,-117.840063496857,0,1314.53173874493,15.1037938437408,15.1037938437408,-0.00471359017089868,15.1071216427624,25.4,1014.9,38.96,14.4946657314266 +47435,2874.0087629703,456.963974752475,225,15.0967326732673,15.5496346534654,3.58725742574258,0.25950495049505,748.485148514852,313.583766218812,299.736947765347,20,40,11,32,5306128.91499745,396566.710552455,1,2,5306119.68483732,396574.229937377,65.0021072158451,0,0,15.0967326732673,1028.27482757107,7.17451485148515,3.84755707553492,3.91815907458495,0.25950495049505,0.274145159424907,0.231696575870368,0.512878599709948,0.40689958898913,0.48191439343431,8.70902016257526,0.000144004063695902,613.320713984158,614.020601390295,629.120535895627,5.96156289562286,1273.7340492766,76.3406363314201,0,1273.7340492766,15.0977369865699,15.0977369865699,0.00305253297606815,15.1048653266794,25.4,1014.9,38.9,15.4411329294361 +47436,2874.0073619802,456.961336138614,225,15.1123861386139,15.5657577227723,2.86206930693069,-1.52326732673267,748.089108910891,301.391390015842,307.945057318812,20,40,11,32,5306126.37879764,396563.377324062,1,2,5306117.04090682,396570.9844722,69.1882047678004,0,0,15.1123861386138,1032.47078117393,5.72413861386138,3.06974763883107,3.30191652220644,-1.52326732673267,-1.50862711780282,-1.11474878913079,1.14871996362573,0.911353449582917,0.98001946821505,8.70441203253699,6.87019198406656E-20,609.336447334653,610.20352044179,628.880555317859,5.95539005244495,1263.47724440573,30.0553815167587,0,1263.47724440573,15.1131608665817,15.1131608665817,0.00120222418281452,15.097864675472,25.4,1014.9,38.84,10.9489207325913 +47437,2874.00596504951,456.958699306931,225,15.0935841584158,15.5463916831683,2.02171287128713,-3.44356435643564,749.024752475248,301.710707085149,322.639448647525,20,40,11,32,5306123.85007935,396560.046447444,1,2,5306114.40111242,396567.744084155,73.3677536852351,0,0,15.0935841584158,1036.6675509209,4.04342574257426,2.16841300732985,2.5857837110308,-3.44356435643564,-3.42892414750579,-2.32010815354216,2.03280593946681,1.61275573153469,1.43419252855311,8.7152987397524,-0.000172804876435082,624.350155732673,624.587231518449,629.697223292277,5.96281417067436,1297.8556328354,-213.178163873241,0,1297.8556328354,15.0937439466719,15.0937439466719,-0.0085258525852582,15.0942474822284,25.4,1014.9,38.78,6.76782067182352 +47438,2874.00454940594,456.956056930693,225,15.0756435643564,15.5279128712871,2.77035643564357,-0.692574257425743,748.366336633663,314.248138772277,330.310166115842,20,40,11,32,5306121.28682408,396556.708040093,1,2,5306111.74385305,396564.482257593,77.5749546385106,0,0,15.0756435643564,1040.85705207602,5.54071287128713,2.97137987065637,3.22191170837319,-0.692574257425743,-0.677934048495883,-0.496985840558378,1.23182948364144,0.977289578629053,1.13629949138853,8.70763772356378,0.000259207314652623,644.558304888119,643.947416971327,630.760609442174,5.96990890676294,1340.2651475001,-16.7665740520005,0,1340.2651475001,15.0792188020782,15.0792188020782,-0.000672592011673515,15.093220611388,25.4,1014.9,38.72,10.4229327587839 +47439,2874.00312584159,456.953437821782,225,15.0890495049505,15.541720990099,2.2130297029703,-2.78821782178218,747.722772277228,327.47682820198,323.904787465346,20,40,11,32,5306118.70837908,396553.398349022,1,2,5306109.09459592,396561.230253897,81.7694857677585,0,0,15.0890495049505,1045.04577913872,4.42605940594059,2.37361222836405,2.74837502361344,-2.78821782178218,-2.77357761285232,-1.94113614582985,1.82739994864252,1.44979394430167,1.28798543393181,8.70014951225159,-0.00106563007134967,651.381615667327,650.484411580688,631.117102478776,5.96459607118727,1352.08287633582,69.7157708882874,0,1352.08287633582,15.0850774433879,15.0850774433879,0.00279656678538766,15.0911858467254,25.4,1014.9,38.66,7.6649609236162 +47440,2874.00169722772,456.950825742574,225,15.0919702970297,15.5447294059406,2.92041584158416,-3.10643564356436,747.564356435644,329.234379325743,309.312388285148,20,40,11,32,5306116.12042555,396550.097243657,1,2,5306106.44574989,396557.978754834,85.9633660052413,0,0,15.0919702970297,1049.23786436974,5.84083168316832,3.13232793224071,3.35040176981783,-3.10643564356436,-3.0917954346345,-2.29800366622286,1.08359888493291,0.859688708317396,0.915210961609088,8.69830626023629,0.00077762194395787,638.546767610891,638.188132654093,630.450285308913,5.96344516941482,1324.90733660534,34.7627900742012,0,1324.90733660534,15.0927677678659,15.0927677678659,0.00138466816978738,15.0909454553462,25.4,1014.9,38.5924257425743,11.3284890292811 +47441,2874.00029207921,456.948181287129,225,15.0908217821782,15.5435464356436,2.98211881188119,-3.45237623762376,748.544554455446,317.904907739604,299.949153091089,20,40,11,32,5306113.57666281,396546.756586041,1,2,5306103.79516451,396554.72512069,90.1600001342342,0,0,15.0908217821782,1053.43018780208,5.96423762376238,3.19850821198429,3.40273339893013,-3.45237623762376,-3.43773602869391,-2.57723610598338,1.02297558267217,0.811592342458089,0.824932377604375,8.709711382081,-0.000489613816566066,617.854060830693,618.363722326743,629.364895309885,5.96389702125626,1283.74011354966,1.44085857596612,0,1283.74011354966,15.0918349181453,15.0918349181453,6.12685030872456E-05,15.0953663844362,25.4,1014.9,38.48,11.6476679746189 +47442,2873.99887158416,456.945557920792,225,15.0998316831683,15.5528266336634,2.93043564356436,-3.49386138613861,748.89603960396,303.904677374257,304.423597126733,20,40,11,32,5306111.00400392,396543.441684883,1,2,5306101.14566429,396551.472818606,94.3549161327152,0,0,15.0998316831683,1057.62286458976,5.86087128712871,3.14307479409894,3.3592605540645,-3.49386138613861,-3.47922117720876,-2.59676088743888,1.08754102168212,0.862816259016337,0.849506052507957,8.71380109748996,0.000576016254783607,608.32827450099,609.237652023635,628.852951934368,5.96033988165433,1263.79438847688,105.080687361949,0,1263.79438847688,15.0995760219586,15.0995760219586,0.00419893474496191,15.0998637939335,25.4,1014.9,38.36,11.3568528577104 +47443,2873.99743188119,456.942955841584,225,15.1075643564356,15.5607912871287,3.16808910891089,-3.5,748.113861386139,300.105435464356,318.621937189109,20,40,11,32,5306108.39529179,396540.152658585,1,2,5306098.49445215,396548.218415106,98.5525426001635,0,0,15.1075643564356,1061.81923241154,6.33617821782178,3.3979729415131,3.56190296896936,-3.5,-3.48535979107015,-2.64559982996654,0.847612596378903,0.672465603524177,0.679082665344714,8.70470004066438,1.71754799601664E-20,618.727372653465,619.200388702264,629.393103970032,5.95728938798657,1283.40688204617,1.8386426872225,0,1283.40688204617,15.1091940005882,15.1091940005882,7.35222037061602E-05,15.1005939840267,25.4,1014.9,38.24,12.7759983605942 +47444,2873.99600772277,456.940332475247,225,15.1115643564356,15.5649112871287,3.55285148514852,-3.5,748.227722772277,310.000187492079,329.490284910891,20,40,11,32,5306105.81585081,396536.837629833,1,2,5306095.84218398,396544.962715307,102.751841072574,0,0,15.1115643564356,1066.01602842364,7.10570297029703,3.81065456075492,3.88950286699103,-3.5,-3.48535979107015,-2.71046948273464,0.556888537945994,0.44181550435353,0.448193152744988,8.70602487805038,8.64024382175409E-05,639.49047240297,639.092238201775,630.507074063798,5.95571250084582,1326.32553376521,-38.7193799368338,0,1326.32553376521,15.108218606019,15.108218606019,-0.00154941236697875,15.099831708452,25.4,1014.9,38.12,15.2178940849049 +47445,2873.99458247525,456.93770990099,225,15.1007920792079,15.5538158415842,3.47750495049505,-3.5,749.326732673267,324.491744086139,327.03633149901,20,40,11,32,5306103.23437661,396533.523548575,1,2,5306093.18956868,396541.70658941,106.95168913904,0,0,15.1007920792079,1070.21218991979,6.9550099009901,3.72984070824391,3.82477626538036,-3.5,-3.48535979107015,-2.70041242755365,0.56435742746305,0.447741054915425,0.440714301533667,8.71881243890658,3.43509599203328E-20,651.528075585149,650.62472582537,631.139118668983,5.95996033612219,1354.23463095625,-39.4843694834229,0,1354.23463095625,15.1014319184393,15.1014319184393,-0.00157936585737965,15.0979236989583,25.4,1014.9,38,14.6847450759031 +47446,2873.99315059406,456.935101683169,225,15.0897920792079,15.5424858415842,4.04879207920792,-3.5,748.366336633663,330.256634937624,313.516230421782,20,40,11,32,5306100.64029578,396530.227126754,1,2,5306090.54057179,396538.454905167,111.145808228509,0,0,15.0897920792079,1074.40542339063,8.09758415841584,4.34258174502251,4.31022670881038,-3.5,-3.48535979107015,-2.78105492913947,0.423953309719672,0.336349435466941,0.349486158017133,8.70763772356378,-0.000547215442044427,643.772865359406,643.194935642074,630.722041826908,5.96430590584734,1337.37231732214,-92.5157458821713,0,1337.37231732214,15.0905408293304,15.0905408293304,-0.00369653301964137,15.0896163777537,25.4,1014.9,37.88,18.6531613469895 +47447,2873.9917250495,456.932485643565,225,15.091198019802,15.543933960396,4.19223762376237,-3.5,747.628712871287,321.994645989109,301.360300251485,20,40,11,32,5306098.05812914,396526.921169434,1,2,5306087.89165836,396535.203323373,115.339795175836,0,0,15.091198019802,1078.59647366565,8.38447524752475,4.49643602822613,4.43236057592994,-3.5,-3.48535979107015,-2.79691739967692,0.556671312185306,0.441643165182443,0.420734539207434,8.6990550813675,0.000345609752870164,623.354946240594,623.633782482952,629.651467319306,5.96375011952405,1293.56451400954,1.90241666700475,0,1293.56451400954,15.087130771493,15.087130771493,7.35222037086027E-05,15.0804971169183,25.4,1014.9,37.76,19.7743671626673 +47448,2873.99030118812,456.929867128713,225,15.0690495049505,15.521120990099,4.05563366336634,-3.31425742574257,747.688118811881,307.301811778218,301.744647120792,20,40,11,32,5306095.47913746,396523.61218183,1,2,5306085.24252762,396531.951474823,119.534126193052,0,0,15.0690495049505,1082.7858961629,8.11126732673267,4.34991977026366,4.31493199332151,-3.31425742574257,-3.29961721681272,-2.63130546238774,0.470878110451079,0.373577898775421,0.395560858459429,8.69974630087325,-0.000921626007653772,609.04645889901,609.925700345427,628.906776642893,5.9725147456208,1265.82714995234,-213.693079146054,0,1265.82714995234,15.0695862170375,15.0695862170375,-0.00854082933045681,15.0726254731067,25.4,1014.9,37.64,18.7203327213268 +47449,2873.98887811881,456.927252871287,225,15.0492178217822,15.5006943564356,4.18360396039604,-1.79128712871287,748.613861386139,299.686656306931,314.31590429901,20,40,11,32,5306092.90151975,396520.308520745,1,2,5306082.59655324,396528.703500754,123.723459787931,0,0,15.0492178217822,1086.96841535982,8.36720792079208,4.48717588638781,4.42283284999253,-1.79128712871287,-1.77664691978302,-1.42836638381716,0.865312064862737,0.686507730560616,0.646842564782969,8.7105178048377,0.000518414629305246,614.002560605941,614.673836727899,629.175232604323,5.98038612716136,1279.39271631423,16.9800383259912,0,1279.39271631423,15.0523468287423,15.0523468287423,0.000675315056257857,15.0695955393645,25.4,1014.9,37.52,20.0283000615906 +47450,2873.98745524752,456.92463990099,225,15.0591485148515,15.510922970297,4.77707920792079,-2.09425742574257,748.831683168317,306.150518419802,327.516115908911,20,40,11,32,5306090.32424194,396517.006466568,1,2,5306079.95150131,396525.456659017,127.911332868406,0,0,15.0591485148515,1091.15015485377,9.55415841584158,5.12371506291373,4.92833968407072,-2.09425742574257,-2.07961721681272,-1.71500668813531,1.00673824205551,0.798710215524087,0.822778696582068,8.71305227635875,8.5877399800832E-20,633.666634328713,633.512776949544,630.192075949803,5.97644199363374,1319.87683350146,-8.7479083261711,0,1319.87683350146,15.0573834918145,15.0573834918145,-0.000349911228746866,15.0680045099794,25.4,1014.9,37.4189356435644,24.4003747714722 +47451,2873.98603752475,456.922023861386,225,15.0684554455446,15.5205091089109,4.90461386138614,-3.3560396039604,748.366336633663,320.750553079208,329.209068270297,20,40,11,32,5306087.75657137,396513.700757264,1,2,5306077.30849205,396522.212324673,132.095971839512,0,0,15.0684554455445,1095.33328477676,9.80922772277228,5.26050392417448,5.03724820594225,-3.3560396039604,-3.34139939503054,-2.75613685107749,1.11413986893784,0.883918835770481,0.897479164820156,8.70763772356378,0.000144004063695902,649.959621349505,649.122086236732,631.039612952246,5.97276137693247,1352.13521897427,164.97576217516,0,1352.13521897427,15.0671184197627,15.0671184197627,0.00659793702142324,15.0665701343245,25.4,1014.9,37.43,25.4762576347293 +47452,2873.98462188119,456.919404752475,225,15.0786138613861,15.5309722772277,5.55505940594059,-3.41782178217822,747.925742574257,330.063555754455,317.838268782178,20,40,11,32,5306085.19282265,396510.391290868,1,2,5306074.66520751,396518.967652429,136.281046642954,0,0,15.0786138613861,1099.52150628391,11.1101188118812,5.95814729351885,5.59125952916615,-3.41782178217822,-3.40318157324837,-2.86030716219647,1.79638477515255,1.42518761182331,1.35340887710739,8.70251117889621,2.06105759521997E-19,647.901824536634,647.150637615194,630.942398539731,5.96873290181721,1346.16214338117,17.4628113780082,0,1346.16214338117,15.0805080874424,15.0805080874424,0.000698460935199241,15.0697701771723,25.4,1014.9,37.46,31.4188474051397 +47453,2873.9831919802,456.916778811881,225,15.0735247524752,15.5257304950495,4.53226732673267,-2.63316831683168,748.064356435644,325.527194742574,303.857978077228,20,40,11,32,5306082.60281876,396507.072838118,1,2,5306072.00704897,396515.70472212,140.48967124321,0,0,15.0735247524752,1103.70990523881,9.06453465346534,4.8611390685396,4.7207968903822,-2.63316831683168,-2.61852810790183,-2.1170231984516,0.944358329101355,0.749220217390852,0.81607129923147,8.70412402440961,0.000432012191087705,629.385172819802,629.410971870277,629.967877779147,5.97074201129108,1308.36541549868,-63.2975324362117,0,1308.36541549868,15.074733751593,15.074733751593,-0.00253515450554801,15.0740748627626,25.4,1014.9,37.49,22.648813284038 +47454,2873.98176623762,456.914155148515,225,15.0719603960396,15.5241192079208,4.60892079207921,0.143663366336634,748.257425742574,311.312179433663,300.121610934654,20,40,11,32,5306080.02046868,396503.757357129,1,2,5306069.35339886,396512.447325974,144.691157714366,0,0,15.0719603960396,1107.89687966125,9.21784158415841,4.94335468564081,4.78601004863938,0.143663366336634,0.158303575266491,0.0868435597060242,1.07192827624554,0.850429663621771,0.78439871306778,8.70637048780326,-3.60685079163495E-19,611.433790368317,612.212855871307,629.029729742287,5.97136245102319,1271.50393695368,41.3225414970404,0,1271.50393695368,15.0736880697971,15.0736880697971,0.00165288806108312,15.076909537354,25.4,1014.9,37.52,23.369324457261 +47455,2873.98034356436,456.911530891089,225,15.077495049505,15.5298199009901,4.09827722772277,-0.148019801980198,749.178217821782,300.487729345545,310.064366081188,20,40,11,32,5306077.44381916,396500.44123517,1,2,5306066.70170893,396509.192335973,148.889540667369,0,0,15.0774950495049,1112.084682219,8.19655445544555,4.39565764973342,4.35183729744038,-0.148019801980198,-0.13337959305034,-0.120927882956266,0.691006235570579,0.548219702287456,0.589213378385909,8.71708439014223,-0.00077762194395787,610.552095426733,611.368158147142,628.980913511152,5.96917224982881,1270.77423554439,-7.66731853433322,0,1270.77423554439,15.0771971375355,15.0771971375355,-0.000300896426275604,15.0757332958717,25.4,1014.9,37.55,19.3915783377698 +47456,2873.97892861386,456.908904653465,225,15.0835544554455,15.5360610891089,3.98319801980198,-1.30089108910891,748.386138613861,303.005793969307,324.54492029802,20,40,11,32,5306074.88152099,396497.122900247,1,2,5306064.05466034,396505.943043299,153.080575040607,0,0,15.0835544554455,1116.2736262234,7.96639603960396,4.27222802979447,4.25430089246358,-1.30089108910891,-1.28625088017905,-1.03691864686089,0.802965383697088,0.637044097343153,0.699749865733884,8.70786813006569,0.000403211378348525,627.550714267327,627.653489902108,629.870597524574,5.96677384034804,1304.25300392926,3.92243033846901,0,1304.25300392926,15.0819865699441,15.0819865699441,0.000153852018869146,15.0722629798192,25.4,1014.9,37.58,18.5793257395682 +47457,2873.97754306931,456.90628990099,225,15.0690198019802,15.5210903960396,4.35443564356436,-1.31138613861386,748.29702970297,316.551276305941,330.249918803961,20,40,10.970297029703,32,5306072.37343799,396493.819845708,1,2,5306061.43672147,396502.729483259,157.225520398336,0,0,15.0690198019802,1120.46139855563,8.70887128712871,4.67040350941342,4.56928383174473,-1.31138613861386,-1.29674592968401,-1.00839689238705,1.1195523533187,0.88821290783983,0.828766702231854,8.70683130080709,-0.000921626007653772,646.801195109901,646.096192219321,630.87719960916,5.97252750568969,1345.39181482802,-45.9867864409727,0,1345.39181482802,15.0718268797177,15.0718268797177,-0.00183260900347555,15.069319677834,25.4,1014.9,37.61,21.6414662778588 +47458,2873.97617306931,456.903675643564,225,15.0677128712871,15.5197442574258,3.92367326732673,0.689108910891089,747.584158415842,328.670522361386,321.934212292079,20,40,10.1089108910891,32,5306069.89413966,396490.51792145,1,2,5306058.83081874,396499.530697754,161.351409119694,0,0,15.0677128712871,1124.64768837961,7.84734653465347,4.2083840243679,4.20276940917398,0.689108910891089,0.703749119820946,0.524607171985817,1.07289003228443,0.851192686561614,0.845244319317597,8.6985366667382,0.000374410565609345,650.604734653465,649.740129640496,631.075294109935,5.9730454987423,1352.12985400498,-120.153082438911,0,1352.12985400498,15.064992059602,15.064992059602,-0.00480889673126126,15.0676958160056,25.4,1014.9,37.64,18.7026224415127 +47459,2873.97479366337,456.901055247525,225,15.0548415841584,15.5064868316832,4.53253465346535,0.103069306930693,748.821782178218,328.221153205941,307.243222977228,20,40,10,32,5306067.39755732,396487.208035341,1,2,5306056.21412242,396496.318662952,165.494387181016,0,0,15.0548415841584,1128.83025177345,9.06506930693069,4.86142579311487,4.72005154116242,0.103069306930693,0.117709515860552,0.154658835983363,1.06321906486003,0.843520085926026,0.774975595966507,8.71293707310779,-0.000172804876435082,635.464376183168,635.235082907891,630.281318478626,5.97815350124371,1323.9822397782,13.8892233589272,0,1323.9822397782,15.0542141946868,15.0542141946868,0.000556862616958536,15.0645159848982,25.4,1014.9,37.67,22.8661239893218 +47460,2873.97340643564,456.898421683168,225,15.0615940594059,15.5134418811881,4.84516831683168,1.27752475247525,749.004950495049,315.616316758416,299.683778684158,20,40,10,32,5306064.88678246,396483.881483551,1,2,5306053.58360371,396493.089660951,169.659250039135,0,0,15.0615940594059,1133.01237691097,9.69033663366336,5.19674487417762,4.98638825312831,1.27752475247525,1.29216496140511,1.021700233451,1.23061621479262,0.976327014396122,0.993123205473671,8.71506833325049,0.000316808940130984,615.300095442574,615.916925091001,629.231643465486,5.97547143094734,1281.71837500895,64.9018401755381,0,1281.71837500895,15.0613925105382,15.0613925105382,0.00259369996404969,15.0634005604457,25.4,1014.9,37.6873762376238,25.4518354175058 +47461,2873.97201831683,456.895778316832,225,15.0655544554455,15.5175210891089,4.71405940594059,0.561980198019802,748.524752475248,302.444841533663,306.205997637624,20,40,10,32,5306062.37457793,396480.54268957,1,2,5306050.94651997,396489.852600286,173.834507201881,0,0,15.0655544554455,1137.19752438071,9.42811881188119,5.05612239915124,4.87516416184022,0.561980198019802,0.576620406949659,0.481461086529112,0.995259165214766,0.789603125364519,0.943313424154893,8.70948097557909,6.87019198406656E-20,608.650839171287,609.546681403167,628.886149861641,5.97389951203565,1266.71304095991,-28.353327866373,0,1266.71304095991,15.0636296441525,15.0636296441525,-0.00113414806826972,15.0634840897324,25.4,1014.9,37.63,24.1791586035947 +47462,2873.97062574257,456.893137326733,225,15.0640396039604,15.5159607920792,5.54403960396039,1.64277227722772,748,300.816521093069,320.813381807921,20,40,10,32,5306059.85406917,396477.206704538,1,2,5306048.30749902,396486.613161661,178.012831527634,0,0,15.0640396039604,1141.38119597037,11.0880792079208,5.94632786936054,5.58125189089729,1.64277227722772,1.65741248615758,1.39553742209736,1.79251483795704,1.42211734167525,1.33219366850402,8.70337520327838,0.000288008127391803,621.62990290099,621.981124505205,629.570048307444,5.97450423064967,1292.94379481224,62.1388885589098,0,1292.94379481224,15.0665411234193,15.0665411234193,0.00248341665849436,15.0684680317744,25.4,1014.9,37.56,31.3639570706939 +47463,2873.9692290099,456.890497821782,225,15.0644158415842,15.5163483168317,5.61952475247525,2.64920792079208,747.777227722772,312.228425754455,330.075969549505,20,40,10,32,5306057.32582631,396473.872428343,1,2,5306045.66622959,396483.370962987,182.194715847287,0,0,15.0644158415841,1145.56708419919,11.2390495049505,6.02729039387354,5.64545549982054,2.64920792079208,2.66384812972193,2.23990621121983,1.86534388513018,1.47989731022528,1.49306538882958,8.70078313013186,2.06105759521997E-19,642.30439530396,641.788084753642,630.640875891911,5.97435097135221,1335.52682068343,-7.38653847028496,0,1335.52682068343,15.0664940692089,15.0664940692089,-0.000295450337107896,15.0757419612927,25.4,1014.9,37.49,32.0354713203403 +47464,2873.96783514851,456.887853069307,225,15.0841683168317,15.5366933663366,5.64412871287129,1.87069306930693,749.009900990099,326.188502992079,325.477780422772,20,40,10,32,5306054.80302123,396470.531708142,1,2,5306043.0239739,396480.127553672,186.378161688017,0,0,15.0841683168317,1149.75361819259,11.2882574257426,6.053679674227,5.66755799333073,1.87069306930693,1.88533327823679,1.58809863491917,1.88541679879551,1.49582244401884,1.47973916590557,8.71512593487597,0.000316808940130984,651.666283414852,650.757134249034,631.133518388549,5.96652987956068,1355.44102014892,145.776760361055,0,1355.44102014892,15.0819810802862,15.0819810802862,0.00582867692709779,15.081011244006,25.4,1014.9,37.42,32.2885624914074 +47465,2873.96644376238,456.885200693069,225,15.0859405940594,15.5385188118812,5.60078217821782,3.05316831683168,749.034653465347,329.861922176238,311.246368290099,20,40,10,32,5306052.28497344,396467.181570847,1,2,5306040.37900466,396476.880813423,190.565903866336,0,0,15.0859405940594,1153.94441874264,11.2015643564356,6.00718781531857,5.63067153305106,3.05316831683168,3.06780852576154,2.5813389150738,1.84086172292509,1.46047403589788,1.48145834435869,8.71541394300336,5.15264398804992E-20,641.108290466337,640.642170239516,630.580864402225,5.96582951993469,1333.37286764962,39.0076799370965,0,1333.37286764962,15.0914601509656,15.0914601509656,0.0015603045453088,15.0813389070878,25.4,1014.9,37.35,31.8574829669463 +47466,2873.96505019802,456.882548712871,225,15.1165940594059,15.5700918811881,5.31849504950495,3.49366336633663,748.727722772277,319.871358655446,300.466027846535,20,40,10,32,5306049.7628839,396463.831851548,1,2,5306037.73262777,396473.63234528,194.755874733608,0,0,15.1165940594059,1158.13880325859,10.6369900990099,5.7044172832632,5.39210289036372,3.49366336633663,3.50830357526649,2.92902644830877,1.53682278792326,1.21926038853786,1.18395470952335,8.7118426422237,-0.000633617880261968,620.33738650198,620.742843994363,629.464484669629,5.95374700282041,1287.0362835005,33.0001269300303,0,1287.0362835005,15.1065260268601,15.1065260268601,0.0013247611889895,15.0867003778484,25.4,1014.9,37.28,29.1915131160482 +47467,2873.96366267327,456.879891485149,225,15.0705148514851,15.5226302970297,4.95514851485149,2.86049504950495,748.306930693069,305.402090448515,303.048154367327,20,40,10,32,5306047.25210099,396460.475793544,1,2,5306035.08765738,396470.385603617,198.943618736019,0,0,15.0705148514851,1162.33243923219,9.91029702970297,5.31470548832904,5.08040995381875,2.86049504950495,2.8751352584348,2.37621590487272,1.16339268389772,0.922994262538271,0.940902682402042,8.70694650405804,-1.71754799601664E-20,608.450244815842,609.354504285089,628.890136856903,5.97195770176462,1265.5125064797,-342.932608728542,0,1265.5125064797,15.0720906773845,15.0720906773845,-0.0137173370802469,15.0910468177285,25.4,1014.9,37.21,25.8936217234619 +47468,2873.96228514852,456.877234059406,225,15.0744752475248,15.5267095049505,4.71751485148515,3.01118811881188,749.064356435644,299.757096023762,316.618752644554,20,40,10,32,5306044.75984786,396457.119818334,1,2,5306032.45011935,396467.147985302,203.119595172981,0,0,15.0744752475247,1166.51667473824,9.4350297029703,5.05982857977231,4.87842947793628,3.01118811881188,3.02582832774173,2.49906884918205,1.02437134599626,0.812699691298965,0.795114664544087,8.71575955275623,-0.000288008127391804,616.375848668317,616.947538127527,629.296028005862,5.97039223445743,1282.94553601012,460.208633043477,0,1282.94553601012,15.0817836486619,15.0817836486619,0.018410504416781,15.0883110786742,25.4,1014.9,37.14,24.0404909469751 +47469,2873.96090415842,456.874568811881,225,15.1061782178218,15.5593635643564,4.22929702970297,2.22683168316832,748.683168316832,308.126357219802,328.701077210891,20,40,10,32,5306042.26135248,396453.75398192,1,2,5306029.8052624,396463.901382892,207.307159561954,0,0,15.1061782178218,1170.71162352812,8.45859405940594,4.53618454990138,4.46493686615777,2.22683168316832,2.24147189209817,1.82165771483062,0.70992470443284,0.563228940748002,0.567197406614529,8.7113242275944,0.000547215442044427,636.827434430693,636.540945226213,630.366885245986,5.95788856742005,1322.09578458118,-167.364615313427,0,1322.09578458118,15.1067517890403,15.1067517890403,-0.00669868967094303,15.0874050494023,25.4,1014.9,37.07,20.1744165295078 +47470,2873.95952930693,456.871896831683,225,15.0804158415842,15.5328283168317,3.73164356435644,-1.94861386138614,747.955445544554,322.815213886139,328.186694567327,20,40,10,32,5306039.77438034,396450.379960155,1,2,5306027.16099409,396460.65550305,211.493791961692,0,0,15.0804158415841,1174.90534055233,7.46328712871287,4.00242020446633,4.03997296022578,-1.94861386138614,-1.93397365245628,-1.49713422421974,0.597376195889559,0.473936968157412,0.657521937267126,8.70285678864908,-0.000230406501913443,651.001908453465,650.120637442829,631.108805111685,5.96807808076704,1352.51319401476,-209.888716903623,0,1352.51319401476,15.0772330163709,15.0772330163709,-0.00839378492305084,15.0863565829986,25.4,1014.9,37.010099009901,16.5420425544959 +47471,2873.95815742574,456.869227524752,225,15.082495049505,15.5349699009901,2.94377227722772,1.04821782178218,748.524752475248,330.318798953465,315.548525754456,20,40,10,32,5306037.29285239,396447.009364137,1,2,5306024.52057506,396457.414348259,215.674329850315,0,0,15.0824950495049,1179.09156467224,5.88754455445545,3.15737916457626,3.36970601546484,1.04821782178218,1.06285803071204,0.682645768811567,1.20675699743345,0.957397962291899,0.825308598676063,8.70948097557909,0.00100802844587131,645.867324707921,645.201508390344,630.829003197617,5.96718790544545,1342.6515522246,228.446936789105,0,1342.6515522246,15.0831234192726,15.0831234192726,0.00913036848239399,15.0887981159925,25.4,1014.9,37.01,12.0966634699889 +47472,2873.95679178218,456.866545445544,225,15.103702970297,15.5568140594059,4.57670297029703,1.70683168316832,749.148514851485,323.7383509,302.406044892079,20,40,10,32,5306034.82316613,396443.623062908,1,2,5306021.8771894,396454.169551895,219.859564747735,0,0,15.103702970297,1183.28477861613,9.15340594059406,4.90879906460654,4.76039401309542,1.70683168316832,1.72147189209817,1.39811688578988,0.764193291930754,0.606283702557931,0.584329589977528,8.71673878038936,1.03052879760998E-19,626.144395792079,626.306182624115,629.799094622306,5.95881476401998,1300.91372858795,-70.3227169308626,0,1300.91372858795,15.0973707479659,15.0973707479659,-0.00281290505288443,15.0861758761154,25.4,1014.9,37.02,22.7275496034094 +47473,2873.95543009901,456.86386019802,225,15.0794851485149,15.5318697029703,4.0039900990099,-1.38673267326733,748.39603960396,309.123903339604,300.842388275247,20,40,10,32,5306032.36088866,396440.232943843,1,2,5306019.23488974,396450.926088595,224.043080219374,0,0,15.0794851485148,1187.47635925419,8.0079801980198,4.29452883009317,4.27164915441603,-1.38673267326733,-1.37209246433747,-1.04461373721305,0.827389792352196,0.656421552063796,0.660427493141181,8.70798333331665,-0.000748821131218689,609.966291614851,610.806935524262,628.953320194056,5.96837995432081,1268.05916361565,-53.3420066028214,0,1268.05916361565,15.080250857759,15.080250857759,-0.00212805934058223,15.0849398477536,25.4,1014.9,37.03,18.7365263412233 +47474,2873.95406693069,456.861183267327,225,15.0817821782178,15.5342356435644,3.75744554455446,-2.34207920792079,747.89603960396,299.911911938614,312.295174585148,20,40,10,32,5306029.89567622,396436.853132292,1,2,5306016.5964666,396447.687383793,228.220458038842,0,0,15.0817821782178,1191.66459316508,7.51489108910891,4.03009443569414,4.06194254050808,-2.34207920792079,-2.32743899899094,-1.87950001392572,0.79043386229286,0.62710203520277,0.738213461061478,8.70216556914334,-6.87019198406656E-20,612.207086523762,612.9537033786,629.0690500976,5.96747207157449,1271.66949892268,41.4600680907315,0,1271.66949892268,15.0822267424762,15.0822267424762,0.00165833415024204,15.0854157880118,25.4,1014.9,37.04,16.969272687773 +47475,2873.9527239604,456.858478217822,225,15.092594059406,15.5453718811881,2.7449603960396,1.99782178217822,748.821782178218,304.571839127723,326.234764906931,20,40,10,32,5306027.46850804,396433.438963375,1,2,5306013.95639597,396444.446656668,232.400444311201,0,0,15.0925940594059,1195.85539539281,5.48992079207921,2.94414103600582,3.20119886467887,1.99782178217822,2.01246199110807,1.43622125106327,1.33269549652456,1.05731307582376,0.949636246689448,8.71293707310779,-0.000316808940130984,630.806604034653,630.772757742153,630.044325528728,5.96320059319412,1310.98784071885,35.8505811224323,0,1310.98784071885,15.0901608665817,15.0901608665817,0.00143640601683908,15.0816271598407,25.4,1014.9,37.05,10.8709359414945 +47476,2873.95135207921,456.855807722772,225,15.0826633663366,15.5351432673267,3.66841584158416,-2.61118811881188,748.841584158416,318.819369324752,329.845164188119,20,40,10,32,5306024.98701639,396430.066872871,1,2,5306011.3152596,396441.204621336,236.582117947003,0,0,15.0826633663366,1200.04688059632,7.33683168316832,3.93460453270085,3.98631973975933,-2.61118811881188,-2.59654790988203,-2.02810228236949,0.636383833958524,0.504884236978289,0.582150568347,8.71316747960971,0.000230406501913443,648.664533512871,647.881342197108,630.978902268772,5.96712555167349,1349.02602179757,-126.442154935351,0,1349.02602179757,15.0820742084109,15.0820742084109,-0.00505941683277184,15.0798226635298,25.4,1014.9,37.06,16.1298757935715 +47477,2873.94998811881,456.853133168317,225,15.0691683168317,15.5212433663366,3.72683168316832,-1.68871287128713,747.920792079208,329.555388988119,319.806987974258,20,40,10,32,5306022.52028947,396426.689986238,1,2,5306008.67766458,396437.966933054,240.758184630039,0,0,15.0691683168317,1204.23382578334,7.45366336633663,3.99725916211148,4.03530854403774,-1.68871287128713,-1.67407266235727,-1.25933671272385,0.860900970974264,0.683008125992932,0.651127532235706,8.70245357727073,5.76016254783606E-05,649.362376962376,648.549903103539,631.007014139847,5.97247639764949,1350.03716662455,12.0935903266841,0,1350.03716662455,15.0697462993824,15.0697462993824,0.000483340413247246,15.0780313686183,25.4,1014.9,37.07,16.9541650592965 +47478,2873.94863128713,456.850449504951,225,15.0772178217822,15.5295343564357,4.26034653465347,-2.15554455445545,747.856435643564,326.909251130693,305.349289186139,20,40,10,32,5306020.06697299,396423.301987277,1,2,5306006.03997775,396434.729132088,244.934396654624,0,0,15.0772178217822,1208.42088282405,8.52069306930693,4.56948707834744,4.48962069012469,-2.15554455445545,-2.14090434552559,-1.77402147246163,1.12035481352908,0.888849551150679,0.828251253148774,8.70170475613951,0.000604817067522788,632.258540316832,632.163768640339,630.11674855255,5.96928605658228,1313.66618072644,55.4937428026187,0,1313.66618072644,15.0780239192236,15.0780239192236,0.00221519676720228,15.0730259945864,25.4,1014.9,37.08,21.0473270116684 +47479,2873.94727544554,456.847763465347,225,15.0732277227723,15.5254245544554,5.15635643564357,-3.09950495049505,748.341584158416,313.313802711881,299.764409415842,20,40,10,32,5306017.61554559,396419.9110584,0.861386138613861,1.72277227722772,4570517.9405926,341480.786007108,214.329599254701,0,0,15.0732277227723,1212.60936013428,10.3127128712871,5.53051351864818,5.25173111677969,-3.09950495049505,-3.0848647415652,-2.56165351906623,1.375746050611,1.09146785002068,1.16754932507569,8.70734971543639,8.5877399800832E-20,613.078212127723,613.788275270669,629.117033802379,5.97085794302286,1274.95712809667,-105.38194700202,0,1274.95712809667,15.0733892755612,15.0733892755612,-0.00421527301244891,15.068404743736,25.4,1014.9,37.09,27.6943727564806 +47480,2873.94592386139,456.845076930693,225,15.0605247524753,15.5123404950495,5.94406930693069,-3.26742574257426,748.529702970297,301.268636307921,308.187061365347,20,40,10,32,5306015.17201745,396416.519651541,0,0,0,0,0,0,0,15.0605247524752,1216.79456453472,11.8881386138614,6.37538464767884,5.9213134185753,-3.26742574257426,-3.2527855336444,-2.76037687521135,2.21305214920246,1.75575664578567,1.68531596399579,8.70953857720457,-0.000518414629305246,609.455697673267,610.317766857181,628.934156842674,5.97589595323454,1268.81870767735,-49.9292812523326,0,1268.81870767735,15.0605969022645,15.0605969022645,-0.001993268633792,15.0673017609577,25.4,1014.89873762376,37.1037871287129,35.1982434587113 +47481,2873.94457574258,456.842389405941,225,15.0572574257426,15.5089751485149,6.02144554455446,-3.49940594059406,747.574257425743,301.848022346535,322.873497675248,20,40,10,32,5306012.73493241,396413.127123717,0,0,0,0,0,0,0,15.0572574257426,1220.97707583835,12.0428910891089,6.45837548307615,5.98684970306319,-3.49940594059406,-3.48476573166421,-2.96421883939421,2.29810181057233,1.82323201378628,1.80733248696714,8.69842146348724,-3.60685079163495E-19,624.721520021782,624.943012817057,629.726730254714,5.97719239989523,1299.21206075988,-6.70565531946947,0,1299.21206075988,15.0587761984119,15.0587761984119,-0.000268219891297694,15.0674194496503,25.4,1014.89,37.14,35.9516578971468 +47482,2873.94322732673,456.8397,225,15.0650297029703,15.5169805940594,5.92787128712871,-3.33217821782178,747.594059405941,314.519275994059,330.321076536634,20,40,10,32,5306010.29734121,396409.732239846,0,0,0,0,0,0,0,15.0650297029703,1225.16090914418,11.8557425742574,6.35801126230328,5.90775414861855,-3.33217821782178,-3.31753800889193,-2.81437543614563,2.19499057679916,1.74142723841411,1.77880742326228,8.69865186998916,-0.00077762194395787,644.840352530693,644.217629479149,630.770522487335,5.9741116678748,1340.40678473429,85.4931386368762,0,1340.40678473429,15.0645103421233,15.0645103421233,0.00342559008376201,15.0901758690001,25.4,1014.88,37.18,35.011596080754 +47483,2873.94187831683,456.837009207921,225,15.0632178217822,15.5151143564356,5.91132673267327,-3.45217821782178,747.341584158416,327.632505069307,323.682528289109,20,40,10,32,5306007.85868256,396406.335606703,0,0,0,0,0,0,0,15.0632178217822,1229.34598496926,11.8226534653465,6.34026619692274,5.89352007232361,-3.45217821782178,-3.43753800889193,-2.91588989385327,2.17885006313716,1.72862193053257,1.70719925482892,8.69571418708976,-0.000288008127391803,651.315033358416,650.420623165385,631.111401891034,5.97482613416315,1353.57427963764,-92.0243952570588,0,1353.57427963764,15.0627540437212,15.0627540437212,-0.00367883322985816,15.1205423038466,25.4,1014.87,37.22,34.8632011349074 +47484,2873.94050594059,456.834310891089,225,15.234198019802,15.5905046380198,5.77215841584158,-3.45732673267327,749.153465346535,329.131467246535,309.061303571287,20,40,10.8118811881188,32,5306005.37691166,396402.928820436,0,0,0,0,0,0,0,15.1364122699221,1233.53365429892,11.5443168316832,6.19099950692343,5.77929877814482,-3.45732673267327,-3.44268652374341,-2.90823679982415,2.01103118779705,1.59548042016515,1.62630595168944,8.71679638201484,2.88008127391801E-05,638.192770817822,637.848990085158,630.434402859139,5.94614557574538,1323.17878597505,1219.99941104723,0,1323.17878597505,15.1385367542388,15.1385367542388,0.0487997799912238,15.1525646915295,25.4,1014.86,37.26,33.5737277728655 +47485,2873.93902178218,456.831436534654,225,16.8686633663366,15.70545829,6.16355445544554,-3.00009900990099,750,317.63802360396,299.900088965347,20,40,11,32,5306002.69202066,396399.299030518,0,0,0,0,0,0,0,15.2480177572816,1237.7604424016,12.3271089108911,6.61079614340341,6.11882962927843,-3.00009900990099,-2.98545880097114,-2.54331983991329,2.39513268817018,1.90021285142729,1.86229796394903,8.72664625997164,0,617.538112569307,618.061031722527,629.173454964546,5.90240655753575,1272.33141293595,105.945171351941,0,1272.33141293595,15.2471251848991,15.2471251848991,0.00423780685407764,15.1840798723204,25.4,1014.85,37.3,37.5378543531949 +47486,2873.93739346535,456.828221386139,225,18.9767227722772,15.70545829,6.04158415841584,-1.94168316831683,750,303.719193229703,304.621662927723,20,40,11,32,5305999.74772268,396395.239935962,0,0,0,0,0,0,0,15.2480177572816,1241.99600288973,12.0831683168317,6.47997540107975,6.01515982911023,-1.94168316831683,-1.92704295938698,-1.63914962514408,2.26345756505737,1.79574650499561,1.66138452358847,8.72664625997164,0,608.340856157425,609.249705734565,628.563439291701,5.90240655753575,1253.38204283638,0,0,1253.38204283638,15.2480177572816,15.2480177572816,0,15.2149630834778,25.4,1014.84,37.34,36.400327665339 +47487,2873.93559316832,456.824627722772,225,20.9121188118812,15.70545829,5.40531683168317,-2.25425742574257,749.717821782178,300.171884576238,318.885032131683,20,40,11,32,5305996.49332679,396390.703620904,0,0,0,0,0,0,0,15.2480177572816,1246.23156337786,10.8106336633663,5.79753905365335,5.47369657692075,-2.25425742574257,-2.23961721681272,-1.87896553797744,1.74040978430774,1.38077905045751,1.5181065358212,8.72336296731937,-3.43509599203328E-20,619.056916707921,619.51610459949,629.274190909987,5.90240655753575,1274.97737902915,-8.7938457396052E-18,0,1274.97737902915,15.2480177572816,15.2480177572816,0,15.243551428542,25.4,1014.83,37.38,31.0151382276595 +47488,2873.9335849505,456.820697920792,225,22.980396039604,15.70545829,6.09638613861386,-2.37653465346535,750,310.257476859406,329.576520705941,20,40,11,32,5305992.86131195,396385.741674335,0,0,0,0,0,0,0,15.2480177572816,1250.467123866,12.1927722772277,6.53875393900989,6.06175719056886,-2.37653465346535,-2.36189444453549,-2.00020295364999,2.3260073770611,1.84537129497526,1.94792316048794,8.72664625997164,0,639.833997565347,639.421348543986,630.65224805886,5.90240655753575,1318.268261662,0,0,1318.268261662,15.2480177572816,15.2480177572816,0,15.2480177572816,25.4,1014.82,37.42,37.530082509735 +47489,2873.93139475247,456.816432475248,225,25.1216435643564,15.70545829,7.6430594059406,-2.49128712871287,750,324.703323053465,326.866423370297,20,40,11,32,5305988.89971905,396380.355573977,0,0,0,0,0,0,0,15.2480177572816,1254.70268435413,15.2861188118812,8.19765737608671,7.37788789511035,-2.49128712871287,-2.47664691978302,-2.16818045215412,3.97504837590297,3.15366160974849,3.07227517377329,8.72664625997164,0,651.569746423763,650.664648092922,631.430631350751,5.90240655753575,1342.44776025969,0,0,1342.44776025969,15.2480177572816,15.2480177572816,0,15.2480177572816,25.4,1014.81,37.46,54.5382350645496 +47490,2873.92901623762,456.81183980198,225,26.979801980198,15.70545829,8.02981188118812,-2.92940594059406,750,330.227978778218,313.246391104951,20,40,11,32,5305984.5966234,396374.555590456,0,0,0,0,0,0,0,15.2480177572816,1258.93824484226,16.0596237623762,8.61247350049997,7.70689196509936,-2.92940594059406,-2.91476573166421,-2.56540393653096,4.3902478309565,3.48306604913305,3.42224985539287,8.72664625997164,0,643.474369883168,642.90896547961,630.893698777029,5.90240655753575,1325.76862473348,0,0,1325.76862473348,15.2480177572816,15.2480177572816,0,15.2480177572816,25.4,1014.80126237624,37.4936881188119,59.5828713670945 +47491,2873.92647217822,456.806909405941,225,28.9973069306931,15.70545829,7.90830693069307,-1.16910891089109,750,321.752101046535,301.238618774257,20,40,11,32,5305979.99444306,396368.329406165,0,0,0,0,0,0,0,15.2480177572816,1263.17380533039,15.8166138613861,8.48215187132585,7.60367583197763,-1.16910891089109,-1.15446870196123,-1.00801870513029,4.2581883950478,3.37829480263578,3.42940687927102,8.72664625997164,0,622.990719820792,623.284839540182,629.348398403171,5.90240655753575,1283.56557540667,0,0,1283.56557540667,15.2480177572816,15.2480177572816,0,15.2480177572816,25.4,1014.8,37.49,58.123611478873 +47492,2873.92370841584,456.801590990099,225,31.3672574257426,15.70545829,8.11329702970297,-1.57148514851485,750,307.068372754455,301.882996876238,20,40,11,32,5305974.99398466,396361.612564699,0,0,0,0,0,0,0,15.2480177572816,1267.40936581853,16.2265940594059,8.70201652341362,7.77796503280641,-1.57148514851485,-1.55684493958499,-1.36341962928144,4.47954076564015,3.55390787884277,3.54352412298777,8.72664625997164,0,608.951369630693,609.834601160847,625.459062468799,5.90240655753575,1254.63990118431,0,0,1254.63990118431,15.2480177572816,15.2480177572816,0,15.2480177572816,25.4,1014.8,37.48,61.0357742846099 +47493,2873.92072910891,456.795893366337,225,33.390297029703,15.70545829,7.92560396039604,-1.17079207920792,750,299.676945970297,314.587087158416,20,40,11,32,5305969.60275553,396354.416178323,0,0,0,0,0,0,0,15.2480177572816,1271.64492630666,15.8512079207921,8.50070401328863,7.61829499571872,-1.17079207920792,-1.15615187027806,-1.01621466427327,4.27796122036832,3.39398185703934,3.33525027866438,8.72664625997164,0,614.264033128713,614.865503451019,619.417970245108,5.90240655753575,1265.58573354236,0,0,1265.58573354236,15.2480177572816,15.2480177572816,0,15.2480177572816,25.4,1014.8,37.47,58.3795160004644 +47494,2873.91853853659,456.791723170732,225,34.6205853658537,15.70545829,7.07939024390244,-1.68951219512195,750,302.576700326829,324.90442475122,20,40,11,32,5305965.63836649,396349.148671332,0,0,0,0,0,0,0,15.2480177572815,1274.60981864835,14.1587804878049,7.59308708316668,6.8982581002806,-1.68951219512195,-1.67487198619209,-1.45483071424964,3.37233098101573,2.67548712480232,2.89048003865784,8.72664625997165,0,627.481125078049,624.276518340772,615.722190685638,5.90240655753575,1292.81728562395,-6.01746896815803E-11,0,1292.81728562395,15.2480177572816,15.2480177572816,-2.40698758726321E-15,15.2480177572816,25.4,1014.8,37.463,48.0019831228174 diff --git a/DemoData/Results/EvaluationDemo_CSE.csv b/DemoData/Results/EvaluationDemo_CSE.csv new file mode 100644 index 0000000000000000000000000000000000000000..a27de78a102bc78def2651a3782321c793d0ca45 --- /dev/null +++ b/DemoData/Results/EvaluationDemo_CSE.csv @@ -0,0 +1,27 @@ +# Resultfile Programm VECTO_CSE 2.0.1-beta0 Comp 23/06/2014 +# Datafile LS1: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS1.csdat +# Datafile HS: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_HS.csdat +# Datafile LS2: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS2.csdat +# +# Results +# fv_veh:,0.970873786407766,[-] calibration factor for vehicle speed +# fv_veh_opt2:,0.969525450405305,[-] calibration factor for vehicle speed (option2, only if (D)GPS option is used) +# fv_pe:,0.536281150040195,[-] calibration factor for air speed (position error) +# fa_pe:,1,[-] position error correction factor for measured air inflow angle (beta) +# beta_ame:,-0.0146402089298575,[°] calibration factor for beta (misalignment) +# CdxA:,5.59562995689675,[m²] average CdxA before yaw angle correction +# beta:,0.946513052271824,[°] average absolute yaw angle from high speed tests +# delta_CdxA:,0.0806921307322776,[m²] correction of CdxA for yaw angle +# CdxA(0):,5.51493782616447,[m²] average CdxA for zero yaw angle +# CdxA(0)_opt2:,5.50584267299323,[m²] average CdxA for zero yaw angle (yaw angle correction performed before averaging of measurement sections) +# +# Validity criteria: +# Tire temp:,Ok +# RRC:,Invalid test - maximum deviation of RRCs between low speed tests exceeded +# Ambient temp:,Ok +# +SecID [-],DirID [-],F2_ref [N/(m2/s2)],F2_LS1_ref [N/(m2/s2)],F2_LS2_ref [N/(m2/s2)],F0_ref [N],F0 [N],F0_LS1_ref [N],F0_LS1 [N],F0_LS2_ref [N],F0_LS2 [N],CdxA [m2],CdxA0 [m2],delta_CdxA [m2],beta_abs_HS [°],roh_air_LS [kg/m3],RRC [kg/t],RRC_LS1 [kg/t],RRC_LS2 [kg/t],RRC_valid [-],t_tire_LS_min [°],t_tire_LS_max [°],t_tire_HS_min [°],t_tire_HS_max [°] +1,1,3.35994856992982,3.2835744862296,3.44105348696315,1297.70660054197,1311.19111506185,1337.58053717346,1351.74473215944,1256.19946640268,1269.00347420728,5.6545750331982,5.58045709982345,0.074117933374757,0.869398176872766,1.20074873627284,5.34634501554271,5.51170125243401,5.17432609258829,0,40,40,40,40 +2,1,3.63944981827289,3.55540338749871,3.72846674358952,1277.96798305583,1291.21016204452,1318.832824774,1332.79443333568,1235.49086608716,1248.01561410732,6.12495746546903,6.07272988105097,0.0522275844180603,0.612625913973401,1.20071411477506,5.264873239733,5.43443194020664,5.0887486813754,0,40,40,40,40 +2,2,3.1557522469832,3.14290110454808,3.16766172892009,1284.60686023971,1298.0082018041,1291.31134655767,1305.1182679414,1278.2551648806,1291.25800058512,5.31092589525055,5.21666247359047,0.0942634216600872,1.04397660316078,1.20079771787383,5.29259205628583,5.3215831516469,5.26506830004127,1,40,40,40,40 +1,2,3.14454298362732,3.11294236546399,3.17526193310334,1276.54298553437,1289.81992930881,1293.96793978385,1307.67877886918,1259.44960715748,1272.30284438246,5.29206143366922,5.15352123750804,0.138540196161176,1.26005151508036,1.2007602252572,5.25920460472501,5.33202356317709,5.1877791819876,1,40,40,40,40 diff --git a/DemoData/Results/EvaluationDemo_MS_CAL.csv b/DemoData/Results/EvaluationDemo_MS_CAL.csv new file mode 100644 index 0000000000000000000000000000000000000000..8553752adae0b6da1d90e2c31cc96be64f787774 --- /dev/null +++ b/DemoData/Results/EvaluationDemo_MS_CAL.csv @@ -0,0 +1,30 @@ +# Resultfile Programm VECTO_CSE 2.0.1-beta0 Comp 23/06/2014 +# Datafile: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_CAL.csdat +# +# Results +# fv_veh:,0.970873786407766 +# fv_veh_opt2:,0.969525450405305 +# fv_pe:,0.536281150040195 +# beta_ame:,-0.0146402089298575 +# +SecID [-],DirID [-],delta t [s],length [m],delta s [m],v (s) [km/h],v (GPS) [km/h],v_veh_CAN [km/h],v_veh [km/h],vair_ar [m/s],vair_ic [m/s],vair_uf [m/s],beta_ar [°],beta_ic [°],beta_uf [°],valid [-],used [-],vair [m/s],v_wind_avg [m/s],v_wind_1s [m/s],v_wind_1s_max [m/s],beta_avg [°],Satelites [#] +1,1,11.2999999999956,250.64,251.06156111111,79.8499115044556,79.980893015031,82.3803198054819,79.9808930150309,19.2047323410964,38.4094646821927,20.5982718921946,4.58733863837312,4.58733863837312,4.60197884730294,1,1,20.9205584600433,2.05144694029172,2.06078827658996,2.48821778703183,3.59825941679147,10 +2,1,10.9800000000032,250.64,250.912308333333,82.1770491803039,82.2683703366696,84.7364214467697,82.2683703366694,20.7004457082166,41.4008914164331,22.202517661494,4.24483166515014,4.24483166515014,4.25947187407998,1,1,22.3246370976915,1.75288731461579,1.74951110158143,2.50600536187054,3.36080419011004,10 +2,2,10.6399999999994,250.64,251.079975000004,84.8030075188016,84.9518938967139,87.500450713615,84.9518938967137,24.4830147104789,48.9660294209578,26.2595585707733,-2.99528638497653,-2.99528638497653,-2.98064617604665,1,1,25.6975425602985,2.96381046383982,2.95859223911614,4.04875682052309,-2.4118413203022,10 +1,2,10.6200000000026,250.64,250.653049999998,84.9627118643858,84.9671843838193,87.5161999153339,84.9671843838193,24.3854412041392,48.7708824082784,26.1549049063867,-3.94731890874883,-3.94731890874883,-3.93267869981895,1,1,25.6141012814203,2.71482671240834,2.73571044973458,3.11133120406284,-3.17781213238794,10 +1,1,10.6600000000035,250.64,251.305150000007,84.6439024389967,84.8684414245547,87.4144946672915,84.8684414245545,20.423548474433,40.847096948866,21.9055281275412,3.10311152764761,3.10311152764761,3.11775173657748,1,1,22.2395970577366,2.15758798287004,2.15596252162967,3.01095054219496,2.44244069604741,11 +2,1,10.6299999999974,250.64,250.740250000003,84.8827845719871,84.9167556390976,87.4642583082707,84.9167556390975,20.8091613408552,41.6183226817105,22.3191219504917,4.53062969924812,4.53062969924812,4.54526990817795,1,1,22.5683791277934,2.04684556737981,2.04887668260274,2.6707528319135,3.56858096370439,11 +2,2,10.6399999999994,250.64,251.161469444402,84.8030075188016,84.9794525821593,87.5288361596245,84.9794525821593,25.2851661971831,50.5703323943662,27.1199160143656,-3.64835680751174,-3.64835680751174,-3.63371659858185,1,1,26.3810037625997,3.4025448111635,3.39375281916646,4.73290350946043,-2.95609886931979,11 +1,2,10.6299999999974,250.64,250.883047222233,84.8827845719871,84.9650827067666,87.5140351879699,84.9650827067665,25.5052321428571,51.0104642857142,27.3559504512272,-4.3468515037594,-4.3468515037594,-4.33221129482955,1,1,26.5665260811242,3.46402443986083,3.45904609996253,3.87962695918893,-3.52803976643078,11 +1,1,10.6699999999983,250.64,251.389638888875,84.564573570773,84.8172659176031,87.3617838951312,84.817265917603,20.9580187265918,41.9160374531836,22.4787807705212,4.37001872659176,4.37001872659176,4.3846589355216,1,1,22.6897812331174,1.91566960075542,1.91948450178784,2.57163386999929,3.45037263594077,10.9578651685393 +2,1,10.6100000000006,250.64,250.522013888905,85.042789820919,85.0027608286254,87.5528436534842,85.0027608286253,20.1733860117326,40.3467720234652,21.6372133011535,2.06714689265537,2.06714689265537,2.08178710158524,1,1,22.0347477291324,2.1643906782952,2.16218964307667,2.90537070431992,1.62906522257328,11 +2,2,10.6399999999994,250.64,251.287411111072,84.8030075188016,85.0221014084504,87.5727644507042,85.0221014084503,22.9512412102254,45.9024824204507,24.6166360621392,-2.84734272300469,-2.84734272300469,-2.83270251407481,1,1,24.3981916289737,2.2784365004619,2.28011873674138,3.15243551237854,-2.26319115383399,11 +1,2,10.6200000000026,250.64,250.701952777805,84.9627118643858,84.9837347130762,87.5332467544686,84.9837347130761,22.0684923173472,44.1369846346943,23.6698328792003,-2.97273753527752,-2.97273753527752,-2.95809732634764,1,1,23.6448681120931,2.53164629963977,2.53163960024531,4.7728272572806,-2.35774344767187,11 +1,1,10.6500000000015,250.64,251.246211111125,84.7233802816786,84.9282185741085,87.476065131332,84.9282185741085,21.0841275797373,42.1682551594747,22.6140403721115,2.67296435272045,2.67296435272045,2.68760456165032,1,1,22.8054085139022,1.75620604512164,1.75093033284061,2.11669361295276,2.11854799714766,11 +2,1,10.6199999999953,250.64,250.740211111053,84.962711864444,84.9967460018813,87.546648381938,84.9967460018812,19.9295717047883,39.8591434095767,21.3757072673048,3.18634995296331,3.18634995296331,3.20099016189319,1,1,21.8271499334462,2.29191380301035,2.29455661202474,2.69500466966294,2.49381558235465,11 +2,2,10.6400000000067,250.64,251.261583333351,84.8030075187436,85.0132826291077,87.5636811079812,85.0132826291076,23.8435797078967,47.6871594157934,25.5737246936518,-3.60260093896714,-3.60260093896714,-3.58796073003725,1,1,25.1563346989473,2.92164117409983,2.91396854500408,3.89769192883227,-2.88661461847264,12 +1,2,10.6200000000026,250.64,250.772691666763,84.9627118643858,85.0077262464721,87.5579580338664,85.0077262464719,21.655141841778,43.310283683556,23.2264887423845,-2.08508936970837,-2.08508936970837,-2.0704491607785,1,1,23.295669766807,2.16141978932772,2.15602575168964,2.55739486061537,-1.63997716422231,11.9736594543744 +1,1,11.010000000002,250.64,251.42269444454,81.9531335149712,82.2046869328493,84.6708275408348,82.2046869328492,20.0300408348458,40.0600816696916,21.4834666685263,3.54302177858439,3.54302177858439,3.55766198751427,1,1,21.7519193705405,1.83603227630758,1.83442035531111,2.30425457666498,2.79093211919706,12 +2,1,10.6399999999994,250.64,250.544680555595,84.8030075188016,84.770491079812,87.3136058122065,84.7704910798119,19.6614818466009,39.3229636932019,21.0881641923792,0.206863849765258,0.206863849765258,0.221504058695125,1,1,21.5861236805638,2.49029999209866,2.49612245034897,3.20720217945855,0.182834531633771,12 +2,2,10.6499999999942,250.64,251.546991666797,84.7233802817365,85.0298949343339,87.5807917823639,85.0298949343337,23.1302271732176,46.2604543464353,24.8086096582882,-3.6860225140713,-3.6860225140713,-3.67138230514141,1,1,24.5506634748299,2.37368634609562,2.37794065535816,3.44736325358289,-2.93355515524658,9.98874296435272 +1,2,10.6100000000006,250.64,250.579952777869,85.042789820919,85.0224472693033,87.5731206873824,85.0224472693032,21.0989849864689,42.1979699729379,22.6299758664488,-2.67347457627119,-2.67347457627119,-2.65883436734131,1,1,22.8228437304162,2.30302448136356,2.29654970166439,2.88201437100777,-2.09526320787307,10 diff --git a/DemoData/Results/EvaluationDemo_MS_MEAS.csv b/DemoData/Results/EvaluationDemo_MS_MEAS.csv new file mode 100644 index 0000000000000000000000000000000000000000..daaca5523e7dffa7deb38d3726ba527b539b80b8 --- /dev/null +++ b/DemoData/Results/EvaluationDemo_MS_MEAS.csv @@ -0,0 +1,44 @@ +# Resultfile Programm VECTO_CSE 2.0.1-beta0 Comp 23/06/2014 +# Datafile LS1: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS1.csdat +# Datafile HS: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_HS.csdat +# Datafile LS2: ,d:\Work\vecto-cse.git\CSE\bin\Debug\DemoData\DataDemo_LS2.csdat +# +# Results +# fv_veh:,0.970873786407766 +# fv_veh_opt2:,0.969525450405305 +# fv_pe:,0.536281150040195 +# beta_ame:,-0.0146402089298575 +# +SecID [-],DirID [-],RunID [-],HeadID [-],delta t [s],length [m],delta s [m],v (s) [km/h],v (GPS) [km/h],v_veh_CAN [km/h],v_veh [km/h],vair_ar [m/s],vair_ic [m/s],vair_uf [m/s],beta_ar [°],beta_ic [°],beta_uf [°],valid [-],used [-],val_User [-],val_vVeh_avg [-],val_vVeh_f [-],val_vVeh_1s [-],val_vWind [-],val_vWind_1s [-],val_tq_f [-],val_tq_1s [-],val_beta [-],val_dist [-],vair [m/s],v_wind_avg [m/s],v_wind_1s [m/s],v_wind_1s_max [m/s],beta_avg [°],beta_abs [°],v_air_sq [m2/s2],n_eng [rpm],omega_wh [rad/s],omega_p_wh [rad/s2],tq_sum [Nm],tq_sum_1s [Nm],tq_sum_1s_max [Nm],tq_sum_1s_min [Nm],tq_sum_float [Nm],tq_sum_float_max [Nm],tq_sum_float_min [Nm],t_float [s],F_trac [N],F_acc [N],F_grd [N],F_res [N],F_res_ref [N],v_veh_1s [km/h],v_veh_1s_max [km/h],v_veh_1s_min [km/h],v_veh_avg [km/h],a_veh_avg [m/s2],v_veh_float [km/h],v_veh_float_max [km/h],v_veh_float_min [km/h],t_amb_veh [°C],t_amb_stat [°C],p_amb_stat [mbar],rh_stat [%],vp_H2O [Pa],rho_air [kg/m3],t_tire [°C],p_tire [bar],F0_ref_singleDS [N],F2_ref_singleDS [N],F0_singleDS [N],CdxA_singleDS [m2],RRC_singleDS [kg/t],Satelites [#] +1,1,1,1,59.7300000000032,250.64,250.726831617744,15.106378704168,15.1117229661867,15.5649511004117,15.1116030101085,1.62270907264814,3.24541814529629,1.74045657532081,-0.263063274188148,-0.263063274188148,-0.24842306525842,1,1,1,1,1,1,1,1,1,1,1,1,2.24738345697663,1.95431783836351,1.95348939712671,2.90715154141816,-0.037480811860909,0.037480811860909,5.24422952557452,753.572908344445,8.76821893629334,3.94118922918938E-05,649.814124405474,649.821924019223,671.677933868317,628.322062980198,649.991110168506,651.340679788196,648.659331936087,5.95571730971224,1357.35353974161,5.26987934626099,0,1357.35353974161,1343.13057312342,15.1115785609278,15.168015183697,15.0542772277228,15.1115785609278,0.00021052908772625,15.1111659065588,15.153818967023,15.0668542713567,20,24.5131035152327,1015.31673920317,40.2970909943087,1242.60289413574,1.20098449086979,40,0,0,0,0,0,0,9 +2,1,1,1,59.8600000000006,250.64,250.739023704342,15.0735716672234,15.0795607148817,15.5319183814195,15.0795324091448,2.31960280607983,4.63920561215967,2.48791852096192,-3.18661433105061,-3.18661433105061,-3.17197412212056,1,1,1,1,1,1,1,1,1,1,1,1,2.83841411741839,1.36094855816592,1.36180084828266,2.3698264614285,-2.23268326961832,2.23268326961832,8.26288926514582,751.93178454339,8.74912359378589,-1.80395942968447E-06,650.26711997117,650.255911223759,671.677937109901,628.322070013861,650.015482020371,651.340676102529,648.659459930354,5.9683846205946,1358.22431254822,0.547556190404666,0,1358.22431254822,1343.99631480419,15.0796453518744,15.1354177625685,15.022405940594,15.0796453518744,2.19351315455758E-05,15.0795327168264,15.1131859702721,15.0412998324957,20,24.3868784199086,1015.2976496575,40.4645900952063,1238.37310552525,1.20098083319451,40,0,0,0,0,0,0,9 +2,2,1,2,59.6399999999994,250.64,250.492037207314,15.129175050302,15.1292759430005,15.5738644361205,15.1202567340975,4.91819413243924,9.83638826487848,5.27506961093089,3.33368818105616,3.33368818105616,3.34832838998623,1,1,1,1,1,1,1,1,1,1,1,1,5.05174092782569,0.900719632899028,0.901792006758928,1.73867850402407,2.75887945201887,2.75887945201887,25.7642673512439,756.269404861693,8.79959409795636,-3.26731097746914E-05,650.320786099681,650.30732544251,671.677936851485,628.322065603961,650.018255085866,651.340678446206,648.659326509949,5.95233239783558,1362.49953846259,-13.9280096570285,0,1362.49953846259,1348.08557731055,15.1202597749383,15.1980242524272,15.0665841584158,15.1202597749383,-0.000556876494215242,15.1202052705223,15.1980056617822,15.0784371859296,20,24.3550963956394,1015.29999999989,39.6467303101425,1211.03528843933,1.20110660615455,40,0,0,0,0,0,0,10 +1,2,1,2,59.8600000000006,250.64,250.608622424302,15.0735716672234,15.0716879906459,15.5238357182128,15.0716851633129,4.67209403708034,9.34418807416068,5.01111192660276,-0.113382328378151,-0.113382328378151,-0.0987421194484215,1,1,1,1,1,1,1,1,1,1,1,1,4.83970363521116,1.04003741474692,1.04029360481013,2.49864926700589,-0.029634914842188,0.029634914842188,24.496581550344,753.354852179723,8.76568173760755,4.85866391624739E-06,649.729929710307,649.741262257441,671.677936560396,628.322064952475,649.984812693241,651.340679956156,648.663656388027,5.97149605948292,1360.38056762515,0.0790778191319301,0,1360.38056762515,1346.11715725334,15.0717099232304,15.1217131114102,15.0033663366336,15.0717099232304,3.12374648189884E-06,15.0716225536874,15.0991286690438,15.0286951423785,20,24.3445214631687,1015.29977125428,40.5024477701687,1236.39003429464,1.20099227533882,40,0,0,0,0,0,0,10 +1,1,0,1,10.6600000000035,250.64,251.423377777781,84.6439024389967,84.9084086223055,87.4556608809746,84.9084086223054,19.9798477037957,39.9596954075914,21.429631408439,-1.53388940955951,-1.53388940955951,-1.51924920062963,1,1,1,1,1,1,1,1,1,1,1,1,21.8700963902126,2.40766868582701,2.38822493589101,3.05582850670837,-1.1797199876126,1.1797199876126,480.795573940845,1838.3045923149,53.4741129840452,0.000886023128550696,1350.28020994555,1352.58759041953,1471.82674178416,1322.90266335842,1352.68804114463,1473.47785721429,1322.99722054095,1.05996755436039,3061.38571946573,177.587821722908,0,3061.38571946573,3029.52400638752,84.9076552933643,85.0318019801979,84.7022277227722,84.9076552933643,0.00709632818952046,84.9076306154327,85.0317714285713,84.7003523809523,20,24.7999999999995,1015.19999999998,39.2380181818182,1230.87592958189,1.20089851527849,40,0,1282.89516919179,3.6318579117064,1296.38746623384,6.11218078022169,5.28598355243155,10 +2,1,0,1,10.6199999999953,250.64,250.654388888893,84.962711864444,84.9676519285041,87.5166814863593,84.967651928504,20.1423078289652,40.2846156579304,21.6038800139622,-0.977902163687676,-0.977902163687676,-0.963261954757805,1,1,1,1,1,1,1,1,1,1,1,1,22.011741221705,2.06001511526754,2.07095104999109,3.03360272667162,-0.747604754157067,0.747604754157067,486.01307705682,1839.36829727187,53.5050549069934,-0.000403631333755354,1354.01970266143,1351.92740057768,1377.09741033168,1260.4122496495,1351.82909167851,1377.00285289143,1260.03585088762,1.0592273082633,3069.49838687711,8.7853914967811,0,3069.49838687711,3037.69772478546,84.9654666132651,84.9924455445544,84.9341683168316,84.9654666132651,0.000354715622078929,84.9653998297718,84.993038095238,84.936057142857,20,24.7999999999995,1015.19999999998,39.6455870178739,1243.66114894807,1.20084100063811,40,0,1273.73863674255,3.62865489844446,1287.07298915347,6.10679031711041,5.24800403324554,10 +2,2,0,2,10.6399999999994,250.64,251.387227777792,84.8030075188016,85.0558347417835,87.6075097840374,85.0558347417833,20.0731883150798,40.1463766301597,21.5297450291688,-0.605370892018779,-0.605370892018779,-0.590730683088914,1,1,1,1,1,1,1,1,1,1,1,1,21.9581147369049,2.28906726783862,2.29111353738485,3.05088363489283,-0.45789580766189,0.45789580766189,484.346870364174,1841.35539906103,53.562857354982,-0.000887687021749852,1350.26075002479,1348.68642415558,1377.09741214257,1264.21574757327,1348.63114589777,1377.00285469429,1266.05193025143,1.05812888910445,3061.12314251572,-59.4766567588282,0,3061.12314251572,3029.06083709702,85.0567827732069,85.1127227722771,85.0202376237623,85.0567827732069,-0.0023718216892112,85.0568225262687,85.113638095238,85.0202476190475,20,24.9000000000004,1015.19999999998,38.4366625352113,1212.95670692505,1.20097912536562,40,0,1251.02521929721,3.67107255968126,1264.26719587832,6.17817648365561,5.15501405047226,10 +1,2,0,2,10.6200000000026,250.64,250.800858333353,84.9627118643858,85.0172822201318,87.5678006867358,85.0172822201316,20.2594524930009,40.5189049860019,21.7295249642625,-0.497488240827846,-0.497488240827846,-0.482848031897988,1,1,1,1,1,1,1,1,1,1,1,1,22.1144032552198,2.01398549694328,2.00771454024154,3.0360147224065,-0.375294958650022,0.375294958650022,490.709297976465,1841.18156161806,53.5578006287435,-2.73648361868041E-05,1345.80581627018,1344.27542777563,1377.09715162772,1288.58982993564,1344.22355667987,1377.00259509048,1287.65351335619,1.05860893453104,3052.10685556288,-9.51404570066983,0,3052.10685556288,3020.37082846218,85.0165908460082,85.0699405940592,84.9545544554454,85.0165908460082,-0.000380329660435012,85.0165664919588,85.0688380952379,84.9557238095237,20,24.9000000000004,1015.19999999998,39.0860387582314,1233.44925734636,1.20088693909691,40,0,1241.76750148273,3.62472751074576,1254.8151599717,6.10018077890929,5.11647363902832,10 +1,1,0,1,10.6500000000015,250.64,251.158566666667,84.7233802816786,84.8985131332078,87.4454685272045,84.8985131332077,19.340864290272,38.6817285805441,20.7442818887169,-0.911735459662289,-0.911735459662289,-0.897095250732422,1,1,1,1,1,1,1,1,1,1,1,1,21.3257775919177,2.53096993224293,2.51625398859699,3.02894466962151,-0.693916705659192,0.693916705659192,455.697480851112,1837.28846153846,53.4445549379123,-0.000197836727282034,1354.32378870535,1355.76417537622,1409.81004072277,1322.90258788416,1355.82883493424,1411.18978576857,1322.99714532952,1.06009094986934,3069.23323144874,243.402201084752,0,3069.23323144874,3036.86182212686,84.8979824735755,85.0562277227722,84.6816831683167,84.8979824735755,0.00973767639428036,84.8979487447511,85.0585714285714,84.6794761904761,20,24.7999999999995,1015.19999999998,38.0386008442777,1193.25084047925,1.20106777271609,40,0,1280.65666182378,3.8528183483661,1294.3078133838,6.48404283181453,5.27750382623363,9.9859287054409 +2,1,0,1,10.6200000000026,250.64,250.754355555567,84.9627118643858,85.0016208842897,87.5516695108185,85.0016208842897,19.9102160029727,39.8204320059454,21.3549470712458,-1.33769520225776,-1.33769520225776,-1.32305499332789,1,1,1,1,1,1,1,1,1,1,1,1,21.8163260005174,2.24537464371826,2.25271737978016,3.02423783036218,-1.02475812164685,1.02475812164685,477.570123820559,1839.81702728128,53.5181079338546,-0.000205236271401027,1348.63581035353,1346.25019277279,1377.0971608297,1273.87155380198,1346.16052559574,1377.00260426095,1275.94434049048,1.05880418403155,3056.8457254496,-1.38934741685277,0,3056.8457254496,3024.84367435285,84.9994023266859,85.0644554455444,84.919910891089,84.9994023266859,-5.39447171403113E-05,84.999321605519,85.0631142857141,84.9212666666666,20,24.7999999999995,1015.19999999998,38.7102634054563,1214.32054067474,1.20097299012418,40,0,1273.2600593313,3.66687428428917,1286.73081612567,6.17111105907528,5.24660883231669,9.82596425211665 +2,2,0,2,10.6399999999994,250.64,251.430513888892,84.8030075188016,85.0704253521128,87.6225381126761,85.0704253521127,21.3778530515681,42.7557061031362,22.9290792397704,0.269408450704225,0.269408450704225,0.284048659634077,1,1,1,1,1,1,1,1,1,1,1,1,23.0690877334057,1.69051072625467,1.68385819130462,2.42767941283422,0.22999332940625,0.22999332940625,534.29382190504,1841.12253521127,53.5560836201698,-0.000983284085630606,1348.32731184394,1347.32738738833,1377.09716986931,1322.9026784901,1347.28289934365,1377.00261326952,1322.99723562,1.05794739423801,3055.82940190916,-52.2221059212319,0,3055.82940190916,3023.84553456977,85.0711874029655,85.110613861386,85.011613861386,85.0711874029655,-0.00208078319569064,85.0712014755197,85.1098476190474,85.0116190476189,20,24.9000000000004,1015.19999999998,38.500985915493,1214.9865781568,1.20096999393732,40,0,1257.8413580746,3.30543332167801,1271.14581780004,5.56282941409794,5.18306143853228,9 +1,2,0,2,10.6200000000026,250.64,250.7602138888,84.9627118643858,85.0035522107245,87.5536587770462,85.0035522107243,20.2363475488805,40.4726950977611,21.7047434722535,-1.13737535277517,-1.13737535277517,-1.1227351438453,1,1,1,1,1,1,1,1,1,1,1,1,22.0938380980929,2.14649827534867,2.13614856484336,2.86776173374729,-0.874135686992451,0.874135686992451,490.22078786582,1840.41204139229,53.5354161927427,-0.000259965943774634,1354.38083325099,1354.66302372449,1377.09740442277,1322.90258140594,1354.65430572322,1377.00284700286,1322.99713887524,1.05877977903497,3070.7742148574,-15.2086177363569,0,3070.7742148574,3038.48100454574,85.0029402866908,85.0260396039603,84.970712871287,85.0029402866908,-0.000606198907754965,85.0029349639385,85.0271333333332,84.971257142857,20,24.9000000000004,1015.19999999998,38.0752126058326,1201.55032855763,1.20103043725406,40,0,1240.83629280784,3.66718103292815,1254.02399656707,6.17162729709481,5.11324769242434,9 +1,1,0,1,10.6699999999983,250.64,251.377986111094,84.564573570773,84.8134119850188,87.3578143445692,84.8134119850187,20.0235470245318,40.0470940490637,21.4765016523998,-0.532265917602996,-0.532265917602996,-0.51762570867314,1,1,1,1,1,1,1,1,1,1,1,1,21.9021241357672,2.2875295118389,2.28278604295591,3.01069684756015,-0.393929340083123,0.393929340083123,481.997643811601,1835.30805243446,53.3869471722434,3.40459045722986E-05,1353.94750618277,1355.92486768707,1437.33123961881,1322.90281448911,1356.00518452229,1439.19814367524,1322.99737114571,1.06115530902951,3068.14385942068,241.610870526355,0,3068.14385942068,3036.54268305222,84.8127714057922,84.9480198019801,84.5772475247523,84.8127714057922,0.00966407502173544,84.8128014807092,84.9475428571427,84.5756190476189,20,25.0999999999996,1015.09999999999,38.6257806179775,1233.5472622799,1.20076766098096,40,0,1282.83635395829,3.63748569940111,1296.18677978947,6.12165198108336,5.28516525908042,10 +2,1,0,1,10.6200000000026,250.64,250.702419444424,84.9627118643858,84.9839096895579,87.5334269802447,84.9839096895577,19.5422784571214,39.0845569142427,20.9603111307816,-1.06029162746943,-1.06029162746943,-1.04565141853956,1,1,1,1,1,1,1,1,1,1,1,1,21.5022631237575,2.43882853385202,2.44217943292068,3.00989256668419,-0.808636918391304,0.808636918391304,463.59686759374,1839.15616180621,53.4988841364333,-5.47296723736082E-05,1350.26399923706,1348.71336783289,1377.09740668416,1307.08685190792,1348.64561957761,1377.00284925619,1303.16536753619,1.0590248708328,3060.06446663371,51.2946356959656,0,3060.06446663371,3028.5603302631,84.9836283822171,85.0595445544553,84.9458019801979,84.9836283822171,0.00205222780039078,84.9835783004075,85.0581999999999,84.9465047619047,20,25.0999999999996,1015.09999999999,38.6639320790216,1234.76566174187,1.20076217997943,40,0,1271.72479242862,3.78868798333803,1284.95371538789,6.37611559620056,5.23936275387518,10 +2,2,0,2,10.6399999999994,250.64,251.24877777767,84.8030075188016,85.0090187793426,87.5592893427229,85.0090187793425,22.1709260302348,44.3418520604695,23.7796994179008,-1.65641314553991,-1.65641314553991,-1.64177293661003,1,1,1,1,1,1,1,1,1,1,1,1,23.7400320337144,2.19390837524847,2.18827968071212,3.08619890513039,-1.30880867367632,1.30880867367632,568.006317653843,1840.23145539906,53.5301631591348,-0.00113350804315751,1354.3327972431,1354.09355230932,1377.09739774257,1322.90269384752,1354.06653531353,1377.00284034571,1322.99725092381,1.05871159993842,3070.18453336373,-56.9149240048496,0,3070.18453336373,3038.53585605959,85.009882973086,85.0476435643563,84.9566039603959,85.009882973086,-0.00226736288652336,85.0099109054325,85.0451428571428,84.956619047619,20,25.0284536150235,1015.09999999999,38.7176680751173,1231.22087094946,1.2007781263126,40,0,1261.1274352913,3.12934638846753,1274.26304307403,5.2664865518543,5.19577183720296,10 +1,2,0,2,10.6199999999953,250.64,250.805083333298,84.962711864444,85.018673565381,87.5692337723423,85.0186735653809,21.5150834117309,43.0301668234619,23.0762673505076,-0.935503292568204,-0.935503292568204,-0.920863083638321,1,1,1,1,1,1,1,1,1,1,1,1,23.182910343625,2.15641918411002,2.1639205677689,3.26663576942512,-0.734342120487278,0.734342120487278,541.649190031,1840.35559736595,53.5337743025714,0.00038994891566195,1348.79473724836,1349.08530982008,1388.83157386139,1322.90258527525,1349.09579455436,1388.39462396286,1322.99714273048,1.05859181741128,3057.48041667236,30.2312833372855,0,3057.48041667236,3025.93440469864,85.0174542533274,85.0946534653464,84.9400198019801,85.0174542533274,0.00120605898783596,85.0174073825201,85.0939428571427,84.9370761904761,20,25,1015.09999999999,38.7047821260583,1228.72499338077,1.20078935408247,40,0,1249.33415340372,3.28013133045911,1262.3587285899,5.52024780760639,5.14723232860307,10 +1,1,0,1,10.6399999999994,250.64,251.067763888832,84.8030075188016,84.9477154929579,87.4961469577464,84.9477154929577,21.5078877412394,43.0157754824789,23.0685495456146,1.53055399061033,1.53055399061033,1.54519419954021,1,1,1,1,1,1,1,1,1,1,1,1,23.1725046678819,1.40897596892882,1.42021791848118,2.35886418725268,1.22644711628502,1.22644711628502,538.005861526891,1838.30657276995,53.4741705931475,0.000805746681280637,1353.33444385991,1353.40842807576,1377.09735438515,1322.90277607723,1353.40308108308,1377.00279714095,1322.99733286762,1.05947640219964,3066.90836724786,137.144266039178,0,3066.90836724786,3035.38353815871,84.9477200855296,85.0693465346534,84.8319999999999,84.9477200855296,0.00547911598671488,84.947725902079,85.0704761904762,84.8297523809523,20,24.9000000000004,1015.09999999999,39.2664338028169,1239.14203514739,1.20074249275034,40,0,1286.76758764115,3.24947275862447,1300.13167417845,5.46865142413756,5.30125045536573,11 +2,1,0,1,10.6200000000026,250.64,250.890833333297,84.9627118643858,85.0478062088429,87.5992403951082,85.0478062088428,18.858271088476,37.716542176952,20.2266706141954,-1.05276575729069,-1.05276575729069,-1.03812554836081,1,1,1,1,1,1,1,1,1,1,1,1,20.923672857127,2.87101437959431,2.86341645953182,3.06610614779107,-0.798494546033812,0.798494546033812,438.053764020118,1840.04797742239,53.5248260011384,-0.000670438486576686,1346.19316983321,1343.58089185739,1377.09740911089,1262.3727834297,1343.49084801022,1377.00285167524,1262.44160794476,1.05822891352598,3050.01658882238,-14.0830996227211,0,3050.01658882238,3018.72761918534,85.0467686074346,85.0936039603959,85.0096831683167,85.0467686074346,-0.000557816835303743,85.0467203960041,85.0902095238094,85.0110857142856,20,24.9000000000004,1015.09999999999,39.4407930385701,1244.64433921001,1.20071774049304,40,0,1269.15520184669,3.99294908249168,1282.30993575607,6.71987374829394,5.22858281653851,11 +2,2,0,2,10.6399999999994,250.64,251.330424999953,84.8030075188016,85.0366338028169,87.5877328169012,85.0366338028168,23.1853416797183,46.3706833594366,24.8677234001484,-1.96813145539906,-1.96813145539906,-1.95349124646918,1,1,1,1,1,1,1,1,1,1,1,1,24.6047826297869,2.12884184172336,2.13485123303647,3.20015327499046,-1.56997743896495,1.56997743896495,608.448218243172,1840.21314553991,53.5296305469217,-0.000232164297996117,1345.99909856714,1346.08961885098,1379.24193883168,1322.90258264356,1346.11841079568,1379.55847549619,1322.99714010857,1.05836777188041,3050.25392792913,-66.5654818680664,0,3050.25392792913,3019.40092479331,85.0374236694091,85.1086237623761,84.9976633663365,85.0374236694091,-0.00266079424843901,85.0374426827632,85.1081238095237,84.9963809523808,20,24.7999999999995,1015,40.0702267605634,1256.98187364926,1.20054340253668,40,0,1265.73800599239,2.88234595488608,1278.67163741157,4.85080087814533,5.21374775702986,11 +1,2,0,2,10.6200000000026,250.64,250.801519444456,84.9627118643858,85.0174863593603,87.5680109501413,85.0174863593602,23.3855033971026,46.7710067942051,25.0824093121341,-2.6009219190969,-2.6009219190969,-2.58628171016701,1,1,1,1,1,1,1,1,1,1,1,1,24.773752542989,2.05928681335289,2.06328184266313,3.3070002435115,-2.07432177210922,2.07432177210922,615.989119477041,1839.56632173095,53.5108152050108,0.000725168158950293,1353.00961823452,1353.60565381124,1377.09733039208,1322.90281592574,1353.61867918325,1377.00277323143,1322.99737257619,1.05860630849382,3065.75561101845,7.14999871035977,0,3065.75561101845,3034.9925411392,85.0174685692464,85.0529207920791,84.9942475247523,85.0174685692464,0.000280072692124365,85.0174728665501,85.0525999999999,84.9953333333332,20,24.7999999999995,1015,40.761845625588,1278.67759256806,1.20044580378333,40,0,1258.01435985056,2.88487675968664,1270.76575318567,4.8550600581123,5.18151173572138,11 +1,1,0,1,10.6800000000003,250.64,251.354641666567,84.4853932584247,84.726095416277,87.2678782787652,84.7260954162769,21.5394989606454,43.0789979212909,23.1024545478091,0.905238540692236,0.905238540692236,0.919878749622103,1,1,1,1,1,1,1,1,1,1,1,1,23.1870087728886,1.54155920807855,1.54318466023956,2.3731910736591,0.732808524547174,0.732808524547174,539.385392583012,1833.13985032741,53.3238767295489,-0.000115647791097224,1346.03495894116,1346.14908997707,1377.09740480495,1322.90258156139,1346.14304280579,1377.00284738476,1322.99713903048,1.06225016649919,3049.73867017528,301.513594829688,0,3049.73867017528,3018.74531224171,84.7258656929303,84.8973663366336,84.4318316831682,84.7258656929303,0.0120614610572394,84.7259394385528,84.8985428571428,84.4294299065419,20,24.7060113189899,1015.02361131899,40.0832452759588,1250.35031720379,1.20060129380446,40,0,1287.17582335299,3.20956383942926,1300.39121481209,5.40148730737017,5.30230872502382,9.99719363891487 +2,1,0,1,10.6200000000026,250.64,250.626825000058,84.9627118643858,84.9582605832549,87.5070084007526,84.9582605832549,20.5752669070179,41.1505338140357,22.068255598559,0.201420507996237,0.201420507996237,0.21606071692609,1,1,1,1,1,1,1,1,1,1,1,1,22.3798679507083,1.79010776104711,1.79151947934471,2.83222807143981,0.17086223261895,0.17086223261895,502.33983288979,1838.33019755409,53.4748578102613,0.00038310770661525,1349.81016118965,1347.71874186071,1377.09733571485,1233.12306539604,1347.62035636786,1377.00277853428,1232.38771119905,1.05934457998582,3058.57708083657,93.5139714541658,0,3058.57708083657,3027.96010440935,84.9559957434124,85.0414158415841,84.8848712871286,84.9559957434124,0.00373745041484192,84.9559070644626,85.0397904761903,84.8865238095237,20,24.7806433678266,1015,41.0173010348072,1285.20457238113,1.20041644199563,40,0,1275.51521702801,3.48783443957881,1288.41248713254,5.86979863872832,5.25346579870556,10 +2,2,0,2,10.6200000000026,250.64,251.044899999972,84.9627118643858,85.1000611476953,87.653062982126,85.1000611476952,23.6080467753151,47.2160935506303,25.3211009497374,-2.54502351834431,-2.54502351834431,-2.53038330941442,1,1,1,1,1,1,1,1,1,1,1,1,24.9678278984457,2.5178725044554,2.51752603131761,3.4144060466758,-2.03320251758765,2.03320251758765,627.528215037693,1841.41721542803,53.5646555202083,-6.84120904670076E-05,1354.38142318645,1354.84180335794,1377.09734087327,1322.90279882871,1354.86554882117,1377.00278367524,1322.99735553905,1.05757979716019,3068.95576576923,-102.899650351961,0,3068.95576576923,3037.98473747443,85.1010256419808,85.2332475247524,84.9903267326731,85.1010256419808,-0.00411545152633844,85.101051462617,85.2321142857142,84.9925238095237,20,25.154502728128,1015,39.4270645343368,1263.23141443863,1.20051528881561,40,0,1266.85610381099,2.82254376503434,1279.77119049743,4.75015768000456,5.21823115391409,11 +1,2,0,2,10.6100000000006,250.64,250.619675000111,85.042789820919,85.0359529190207,87.5870315065914,85.0359529190206,24.285417765226,48.570835530452,26.047623536684,-2.71038606403013,-2.71038606403013,-2.69574585510024,1,1,1,1,1,1,1,1,1,1,1,1,25.540307930824,2.51565550106603,2.51972464138089,3.71918343898612,-2.17368079521728,2.17368079521728,654.597930050095,1841.02448210923,53.5532313710492,-0.000534116767324068,1348.25873191723,1347.51375860651,1377.09741404852,1322.90258817129,1347.49355992056,1377.00285659619,1322.99714561714,1.05837652820699,3056.76113307806,1.75826894458265,0,3056.76113307806,3025.62186217914,85.0342703846655,85.0886039603959,84.9790693069306,85.0342703846655,7.47132152004554E-05,85.0342036319612,85.088838095238,84.9822285714285,20,25.2000000000005,1015,38.5206206214689,1237.5372624324,1.20063087462374,40,0,1262.20600873712,2.6940014636067,1275.19645388415,4.53382934246166,5.19957779361529,11 +1,1,0,1,10.6299999999974,250.64,251.126377777957,84.8827845719871,85.0474652255638,87.5988891823309,85.0474652255638,22.3956516812688,44.7913033625376,24.0207316790609,1.22278195488722,1.22278195488722,1.23742216381709,1,1,1,1,1,1,1,1,1,1,1,1,23.9338099415714,1.61663509894613,1.60628581471839,2.39746935455628,0.989567387049494,0.989567387049494,574.739233053265,1840.46334586466,53.5369085793493,-2.05043380168533E-05,1346.69725029352,1348.57630786716,1457.1180789505,1322.90258648614,1348.67196396221,1457.15061902476,1322.9971439381,1.0582338389699,3051.86301395342,89.974587758271,0,3051.86301395342,3021.05793745433,85.0469434043028,85.1284752475246,84.9429702970296,85.0469434043028,0.00359913810929899,85.0469202201932,85.1247238095236,84.9406285714285,20,25.7000000000005,1014.90000000001,37.353702537594,1236.23646767871,1.2005178890444,40,0,1289.17097093548,3.0127435273888,1302.31636940259,5.0702515163076,5.31015848889944,9 +2,1,0,1,10.6100000000006,250.64,250.661805555657,85.042789820919,85.0502344632768,87.6017414971752,85.0502344632767,20.7861147730038,41.5722295460076,22.2944030706679,0.138719397363465,0.138719397363465,0.153359606293321,1,1,1,1,1,1,1,1,1,1,1,1,22.5645201958642,1.900958067045,1.906278278504,2.65402322930242,0.125398910992419,0.125398910992419,511.330599256335,1839.99011299435,53.5231427931565,-0.000362925495745839,1353.87991705734,1352.6208233063,1377.09741242178,1280.1984118198,1352.56202790475,1377.00285497429,1278.75432764381,1.05819875080315,3067.24314786231,-29.3837702593958,0,3067.24314786231,3036.15995714591,85.0497232663945,85.0936633663366,85.0237227722771,85.0497232663945,-0.00117236299901158,85.0496961976504,85.0924761904761,85.0235714285713,20,25.7000000000005,1014.90000000001,37.0273783427495,1225.43663144972,1.20056647238733,40,0,1276.09843674211,3.44141987769731,1289.16270596442,5.7916859482125,5.25652479496194,9 +2,2,0,2,10.6200000000026,250.64,251.087116666647,84.9627118643858,85.114297271872,87.6677261900283,85.114297271872,19.1944034703763,38.3888069407526,20.5871935348579,-0.873885230479774,-0.873885230479774,-0.859245021549903,1,1,1,1,1,1,1,1,1,1,1,1,21.2137110398341,2.64431438072038,2.65592110281416,3.04087005360492,-0.663981851667594,0.663981851667594,450.67856239236,1841.09031044214,53.5551462396333,0.000567820350876174,1351.9592868444,1351.06210690739,1377.09741062772,1322.90266249802,1351.02187447703,1377.00285318667,1322.99721968476,1.05740195476938,3062.42685522094,-22.5352648686385,0,3062.42685522094,3031.90655963924,85.1151969393551,85.1519801980196,85.0801683168316,85.1151969393551,-0.000906064265879994,85.1152150786184,85.1516857142855,85.081038095238,20,25.7999999999995,1014.90000000001,38.1677479774224,1270.68854835287,1.20036290546739,40,0,1245.57631901066,3.96365972619678,1258.11475206524,6.67058166557404,5.12992763329354,11 +1,2,0,2,10.6199999999953,250.64,250.839391666821,84.962711864444,85.0303904045156,87.581302116651,85.0303904045155,20.6368971987771,41.2737943975541,22.1343579260428,-1.70344308560677,-1.70344308560677,-1.68880287667689,1,1,1,1,1,1,1,1,1,1,1,1,22.43599913306,2.25003829270162,2.25568713764775,3.05103281064517,-1.32853375702589,1.32853375702589,506.632629445803,1839.86265286924,53.5194351284095,-0.000595185187062976,1352.96251120254,1351.96201318342,1377.09741877327,1317.65945393762,1351.91387000735,1377.00286130381,1317.8438877619,1.05844589846024,3065.66422001001,-63.3669475799882,0,3065.66422001001,3035.13433601848,85.0297630468596,85.1169999999999,84.9438217821781,85.0297630468596,-0.00252983906104436,85.029746234825,85.1187619047618,84.9445238095237,20,25.7999999999995,1014.90000000001,38.2276270931327,1272.68205623978,1.20035393762054,40,0,1243.71418905985,3.5360982139096,1256.22449196803,5.95102343359014,5.12222015073611,11 +1,1,2,1,60.3300000000017,250.64,252.466052777781,14.9561412232716,15.0650858468675,15.5170384222738,15.0650858468675,3.53794630427578,7.07589260855156,3.79466782567495,2.09335929731521,2.09335929731521,2.10799950624523,1,1,1,1,1,1,1,1,1,1,1,1,3.87423230451094,0.598202464667821,0.597554450500132,1.61802969879372,1.6352033816435,1.6352033816435,15.3605820222894,748.039608882996,8.70383607355975,5.30290072145003E-06,629.746192668446,629.75684279792,651.677936809901,608.322065464356,629.990758792031,631.340574629848,628.659696064418,5.9741232653234,1309.81403570926,15.0848901623831,0,1309.81403570926,1296.59825696896,15.0650360596882,15.1067425742574,14.9491584158415,15.0650360596882,0.000603360385756877,15.064857995451,15.0980552763819,14.9654076539102,20,25.5461799801149,1014.90000000007,37.7294894928737,1237.32735137906,1.2005129816759,40,0,0,0,0,0,0,10.9593967517401 +2,1,2,1,59.8699999999953,250.64,251.144902777799,15.0710539502267,15.1014116566463,15.554454006346,15.1014116566463,3.76744822979291,7.53489645958583,4.04082293878048,0.552022378089512,0.552022378089512,0.566662587019399,1,1,1,1,1,1,1,1,1,1,1,1,4.07169203500346,0.716010205363962,0.715892639299615,1.539145374705,0.464223892028678,0.464223892028678,17.2336574221712,748.758851035404,8.71220483601219,9.27039933721741E-21,629.958948108736,629.960670706536,651.677930972277,608.322062777228,629.997682767426,631.340631978414,628.659320459696,5.95973912690107,1308.35875264551,-3.82414955894448,0,1308.35875264551,1295.22841716604,15.1013608388393,15.1485742574257,15.0514554455445,15.1013608388393,-0.000152969121227469,15.1001921427333,15.1196509274874,15.0151708542713,20,25.6000000000029,1014.9167000669,38.1863750167,1256.31828763166,1.20044739635561,40,0,0,0,0,0,0,10.9475617902472 +2,2,2,2,60.0099999999948,250.64,252.345914735653,15.035894017665,15.1467335888034,15.592397641161,15.1382501370495,2.921661946018,5.843323892036,3.1336644568784,-1.13637454181939,-1.13637454181939,-1.12173433288958,1,1,1,1,1,1,1,1,1,1,1,1,3.35411536410386,0.933496255473224,0.933165412624448,1.93669958329124,-0.869907826069288,0.869907826069288,11.6916547736272,748.985838053982,8.7148459499012,1.96536481783444E-20,629.523822546201,629.543803653502,651.677933719802,608.322062936633,629.970084754293,631.500771643973,628.499234002887,5.94527089606747,1304.68003816437,-16.6693922645556,0,1304.68003816437,1291.54204391726,15.1382469268987,15.2480177572816,15.0674356435643,15.1382469268987,-0.00066677872527265,15.1382192891136,15.2480177572816,15.0859832495812,20,25.4259330223227,1014.90000000007,38.1648456514495,1242.69623962521,1.2004888295931,40,0,0,0,0,0,0,10.9966677774075 +1,2,2,2,59.9000000000015,250.64,251.004252777726,15.0635058430714,15.0853899182106,15.5379516157571,15.0853899182106,4.05524636955434,8.11049273910868,4.34950437352184,-1.28360707728259,-1.28360707728259,-1.26896686835281,1,1,1,1,1,1,1,1,1,1,1,1,4.31559527171859,0.776846299707608,0.777838453190806,1.64874730541491,-0.984973901049163,0.984973901049163,19.3966141530686,748.446419629444,8.70856953153176,1.44777455848507E-21,630.30618684103,630.293338790155,651.677935569307,608.322063791089,630.016892173147,631.322490854301,628.66233928887,5.96605723294269,1309.92031177112,-4.3645345702207,0,1309.92031177112,1296.68705006197,15.0853934548688,15.125198019802,15.0488910891089,15.0853934548688,-0.000174583474037666,15.0852528669032,15.1083798319328,15.0625326633165,20,25.3999999999971,1014.90000000007,37.9546916374562,1233.94991173872,1.20052817517558,40,0,0,0,0,0,0,10.636454682023