From 5d8f7edbf6b06637f71aa7a7b74b1d089e341b92 Mon Sep 17 00:00:00 2001 From: Stefanos Doumpoulakis <dubulak@gmail.com> Date: Fri, 2 Sep 2022 14:10:05 +0300 Subject: [PATCH] a)2 implementations for StopStart, b)added test with real engine torque input --- .../Simulation/Impl/PowertrainBuilder.cs | 1 + .../Impl/VTPCombustionEngine.cs | 3 +- .../Impl/VTPnoSScombustionEngine.cs | 224 + VectoCore/VectoCore/VectoCore.csproj | 1 + .../VectoCoreTest/Integration/VTP/VTPTest.cs | 21 +- .../Class2_RigidTruck_VTP_pollutants.vecto | 23 + .../VTP_LongHaulReferenceLoad.vdri | 9303 +++++++++++++++++ VectoCore/VectoCoreTest/VectoCoreTest.csproj | 9 + 8 files changed, 9577 insertions(+), 8 deletions(-) create mode 100644 VectoCore/VectoCore/Models/SimulationComponent/Impl/VTPnoSScombustionEngine.cs create mode 100644 VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/Class2_RigidTruck_VTP_pollutants.vecto create mode 100644 VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/VTP_LongHaulReferenceLoad.vdri diff --git a/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs b/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs index 034790a284..947e99f65b 100644 --- a/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs +++ b/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs @@ -180,6 +180,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl .AddComponent(gearbox, data.Retarder, container) .AddComponent(new Clutch(container, data.EngineData)); var engine = new VTPCombustionEngine(container, data.EngineData, pt1Disabled: true); + //var engine = new VTPnoSScombustionEngine(container, data.EngineData, pt1Disabled: true); var aux = CreateSpeedDependentAuxiliaries(data, container); var engineFan = new EngineFanAuxiliary(data.FanData.FanCoefficients, data.FanData.FanDiameter); diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/VTPCombustionEngine.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/VTPCombustionEngine.cs index 218440c298..f55a723716 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/VTPCombustionEngine.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/VTPCombustionEngine.cs @@ -38,6 +38,7 @@ using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Models.Connector.Ports.Impl; using TUGraz.VectoCore.Models.Simulation; using TUGraz.VectoCore.Models.SimulationComponent.Data; +using TUGraz.VectoCore.OutputData; using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.SimulationComponent.Impl @@ -214,7 +215,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl : DataBus.DrivingCycleInfo.CycleData.LeftSample.EngineSpeed; } - protected override double WHTCCorrectionFactor(IFuelProperties fuel) + protected override double WHTCCorrectionFactor(IFuelProperties fuel) { var selected = ModelData.Fuels.First(x => x.FuelData.FuelType == fuel.FuelType); diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/VTPnoSScombustionEngine.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/VTPnoSScombustionEngine.cs new file mode 100644 index 0000000000..0787a40f62 --- /dev/null +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/VTPnoSScombustionEngine.cs @@ -0,0 +1,224 @@ +using System; +using System.Linq; +using TUGraz.VectoCommon.BusAuxiliaries; +using TUGraz.VectoCommon.Models; +using TUGraz.VectoCommon.Utils; +using TUGraz.VectoCore.Configuration; +using TUGraz.VectoCore.Models.Connector.Ports.Impl; +using TUGraz.VectoCore.Models.Simulation; +using TUGraz.VectoCore.Models.Simulation.Data; +using TUGraz.VectoCore.Models.SimulationComponent.Data; +using TUGraz.VectoCore.OutputData; +using TUGraz.VectoCore.Utils; + +namespace TUGraz.VectoCore.Models.SimulationComponent.Impl +{ + public class VTPnoSScombustionEngine : CombustionEngine + { + private bool firstInit = true; + + public VTPnoSScombustionEngine(IVehicleContainer container, CombustionEngineData modelData, bool pt1Disabled = false) : base(container, modelData, pt1Disabled) { } + + public override IResponse Initialize(NewtonMeter outTorque, PerSecond outAngularVelocity) + { + if (outAngularVelocity == null) { + outAngularVelocity = EngineIdleSpeed; + } + var auxDemand = EngineAux == null ? 0.SI<NewtonMeter>() : EngineAux.Initialize(outTorque, outAngularVelocity); + if (firstInit) { + PreviousState = new EngineState { + EngineSpeed = outAngularVelocity, + dt = 1.SI<Second>(), + InertiaTorqueLoss = 0.SI<NewtonMeter>(), + StationaryFullLoadTorque = ModelData.FullLoadCurves[DataBus.GearboxInfo.Gear.Gear].FullLoadStationaryTorque(outAngularVelocity), + FullDragTorque = ModelData.FullLoadCurves[DataBus.GearboxInfo.Gear.Gear].DragLoadStationaryTorque(outAngularVelocity), + EngineTorque = outTorque + auxDemand, + EnginePower = (outTorque + auxDemand) * outAngularVelocity, + }; + PreviousState.DynamicFullLoadTorque = PreviousState.StationaryFullLoadTorque; + } + + return new ResponseSuccess(this) { + Engine = { + PowerRequest = PreviousState.EnginePower, + EngineSpeed = outAngularVelocity + } + }; + } + + protected override IResponse DoHandleRequest(Second absTime, Second dt, NewtonMeter torqueReq, + PerSecond angularVelocity, bool dryRun) + { + firstInit = false; + var powerDemand = angularVelocity * torqueReq; + + var avgEngineSpeed = GetEngineSpeed(angularVelocity); + var torqueOut = powerDemand / avgEngineSpeed; + + + var fullDragTorque = ModelData.FullLoadCurves[DataBus.GearboxInfo.Gear.Gear].DragLoadStationaryTorque(avgEngineSpeed); + var fullLoadTorque = ModelData.FullLoadCurves[DataBus.GearboxInfo.Gear.Gear].FullLoadStationaryTorque(avgEngineSpeed); + + var inertiaTorqueLoss = + Formulas.InertiaPower(angularVelocity, PreviousState.EngineSpeed, ModelData.Inertia, dt) / + avgEngineSpeed; + + if (EngineAux != null) { + EngineAux.Initialize(0.SI<NewtonMeter>(), avgEngineSpeed); + } + var auxTorqueDemand = EngineAux == null + ? 0.SI<NewtonMeter>() + : EngineAux.TorqueDemand(absTime, dt, torqueOut, avgEngineSpeed, dryRun); + // compute the torque the engine has to provide. powertrain + aux + its own inertia + var totalTorqueDemand = torqueOut + auxTorqueDemand + inertiaTorqueLoss; + + Log.Debug("EngineInertiaTorque: {0}", inertiaTorqueLoss); + Log.Debug("Drag Curve: torque: {0}, power: {1}", fullDragTorque, fullDragTorque * avgEngineSpeed); + + var deltaFull = totalTorqueDemand - fullLoadTorque; + var deltaDrag = totalTorqueDemand - fullDragTorque; + + if (dryRun) { + return new ResponseDryRun(this) { + DeltaFullLoad = deltaFull * avgEngineSpeed, + DeltaDragLoad = deltaDrag * avgEngineSpeed, + DeltaEngineSpeed = 0.RPMtoRad(), + Engine = { + PowerRequest = torqueOut * avgEngineSpeed, + DynamicFullLoadPower = fullLoadTorque * avgEngineSpeed, + DragPower = fullDragTorque * avgEngineSpeed, + EngineSpeed = angularVelocity, + AuxiliariesPowerDemand = auxTorqueDemand * avgEngineSpeed, + }, + }; + } + CurrentState.dt = dt; + CurrentState.EngineSpeed = angularVelocity; + CurrentState.EngineTorqueOut = torqueOut; + CurrentState.FullDragTorque = fullDragTorque; + CurrentState.DynamicFullLoadTorque = fullLoadTorque; + CurrentState.StationaryFullLoadTorque = fullLoadTorque; + CurrentState.InertiaTorqueLoss = inertiaTorqueLoss; + + if ((deltaFull * avgEngineSpeed).IsGreater(0.SI<Watt>(), Constants.SimulationSettings.LineSearchTolerance) && + (deltaDrag * avgEngineSpeed).IsSmaller(0.SI<Watt>(), Constants.SimulationSettings.LineSearchTolerance)) { + //throw new VectoSimulationException( + Log.Error( + "Unexpected condition: requested torque_out is above gearbox full-load and engine is below drag load! deltaFull: {0}, deltaDrag: {1}", + deltaFull, deltaDrag); + } + + var minTorque = CurrentState.FullDragTorque; + var maxTorque = CurrentState.DynamicFullLoadTorque; + + try { + CurrentState.EngineTorque = totalTorqueDemand.LimitTo(minTorque, maxTorque); + } catch (Exception) { + var extrapolated = avgEngineSpeed > ModelData.FullLoadCurves[0].FullLoadEntries.Last().EngineSpeed; + Log.Error("Engine full-load torque is below drag torque. max_torque: {0}, drag_torque: {1}, extrapolated: {2}", maxTorque, minTorque, extrapolated); + throw; + } + CurrentState.EnginePower = CurrentState.EngineTorque * avgEngineSpeed; + + if (totalTorqueDemand.IsGreater(0) && + (deltaFull * avgEngineSpeed).IsGreater(0, Constants.SimulationSettings.LineSearchTolerance)) { + Log.Debug("requested engine power exceeds fullload power: delta: {0}", deltaFull); + return new ResponseOverload(this) { + AbsTime = absTime, + Delta = deltaFull * avgEngineSpeed, + Engine = { + PowerRequest = totalTorqueDemand * avgEngineSpeed, + DynamicFullLoadPower = fullLoadTorque * avgEngineSpeed, + DragPower = CurrentState.FullDragTorque * avgEngineSpeed, + EngineSpeed = angularVelocity, + AuxiliariesPowerDemand = auxTorqueDemand * avgEngineSpeed, + }, + }; + } + + if (totalTorqueDemand.IsSmaller(0) && + (deltaDrag * avgEngineSpeed).IsSmaller(0, Constants.SimulationSettings.LineSearchTolerance)) { + Log.Debug("requested engine power is below drag power: delta: {0}", deltaDrag); + return new ResponseUnderload(this) { + AbsTime = absTime, + Delta = deltaDrag * avgEngineSpeed, + Engine = { + PowerRequest = totalTorqueDemand * avgEngineSpeed, + DynamicFullLoadPower = fullLoadTorque * avgEngineSpeed, + DragPower = CurrentState.FullDragTorque * avgEngineSpeed, + EngineSpeed = angularVelocity, + AuxiliariesPowerDemand = auxTorqueDemand * avgEngineSpeed, + }, + }; + } + + //UpdateEngineState(CurrentState.EnginePower, avgEngineSpeed); + + return new ResponseSuccess(this) { + Engine = { + PowerRequest = totalTorqueDemand * avgEngineSpeed, + DynamicFullLoadPower = fullLoadTorque * avgEngineSpeed, + DragPower = CurrentState.FullDragTorque * avgEngineSpeed, + EngineSpeed = angularVelocity, + AuxiliariesPowerDemand = auxTorqueDemand * avgEngineSpeed, + }, + }; + } + + protected override PerSecond GetEngineSpeed(PerSecond angularSpeed) + { + // When speed is below idle, clip to idle to avoid crashing. + // Returning zero causes crashes (divide by zero, etc). + return (DataBus.DrivingCycleInfo.CycleData.LeftSample.EngineSpeed < EngineIdleSpeed) + ? EngineIdleSpeed + : DataBus.DrivingCycleInfo.CycleData.LeftSample.EngineSpeed; + } + + protected override void DoWriteModalResults(Second time, Second simulationInterval, IModalDataContainer container) + { + base.DoWriteModalResults(time, simulationInterval, container); + + var avgEngineSpeed = GetEngineSpeed(CurrentState.EngineSpeed); + + foreach (var fuel in ModelData.Fuels) { + var result = fuel.ConsumptionMap.GetFuelConsumption( + CurrentState.EngineTorque, avgEngineSpeed, + DataBus.ExecutionMode != ExecutionMode.Declaration); + + var fuelData = fuel.FuelData; + + bool aboveIdleSpeed = (DataBus.DrivingCycleInfo.CycleData.LeftSample.EngineSpeed >= EngineIdleSpeed); + var fc = aboveIdleSpeed ? result.Value : 0.SI<KilogramPerSecond>(); + var fcNCVcorr = fc * fuelData.HeatingValueCorrection; + + var fcWHTC = fcNCVcorr * WHTCCorrectionFactor(fuel.FuelData); + + var advancedAux = EngineAux as BusAuxiliariesAdapter; + if (advancedAux != null) { + advancedAux.DoWriteModalResultsICE(time, simulationInterval, container); + + } + var fcFinal = fcWHTC; + + container[ModalResultField.FCMap, fuelData] = fc; + container[ModalResultField.FCNCVc, fuel.FuelData] = fcNCVcorr; + container[ModalResultField.FCWHTCc, fuel.FuelData] = fcWHTC; + container[ModalResultField.FCFinal, fuel.FuelData] = fcFinal; + } + } + + protected override double WHTCCorrectionFactor(IFuelProperties fuel) + { + var selected = ModelData.Fuels.First(x => x.FuelData.FuelType == fuel.FuelType); + + if (DataBus.DrivingCycleInfo.CycleData.LeftSample.VehicleTargetSpeed >= Constants.SimulationSettings.HighwaySpeedThreshold) { + return selected.WHTCMotorway; + } + if (DataBus.DrivingCycleInfo.CycleData.LeftSample.VehicleTargetSpeed >= Constants.SimulationSettings.RuralSpeedThreshold) { + return selected.WHTCRural; + } + return selected.WHTCUrban; + } + + } +} diff --git a/VectoCore/VectoCore/VectoCore.csproj b/VectoCore/VectoCore/VectoCore.csproj index e0c4d0e49d..059945ec1f 100644 --- a/VectoCore/VectoCore/VectoCore.csproj +++ b/VectoCore/VectoCore/VectoCore.csproj @@ -356,6 +356,7 @@ <Compile Include="Models\SimulationComponent\Impl\StopStartCombustionEngine.cs" /> <Compile Include="Models\SimulationComponent\Impl\VelocityRollingLookup.cs" /> <Compile Include="Models\SimulationComponent\Impl\VelocitySpeedGearshiftPreprocessor.cs" /> + <Compile Include="Models\SimulationComponent\Impl\VTPnoSScombustionEngine.cs" /> <Compile Include="Models\Simulation\DataBus\IEngineControl.cs" /> <Compile Include="Models\Simulation\DataBus\IGearboxControl.cs" /> <Compile Include="Models\Simulation\Data\ShiftStrategyParameters.cs" /> diff --git a/VectoCore/VectoCoreTest/Integration/VTP/VTPTest.cs b/VectoCore/VectoCoreTest/Integration/VTP/VTPTest.cs index 39939affd3..e4dd81c9ef 100644 --- a/VectoCore/VectoCoreTest/Integration/VTP/VTPTest.cs +++ b/VectoCore/VectoCoreTest/Integration/VTP/VTPTest.cs @@ -85,17 +85,24 @@ namespace TUGraz.VectoCore.Tests.Integration.VTP } + private const string STOP_START_JOB = @"TestData\Integration\VTPMode\Group2_RigidTruck_4x2\Class2_RigidTruck_DECL_SS_VTP.vecto"; + private const string POLLUTANTS_JOB = @"TestData\Integration\VTPMode\Group2_RigidTruck_4x2\Class2_RigidTruck_VTP_pollutants.vecto"; + private const string PEL_FAN_JOB = @"TestData\Integration\VTPMode\GenericVehicle\class_5_generic vehicle_DECL_FanPel.vecto"; + private const string DUAL_FUEL_JOB = @"TestData\Integration\VTPMode\DualFuelVehicle\VTP_DualFuel.vecto"; + private const string DUAL_FUEL_STOP_START_JOB = @"TestData\Integration\VTPMode\DualFuelVehicle\VTP_StopStart_DualFuel.vecto"; + [Category("JRC")] [Category("LongRunning")] [Category("Integration")] - [TestCase(@"TestData\Integration\VTPMode\GenericVehicle\class_5_generic vehicle_DECL.vecto", 4.44E-08, 0.8972, TestName = "Generic Group 5 VTP Test Declaration Mode"), - TestCase(@"TestData\Integration\VTPMode\GenericVehicle XMLJob PTO\class_5_generic vehicle_DECL.vecto", 4.45E-08, 0.8925, TestName = "Generic Group 5 VTP Test Declaration Mode with PTO"), + [ + TestCase(@"TestData\Integration\VTPMode\GenericVehicle\class_5_generic vehicle_DECL.vecto", 4.44E-08, 0.8972, TestName = "Generic Group 5 VTP Test Declaration Mode"), + TestCase(@"TestData\Integration\VTPMode\GenericVehicle XMLJob PTO\class_5_generic vehicle_DECL.vecto", 4.45E-08, 0.8925, TestName = "Generic Group 5 VTP Test Declaration Mode with PTO"), TestCase(@"TestData\Integration\VTPMode\GenericVehicle\class_3_generic vehicle_DECL.vecto", 1.26E-07, 1.0068, TestName = "Generic Group 3 VTP Test Declaration Mode"), - TestCase(@"TestData\Integration\VTPMode\Group2_RigidTruck_4x2\Class2_RigidTruck_DECL_SS_VTP.vecto", 7.89E-08, 1.0099, TestName = "Class 2 RigidTruck VTP StopStart"), - TestCase(@"TestData\Integration\VTPMode\GenericVehicle\class_5_generic vehicle_DECL_FanPel.vecto", 4.44E-08, 0.8968, TestName = "Generic Group 5 VTP Test Declaration Mode Fan Electrical Power"), - TestCase(@"TestData\Integration\VTPMode\GenericVehicle\class_5_generic vehicle_DECL_pollutants.vecto", 4.44E-08, 0.8972, TestName = "Generic Group 5 VTP Test Declaration Mode Pollutnats"), - TestCase(@"TestData\Integration\VTPMode\DualFuelVehicle\VTP_DualFuel.vecto", 4.71E-09, 1.0107, TestName = "RunVTPDualFuel_Declaration"), - TestCase(@"TestData\Integration\VTPMode\DualFuelVehicle\VTP_StopStart_DualFuel.vecto", 4.71E-09, 1.0105, TestName = "RunVTPDualFuel_StopStart") + TestCase(STOP_START_JOB, 7.89E-08, 1.0099, TestName = "VTP StopStart"), + TestCase(PEL_FAN_JOB, 4.44E-08, 0.8968, TestName = "VTP Fan Electrical Power"), + TestCase(POLLUTANTS_JOB, 7.89E-08, 1.0082, TestName = "VTP Pollutants"), + TestCase(DUAL_FUEL_JOB, 4.71E-09, 1.0107, TestName = "VTP Dual Fuel"), + TestCase(DUAL_FUEL_STOP_START_JOB, 4.71E-09, 1.0105, TestName = "VTP Dual Fuel StopStart") ] public void RunVTP_Declaration(string jobFile, double expectedDeclaredCO2, double expectedCVTP) { diff --git a/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/Class2_RigidTruck_VTP_pollutants.vecto b/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/Class2_RigidTruck_VTP_pollutants.vecto new file mode 100644 index 0000000000..e463ae3df0 --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/Class2_RigidTruck_VTP_pollutants.vecto @@ -0,0 +1,23 @@ +{ + "Header": { + "CreatedBy": "", + "Date": "2021-12-01T12:41:11.9871671Z", + "AppVersion": "3", + "FileVersion": 4 + }, + "Body": { + "SavedInDeclMode": true, + "DeclarationVehicle": "Class2_RigidTruck_DECL_SS.xml", + "ManufacturerRecord": "Class2_RigidTruck_DECL_SS.RSLT_MANUFACTURER.xml", + "Mileage": 20000.0, + "FanPowerCoefficients": [ + 7.32, + 1200.0, + 810.0 + ], + "FanDiameter": 0.225, + "Cycles": [ + "VTP_LongHaulReferenceLoad.vdri" + ] + } +} \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/VTP_LongHaulReferenceLoad.vdri b/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/VTP_LongHaulReferenceLoad.vdri new file mode 100644 index 0000000000..549113bc4a --- /dev/null +++ b/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/VTP_LongHaulReferenceLoad.vdri @@ -0,0 +1,9303 @@ +<t> [s],<v> [km/h],<n_eng> [rpm],<n_fan> [rpm],<tq_left> [Nm],<tq_right> [Nm],<n_wh_left> [rpm],<n_wh_right> [rpm],<fc_Diesel CI> [g/h],<gear> [-],<tq_eng> [Nm],<CH4> [g/s],<CO> [g/s],<NMHC> [g/s],<NOx> [g/s],<THC> [g/s],<CO2> [g/s] +0.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +0.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +1.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +1.5,0.9,629.71115,100,4223.35269,4223.35269,5.674827825723768,5.674827825723768,4264.84255,0.5,240.83925,1,2,3,4,5,6 +2.0,1.8,659.4223,100,4223.35269,4223.35269,11.349655651447536,11.349655651447536,7182.6243,1.0,420.3038,1,2,3,4,5,6 +2.5,3.5465,797.7424,100,3934.8815316509235,3934.8815316509235,22.36197431547705,22.36197431547705,9497.66145,1.0,485.1677,1,2,3,4,5,6 +3.0,5.293,936.0625,100,3836.780627621387,3836.780627621387,33.374292979506556,33.374292979506556,11812.6986,1.0,550.0316,1,2,3,4,5,6 +3.5,6.9133,1233.5402,100,3628.6373899584864,3628.6373899584864,43.59087467508457,43.59087467508457,13819.5703,1.0,527.2252,1,2,3,4,5,6 +4.0,8.5336,1531.0179,100,3499.535702868661,3499.535702868661,53.8074563706626,53.8074563706626,15826.442,1.0,504.4188,1,2,3,4,5,6 +4.5,9.27805,1571.9274,100,1467.0050655040661,1467.0050655040661,58.50148478717378,58.50148478717378,7913.50365,0.5,214.0485,1,2,3,4,5,6 +5.0,10.0225,1612.8369,100,-263.58145951608884,-263.58145951608884,63.19551320368495,63.19551320368495,0.5653,0.0,-76.3218,1,2,3,4,5,6 +5.5,10.08795,1487.998,100,62.59333055774468,62.59333055774468,63.608199293900086,63.608199293900086,911.7943,0.0,-32.2355,1,2,3,4,5,6 +6.0,10.1534,1363.1591,100,384.5629991923888,384.5629991923888,64.02088538411522,64.02088538411522,1823.0233,0.0,11.8508,1,2,3,4,5,6 +6.5,11.14825,1329.6795000000002,100,2402.229480680824,2402.229480680824,70.29377700902778,70.29377700902778,9046.6145,1.0,312.21274999999997,1,2,3,4,5,6 +7.0,12.1431,1296.1999,100,4089.2924920325127,4089.2924920325127,76.56666863394031,76.56666863394031,16270.2057,2.0,612.5747,1,2,3,4,5,6 +7.5,13.943100000000001,1434.7768,100,4104.22735180842,4104.22735180842,87.91632428538786,87.91632428538786,19816.00205,2.0,674.2662,1,2,3,4,5,6 +8.0,15.7431,1573.3537,100,4115.747033176438,4115.747033176438,99.2659799368354,99.2659799368354,23361.7984,2.0,735.9577,1,2,3,4,5,6 +8.5,17.5431,1753.3545,100,4121.160688475811,4121.160688475811,110.61563558828288,110.61563558828288,26267.86625,2.0,735.49815,1,2,3,4,5,6 +9.0,19.3431,1933.3553,100,4125.56679280984,4125.56679280984,121.96529123973043,121.96529123973043,29173.9341,2.0,735.0386,1,2,3,4,5,6 +9.5,20.67735,2072.01185,100,2964.4234106885074,2964.4234106885074,130.37822349136593,130.37822349136593,23100.2515,1.0,525.57425,1,2,3,4,5,6 +10.0,22.0116,2210.6684,100,1944.0472201929888,1944.0472201929888,138.79115574300144,138.79115574300144,17026.5689,0.0,316.1099,1,2,3,4,5,6 +10.5,22.4262,2102.8006,100,858.6914038044788,858.6914038044788,141.40535976138483,141.40535976138483,8514.097249999999,0.0,113.71294999999998,1,2,3,4,5,6 +11.0,22.8408,1994.9328,100,-187.26224440474942,-187.26224440474942,144.01956377976825,144.01956377976825,1.6256,0.0,-88.684,1,2,3,4,5,6 +11.5,23.2589,1842.1228,100,910.8417223514438,910.8417223514438,146.6558365730295,146.6558365730295,5614.6247,1.5,109.31530000000001,1,2,3,4,5,6 +12.0,23.677,1689.3128,100,1970.1639795582212,1970.1639795582212,149.2921093662907,149.2921093662907,11227.6238,3.0,307.3146,1,2,3,4,5,6 +12.5,24.87875,1631.4472999999998,100,2780.1574491483693,2780.1574491483693,156.86958085469465,156.86958085469465,19966.7169,3.0,606.2071000000001,1,2,3,4,5,6 +13.0,26.0805,1573.5818,100,3515.5043703916726,3515.5043703916726,164.44705234309853,164.44705234309853,28705.81,3.0,905.0996,1,2,3,4,5,6 +13.5,27.60545,1666.2929,100,3512.71970513069,3512.71970513069,174.0624175573624,174.0624175573624,30438.68505,3.0,903.8906,1,2,3,4,5,6 +14.0,29.1304,1759.004,100,3510.2265892675696,3510.2265892675696,183.67778277162628,183.67778277162628,32171.5601,3.0,902.6816,1,2,3,4,5,6 +14.5,30.601950000000002,1847.7292499999999,100,3392.3678035223247,3392.3678035223247,192.95644153489715,192.95644153489715,32900.82875,3.0,875.1347000000001,1,2,3,4,5,6 +15.0,32.0735,1936.4545,100,3285.3238709214766,3285.3238709214766,202.23510029816808,202.23510029816808,33630.0974,3.0,847.5878,1,2,3,4,5,6 +15.5,33.44445,2019.0396,100,3167.5458944309134,3167.5458944309134,210.8794394178081,210.8794394178081,34095.05885,3.0,819.9961000000001,1,2,3,4,5,6 +16.0,34.8154,2101.6247,100,3059.043567042171,3059.043567042171,219.523778537448,219.523778537448,34560.0203,3.0,792.4044,1,2,3,4,5,6 +16.5,36.0023,2170.72855,100,2737.411322332184,2737.411322332184,227.00761536672752,227.00761536672752,32572.66345,3.0,710.27895,1,2,3,4,5,6 +17.0,37.1892,2239.8324,100,2436.3089793811105,2436.3089793811105,234.49145219600706,234.49145219600706,30585.3066,3.0,628.1535,1,2,3,4,5,6 +17.5,37.69,2177.81585,100,1121.7982250464315,1121.7982250464315,237.64917861280972,237.64917861280972,15292.88855,1.5,266.9086,1,2,3,4,5,6 +18.0,38.1908,2115.7993,100,-158.23789216251032,-158.23789216251032,240.80690502961252,240.80690502961252,0.4705,0.0,-94.3363,1,2,3,4,5,6 +18.5,38.2161,1970.3831,100,22.578269839151574,22.578269839151574,240.96643074515782,240.96643074515782,1540.50775,0.0,-36.80925,1,2,3,4,5,6 +19.0,38.2414,1824.9669,100,203.1551807203711,203.1551807203711,241.12595646070318,241.12595646070318,3080.545,0.0,20.7178,1,2,3,4,5,6 +19.5,38.819199999999995,1702.98605,100,1339.2761037321739,1339.2761037321739,244.7691959248178,244.7691959248178,14945.1507,2.0,431.78545,1,2,3,4,5,6 +20.0,39.397,1581.0052,100,2442.0721203137296,2442.0721203137296,248.41243538893252,248.41243538893252,26809.7564,4.0,842.8531,1,2,3,4,5,6 +20.5,40.45075,1599.71775,100,2446.6373872177896,2446.6373872177896,255.0567129682174,255.0567129682174,28671.6288,4.0,890.3301,1,2,3,4,5,6 +21.0,41.5045,1618.4303,100,2450.9708407040207,2450.9708407040207,261.70099054750233,261.70099054750233,30533.5012,4.0,937.8071,1,2,3,4,5,6 +21.5,42.54875,1659.20235,100,2430.928569017891,2430.928569017891,268.2853671664046,268.2853671664046,31105.4011,4.0,930.5386,1,2,3,4,5,6 +22.0,43.593,1699.9744,100,2411.846503888238,2411.846503888238,274.8697437853069,274.8697437853069,31677.301,4.0,923.2701,1,2,3,4,5,6 +22.5,44.612750000000005,1739.73,100,2379.47218145037,2379.47218145037,281.29963898006446,281.29963898006446,32093.392200000002,4.0,911.73735,1,2,3,4,5,6 +23.0,45.6325,1779.4856,100,2348.544797720923,2348.544797720923,287.729534174822,287.729534174822,32509.4834,4.0,900.2046,1,2,3,4,5,6 +23.5,46.621700000000004,1818.05485,100,2313.1706744713297,2313.1706744713297,293.96680049171755,293.96680049171755,32842.92455,4.0,887.6578,1,2,3,4,5,6 +24.0,47.6109,1856.6241,100,2279.266470199051,2279.266470199051,300.204066808613,300.204066808613,33176.3657,4.0,875.111,1,2,3,4,5,6 +24.5,48.5685,1893.9528,100,2243.2039623830265,2243.2039623830265,306.24208361518305,306.24208361518305,33394.321599999996,4.0,862.3476,1,2,3,4,5,6 +25.0,49.5261,1931.2815,100,2208.536010467208,2208.536010467208,312.28010042175316,312.28010042175316,33612.2775,4.0,849.5842,1,2,3,4,5,6 +25.5,50.4525,1967.3946500000002,100,2173.6775147316785,2173.6775147316785,318.1213898636982,318.1213898636982,33805.6462,4.0,837.2583999999999,1,2,3,4,5,6 +26.0,51.3789,2003.5078,100,2140.076068502828,2140.076068502828,323.96267930564323,323.96267930564323,33999.0149,4.0,824.9326,1,2,3,4,5,6 +26.5,52.2757,2038.46695,100,2107.2662683235226,2107.2662683235226,329.6173299657644,329.6173299657644,34195.9433,4.0,813.3389999999999,1,2,3,4,5,6 +27.0,53.1725,2073.4261,100,2075.563199210118,2075.563199210118,335.2719806258856,335.2719806258856,34392.8717,4.0,801.7454,1,2,3,4,5,6 +27.5,54.04115,2107.2909,100,2043.9238563206002,2043.9238563206002,340.74913528234663,340.74913528234663,34585.2295,4.0,790.5747,1,2,3,4,5,6 +28.0,54.9098,2141.1557,100,2013.2855556931552,2013.2855556931552,346.22628993880767,346.22628993880767,34777.5873,4.0,779.404,1,2,3,4,5,6 +28.5,55.749849999999995,2173.92805,100,1978.3570253193507,1978.3570253193507,351.52311117769574,351.52311117769574,34949.652350000004,4.0,767.10285,1,2,3,4,5,6 +29.0,56.5899,2206.7004,100,1944.4654896015015,1944.4654896015015,356.81993241658375,356.81993241658375,35121.7174,4.0,754.8017,1,2,3,4,5,6 +29.5,57.3952,2238.1086,100,1897.0048331045102,1897.0048331045102,361.89764224775644,361.89764224775644,35107.872350000005,4.0,738.10995,1,2,3,4,5,6 +30.0,58.2005,2269.5168,100,1850.8575696772366,1850.8575696772366,366.975352078929,366.975352078929,35094.0273,4.0,721.4182,1,2,3,4,5,6 +30.5,58.67465,2243.3779,100,1108.0369962326151,1108.0369962326151,369.9650405384478,369.9650405384478,22083.39545,2.0,416.0395,1,2,3,4,5,6 +31.0,59.1488,2217.239,100,377.12565424826875,377.12565424826875,372.9547289979667,372.9547289979667,9072.7636,0.0,110.6608,1,2,3,4,5,6 +31.5,59.21015,2081.1263,100,130.44248678647156,130.44248678647156,373.34156309475344,373.34156309475344,4537.80995,0.0,11.878199999999993,1,2,3,4,5,6 +32.0,59.2715,1945.0136,100,-115.73001324413927,-115.73001324413927,373.72839719154024,373.72839719154024,2.8563,0.0,-86.9044,1,2,3,4,5,6 +32.5,59.51635,1811.3387,100,552.0304131049703,552.0304131049703,375.2722656283497,375.2722656283497,9745.61965,2.5,241.7199,1,2,3,4,5,6 +33.0,59.7612,1677.6638,100,1214.3190236139837,1214.3190236139837,376.81613406515913,376.81613406515913,19488.383,5.0,570.3442,1,2,3,4,5,6 +33.5,60.39765,1642.7705500000002,100,1465.652845168645,1465.652845168645,380.8291831425835,380.8291831425835,24863.53455,5.0,752.4274,1,2,3,4,5,6 +34.0,61.0341,1607.8773,100,1711.7449605056843,1711.7449605056843,384.84223222000776,384.84223222000776,30238.6861,5.0,934.5106,1,2,3,4,5,6 +34.5,61.7803,1627.5935,100,1716.9298994825213,1716.9298994825213,389.5472950239579,389.5472950239579,30697.524550000002,5.0,936.973,1,2,3,4,5,6 +35.0,62.5265,1647.3097,100,1721.9910828848567,1721.9910828848567,394.2523578279079,394.2523578279079,31156.363,5.0,939.4354,1,2,3,4,5,6 +35.5,63.2718,1666.94865,100,1711.3073640863702,1711.3073640863702,398.9517458040322,398.9517458040322,31370.951800000003,5.0,934.0116,1,2,3,4,5,6 +36.0,64.0171,1686.5876,100,1700.8724093093876,1700.8724093093876,403.6511337801566,403.6511337801566,31585.5406,5.0,928.5878,1,2,3,4,5,6 +36.5,64.75295,1705.9826,100,1689.5817727840972,1689.5817727840972,408.2909360641109,408.2909360641109,31784.4439,5.0,922.84045,1,2,3,4,5,6 +37.0,65.4888,1725.3776,100,1678.5448655953387,1678.5448655953387,412.9307383480651,412.9307383480651,31983.3472,5.0,917.0931,1,2,3,4,5,6 +37.5,66.21085,1744.40975,100,1667.4474626439626,1667.4474626439626,417.4835266053583,417.4835266053583,32177.179,5.0,911.3961,1,2,3,4,5,6 +38.0,66.9329,1763.4419,100,1656.5894899219963,1656.5894899219963,422.0363148626515,422.0363148626515,32371.0108,5.0,905.6991,1,2,3,4,5,6 +38.5,67.63585,1781.96715,100,1645.6059057437735,1645.6059057437735,426.46867066275433,426.46867066275433,32555.02405,5.0,900.02025,1,2,3,4,5,6 +39.0,68.3388,1800.4924,100,1634.8482813570033,1634.8482813570033,430.90102646285715,430.90102646285715,32739.0373,5.0,894.3414,1,2,3,4,5,6 +39.5,69.01855,1818.4027500000002,100,1623.1959830509336,1623.1959830509336,435.1870978123412,435.1870978123412,32893.38675,5.0,888.3165,1,2,3,4,5,6 +40.0,69.6983,1836.3131,100,1611.7709686175988,1611.7709686175988,439.47316916182535,439.47316916182535,33047.7362,5.0,882.2916,1,2,3,4,5,6 +40.5,70.35315,1853.5656,100,1600.326016233815,1600.326016233815,443.60223694146447,443.60223694146447,33169.16575,5.0,876.37105,1,2,3,4,5,6 +41.0,71.008,1870.8181,100,1589.0921591369988,1589.0921591369988,447.73130472110364,447.73130472110364,33290.5953,5.0,870.4505,1,2,3,4,5,6 +41.5,71.638,1887.4131499999999,100,1578.0631939333875,1578.0631939333875,451.7036841991103,451.7036841991103,33381.281650000004,5.0,864.74705,1,2,3,4,5,6 +42.0,72.268,1904.0082,100,1567.226519870482,1567.226519870482,455.6760636771169,455.6760636771169,33471.968,5.0,859.0436,1,2,3,4,5,6 +42.5,72.87535,1919.99875,100,1556.51618689996,1556.51618689996,459.5056266548428,459.5056266548428,33556.031350000005,5.0,853.54165,1,2,3,4,5,6 +43.0,73.4827,1935.9893,100,1545.9829002472693,1545.9829002472693,463.3351896325687,463.3351896325687,33640.0947,5.0,848.0397,1,2,3,4,5,6 +43.5,74.0723,1951.5144500000001,100,1535.459449065305,1535.459449065305,467.05283239484294,467.05283239484294,33721.5184,5.0,842.6931500000001,1,2,3,4,5,6 +44.0,74.6619,1967.0396,100,1525.1022038549784,1525.1022038549784,470.7704751571171,470.7704751571171,33802.9421,5.0,837.3466,1,2,3,4,5,6 +44.5,75.23745,1982.2069999999999,100,1514.8472809485168,1514.8472809485168,474.3995275516674,474.3995275516674,33883.245599999995,5.0,832.14365,1,2,3,4,5,6 +45.0,75.813,1997.3744,100,1504.748062759685,1504.748062759685,478.0285799462178,478.0285799462178,33963.5491,5.0,826.9407,1,2,3,4,5,6 +45.5,76.37315000000001,2012.13915,100,1495.1574996841164,1495.1574996841164,481.5605297313058,481.5605297313058,34046.449349999995,5.0,822.0252499999999,1,2,3,4,5,6 +46.0,76.9333,2026.9039,100,1485.7065940496507,1485.7065940496507,485.0924795163937,485.0924795163937,34129.3496,5.0,817.1098,1,2,3,4,5,6 +46.5,77.47485,2041.1702,100,1476.5707460808248,1476.5707460808248,488.5071495264167,488.5071495264167,34210.343850000005,5.0,812.40285,1,2,3,4,5,6 +47.0,78.0164,2055.4365,100,1467.5617308924789,1467.5617308924789,491.9218195364397,491.9218195364397,34291.3381,5.0,807.6959,1,2,3,4,5,6 +47.5,78.54105000000001,2069.2437499999996,100,1458.6083244876402,1458.6083244876402,495.2299288906242,495.2299288906242,34369.72485,5.0,803.1404,1,2,3,4,5,6 +48.0,79.0657,2083.051,100,1449.773740901554,1449.773740901554,498.53803824480855,498.53803824480855,34448.1116,5.0,798.5849,1,2,3,4,5,6 +48.5,79.58135,2096.6185,100,1440.7687786522847,1440.7687786522847,501.78939932073564,501.78939932073564,34525.1324,5.0,794.10835,1,2,3,4,5,6 +49.0,80.097,2110.186,100,1431.8797610397396,1431.8797610397396,505.0407603966628,505.0407603966628,34602.1532,5.0,789.6318,1,2,3,4,5,6 +49.5,80.61005,2123.71465,100,1422.8608877056895,1422.8608877056895,508.275727525538,508.275727525538,34678.9505,5.0,785.168,1,2,3,4,5,6 +50.0,81.1231,2137.2433,100,1413.9560911996707,1413.9560911996707,511.51069465441304,511.51069465441304,34755.7478,5.0,780.7042,1,2,3,4,5,6 +50.5,81.63045,2150.6181,100,1405.21539748954,1405.21539748954,514.7097212070585,514.7097212070585,34831.67234999999,5.0,776.2912,1,2,3,4,5,6 +51.0,82.1378,2163.9929,100,1396.5826830764888,1396.5826830764888,517.908747759704,517.908747759704,34907.5969,5.0,771.8782,1,2,3,4,5,6 +51.5,82.63425000000001,2177.0726000000004,100,1387.974546038719,1387.974546038719,521.0390458420159,521.0390458420159,35000.32485,5.0,767.5221,1,2,3,4,5,6 +52.0,83.1307,2190.1523,100,1379.4692232352186,1379.4692232352186,524.1693439243276,524.1693439243276,35093.0528,5.0,763.166,1,2,3,4,5,6 +52.5,83.51555,2189.6397,100,1126.2954307670846,1126.2954307670846,526.5959633562496,526.5959633562496,29382.404599999998,5.0,619.63725,1,2,3,4,5,6 +53.0,83.9004,2189.1271,100,875.4442478224179,875.4442478224179,529.0225827881716,529.0225827881716,23671.7564,5.0,476.1085,1,2,3,4,5,6 +53.5,83.9725,2083.6604500000003,100,378.9232291047664,378.9232291047664,529.4771995506545,529.4771995506545,11841.1927,2.5,194.17579999999998,1,2,3,4,5,6 +54.0,84.0446,1978.1938,100,-116.7458808537372,-116.7458808537372,529.9318163131375,529.9318163131375,10.629,0.0,-87.7569,1,2,3,4,5,6 +54.5,83.98230000000001,1847.3705,100,61.3341456235421,61.3341456235421,529.5389921203124,529.5389921203124,3952.9942499999997,0.0,48.28959999999998,1,2,3,4,5,6 +55.0,83.92,1716.5472,100,239.67857595328888,239.67857595328888,529.1461679274872,529.1461679274872,7895.3595,0.0,184.3361,1,2,3,4,5,6 +55.5,84.11255,1670.72995,100,691.9627915572645,691.9627915572645,530.3602658139797,530.3602658139797,18437.2573,3.0,534.7845,1,2,3,4,5,6 +56.0,84.3051,1624.9127,100,1142.181003426839,1142.181003426839,531.574363700472,531.574363700472,28979.1551,6.0,885.2329,1,2,3,4,5,6 +56.5,84.57255,1628.7525500000002,100,907.1229346756127,907.1229346756127,533.2607333693496,533.2607333693496,23894.66895,6.0,724.11865,1,2,3,4,5,6 +57.0,84.84,1632.5924,100,673.5468621640733,673.5468621640733,534.9471030382272,534.9471030382272,18810.1828,6.0,563.0044,1,2,3,4,5,6 +57.5,84.92,1633.6647,100,500.4770629769194,500.4770629769194,535.4515321782915,535.4515321782915,14916.76715,6.0,441.36845000000005,1,2,3,4,5,6 +58.0,85.0,1634.737,100,327.7330422352941,327.7330422352941,535.9559613183559,535.9559613183559,11023.3515,6.0,319.7325,1,2,3,4,5,6 +58.5,85.0,1634.737,100,347.22170258823525,347.22170258823525,535.9559613183559,535.9559613183559,11469.78055,6.0,333.30420000000004,1,2,3,4,5,6 +59.0,85.0,1634.737,100,366.7103629411764,366.7103629411764,535.9559613183559,535.9559613183559,11916.2096,6.0,346.8759,1,2,3,4,5,6 +59.5,85.0,1634.737,100,388.78027919999994,388.78027919999994,535.9559613183559,535.9559613183559,12415.468649999999,6.0,362.24475,1,2,3,4,5,6 +60.0,85.0,1634.737,100,410.8501954588235,410.8501954588235,535.9559613183559,535.9559613183559,12914.7277,6.0,377.6136,1,2,3,4,5,6 +60.5,85.0,1634.737,100,422.3174426470588,422.3174426470588,535.9559613183559,535.9559613183559,13155.953300000001,6.0,385.59900000000005,1,2,3,4,5,6 +61.0,85.0,1634.737,100,433.78468983529405,433.78468983529405,535.9559613183559,535.9559613183559,13397.1789,6.0,393.5844,1,2,3,4,5,6 +61.5,85.0,1634.737,100,427.9363090941176,427.9363090941176,535.9559613183559,535.9559613183559,13276.53025,6.0,389.51155,1,2,3,4,5,6 +62.0,85.0,1634.737,100,422.0879283529411,422.0879283529411,535.9559613183559,535.9559613183559,13155.8816,6.0,385.4387,1,2,3,4,5,6 +62.5,85.0,1634.737,100,395.44688954117646,395.44688954117646,535.9559613183559,535.9559613183559,12560.0468,6.0,366.88694999999996,1,2,3,4,5,6 +63.0,85.0,1634.737,100,368.8058507294117,368.8058507294117,535.9559613183559,535.9559613183559,11964.212,6.0,348.3352,1,2,3,4,5,6 +63.5,85.0,1634.737,100,340.6642786588235,340.6642786588235,535.9559613183559,535.9559613183559,11319.5751,6.0,328.73789999999997,1,2,3,4,5,6 +64.0,85.0,1634.737,100,312.5227065882352,312.5227065882352,535.9559613183559,535.9559613183559,10674.9382,6.0,309.1406,1,2,3,4,5,6 +64.5,85.0,1634.737,100,301.4222366117646,301.4222366117646,535.9559613183559,535.9559613183559,10431.7512,6.0,301.41044999999997,1,2,3,4,5,6 +65.0,85.0,1634.737,100,290.32176663529407,290.32176663529407,535.9559613183559,535.9559613183559,10188.5642,6.0,293.6803,1,2,3,4,5,6 +65.5,85.0,1634.737,100,288.6055345058823,288.6055345058823,535.9559613183559,535.9559613183559,10155.1507,6.0,292.4851,1,2,3,4,5,6 +66.0,85.0,1634.737,100,286.88930237647054,286.88930237647054,535.9559613183559,535.9559613183559,10121.7372,6.0,291.2899,1,2,3,4,5,6 +66.5,85.0,1634.737,100,277.0647536117647,277.0647536117647,535.9559613183559,535.9559613183559,9925.812249999999,6.0,284.44825000000003,1,2,3,4,5,6 +67.0,85.0,1634.737,100,267.2402048470588,267.2402048470588,535.9559613183559,535.9559613183559,9729.8873,6.0,277.6066,1,2,3,4,5,6 +67.5,85.0,1634.737,100,253.4180964352941,253.4180964352941,535.9559613183559,535.9559613183559,9426.975699999999,6.0,267.98115,1,2,3,4,5,6 +68.0,85.0,1634.737,100,239.59598802352937,239.59598802352937,535.9559613183559,535.9559613183559,9124.0641,6.0,258.3557,1,2,3,4,5,6 +68.5,85.0,1634.737,100,226.63221850588232,226.63221850588232,535.9559613183559,535.9559613183559,8830.94745,6.0,249.3279,1,2,3,4,5,6 +69.0,85.0,1634.737,100,213.66844898823527,213.66844898823527,535.9559613183559,535.9559613183559,8537.8308,6.0,240.3001,1,2,3,4,5,6 +69.5,85.0,1634.737,100,190.03516157647056,190.03516157647056,535.9559613183559,535.9559613183559,8014.50475,6.0,224.17079999999999,1,2,3,4,5,6 +70.0,85.0,1634.737,100,166.40187416470587,166.40187416470587,535.9559613183559,535.9559613183559,7491.1787,6.0,208.0415,1,2,3,4,5,6 +70.5,85.0,1634.737,100,131.5486802117647,131.5486802117647,535.9559613183559,535.9559613183559,6754.457,6.0,184.91595,1,2,3,4,5,6 +71.0,85.0,1634.737,100,96.69548625882351,96.69548625882351,535.9559613183559,535.9559613183559,6017.7353,6.0,161.7904,1,2,3,4,5,6 +71.5,85.0,1634.737,100,66.95622730588235,66.95622730588235,535.9559613183559,535.9559613183559,5403.66075,6.0,142.28545,1,2,3,4,5,6 +72.0,85.0,1634.737,100,37.21696835294117,37.21696835294117,535.9559613183559,535.9559613183559,4789.5862,6.0,122.7805,1,2,3,4,5,6 +72.5,85.0,1634.737,100,12.494490776470588,12.494490776470588,535.9559613183559,535.9559613183559,4337.14105,6.0,106.57795,1,2,3,4,5,6 +73.0,85.0,1634.737,100,-12.227986799999996,-12.227986799999996,535.9559613183559,535.9559613183559,3884.6959,6.0,90.3754,1,2,3,4,5,6 +73.5,85.0,1634.737,100,-38.05970918823528,-38.05970918823528,535.9559613183559,535.9559613183559,3517.8785500000004,6.0,73.4546,1,2,3,4,5,6 +74.0,85.0,1634.737,100,-63.89143157647057,-63.89143157647057,535.9559613183559,535.9559613183559,3151.0612,6.0,56.5338,1,2,3,4,5,6 +74.5,85.0,1634.737,100,-123.63868175294115,-123.63868175294115,535.9559613183559,535.9559613183559,2294.3371500000003,6.0,17.752200000000002,1,2,3,4,5,6 +75.0,85.0,1634.737,100,-183.38593192941175,-183.38593192941175,535.9559613183559,535.9559613183559,1437.6131,6.0,-21.0294,1,2,3,4,5,6 +75.5,85.0,1634.737,100,-214.95283771764704,-214.95283771764704,535.9559613183559,535.9559613183559,923.92265,6.0,-41.302499999999995,1,2,3,4,5,6 +76.0,85.0,1634.737,100,-246.51974350588233,-246.51974350588233,535.9559613183559,535.9559613183559,410.2322,6.0,-61.5756,1,2,3,4,5,6 +76.5,85.0,1634.737,100,-244.8997736823529,-244.8997736823529,535.9559613183559,535.9559613183559,437.08820000000003,6.0,-60.535,1,2,3,4,5,6 +77.0,85.0,1634.737,100,-243.27980385882347,-243.27980385882347,535.9559613183559,535.9559613183559,463.9442,6.0,-59.4944,1,2,3,4,5,6 +77.5,85.0,1634.737,100,-228.56281252941176,-228.56281252941176,535.9559613183559,535.9559613183559,707.8637,6.0,-50.042950000000005,1,2,3,4,5,6 +78.0,85.0,1634.737,100,-213.8458212,-213.8458212,535.9559613183559,535.9559613183559,951.7832,6.0,-40.5915,1,2,3,4,5,6 +78.5,85.0,1634.737,100,-209.8750010823529,-209.8750010823529,535.9559613183559,535.9559613183559,1017.5980500000001,6.0,-38.041250000000005,1,2,3,4,5,6 +79.0,85.0,1634.737,100,-205.90418096470583,-205.90418096470583,535.9559613183559,535.9559613183559,1083.4129,6.0,-35.491,1,2,3,4,5,6 +79.5,85.0,1634.737,100,-210.21370178823528,-210.21370178823528,535.9559613183559,535.9559613183559,1011.9862,6.0,-38.258700000000005,1,2,3,4,5,6 +80.0,85.0,1634.737,100,-214.52322261176468,-214.52322261176468,535.9559613183559,535.9559613183559,940.5595,6.0,-41.0264,1,2,3,4,5,6 +80.5,85.0,1634.737,100,-219.10860624705882,-219.10860624705882,535.9559613183559,535.9559613183559,864.5581999999999,6.0,-43.9713,1,2,3,4,5,6 +81.0,85.0,1634.737,100,-223.6939898823529,-223.6939898823529,535.9559613183559,535.9559613183559,788.5569,6.0,-46.9162,1,2,3,4,5,6 +81.5,85.0,1634.737,100,-218.21773425882353,-218.21773425882353,535.9559613183559,535.9559613183559,879.32335,6.0,-43.399150000000006,1,2,3,4,5,6 +82.0,85.0,1634.737,100,-212.7414786352941,-212.7414786352941,535.9559613183559,535.9559613183559,970.0898,6.0,-39.8821,1,2,3,4,5,6 +82.5,85.0,1634.737,100,-189.6144596470588,-189.6144596470588,535.9559613183559,535.9559613183559,1343.6334,6.0,-25.02945,1,2,3,4,5,6 +83.0,85.0,1634.737,100,-166.4874406588235,-166.4874406588235,535.9559613183559,535.9559613183559,1717.177,6.0,-10.1768,1,2,3,4,5,6 +83.5,85.0,1634.737,100,-143.61132758823527,-143.61132758823527,535.9559613183559,535.9559613183559,2040.35005,6.0,4.562049999999999,1,2,3,4,5,6 +84.0,85.0,1634.737,100,-120.73521451764705,-120.73521451764705,535.9559613183559,535.9559613183559,2363.5231,6.0,19.3009,1,2,3,4,5,6 +84.5,85.0,1634.737,100,-115.82316296470587,-115.82316296470587,535.9559613183559,535.9559613183559,2430.27895,6.0,22.50095,1,2,3,4,5,6 +85.0,85.0,1634.737,100,-110.9111114117647,-110.9111114117647,535.9559613183559,535.9559613183559,2497.0348,6.0,25.701,1,2,3,4,5,6 +85.5,85.0,1634.737,100,-121.71388129411763,-121.71388129411763,535.9559613183559,535.9559613183559,2351.64315,6.0,18.68105,1,2,3,4,5,6 +86.0,85.0,1634.737,100,-132.51665117647056,-132.51665117647056,535.9559613183559,535.9559613183559,2206.2515,6.0,11.6611,1,2,3,4,5,6 +86.5,85.0,1634.737,100,-154.56071922352936,-154.56071922352936,535.9559613183559,535.9559613183559,1884.71495,6.0,-2.506549999999999,1,2,3,4,5,6 +87.0,85.0,1634.737,100,-176.60478727058822,-176.60478727058822,535.9559613183559,535.9559613183559,1563.1784,6.0,-16.6742,1,2,3,4,5,6 +87.5,85.0,1634.737,100,-200.95291143529408,-200.95291143529408,535.9559613183559,535.9559613183559,1162.549,6.0,-32.3113,1,2,3,4,5,6 +88.0,85.0,1634.737,100,-225.30103559999995,-225.30103559999995,535.9559613183559,535.9559613183559,761.9196,6.0,-47.9484,1,2,3,4,5,6 +88.5,85.0,1634.737,100,-232.3264012941176,-232.3264012941176,535.9559613183559,535.9559613183559,645.4782499999999,6.0,-52.460300000000004,1,2,3,4,5,6 +89.0,85.0,1634.737,100,-239.35176698823525,-239.35176698823525,535.9559613183559,535.9559613183559,529.0369,6.0,-56.9722,1,2,3,4,5,6 +89.5,85.0,1634.737,100,-223.28844035294114,-223.28844035294114,535.9559613183559,535.9559613183559,795.28135,6.0,-46.65565,1,2,3,4,5,6 +90.0,85.0,1634.737,100,-207.22511371764705,-207.22511371764705,535.9559613183559,535.9559613183559,1061.5258,6.0,-36.3391,1,2,3,4,5,6 +90.5,85.0,1634.737,100,-181.2579110470588,-181.2579110470588,535.9559613183559,535.9559613183559,1473.30705,6.0,-19.66255,1,2,3,4,5,6 +91.0,85.0,1634.737,100,-155.29070837647055,-155.29070837647055,535.9559613183559,535.9559613183559,1885.0883,6.0,-2.986,1,2,3,4,5,6 +91.5,85.0,1634.737,100,-125.81037719999998,-125.81037719999998,535.9559613183559,535.9559613183559,2292.5668,6.0,16.14275,1,2,3,4,5,6 +92.0,85.0,1634.737,100,-96.3300460235294,-96.3300460235294,535.9559613183559,535.9559613183559,2700.0453,6.0,35.2715,1,2,3,4,5,6 +92.5,85.0,1634.737,100,-71.06431034117647,-71.06431034117647,535.9559613183559,535.9559613183559,3051.1323,6.0,51.82285,1,2,3,4,5,6 +93.0,85.0,1634.737,100,-45.798574658823526,-45.798574658823526,535.9559613183559,535.9559613183559,3402.2193,6.0,68.3742,1,2,3,4,5,6 +93.5,85.0,1634.737,100,-38.41267097647058,-38.41267097647058,535.9559613183559,535.9559613183559,3504.90165,6.0,73.21495,1,2,3,4,5,6 +94.0,85.0,1634.737,100,-31.026767294117644,-31.026767294117644,535.9559613183559,535.9559613183559,3607.584,6.0,78.0557,1,2,3,4,5,6 +94.5,85.0,1634.737,100,-40.77778235294116,-40.77778235294116,535.9559613183559,535.9559613183559,3472.0225499999997,6.0,71.6649,1,2,3,4,5,6 +95.0,85.0,1634.737,100,-50.5287974117647,-50.5287974117647,535.9559613183559,535.9559613183559,3336.4611,6.0,65.2741,1,2,3,4,5,6 +95.5,85.0,1634.737,100,-68.83378792941176,-68.83378792941176,535.9559613183559,535.9559613183559,3081.9891,6.0,53.2775,1,2,3,4,5,6 +96.0,85.0,1634.737,100,-87.13877844705883,-87.13877844705883,535.9559613183559,535.9559613183559,2827.5171,6.0,41.2809,1,2,3,4,5,6 +96.5,85.0,1634.737,100,-103.33446575294117,-103.33446575294117,535.9559613183559,535.9559613183559,2602.56355,6.0,30.675900000000002,1,2,3,4,5,6 +97.0,85.0,1634.737,100,-119.53015305882352,-119.53015305882352,535.9559613183559,535.9559613183559,2377.61,6.0,20.0709,1,2,3,4,5,6 +97.5,85.0,1634.737,100,-128.68487661176468,-128.68487661176468,535.9559613183559,535.9559613183559,2255.8761,6.0,14.146450000000002,1,2,3,4,5,6 +98.0,85.0,1634.737,100,-137.83960016470587,-137.83960016470587,535.9559613183559,535.9559613183559,2134.1422,6.0,8.222,1,2,3,4,5,6 +98.5,85.0,1634.737,100,-138.9443883882353,-138.9443883882353,535.9559613183559,535.9559613183559,2120.22295,6.0,7.5123,1,2,3,4,5,6 +99.0,85.0,1634.737,100,-140.0491766117647,-140.0491766117647,535.9559613183559,535.9559613183559,2106.3037,6.0,6.8026,1,2,3,4,5,6 +99.5,85.0,1634.737,100,-123.83477163529409,-123.83477163529409,535.9559613183559,535.9559613183559,2325.1101,6.0,17.342149999999997,1,2,3,4,5,6 +100.0,85.0,1634.737,100,-107.6203666588235,-107.6203666588235,535.9559613183559,535.9559613183559,2543.9165,6.0,27.8817,1,2,3,4,5,6 +100.5,85.0,1634.737,100,-76.97196370588235,-76.97196370588235,535.9559613183559,535.9559613183559,2969.4177499999996,6.0,47.95585,1,2,3,4,5,6 +101.0,85.0,1634.737,100,-46.32356075294117,-46.32356075294117,535.9559613183559,535.9559613183559,3394.919,6.0,68.03,1,2,3,4,5,6 +101.5,85.0,1634.737,100,-25.43909696470588,-25.43909696470588,535.9559613183559,535.9559613183559,3690.7473,6.0,81.71745,1,2,3,4,5,6 +102.0,85.0,1634.737,100,-4.554633176470587,-4.554633176470587,535.9559613183559,535.9559613183559,3986.5756,6.0,95.4049,1,2,3,4,5,6 +102.5,85.0,1634.737,100,-0.934100894117647,-0.934100894117647,535.9559613183559,535.9559613183559,4045.5918,6.0,97.77765,1,2,3,4,5,6 +103.0,85.0,1634.737,100,2.6864313882352935,2.6864313882352935,535.9559613183559,535.9559613183559,4104.608,6.0,100.1504,1,2,3,4,5,6 +103.5,85.0,1634.737,100,10.228315658823528,10.228315658823528,535.9559613183559,535.9559613183559,4248.96165,6.0,105.09309999999999,1,2,3,4,5,6 +104.0,85.0,1634.737,100,17.770199929411763,17.770199929411763,535.9559613183559,535.9559613183559,4393.3153,6.0,110.0358,1,2,3,4,5,6 +104.5,85.0,1634.737,100,41.82730888235294,41.82730888235294,535.9559613183559,535.9559613183559,4887.2058,6.0,125.80225,1,2,3,4,5,6 +105.0,85.0,1634.737,100,65.88441783529412,65.88441783529412,535.9559613183559,535.9559613183559,5381.0963,6.0,141.5687,1,2,3,4,5,6 +105.5,85.0,1634.737,100,89.71869737647057,89.71869737647057,535.9559613183559,535.9559613183559,5873.02065,6.0,157.1938,1,2,3,4,5,6 +106.0,85.0,1634.737,100,113.55297691764704,113.55297691764704,535.9559613183559,535.9559613183559,6364.945,6.0,172.8189,1,2,3,4,5,6 +106.5,85.0,1634.737,100,120.63360430588233,120.63360430588233,535.9559613183559,535.9559613183559,6511.45995,6.0,177.47265,1,2,3,4,5,6 +107.0,85.0,1634.737,100,127.71423169411761,127.71423169411761,535.9559613183559,535.9559613183559,6657.9749,6.0,182.1264,1,2,3,4,5,6 +107.5,85.0,1634.737,100,127.7712760235294,127.7712760235294,535.9559613183559,535.9559613183559,6659.1705999999995,6.0,182.1644,1,2,3,4,5,6 +108.0,85.0,1634.737,100,127.82832035294116,127.82832035294116,535.9559613183559,535.9559613183559,6660.3663,6.0,182.2024,1,2,3,4,5,6 +108.5,85.0,1634.737,100,141.68964674117643,141.68964674117643,535.9559613183559,535.9559613183559,6963.3274,6.0,191.5784,1,2,3,4,5,6 +109.0,85.0,1634.737,100,155.55097312941174,155.55097312941174,535.9559613183559,535.9559613183559,7266.2885,6.0,200.9544,1,2,3,4,5,6 +109.5,85.0,1634.737,100,221.17958279999993,221.17958279999993,535.9559613183559,535.9559613183559,8697.945,6.0,246.09395,1,2,3,4,5,6 +110.0,85.0,1634.737,100,286.80819247058815,286.80819247058815,535.9559613183559,535.9559613183559,10129.6015,6.0,291.2335,1,2,3,4,5,6 +110.5,85.0,1634.737,100,335.8680983999999,335.8680983999999,535.9559613183559,535.9559613183559,11227.196800000002,6.0,325.39775,1,2,3,4,5,6 +111.0,85.0,1634.737,100,384.9280043294117,384.9280043294117,535.9559613183559,535.9559613183559,12324.7921,6.0,359.562,1,2,3,4,5,6 +111.5,85.0,1634.737,100,432.2391450352941,432.2391450352941,535.9559613183559,535.9559613183559,13374.696100000001,6.0,392.5097,1,2,3,4,5,6 +112.0,85.0,1634.737,100,479.5502857411764,479.5502857411764,535.9559613183559,535.9559613183559,14424.6001,6.0,425.4574,1,2,3,4,5,6 +112.5,85.0,1634.737,100,525.3604475294117,525.3604475294117,535.9559613183559,535.9559613183559,15453.368849999999,6.0,457.37725,1,2,3,4,5,6 +113.0,85.0,1634.737,100,571.1706093176468,571.1706093176468,535.9559613183559,535.9559613183559,16482.1376,6.0,489.2971,1,2,3,4,5,6 +113.5,85.0,1634.737,100,612.151166435294,612.151166435294,535.9559613183559,535.9559613183559,17411.24295,6.0,517.8591,1,2,3,4,5,6 +114.0,85.0,1634.737,100,653.1317235529411,653.1317235529411,535.9559613183559,535.9559613183559,18340.3483,6.0,546.4211,1,2,3,4,5,6 +114.5,85.0,1634.737,100,689.4974835529412,689.4974835529412,535.9559613183559,535.9559613183559,19151.1913,6.0,571.7661,1,2,3,4,5,6 +115.0,85.0,1634.737,100,725.8632435529411,725.8632435529411,535.9559613183559,535.9559613183559,19962.0343,6.0,597.1111,1,2,3,4,5,6 +115.5,85.0,1634.737,100,766.2568679999998,766.2568679999998,535.9559613183559,535.9559613183559,20859.16705,6.0,625.24815,1,2,3,4,5,6 +116.0,85.0,1634.737,100,806.6504924470587,806.6504924470587,535.9559613183559,535.9559613183559,21756.2998,6.0,653.3852,1,2,3,4,5,6 +116.5,85.0,1634.737,100,842.9489579647058,842.9489579647058,535.9559613183559,535.9559613183559,22530.010000000002,6.0,678.6623500000001,1,2,3,4,5,6 +117.0,85.0,1634.737,100,879.2474234823527,879.2474234823527,535.9559613183559,535.9559613183559,23303.7202,6.0,703.9395,1,2,3,4,5,6 +117.5,85.0,1634.737,100,892.8315500823527,892.8315500823527,535.9559613183559,535.9559613183559,23602.49185,6.0,713.3991,1,2,3,4,5,6 +118.0,85.0,1634.737,100,906.4156766823528,906.4156766823528,535.9559613183559,535.9559613183559,23901.2635,6.0,722.8587,1,2,3,4,5,6 +118.5,85.0,1634.737,100,899.7851647058822,899.7851647058822,535.9559613183559,535.9559613183559,23755.0475,6.0,718.24145,1,2,3,4,5,6 +119.0,85.0,1634.737,100,893.1546527294116,893.1546527294116,535.9559613183559,535.9559613183559,23608.8315,6.0,713.6242,1,2,3,4,5,6 +119.5,85.0,1634.737,100,880.0037065058822,880.0037065058822,535.9559613183559,535.9559613183559,23318.81765,6.0,704.46605,1,2,3,4,5,6 +120.0,85.0,1634.737,100,866.8527602823527,866.8527602823527,535.9559613183559,535.9559613183559,23028.8038,6.0,695.3079,1,2,3,4,5,6 +120.5,85.0,1634.737,100,878.8120148117646,878.8120148117646,535.9559613183559,535.9559613183559,23292.536350000002,6.0,703.63615,1,2,3,4,5,6 +121.0,85.0,1634.737,100,890.7712693411763,890.7712693411763,535.9559613183559,535.9559613183559,23556.2689,6.0,711.9644,1,2,3,4,5,6 +121.5,85.0,1634.737,100,920.4842344235293,920.4842344235293,535.9559613183559,535.9559613183559,24216.96535,6.0,732.65605,1,2,3,4,5,6 +122.0,85.0,1634.737,100,950.1971995058823,950.1971995058823,535.9559613183559,535.9559613183559,24877.6618,6.0,753.3477,1,2,3,4,5,6 +122.5,85.0,1634.737,100,994.8138869647058,994.8138869647058,535.9559613183559,535.9559613183559,25884.972650000003,6.0,784.42295,1,2,3,4,5,6 +123.0,85.0,1634.737,100,1039.4305744235294,1039.4305744235294,535.9559613183559,535.9559613183559,26892.2835,6.0,815.4982,1,2,3,4,5,6 +123.5,85.0,1634.737,100,1045.3957177764705,1045.3957177764705,535.9559613183559,535.9559613183559,27028.5868,6.0,819.65395,1,2,3,4,5,6 +124.0,85.0,1634.737,100,1051.3608611294117,1051.3608611294117,535.9559613183559,535.9559613183559,27164.8901,6.0,823.8097,1,2,3,4,5,6 +124.5,85.0,1634.737,100,1037.0445170823527,1037.0445170823527,535.9559613183559,535.9559613183559,26837.76045,6.0,813.8359,1,2,3,4,5,6 +125.0,85.0,1634.737,100,1022.7281730352939,1022.7281730352939,535.9559613183559,535.9559613183559,26510.6308,6.0,803.8621,1,2,3,4,5,6 +125.5,84.88705,1633.6475500000001,100,743.6634745346905,743.6634745346905,535.2437704262275,535.2437704262275,20700.9492,6.0,611.18525,1,2,3,4,5,6 +126.0,84.7741,1632.5581,100,463.85514424806627,463.85514424806627,534.5315795340991,534.5315795340991,14891.2676,6.0,418.5084,1,2,3,4,5,6 +126.5,84.3989,1624.24785,100,104.22572349876597,104.22572349876597,532.1658068671973,532.1658068671973,7445.63375,6.0,170.89035,1,2,3,4,5,6 +127.0,84.0237,1615.9376,100,-258.6154805608418,-258.6154805608418,529.8000342002957,529.8000342002957,-0.0001,6.0,-76.7277,1,2,3,4,5,6 +127.5,83.50120000000001,1605.8915499999998,100,-258.1736781387572,-258.1736781387572,526.5054813792506,526.5054813792506,-0.0001,6.0,-76.33025,1,2,3,4,5,6 +128.0,82.9787,1595.8455,100,-257.726311836652,-257.726311836652,523.2109285582054,523.2109285582054,-0.0001,6.0,-75.9328,1,2,3,4,5,6 +128.5,82.45824999999999,1585.84175,100,-257.25080093259317,-257.25080093259317,519.9293017338742,519.9293017338742,-5e-05,6.0,-75.53705,1,2,3,4,5,6 +129.0,81.9378,1575.838,100,-256.76924935743943,-256.76924935743943,516.6476749095432,516.6476749095432,0.0,6.0,-75.1413,1,2,3,4,5,6 +129.5,81.4157,1565.7988,100,-256.256492040233,-256.256492040233,513.3556442341984,513.3556442341984,-5e-05,6.0,-74.74414999999999,1,2,3,4,5,6 +130.0,80.8936,1555.7596,100,-255.73711589050308,-255.73711589050308,510.0636135588535,510.0636135588535,-0.0001,6.0,-74.347,1,2,3,4,5,6 +130.5,80.27685,1544.9353500000002,100,-470.7686976506926,-470.7686976506926,506.17478015717,506.17478015717,0.0,6.0,-73.91874999999999,1,2,3,4,5,6 +131.0,79.6601,1534.1111,100,-689.1299445268083,-689.1299445268083,502.28594675548646,502.28594675548646,0.0001,6.0,-73.4905,1,2,3,4,5,6 +131.5,78.8553,1517.57305,100,-918.8933423878926,-918.8933423878926,497.21138960643935,497.21138960643935,0.0001,6.0,-72.83625,1,2,3,4,5,6 +132.0,78.0505,1501.035,100,-1153.395046412259,-1153.395046412259,492.1368324573921,492.1368324573921,0.0001,6.0,-72.182,1,2,3,4,5,6 +132.5,77.1505,1483.72605,100,-1160.9614096733012,-1160.9614096733012,486.46200463166826,486.46200463166826,0.0001,6.0,-71.49725000000001,1,2,3,4,5,6 +133.0,76.2505,1466.4171,100,-1168.7063875515569,-1168.7063875515569,480.7871768059446,480.7871768059446,0.0001,6.0,-70.8125,1,2,3,4,5,6 +133.5,75.35050000000001,1449.1082,100,-1170.4080512007217,-1170.4080512007217,475.11234898022093,475.11234898022093,0.0031499999999999996,6.0,-70.11245,1,2,3,4,5,6 +134.0,74.4505,1431.7993,100,-1172.1508562064728,-1172.1508562064728,469.43752115449706,469.43752115449706,0.0062,6.0,-69.4124,1,2,3,4,5,6 +134.5,73.5505,1414.49035,100,-1166.9617239311767,-1166.9617239311767,463.7626933287733,463.7626933287733,0.0031,6.0,-68.6428,1,2,3,4,5,6 +135.0,72.6505,1397.1814,100,-1161.6440249138,-1161.6440249138,458.08786550304944,458.08786550304944,0.0,6.0,-67.8732,1,2,3,4,5,6 +135.5,71.75049999999999,1379.8725,100,-1154.656573515167,-1154.656573515167,452.4130376773257,452.4130376773257,0.0,6.0,-67.0943,1,2,3,4,5,6 +136.0,70.8505,1362.5636,100,-1147.4916016683014,-1147.4916016683014,446.73820985160205,446.73820985160205,0.0,6.0,-66.3154,1,2,3,4,5,6 +136.5,69.9505,1345.25475,100,-1150.0616471218932,-1150.0616471218932,441.0633820258782,441.0633820258782,0.0,6.0,-65.53649999999999,1,2,3,4,5,6 +137.0,69.0505,1327.9459,100,-1152.6986882064575,-1152.6986882064575,435.38855420015443,435.38855420015443,0.0,6.0,-64.7576,1,2,3,4,5,6 +137.5,68.1505,1310.6370499999998,100,-1171.9817385785873,-1171.9817385785873,429.71372637443056,429.71372637443056,0.0,6.0,-63.9787,1,2,3,4,5,6 +138.0,67.2505,1293.3282,100,-1191.7809113686887,-1191.7809113686887,424.0388985487069,424.0388985487069,0.0,6.0,-63.1998,1,2,3,4,5,6 +138.5,66.35050000000001,1276.01935,100,-1222.1488901515434,-1222.1488901515434,418.3640707229832,418.3640707229832,0.0,6.0,-62.4209,1,2,3,4,5,6 +139.0,65.4505,1258.7105,100,-1253.3520399691372,-1253.3520399691372,412.6892428972593,412.6892428972593,0.0,6.0,-61.642,1,2,3,4,5,6 +139.5,64.5505,1241.4017,100,-1281.1149333157762,-1281.1149333157762,407.0144150715356,407.0144150715356,0.0045,6.0,-60.851600000000005,1,2,3,4,5,6 +140.0,63.6505,1224.0929,100,-1309.662945522816,-1309.662945522816,401.33958724581186,401.33958724581186,0.009,6.0,-60.0612,1,2,3,4,5,6 +140.5,62.7505,1206.78415,100,-1323.9808077385837,-1323.9808077385837,395.6647594200881,395.6647594200881,0.004549999999999999,6.0,-59.21565,1,2,3,4,5,6 +141.0,61.8505,1189.4754,100,-1338.7153545727197,-1338.7153545727197,389.9899315943643,389.9899315943643,0.0001,6.0,-58.3701,1,2,3,4,5,6 +141.5,60.92915,1171.9236500000002,100,-1387.0564429505419,-1387.0564429505419,384.1804842418859,384.1804842418859,5e-05,6.0,-57.50305,1,2,3,4,5,6 +142.0,60.0078,1154.3719,100,-1436.8819737434133,-1436.8819737434133,378.3710368894075,378.3710368894075,0.0,6.0,-56.636,1,2,3,4,5,6 +142.5,58.9734,1134.5486500000002,100,-1637.756162439337,-1637.756162439337,371.84876810837557,371.84876810837557,0.0,6.0,-55.65675,1,2,3,4,5,6 +143.0,57.939,1114.7254,100,-1845.8028691554914,-1845.8028691554914,365.32649932734375,365.32649932734375,0.0,6.0,-54.6775,1,2,3,4,5,6 +143.5,56.6969,1090.87245,100,-2097.593670394678,-2097.593670394678,357.49460639141984,357.49460639141984,0.0,6.0,-53.4992,1,2,3,4,5,6 +144.0,55.4548,1067.0195,100,-2360.663904765683,-2360.663904765683,349.662713455496,349.662713455496,0.0,6.0,-52.3209,1,2,3,4,5,6 +144.5,53.9717,1038.3953000000001,100,-2631.3312740010037,-2631.3312740010037,340.31122773512834,340.31122773512834,1.08985,6.0,-50.953450000000004,1,2,3,4,5,6 +145.0,52.4886,1009.7711,100,-2917.2944131868635,-2917.2944131868635,330.9597420147606,330.9597420147606,2.1797,6.0,-49.586,1,2,3,4,5,6 +145.5,50.84795,977.9982,100,-2978.777241462046,-2978.777241462046,320.61484615667865,320.61484615667865,3.27015,6.0,-48.4864,1,2,3,4,5,6 +146.0,49.2073,946.2253,100,-3044.3599411875884,-3044.3599411875884,310.26995029859677,310.26995029859677,4.3606,6.0,-47.3868,1,2,3,4,5,6 +146.5,47.53415,914.0515499999999,100,-3032.9743652090133,-3032.9743652090133,299.7201301023638,299.7201301023638,3.3456,6.0,-46.421549999999996,1,2,3,4,5,6 +147.0,45.861,881.8778,100,-3020.758027735985,-3020.758027735985,289.17030990613074,289.17030990613074,2.3306,6.0,-45.4563,1,2,3,4,5,6 +147.5,44.18785,849.7058,100,-3012.3958502846376,-3012.3958502846376,278.6204897098977,278.6204897098977,1.40785,6.0,-44.463049999999996,1,2,3,4,5,6 +148.0,42.5147,817.5338,100,-3003.375492147422,-3003.375492147422,268.0706695136647,268.0706695136647,0.4851,6.0,-43.4698,1,2,3,4,5,6 +148.5,40.841499999999996,785.364,100,-3000.517637599011,-3000.517637599011,257.5205340492191,257.5205340492191,0.24255,6.0,-42.26935,1,2,3,4,5,6 +149.0,39.1683,753.1942,100,-2997.4156181401795,-2997.4156181401795,246.97039858477362,246.97039858477362,0.0,6.0,-41.0689,1,2,3,4,5,6 +149.5,37.49515,736.1125999999999,100,-2998.792233315509,-2998.792233315509,236.42057838854058,236.42057838854058,484.02075,6.0,-9.0141,1,2,3,4,5,6 +150.0,35.822,719.031,100,-3000.297444531293,-3000.297444531293,225.8707581923076,225.8707581923076,968.0415,6.0,23.0407,1,2,3,4,5,6 +150.5,34.1488,833.5788,100,-3006.915304227381,-3006.915304227381,215.320622727862,215.320622727862,2368.9956,3.0,96.03224999999999,1,2,3,4,5,6 +151.0,32.4756,948.1266,100,-3014.215091453276,-3014.215091453276,204.77048726341638,204.77048726341638,3769.9497,0.0,169.0238,1,2,3,4,5,6 +151.5,30.80245,1086.9927,100,-3021.213421042806,-3021.213421042806,194.2206670671834,194.2206670671834,3523.0768500000004,0.0,135.40455,1,2,3,4,5,6 +152.0,29.1293,1225.8588,100,-3029.0157009608884,-3029.0157009608884,183.67084687095036,183.67084687095036,3276.204,0.0,101.7853,1,2,3,4,5,6 +152.5,27.4561,1134.68655,100,-3036.892814930015,-3036.892814930015,173.12071140650482,173.12071140650482,1640.0560500000001,2.0,25.18445,1,2,3,4,5,6 +153.0,25.7829,1043.5143,100,-3045.792310950281,-3045.792310950281,162.57057594205926,162.57057594205926,3.9081,4.0,-51.4164,1,2,3,4,5,6 +153.5,24.10975,959.34965,100,-3053.061143811114,-3053.061143811114,152.02075574582622,152.02075574582622,3.0427,4.0,-48.32715,1,2,3,4,5,6 +154.0,22.4366,875.185,100,-3061.414084576095,-3061.414084576095,141.47093554959318,141.47093554959318,2.1773,4.0,-45.2379,1,2,3,4,5,6 +154.5,20.763399999999997,820.4597,100,-3067.3367749983154,-3067.3367749983154,130.9208000851476,130.9208000851476,282.7355,4.0,-26.390300000000003,1,2,3,4,5,6 +155.0,19.0902,765.7344,100,-3074.2976782851933,-3074.2976782851933,120.37066462070207,120.37066462070207,563.2937,4.0,-7.5427,1,2,3,4,5,6 +155.5,17.41705,895.29285,100,-3078.5896236159406,-3078.5896236159406,109.82084442446903,109.82084442446903,2993.0200999999997,2.0,116.28190000000001,1,2,3,4,5,6 +156.0,15.7439,1024.8513,100,-3083.793803949466,-3083.793803949466,99.27102422823602,99.27102422823602,5422.7465,0.0,240.1065,1,2,3,4,5,6 +156.5,14.0707,1287.17445,100,-3087.4494358489633,-3087.4494358489633,88.72088876379046,88.72088876379046,6123.93995,0.0,220.92045000000002,1,2,3,4,5,6 +157.0,12.3975,1549.4976,100,-3092.091815607985,-3092.091815607985,78.17075329934491,78.17075329934491,6825.1334,0.0,201.7344,1,2,3,4,5,6 +157.5,10.724350000000001,1324.1432,100,-3078.472572696713,-3078.472572696713,67.62093310311188,67.62093310311188,3448.2713,1.0,74.59245,1,2,3,4,5,6 +158.0,9.0512,1098.7888,100,-3059.818188306523,-3059.818188306523,57.071112906878845,57.071112906878845,71.4092,2.0,-52.5495,1,2,3,4,5,6 +158.5,7.41275,882.6496,100,-2664.9489826312774,-2664.9489826312774,46.74008885014874,46.74008885014874,535.9115999999999,1.0,-11.222349999999999,1,2,3,4,5,6 +159.0,5.7743,666.5104,100,-2045.9925455899415,-2045.9925455899415,36.40906479341861,36.40906479341861,1000.414,0.0,30.1048,1,2,3,4,5,6 +159.5,4.17525,658.15075,100,-2629.7547720495777,-2629.7547720495777,26.32647208817018,26.32647208817018,1066.41475,0.0,34.90495,1,2,3,4,5,6 +160.0,2.5762,649.7911,100,-3938.2006319385146,-3938.2006319385146,16.243879382921744,16.243879382921744,1132.4155,0.0,39.7051,1,2,3,4,5,6 +160.5,1.5335,632.55915,100,-4326.289336159113,-4326.289336159113,9.66927607860822,9.66927607860822,1206.701,0.0,47.20465,1,2,3,4,5,6 +161.0,0.4908,615.3272,100,-6363.35966992665,-6363.35966992665,3.0946727742946942,3.0946727742946942,1280.9865,0.0,54.7042,1,2,3,4,5,6 +161.5,0.2454,607.6636,100,-6363.35966992665,-6363.35966992665,1.5473363871473471,1.5473363871473471,1314.02365,0.0,58.03945,1,2,3,4,5,6 +162.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +162.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +163.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +163.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +164.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +164.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +165.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +165.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +166.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +166.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +167.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +167.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +168.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +168.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +169.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +169.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +170.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +170.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +171.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +171.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +172.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +172.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +173.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +173.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +174.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +174.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +175.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +175.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +176.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +176.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +177.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +177.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +178.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +178.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +179.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +179.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +180.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +180.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +181.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +181.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +182.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +182.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +183.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +183.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +184.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +184.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +185.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +185.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +186.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +186.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +187.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +187.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +188.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +188.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +189.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +189.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +190.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +190.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +191.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +191.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +192.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +192.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +193.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +193.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +194.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +194.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +195.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +195.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +196.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +196.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +197.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +197.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +198.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +198.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +199.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +199.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +200.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +200.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +201.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +201.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +202.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +202.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +203.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +203.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +204.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +204.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +205.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +205.5,0.62255,615.33785,100,3595.3939892378116,3595.3939892378116,3.9254045143381466,3.9254045143381466,3920.6434499999996,0.5,215.0657,1,2,3,4,5,6 +206.0,1.2451,630.6757,100,3595.3939892378116,3595.3939892378116,7.850809028676293,7.850809028676293,6494.2261,1.0,368.7567,1,2,3,4,5,6 +206.5,2.6767000000000003,715.02615,100,4474.322516157957,4474.322516157957,16.877568490127565,16.877568490127565,8543.81295,1.0,453.53525,1,2,3,4,5,6 +207.0,4.1083,799.3766,100,4740.698854027213,4740.698854027213,25.904327951578836,25.904327951578836,10593.3998,1.0,538.3138,1,2,3,4,5,6 +207.5,5.81295,1063.57925,100,4959.169289087297,4959.169289087297,36.65276712171219,36.65276712171219,14467.59695,1.0,604.0025499999999,1,2,3,4,5,6 +208.0,7.5176,1327.7819,100,5078.561394061936,5078.561394061936,47.40120629184554,47.40120629184554,18341.7941,1.0,669.6913,1,2,3,4,5,6 +208.5,8.8976,1602.66545,100,3961.305440006293,3961.305440006293,56.10260895795533,56.10260895795533,17128.0294,1.0,532.33195,1,2,3,4,5,6 +209.0,10.2776,1877.549,100,3144.083193547132,3144.083193547132,64.8040116240651,64.8040116240651,15914.2647,1.0,394.9726,1,2,3,4,5,6 +209.5,10.523499999999999,1842.4945,100,1404.9608803154847,1404.9608803154847,66.35450069333784,66.35450069333784,7957.7244,0.5,156.2845,1,2,3,4,5,6 +210.0,10.7694,1807.44,100,-254.74193381246872,-254.74193381246872,67.9049897626106,67.9049897626106,1.1841,0.0,-82.4036,1,2,3,4,5,6 +210.5,10.65265,1655.21305,100,585.5870299878433,585.5870299878433,67.16883848632921,67.16883848632921,1325.94555,0.0,-19.32765,1,2,3,4,5,6 +211.0,10.5359,1502.9861,100,1444.5396342030579,1444.5396342030579,66.43268721004783,66.43268721004783,2650.707,0.0,43.7483,1,2,3,4,5,6 +211.5,11.426300000000001,1384.51615,100,3085.058901569187,3085.058901569187,72.04698353896387,72.04698353896387,10235.44055,1.0,365.95265000000006,1,2,3,4,5,6 +212.0,12.3167,1266.0462,100,4488.385031867303,4488.385031867303,77.66127986787991,77.66127986787991,17820.1741,2.0,688.157,1,2,3,4,5,6 +212.5,13.9805,1414.1966,100,4831.903700153786,4831.903700153786,88.15214490836792,88.15214490836792,22561.58975,2.0,777.8835,1,2,3,4,5,6 +213.0,15.6443,1562.347,100,5102.354687521973,5102.354687521973,98.64300994885592,98.64300994885592,27303.0054,2.0,867.61,1,2,3,4,5,6 +213.5,17.40765,1741.34985,100,5045.86457747025,5045.86457747025,109.7615740005115,109.7615740005115,30292.254,2.0,857.3175,1,2,3,4,5,6 +214.0,19.171,1920.3527,100,4999.766396432112,4999.766396432112,120.88013805216703,120.88013805216703,33281.5026,2.0,847.025,1,2,3,4,5,6 +214.5,20.274749999999997,2040.5011,100,3454.350729108867,3454.350729108867,127.83968384399216,127.83968384399216,24930.00815,1.0,581.32245,1,2,3,4,5,6 +215.0,21.3785,2160.6495,100,2068.511509413663,2068.511509413663,134.79922963581728,134.79922963581728,16578.5137,0.0,315.6199,1,2,3,4,5,6 +215.5,21.372549999999997,2049.39525,100,942.2222020301743,942.2222020301743,134.761712718525,134.761712718525,8289.588249999999,0.0,114.65984999999998,1,2,3,4,5,6 +216.0,21.3666,1938.141,100,-184.69438544270028,-184.69438544270028,134.72419580123272,134.72419580123272,0.6628,0.0,-86.3002,1,2,3,4,5,6 +216.5,21.371,1772.5126,100,959.280356979084,959.280356979084,134.75193940393623,134.75193940393623,4848.1013,1.5,97.13755000000002,1,2,3,4,5,6 +217.0,21.3754,1606.8842,100,2102.7841384956537,2102.7841384956537,134.7796830066398,134.7796830066398,9695.5398,3.0,280.5753,1,2,3,4,5,6 +217.5,22.1592,1495.23415,100,2836.2559388876857,2836.2559388876857,139.7218275064201,139.7218275064201,17190.9484,3.0,584.2907500000001,1,2,3,4,5,6 +218.0,22.943,1383.5841,100,3519.612654317221,3519.612654317221,144.66397200620045,144.66397200620045,24686.357,3.0,888.0062,1,2,3,4,5,6 +218.5,24.055300000000003,1451.2035500000002,100,3620.535946880729,3620.535946880729,151.67742866236995,151.67742866236995,26555.2848,3.0,910.2705000000001,1,2,3,4,5,6 +219.0,25.1676,1518.823,100,3712.538485910457,3712.538485910457,158.69088531853942,158.69088531853942,28424.2126,3.0,932.5348,1,2,3,4,5,6 +219.5,26.3109,1588.0425,100,3710.992989749496,3710.992989749496,165.89980826648386,165.89980826648386,29740.5415,3.0,931.4263000000001,1,2,3,4,5,6 +220.0,27.4542,1657.262,100,3709.576214568263,3709.576214568263,173.10873121442827,173.10873121442827,31056.8704,3.0,930.3178,1,2,3,4,5,6 +220.5,28.5581,1723.8710999999998,100,3637.8990050108378,3637.8990050108378,180.069222810891,180.069222810891,31818.1601,3.0,913.09915,1,2,3,4,5,6 +221.0,29.662,1790.4802,100,3571.556868720922,3571.556868720922,187.02971440735377,187.02971440735377,32579.4498,3.0,895.8805,1,2,3,4,5,6 +221.5,30.6923,1852.60255,100,3486.1805692633006,3486.1805692633006,193.5261311949573,193.5261311949573,33049.0313,3.0,875.4993999999999,1,2,3,4,5,6 +222.0,31.7226,1914.7249,100,3406.3500448260866,3406.3500448260866,200.02254798256087,200.02254798256087,33518.6128,3.0,855.1183,1,2,3,4,5,6 +222.5,32.67445,1972.10195,100,3325.2808747507615,3325.2808747507615,206.0243089446888,206.0243089446888,33831.248250000004,3.0,835.7018,1,2,3,4,5,6 +223.0,33.6263,2029.479,100,3248.8013080237797,3248.8013080237797,212.02606990681676,212.02606990681676,34143.8837,3.0,816.2853,1,2,3,4,5,6 +223.5,34.50255,2082.30195,100,3176.397806770804,3176.397806770804,217.55114533158394,217.55114533158394,34447.402749999994,3.0,798.8341,1,2,3,4,5,6 +224.0,35.3788,2135.1249,100,3107.580835754746,3107.580835754746,223.07622075635112,223.07622075635112,34750.9218,3.0,781.3829,1,2,3,4,5,6 +224.5,36.1766,2183.3558999999996,100,3026.0433808318085,3026.0433808318085,228.10664035564275,228.10664035564275,34943.8022,3.0,761.72735,1,2,3,4,5,6 +225.0,36.9744,2231.5869,100,2948.024608107231,2948.024608107231,233.13705995493427,233.13705995493427,35136.6826,3.0,742.0718,1,2,3,4,5,6 +225.5,37.58305,2266.21505,100,2618.5106880628373,2618.5106880628373,236.97481990618627,236.97481990618627,32146.086450000003,3.0,655.72345,1,2,3,4,5,6 +226.0,38.1917,2300.8432,100,2299.499502771545,2299.499502771545,240.81257985743818,240.81257985743818,29155.4903,3.0,569.3751,1,2,3,4,5,6 +226.5,38.124449999999996,2220.2192,100,1073.0567809633976,1073.0567809633976,240.38854411157163,240.38854411157163,14578.1097,1.5,236.9676,1,2,3,4,5,6 +227.0,38.0572,2139.5952,100,-157.72037811504785,-157.72037811504785,239.9645083657051,239.9645083657051,0.7291,0.0,-95.4399,1,2,3,4,5,6 +227.5,37.552350000000004,1989.1339000000003,100,63.292113090126165,63.292113090126165,236.78124522368657,236.78124522368657,1691.4777,0.0,-31.422749999999994,1,2,3,4,5,6 +228.0,37.0475,1838.6726,100,290.32812308522847,290.32812308522847,233.59798208166805,233.59798208166805,3382.2263,0.0,32.5944,1,2,3,4,5,6 +228.5,37.1108,1673.6783,100,1430.681753909913,1430.681753909913,233.997111638744,233.997111638744,14344.6458,2.0,435.77205000000004,1,2,3,4,5,6 +229.0,37.1741,1508.684,100,2567.1517999359767,2567.1517999359767,234.39624119581993,234.39624119581993,25307.0653,4.0,838.9497,1,2,3,4,5,6 +229.5,37.6967,1499.43535,100,2536.261510477045,2536.261510477045,237.69142455329012,237.69142455329012,26717.18735,4.0,890.46055,1,2,3,4,5,6 +230.0,38.2193,1490.1867,100,2506.2159913446876,2506.2159913446876,240.98660791076037,240.98660791076037,28127.3094,4.0,941.9714,1,2,3,4,5,6 +230.5,38.72435,1509.92,100,2518.680268978046,2518.680268978046,244.17113212562907,244.17113212562907,28635.528899999998,4.0,946.0094,1,2,3,4,5,6 +231.0,39.2294,1529.6533,100,2530.823609588727,2530.823609588727,247.35565634049772,247.35565634049772,29143.7484,4.0,950.0474,1,2,3,4,5,6 +231.5,39.7313,1549.2276499999998,100,2533.91476251721,2533.91476251721,250.52031865797633,250.52031865797633,29562.0299,4.0,950.8177000000001,1,2,3,4,5,6 +232.0,40.2332,1568.802,100,2536.9287925892054,2536.9287925892054,253.68498097545495,253.68498097545495,29980.3114,4.0,951.588,1,2,3,4,5,6 +232.5,40.7258,1588.0312,100,2535.5327165334998,2535.5327165334998,256.7910034054011,256.7910034054011,30339.98425,4.0,950.7803,1,2,3,4,5,6 +233.0,41.2184,1607.2604,100,2534.170009413272,2534.170009413272,259.8970258353473,259.8970258353473,30699.6571,4.0,949.9726,1,2,3,4,5,6 +233.5,41.6946,1625.83845,100,2522.3727616525885,2522.3727616525885,262.8996402915802,262.8996402915802,30925.903749999998,4.0,945.51925,1,2,3,4,5,6 +234.0,42.1708,1644.4165,100,2510.8419470344406,2510.8419470344406,265.9022547478132,265.9022547478132,31152.1504,4.0,941.0659,1,2,3,4,5,6 +234.5,42.626400000000004,1662.1743000000001,100,2496.8104486656152,2496.8104486656152,268.77497870047955,268.77497870047955,31336.91145,4.0,935.8778,1,2,3,4,5,6 +235.0,43.082,1679.9321,100,2483.0757216006687,2483.0757216006687,271.647702653146,271.647702653146,31521.6725,4.0,930.6897,1,2,3,4,5,6 +235.5,43.519149999999996,1696.95725,100,2469.236606735196,2469.236606735196,274.404092635385,274.404092635385,31696.0026,4.0,925.63775,1,2,3,4,5,6 +236.0,43.9563,1713.9824,100,2455.6727547587034,2455.6727547587034,277.16048261762404,277.16048261762404,31870.3327,4.0,920.5858,1,2,3,4,5,6 +236.5,44.3799,1730.4906500000002,100,2441.903703230516,2441.903703230516,279.8314349142647,279.8314349142647,32038.60225,4.0,915.6519,1,2,3,4,5,6 +237.0,44.8035,1746.9989,100,2428.395013960963,2428.395013960963,282.50238721090534,282.50238721090534,32206.8718,4.0,910.718,1,2,3,4,5,6 +237.5,45.2184,1763.16525,100,2414.628920373122,2414.628920373122,285.118482838564,285.118482838564,32370.488100000002,4.0,905.8431499999999,1,2,3,4,5,6 +238.0,45.6333,1779.3316,100,2401.113150659716,2401.113150659716,287.7345784662226,287.7345784662226,32534.1044,4.0,900.9683,1,2,3,4,5,6 +238.5,46.041799999999995,1795.26485,100,2386.780761199606,2386.780761199606,290.3103197626761,290.3103197626761,32686.1982,4.0,895.91945,1,2,3,4,5,6 +239.0,46.4503,1811.1981,100,2372.7004597171604,2372.7004597171604,292.88606105912964,292.88606105912964,32838.292,4.0,890.8706,1,2,3,4,5,6 +239.5,46.852149999999995,1826.86865,100,2357.558352519575,2357.558352519575,295.4198716833153,295.4198716833153,32967.29015,4.0,885.52415,1,2,3,4,5,6 +240.0,47.254,1842.5392,100,2342.673783552715,2342.673783552715,297.95368230750097,297.95368230750097,33096.2883,4.0,880.1777,1,2,3,4,5,6 +240.5,47.646950000000004,1857.87045,100,2327.865301829393,2327.865301829393,300.4313751898545,300.4313751898545,33200.7869,4.0,874.9111499999999,1,2,3,4,5,6 +241.0,48.0399,1873.2017,100,2313.299076767437,2313.299076767437,302.909068072208,302.909068072208,33305.2855,4.0,869.6446,1,2,3,4,5,6 +241.5,48.4212,1888.0756999999999,100,2299.0498143168697,2299.0498143168697,305.31330346103965,305.31330346103965,33386.0083,4.0,864.5301999999999,1,2,3,4,5,6 +242.0,48.8025,1902.9497,100,2285.0232143845087,2285.0232143845087,307.7175388498713,307.7175388498713,33466.7311,4.0,859.4158,1,2,3,4,5,6 +242.5,49.1685,1917.2289999999998,100,2271.524070410934,2271.524070410934,310.0253021656656,310.0253021656656,33541.7642,4.0,854.5018,1,2,3,4,5,6 +243.0,49.5345,1931.5083,100,2258.22441110741,2258.22441110741,312.33306548146,312.33306548146,33616.7973,4.0,849.5878,1,2,3,4,5,6 +243.5,49.882149999999996,1945.069,100,2245.518204908971,2245.518204908971,314.52512536325196,314.52512536325196,33687.91915,4.0,844.91785,1,2,3,4,5,6 +244.0,50.2298,1958.6297,100,2232.9878828504197,2232.9878828504197,316.71718524504405,316.71718524504405,33759.041,4.0,840.2479,1,2,3,4,5,6 +244.5,50.55755,1971.40545,100,2221.0753024820233,2221.0753024820233,318.78376837824516,318.78376837824516,33825.94305,4.0,835.84565,1,2,3,4,5,6 +245.0,50.8853,1984.1812,100,2209.316178935763,2209.316178935763,320.85035151144626,320.85035151144626,33892.8451,4.0,831.4434,1,2,3,4,5,6 +245.5,51.1937,1996.20085,100,2198.2666838693044,2198.2666838693044,322.7949258463942,322.7949258463942,33958.156749999995,4.0,827.3666000000001,1,2,3,4,5,6 +246.0,51.5021,2008.2205,100,2187.349519883655,2187.349519883655,324.7395001813423,324.7395001813423,34023.4684,4.0,823.2898,1,2,3,4,5,6 +246.5,51.79385,2019.5855,100,2177.0769770735333,2177.0769770735333,326.57909020151436,326.57909020151436,34087.94945,4.0,819.5336,1,2,3,4,5,6 +247.0,52.0856,2030.9505,100,2166.919514606724,2166.919514606724,328.41868022168654,328.41868022168654,34152.4305,4.0,815.7774,1,2,3,4,5,6 +247.5,52.36435,2041.80695,100,2156.9730120969707,2156.9730120969707,330.1763005065982,330.1763005065982,34214.0633,4.0,812.1954,1,2,3,4,5,6 +248.0,52.6431,2052.6634,100,2147.13184485716,2147.13184485716,331.9339207915098,331.9339207915098,34275.6961,4.0,808.6134,1,2,3,4,5,6 +248.5,52.913349999999994,2063.1904999999997,100,2137.298132966445,2137.298132966445,333.6379454802896,333.6379454802896,34335.455050000004,4.0,805.14,1,2,3,4,5,6 +249.0,53.1836,2073.7176,100,2127.564360178702,2127.564360178702,335.3419701690695,335.3419701690695,34395.214,4.0,801.6666,1,2,3,4,5,6 +249.5,53.44995,2084.09565,100,2117.6781590254063,2117.6781590254063,337.0214039372712,337.0214039372712,34454.1237,4.0,798.24225,1,2,3,4,5,6 +250.0,53.7163,2094.4737,100,2107.889998492078,2107.889998492078,338.7008377054729,338.7008377054729,34513.0334,4.0,794.8179,1,2,3,4,5,6 +250.5,53.981049999999996,2104.7993500000002,100,2098.0620238583724,2098.0620238583724,340.37018289087325,340.37018289087325,34571.6443,4.0,791.41085,1,2,3,4,5,6 +251.0,54.2458,2115.125,100,2088.3299813073086,2088.3299813073086,342.0395280762737,342.0395280762737,34630.2552,4.0,788.0038,1,2,3,4,5,6 +251.5,54.50645,2125.31185,100,2078.8557830678756,2078.8557830678756,343.68302126824574,343.68302126824574,34688.0791,4.0,784.64255,1,2,3,4,5,6 +252.0,54.7671,2135.4987,100,2069.471764873437,2069.471764873437,345.32651446021794,345.32651446021794,34745.903,4.0,781.2813,1,2,3,4,5,6 +252.5,55.01765,2145.27845,100,2060.6911750865406,2060.6911750865406,346.9063234732569,346.9063234732569,34801.417199999996,4.0,778.05445,1,2,3,4,5,6 +253.0,55.2682,2155.0582,100,2051.9901962430476,2051.9901962430476,348.48613248629596,348.48613248629596,34856.9314,4.0,774.8276,1,2,3,4,5,6 +253.5,55.5031,2164.2163499999997,100,2043.9391337060451,2043.9391337060451,349.96726254880986,349.96726254880986,34909.74505,4.0,771.8058,1,2,3,4,5,6 +254.0,55.738,2173.3745,100,2035.9559313215402,2035.9559313215402,351.4483926113237,351.4483926113237,34962.5587,4.0,768.784,1,2,3,4,5,6 +254.5,55.959649999999996,2181.9876999999997,100,2028.0528448265848,2028.0528448265848,352.84597659751444,352.84597659751444,35030.069050000006,4.0,765.94195,1,2,3,4,5,6 +255.0,56.1813,2190.6009,100,2020.2121178399218,2020.2121178399218,354.2435605837051,354.2435605837051,35097.5794,4.0,763.0999,1,2,3,4,5,6 +255.5,56.399950000000004,2199.0905000000002,100,2009.316141840551,2009.316141840551,355.62222847714355,355.62222847714355,35138.77295,4.0,759.4173000000001,1,2,3,4,5,6 +256.0,56.6186,2207.5801,100,1998.5043221132278,1998.5043221132278,357.0008963705819,357.0008963705819,35179.9665,4.0,755.7347,1,2,3,4,5,6 +256.5,56.8457,2216.41965,100,1983.6818262419147,1983.6818262419147,358.4328445919395,358.4328445919395,35176.47385,4.0,750.85795,1,2,3,4,5,6 +257.0,57.0728,2225.2592,100,1968.9772915995009,1968.9772915995009,359.86479281329713,359.86479281329713,35172.9812,4.0,745.9812,1,2,3,4,5,6 +257.5,57.31635,2234.75205,100,1952.8033260143047,1952.8033260143047,361.4004642765805,361.4004642765805,35167.83605,4.0,740.7126499999999,1,2,3,4,5,6 +258.0,57.5599,2244.2449,100,1936.7662324291741,1936.7662324291741,362.9361357398638,362.9361357398638,35162.6909,4.0,735.4441,1,2,3,4,5,6 +258.5,57.82125,2254.44335,100,1919.5405054543096,1919.5405054543096,364.5840426868116,364.5840426868116,35154.1086,4.0,729.78395,1,2,3,4,5,6 +259.0,58.0826,2264.6418,100,1902.4697971509538,1902.4697971509538,366.23194963375926,366.23194963375926,35145.5263,4.0,724.1238,1,2,3,4,5,6 +259.5,58.3587,2275.4181,100,1884.4802257761057,1884.4802257761057,367.9728607034062,367.9728607034062,35085.350999999995,4.0,718.1429499999999,1,2,3,4,5,6 +260.0,58.6348,2286.1944,100,1866.66007326707,1866.66007326707,369.7137717730532,369.7137717730532,35025.1757,4.0,712.1621,1,2,3,4,5,6 +260.5,58.92145,2297.3806999999997,100,1848.1737790736652,1848.1737790736652,371.5212044355463,371.5212044355463,34928.204450000005,4.0,705.9537,1,2,3,4,5,6 +261.0,59.2081,2308.567,100,1829.8664839101405,1829.8664839101405,373.32863709803934,373.32863709803934,34831.2332,4.0,699.7453,1,2,3,4,5,6 +261.5,59.501850000000005,2320.02505,100,1811.0476698791715,1811.0476698791715,375.1808378467131,375.1808378467131,34731.90675,4.0,693.3860999999999,1,2,3,4,5,6 +262.0,59.7956,2331.4831,100,1792.4137532861946,1792.4137532861946,377.0330385953868,377.0330385953868,34632.5803,4.0,687.0269,1,2,3,4,5,6 +262.5,59.78845,2287.76645,100,1051.9425358075011,1051.9425358075011,376.9879552409936,376.9879552409936,21241.3848,2.0,382.62359999999995,1,2,3,4,5,6 +263.0,59.7813,2244.0498,100,311.2941937361683,311.2941937361683,376.94287188660024,376.94287188660024,7850.1893,0.0,78.2203,1,2,3,4,5,6 +263.5,59.39245,2104.5119,100,99.22639483638068,99.22639483638068,374.4910309976751,374.4910309976751,3926.4282,0.0,-4.696450000000013,1,2,3,4,5,6 +264.0,59.0036,1964.974,100,-115.63657464968242,-115.63657464968242,372.0391901087498,372.0391901087498,2.6671,0.0,-87.6132,1,2,3,4,5,6 +264.5,58.8541,1815.91055,100,600.5448409031826,600.5448409031826,371.09653815325464,371.09653815325464,9985.068650000001,2.5,253.26234999999997,1,2,3,4,5,6 +265.0,58.7046,1666.8471,100,1320.373981561922,1320.373981561922,370.15388619775933,370.15388619775933,19967.4702,5.0,594.1379,1,2,3,4,5,6 +265.5,58.97095,1613.6461,100,1527.0094505854152,1527.0094505854152,371.83331996596115,371.83331996596115,24679.51255,5.0,765.7973,1,2,3,4,5,6 +266.0,59.2373,1560.4451,100,1731.7867202252635,1731.7867202252635,373.51275373416286,373.51275373416286,29391.5549,5.0,937.4567,1,2,3,4,5,6 +266.5,59.620099999999994,1570.5880499999998,100,1746.914775251971,1746.914775251971,375.9264471693706,375.9264471693706,29825.5802,5.0,945.1232,1,2,3,4,5,6 +267.0,60.0029,1580.731,100,1761.8498056260617,1761.8498056260617,378.34014060457844,378.34014060457844,30259.6055,5.0,952.7897,1,2,3,4,5,6 +267.5,60.4115,1591.5169,100,1761.8152962763716,1761.8152962763716,380.9165124374571,380.9165124374571,30477.74015,5.0,952.8334500000001,1,2,3,4,5,6 +268.0,60.8201,1602.3028,100,1761.7812506062965,1761.7812506062965,383.4928842703356,383.4928842703356,30695.8748,5.0,952.8772,1,2,3,4,5,6 +268.5,61.23895,1613.3469,100,1756.5103536066506,1756.5103536066506,386.13388608678497,386.13388608678497,30830.986,5.0,950.2469,1,2,3,4,5,6 +269.0,61.6578,1624.391,100,1751.311068477954,1751.311068477954,388.77488790323434,388.77488790323434,30966.0972,5.0,947.6166,1,2,3,4,5,6 +269.5,62.08085,1635.5342500000002,100,1744.6597669973914,1744.6597669973914,391.442372249537,391.442372249537,31081.0234,5.0,944.314,1,2,3,4,5,6 +270.0,62.5039,1646.6775,100,1738.0985025574403,1738.0985025574403,394.10985659583974,394.10985659583974,31195.9496,5.0,941.0114,1,2,3,4,5,6 +270.5,62.93155,1657.9447,100,1731.2707504105647,1731.2707504105647,396.8063456176962,396.8063456176962,31310.42465,5.0,937.63345,1,2,3,4,5,6 +271.0,63.3592,1669.2119,100,1724.5351676157525,1724.5351676157525,399.5028346395526,399.5028346395526,31424.8997,5.0,934.2555,1,2,3,4,5,6 +271.5,63.78875,1680.5439999999999,100,1717.7941928004548,1717.7941928004548,402.2113038534855,402.2113038534855,31539.605300000003,5.0,930.85415,1,2,3,4,5,6 +272.0,64.2183,1691.8761,100,1711.1433974427848,1711.1433974427848,404.9197730674185,404.9197730674185,31654.3109,5.0,927.4528,1,2,3,4,5,6 +272.5,64.64285000000001,1703.0716,100,1704.6190693015544,1704.6190693015544,407.5967154600974,407.5967154600974,31767.6787,5.0,924.0912000000001,1,2,3,4,5,6 +273.0,65.0674,1714.2671,100,1698.179880677574,1698.179880677574,410.27365785277635,410.27365785277635,31881.0465,5.0,920.7296,1,2,3,4,5,6 +273.5,65.48415,1725.23205,100,1691.7173660954595,1691.7173660954595,412.90141840429897,412.90141840429897,31992.267350000002,5.0,917.4316,1,2,3,4,5,6 +274.0,65.9009,1736.197,100,1685.336587967691,1685.336587967691,415.5291789558215,415.5291789558215,32103.4882,5.0,914.1336,1,2,3,4,5,6 +274.5,66.3175,1747.13995,100,1678.5571334263211,1678.5571334263211,418.1559937027065,418.1559937027065,32213.98215,5.0,910.827,1,2,3,4,5,6 +275.0,66.7341,1758.0829,100,1671.8623228903964,1671.8623228903964,420.78280844959164,420.78280844959164,32324.4761,5.0,907.5204,1,2,3,4,5,6 +275.5,67.1673,1769.46195,100,1664.3754327775573,1664.3754327775573,423.51429224303996,423.51429224303996,32438.7323,5.0,904.0649000000001,1,2,3,4,5,6 +276.0,67.6005,1780.841,100,1656.9844981915812,1656.9844981915812,426.2457760364884,426.2457760364884,32552.9885,5.0,900.6094,1,2,3,4,5,6 +276.5,68.06909999999999,1793.1648500000001,100,1648.2877111640964,1648.2877111640964,429.20046972441514,429.20046972441514,32671.52465,5.0,896.72815,1,2,3,4,5,6 +277.0,68.5377,1805.4887,100,1639.7098459679853,1639.7098459679853,432.1551634123421,432.1551634123421,32790.0608,5.0,892.8469,1,2,3,4,5,6 +277.5,69.0536,1819.08205,100,1629.3757290423673,1629.3757290423673,435.40810082933194,435.40810082933194,32905.554149999996,5.0,888.2155,1,2,3,4,5,6 +278.0,69.5695,1832.6754,100,1619.1948795952246,1619.1948795952246,438.6610382463219,438.6610382463219,33021.0475,5.0,883.5841,1,2,3,4,5,6 +278.5,70.13045,1847.48835,100,1608.152913762852,1608.152913762852,442.1980323228104,442.1980323228104,33129.12115,5.0,878.48885,1,2,3,4,5,6 +279.0,70.6914,1862.3013,100,1597.286188220915,1597.286188220915,445.73502639929904,445.73502639929904,33237.1948,5.0,873.3936,1,2,3,4,5,6 +279.5,71.27895000000001,1877.8313,100,1586.2817389145039,1586.2817389145039,449.43974316485907,449.43974316485907,33326.6652,5.0,868.05195,1,2,3,4,5,6 +280.0,71.8665,1893.3613,100,1575.457225021394,1575.457225021394,453.1444599304191,453.1444599304191,33416.1356,5.0,862.7103,1,2,3,4,5,6 +280.5,72.45215,1908.8355999999999,100,1565.0851065289296,1565.0851065289296,456.83719650390253,456.83719650390253,33497.491949999996,5.0,857.38615,1,2,3,4,5,6 +281.0,73.0378,1924.3099,100,1554.8793246784542,1554.8793246784542,460.529933077386,460.529933077386,33578.8483,5.0,852.062,1,2,3,4,5,6 +281.5,73.59475,1939.0138499999998,100,1545.4841654873478,1545.4841654873478,464.0417056968714,464.0417056968714,33656.031149999995,5.0,846.9999,1,2,3,4,5,6 +282.0,74.1517,1953.7178,100,1536.230139511299,1536.230139511299,467.55347831635675,467.55347831635675,33733.214,5.0,841.9378,1,2,3,4,5,6 +282.5,74.6625,1967.1823,100,1527.9113942742342,1527.9113942742342,470.77425837566756,470.77425837566756,33803.768299999996,5.0,837.2994,1,2,3,4,5,6 +283.0,75.1733,1980.6468,100,1519.7057002153692,1519.7057002153692,473.9950384349783,473.9950384349783,33874.3226,5.0,832.661,1,2,3,4,5,6 +283.5,75.63345,1992.72905,100,1512.321548084875,1512.321548084875,476.8964517949858,476.8964517949858,33938.9827,5.0,828.5359,1,2,3,4,5,6 +284.0,76.0936,2004.8113,100,1505.0267022193718,1505.0267022193718,479.7978651549934,479.7978651549934,34003.6428,5.0,824.4108,1,2,3,4,5,6 +284.5,76.51245,2015.84335,100,1498.305739967809,1498.305739967809,482.43886697144274,482.43886697144274,34065.77785,5.0,820.7489499999999,1,2,3,4,5,6 +285.0,76.9313,2026.8754,100,1491.6579618438789,1491.6579618438789,485.07986878789205,485.07986878789205,34127.9129,5.0,817.0871,1,2,3,4,5,6 +285.5,77.32415,2037.20605,100,1485.1553212806086,1485.1553212806086,487.5569311338205,487.5569311338205,34187.262,5.0,813.69625,1,2,3,4,5,6 +286.0,77.717,2047.5367,100,1478.7184208345664,1478.7184208345664,490.0339934797489,490.0339934797489,34246.6111,5.0,810.3054,1,2,3,4,5,6 +286.5,78.09425,2057.4807,100,1472.3527373014017,1472.3527373014017,492.41269214336484,492.41269214336484,34303.060450000004,5.0,807.0244,1,2,3,4,5,6 +287.0,78.4715,2067.4247,100,1466.0482595337162,1466.0482595337162,494.7913908069807,494.7913908069807,34359.5098,5.0,803.7434,1,2,3,4,5,6 +287.5,78.831,2076.9219000000003,100,1460.1818206416258,1460.1818206416258,497.0581692551448,497.0581692551448,34413.423599999995,5.0,800.60985,1,2,3,4,5,6 +288.0,79.1905,2086.4191,100,1454.3686453299324,1454.3686453299324,499.3249477033089,499.3249477033089,34467.3374,5.0,797.4763,1,2,3,4,5,6 +288.5,79.5202,2095.1237499999997,100,1449.3204613293228,1449.3204613293228,501.403826296799,501.403826296799,34516.755099999995,5.0,794.6042500000001,1,2,3,4,5,6 +289.0,79.8499,2103.8284,100,1444.3139652022105,1444.3139652022105,503.4827048902892,503.4827048902892,34566.1728,5.0,791.7322,1,2,3,4,5,6 +289.5,80.14080000000001,2111.4827999999998,100,1440.011939985625,1440.011939985625,505.31693535084815,505.31693535084815,34609.62865,5.0,789.20675,1,2,3,4,5,6 +290.0,80.4317,2119.1372,100,1435.7410333239256,1435.7410333239256,507.1511658114071,507.1511658114071,34653.0845,5.0,786.6813,1,2,3,4,5,6 +290.5,80.6865,2125.8340500000004,100,1431.8995934264096,1431.8995934264096,508.7577726225119,508.7577726225119,34691.10185,5.0,784.4717,1,2,3,4,5,6 +291.0,80.9413,2132.5309,100,1428.0823389295701,1428.0823389295701,510.36437943361676,510.36437943361676,34729.1192,5.0,782.2621,1,2,3,4,5,6 +291.5,81.16645,2138.46335,100,1424.6781882662108,1424.6781882662108,511.78403219468544,511.78403219468544,34762.79505,5.0,780.3047,1,2,3,4,5,6 +292.0,81.3916,2144.3958,100,1421.2928711070922,1421.2928711070922,513.203684955754,513.203684955754,34796.4709,5.0,778.3473,1,2,3,4,5,6 +292.5,81.58715000000001,2149.5562499999996,100,1418.488945697944,1418.488945697944,514.4366989349987,514.4366989349987,34825.76415,5.0,776.6446000000001,1,2,3,4,5,6 +293.0,81.7827,2154.7167,100,1415.6984291787871,1415.6984291787871,515.6697129142435,515.6697129142435,34855.0574,5.0,774.9419,1,2,3,4,5,6 +293.5,81.94640000000001,2159.0207499999997,100,1413.467610242792,1413.467610242792,516.7019010421003,516.7019010421003,34879.48985,5.0,773.52175,1,2,3,4,5,6 +294.0,82.1101,2163.3248,100,1411.2456863162997,1411.2456863162997,517.7340891699567,517.7340891699567,34903.9223,5.0,772.1016,1,2,3,4,5,6 +294.5,82.24785,2166.9197999999997,100,1409.218787348241,1409.218787348241,518.602653095505,518.602653095505,34924.3284,5.0,770.9154,1,2,3,4,5,6 +295.0,82.3856,2170.5148,100,1407.198666393156,1407.198666393156,519.4712170210533,519.4712170210533,34944.7345,5.0,769.7292,1,2,3,4,5,6 +295.5,82.51429999999999,2173.87475,100,1404.9087865133686,1404.9087865133686,520.2827174001318,520.2827174001318,34964.10845,5.0,768.62045,1,2,3,4,5,6 +296.0,82.643,2177.2347,100,1402.626038696562,1402.626038696562,521.0942177792103,521.0942177792103,34983.4824,5.0,767.5117,1,2,3,4,5,6 +296.5,82.7781,2180.7947,100,1400.0274971278639,1400.0274971278639,521.946072489494,521.946072489494,35010.98395,5.0,766.3369,1,2,3,4,5,6 +297.0,82.9132,2184.3547,100,1397.4374237636466,1397.4374237636466,522.7979271997777,522.7979271997777,35038.4855,5.0,765.1621,1,2,3,4,5,6 +297.5,83.05590000000001,2188.1358,100,1394.84946155541,1394.84946155541,523.6977026783675,523.6977026783675,35074.266950000005,5.0,763.9144,1,2,3,4,5,6 +298.0,83.1986,2191.9169,100,1392.2703769534585,1392.2703769534585,524.5974781569571,524.5974781569571,35110.0484,5.0,762.6667,1,2,3,4,5,6 +298.5,83.33815,2195.6154500000002,100,1389.896742980256,1389.896742980256,525.4773917381568,525.4773917381568,35142.297999999995,5.0,761.3833999999999,1,2,3,4,5,6 +299.0,83.4777,2199.314,100,1387.5310450335842,1387.5310450335842,526.3573053193566,526.3573053193566,35174.5476,5.0,760.1001,1,2,3,4,5,6 +299.5,83.60435,2202.6391999999996,100,1384.3792821904603,1384.3792821904603,527.1558797017209,527.1558797017209,35178.99325,5.0,758.39495,1,2,3,4,5,6 +300.0,83.731,2205.9644,100,1381.2370539465671,1381.2370539465671,527.9544540840852,527.9544540840852,35183.4389,5.0,756.6898,1,2,3,4,5,6 +300.5,83.82794999999999,2208.6762,100,1322.171415989536,1322.171415989536,528.5657591482006,528.5657591482006,33909.5003,5.0,727.12915,1,2,3,4,5,6 +301.0,83.9249,2211.388,100,1263.2422432198312,1263.2422432198312,529.1770642123162,529.1770642123162,32635.5617,5.0,697.5685,1,2,3,4,5,6 +301.5,83.96244999999999,2212.2041,100,1142.4487795913533,1142.4487795913533,529.4138306399338,529.4138306399338,29842.97195,5.0,637.32015,1,2,3,4,5,6 +302.0,84.0,2213.0202,100,1021.7633110714285,1021.7633110714285,529.6505970675516,529.6505970675516,27050.3822,5.0,577.0718,1,2,3,4,5,6 +302.5,84.0,2213.0202,100,996.0339947142857,996.0339947142857,529.6505970675516,529.6505970675516,26422.494,5.0,564.38615,1,2,3,4,5,6 +303.0,84.0,2213.0202,100,970.3046783571428,970.3046783571428,529.6505970675516,529.6505970675516,25794.6058,5.0,551.7005,1,2,3,4,5,6 +303.5,84.0,2213.0202,100,973.3838625,973.3838625,529.6505970675516,529.6505970675516,25868.37555,5.0,553.2184,1,2,3,4,5,6 +304.0,84.0,2213.0202,100,976.4630466428571,976.4630466428571,529.6505970675516,529.6505970675516,25942.1453,5.0,554.7363,1,2,3,4,5,6 +304.5,84.0,2213.0202,100,1001.5168185,1001.5168185,529.6505970675516,529.6505970675516,26551.925900000002,5.0,567.08925,1,2,3,4,5,6 +305.0,84.0,2213.0202,100,1026.5705903571427,1026.5705903571427,529.6505970675516,529.6505970675516,27161.7065,5.0,579.4422,1,2,3,4,5,6 +305.5,84.0,2213.0202,100,1059.5401383214285,1059.5401383214285,529.6505970675516,529.6505970675516,27903.3779,5.0,595.7013999999999,1,2,3,4,5,6 +306.0,84.0,2213.0202,100,1092.509686285714,1092.509686285714,529.6505970675516,529.6505970675516,28645.0493,5.0,611.9606,1,2,3,4,5,6 +306.5,84.0,2213.0202,100,1123.073339785714,1123.073339785714,529.6505970675516,529.6505970675516,29327.4686,5.0,627.03325,1,2,3,4,5,6 +307.0,84.0,2213.0202,100,1153.636993285714,1153.636993285714,529.6505970675516,529.6505970675516,30009.8879,5.0,642.1059,1,2,3,4,5,6 +307.5,84.0,2213.0202,100,1172.5093976785713,1172.5093976785713,529.6505970675516,529.6505970675516,30453.59025,5.0,651.4128000000001,1,2,3,4,5,6 +308.0,84.0,2213.0202,100,1191.3818020714286,1191.3818020714286,529.6505970675516,529.6505970675516,30897.2926,5.0,660.7197,1,2,3,4,5,6 +308.5,84.0,2213.0202,100,1194.1191552857142,1194.1191552857142,529.6505970675516,529.6505970675516,30965.5452,5.0,662.0696499999999,1,2,3,4,5,6 +309.0,84.0,2213.0202,100,1196.8565085,1196.8565085,529.6505970675516,529.6505970675516,31033.7978,5.0,663.4196,1,2,3,4,5,6 +309.5,84.0,2213.0202,100,1191.857569392857,1191.857569392857,529.6505970675516,529.6505970675516,30909.1581,5.0,660.9544,1,2,3,4,5,6 +310.0,84.0,2213.0202,100,1186.858630285714,1186.858630285714,529.6505970675516,529.6505970675516,30784.5184,5.0,658.4892,1,2,3,4,5,6 +310.5,84.0,2213.0202,100,1182.0283518214285,1182.0283518214285,529.6505970675516,529.6505970675516,30664.71995,5.0,656.1071999999999,1,2,3,4,5,6 +311.0,84.0,2213.0202,100,1177.198073357143,1177.198073357143,529.6505970675516,529.6505970675516,30544.9215,5.0,653.7252,1,2,3,4,5,6 +311.5,84.0,2213.0202,100,1166.43490875,1166.43490875,529.6505970675516,529.6505970675516,30297.6748,5.0,648.41715,1,2,3,4,5,6 +312.0,84.0,2213.0202,100,1155.671744142857,1155.671744142857,529.6505970675516,529.6505970675516,30050.4281,5.0,643.1091,1,2,3,4,5,6 +312.5,84.0,2213.0202,100,1133.0130436071427,1133.0130436071427,529.6505970675516,529.6505970675516,29546.2592,5.0,631.93485,1,2,3,4,5,6 +313.0,84.0,2213.0202,100,1110.3543430714285,1110.3543430714285,529.6505970675516,529.6505970675516,29042.0903,5.0,620.7606,1,2,3,4,5,6 +313.5,84.0,2213.0202,100,1088.30534625,1088.30534625,529.6505970675516,529.6505970675516,28551.4891,5.0,609.887,1,2,3,4,5,6 +314.0,84.0,2213.0202,100,1066.2563494285714,1066.2563494285714,529.6505970675516,529.6505970675516,28060.8879,5.0,599.0134,1,2,3,4,5,6 +314.5,84.0,2213.0202,100,1068.1693399285714,1068.1693399285714,529.6505970675516,529.6505970675516,28103.449,5.0,599.95675,1,2,3,4,5,6 +315.0,84.0,2213.0202,100,1070.0823304285714,1070.0823304285714,529.6505970675516,529.6505970675516,28146.0101,5.0,600.9001,1,2,3,4,5,6 +315.5,84.0,2213.0202,100,1092.1304253214284,1092.1304253214284,529.6505970675516,529.6505970675516,28636.5962,5.0,611.7733,1,2,3,4,5,6 +316.0,84.0,2213.0202,100,1114.1785202142855,1114.1785202142855,529.6505970675516,529.6505970675516,29127.1823,5.0,622.6465,1,2,3,4,5,6 +316.5,84.0,2213.0202,100,1125.59287725,1125.59287725,529.6505970675516,529.6505970675516,29381.160499999998,5.0,628.2755999999999,1,2,3,4,5,6 +317.0,84.0,2213.0202,100,1137.007234285714,1137.007234285714,529.6505970675516,529.6505970675516,29635.1387,5.0,633.9047,1,2,3,4,5,6 +317.5,84.0,2213.0202,100,1123.583380392857,1123.583380392857,529.6505970675516,529.6505970675516,29336.4542,5.0,627.28475,1,2,3,4,5,6 +318.0,84.0,2213.0202,100,1110.1595264999999,1110.1595264999999,529.6505970675516,529.6505970675516,29037.7697,5.0,620.6648,1,2,3,4,5,6 +318.5,84.0,2213.0202,100,1079.8290215357142,1079.8290215357142,529.6505970675516,529.6505970675516,28362.891,5.0,605.70695,1,2,3,4,5,6 +319.0,84.0,2213.0202,100,1049.4985165714284,1049.4985165714284,529.6505970675516,529.6505970675516,27688.0123,5.0,590.7491,1,2,3,4,5,6 +319.5,84.0,2213.0202,100,1031.8843025357141,1031.8843025357141,529.6505970675516,529.6505970675516,27283.6285,5.0,582.06345,1,2,3,4,5,6 +320.0,84.0,2213.0202,100,1014.2700884999998,1014.2700884999998,529.6505970675516,529.6505970675516,26879.2447,5.0,573.3778,1,2,3,4,5,6 +320.5,84.0,2213.0202,100,956.2354945714285,956.2354945714285,529.6505970675516,529.6505970675516,25514.47695,5.0,544.7674999999999,1,2,3,4,5,6 +321.0,84.0,2213.0202,100,898.200900642857,898.200900642857,529.6505970675516,529.6505970675516,24149.7092,5.0,516.1572,1,2,3,4,5,6 +321.5,84.0,2213.0202,100,873.0691119642856,873.0691119642856,529.6505970675516,529.6505970675516,23578.01045,5.0,503.7685,1,2,3,4,5,6 +322.0,84.0,2213.0202,100,847.9373232857142,847.9373232857142,529.6505970675516,529.6505970675516,23006.3117,5.0,491.3798,1,2,3,4,5,6 +322.5,84.0,2213.0202,100,850.5398381785714,850.5398381785714,529.6505970675516,529.6505970675516,23065.515249999997,5.0,492.66274999999996,1,2,3,4,5,6 +323.0,84.0,2213.0202,100,853.1423530714286,853.1423530714286,529.6505970675516,529.6505970675516,23124.7188,5.0,493.9457,1,2,3,4,5,6 +323.5,84.0,2213.0202,100,866.0782636071427,866.0782636071427,529.6505970675516,529.6505970675516,23418.9818,5.0,500.3224,1,2,3,4,5,6 +324.0,84.0,2213.0202,100,879.0141741428571,879.0141741428571,529.6505970675516,529.6505970675516,23713.2448,5.0,506.6991,1,2,3,4,5,6 +324.5,84.0,2213.0202,100,887.3651307857142,887.3651307857142,529.6505970675516,529.6505970675516,23903.2133,5.0,510.8157,1,2,3,4,5,6 +325.0,84.0,2213.0202,100,895.7160874285713,895.7160874285713,529.6505970675516,529.6505970675516,24093.1818,5.0,514.9323,1,2,3,4,5,6 +325.5,84.0,2213.0202,100,904.1576878928571,904.1576878928571,529.6505970675516,529.6505970675516,24285.20955,5.0,519.09355,1,2,3,4,5,6 +326.0,84.0,2213.0202,100,912.5992883571427,912.5992883571427,529.6505970675516,529.6505970675516,24477.2373,5.0,523.2548,1,2,3,4,5,6 +326.5,84.0,2213.0202,100,920.8411116428571,920.8411116428571,529.6505970675516,529.6505970675516,24664.723250000003,5.0,527.3176000000001,1,2,3,4,5,6 +327.0,84.0,2213.0202,100,929.0829349285713,929.0829349285713,529.6505970675516,529.6505970675516,24852.2092,5.0,531.3804,1,2,3,4,5,6 +327.5,84.0,2213.0202,100,927.1708463571428,927.1708463571428,529.6505970675516,529.6505970675516,24808.71245,5.0,530.43785,1,2,3,4,5,6 +328.0,84.0,2213.0202,100,925.2587577857141,925.2587577857141,529.6505970675516,529.6505970675516,24765.2157,5.0,529.4953,1,2,3,4,5,6 +328.5,84.0,2213.0202,100,927.0544975714283,927.0544975714283,529.6505970675516,529.6505970675516,24806.0599,5.0,530.38035,1,2,3,4,5,6 +329.0,84.0,2213.0202,100,928.8502373571426,928.8502373571426,529.6505970675516,529.6505970675516,24846.9041,5.0,531.2654,1,2,3,4,5,6 +329.5,84.0,2213.0202,100,948.2362900714285,948.2362900714285,529.6505970675516,529.6505970675516,25294.367749999998,5.0,540.8217500000001,1,2,3,4,5,6 +330.0,84.0,2213.0202,100,967.6223427857142,967.6223427857142,529.6505970675516,529.6505970675516,25741.8314,5.0,550.3781,1,2,3,4,5,6 +330.5,84.0,2213.0202,100,1000.5936946071427,1000.5936946071427,529.6505970675516,529.6505970675516,26530.4971,5.0,566.6348,1,2,3,4,5,6 +331.0,84.0,2213.0202,100,1033.5650464285713,1033.5650464285713,529.6505970675516,529.6505970675516,27319.1628,5.0,582.8915,1,2,3,4,5,6 +331.5,84.0,2213.0202,100,1066.3713453214284,1066.3713453214284,529.6505970675516,529.6505970675516,28056.28605,5.0,599.07015,1,2,3,4,5,6 +332.0,84.0,2213.0202,100,1099.1776442142855,1099.1776442142855,529.6505970675516,529.6505970675516,28793.4093,5.0,615.2488,1,2,3,4,5,6 +332.5,84.0,2213.0202,100,1114.707952285714,1114.707952285714,529.6505970675516,529.6505970675516,29138.9622,5.0,622.9075499999999,1,2,3,4,5,6 +333.0,84.0,2213.0202,100,1130.2382603571427,1130.2382603571427,529.6505970675516,529.6505970675516,29484.5151,5.0,630.5663,1,2,3,4,5,6 +333.5,84.0,2213.0202,100,1129.9397219999998,1129.9397219999998,529.6505970675516,529.6505970675516,29477.87265,5.0,630.4191,1,2,3,4,5,6 +334.0,84.0,2213.0202,100,1129.641183642857,1129.641183642857,529.6505970675516,529.6505970675516,29471.2302,5.0,630.2719,1,2,3,4,5,6 +334.5,84.0,2213.0202,100,1135.2182589642855,1135.2182589642855,529.6505970675516,529.6505970675516,29595.326650000003,5.0,633.02235,1,2,3,4,5,6 +335.0,84.0,2213.0202,100,1140.7953342857143,1140.7953342857143,529.6505970675516,529.6505970675516,29719.4231,5.0,635.7728,1,2,3,4,5,6 +335.5,84.0,2213.0202,100,1162.355936785714,1162.355936785714,529.6505970675516,529.6505970675516,30219.4241,5.0,646.40555,1,2,3,4,5,6 +336.0,84.0,2213.0202,100,1183.9165392857142,1183.9165392857142,529.6505970675516,529.6505970675516,30719.4251,5.0,657.0383,1,2,3,4,5,6 +336.5,84.0,2213.0202,100,1202.6513995714283,1202.6513995714283,529.6505970675516,529.6505970675516,31186.506999999998,5.0,666.27755,1,2,3,4,5,6 +337.0,84.0,2213.0202,100,1221.3862598571427,1221.3862598571427,529.6505970675516,529.6505970675516,31653.5889,5.0,675.5168,1,2,3,4,5,6 +337.5,84.0,2213.0202,100,1222.6390386428568,1222.6390386428568,529.6505970675516,529.6505970675516,31685.62405,5.0,676.1346,1,2,3,4,5,6 +338.0,84.0,2213.0202,100,1223.8918174285714,1223.8918174285714,529.6505970675516,529.6505970675516,31717.6592,5.0,676.7524,1,2,3,4,5,6 +338.5,84.0,2213.0202,100,1218.8121557142856,1218.8121557142856,529.6505970675516,529.6505970675516,31587.770149999997,5.0,674.2474,1,2,3,4,5,6 +339.0,84.0,2213.0202,100,1213.7324939999999,1213.7324939999999,529.6505970675516,529.6505970675516,31457.8811,5.0,671.7424,1,2,3,4,5,6 +339.5,84.0,2213.0202,100,1222.1452327499996,1222.1452327499996,529.6505970675516,529.6505970675516,31668.462050000002,5.0,675.89125,1,2,3,4,5,6 +340.0,84.0,2213.0202,100,1230.5579714999997,1230.5579714999997,529.6505970675516,529.6505970675516,31879.043,5.0,680.0401,1,2,3,4,5,6 +340.5,84.0,2213.0202,100,1260.2481071785712,1260.2481071785712,529.6505970675516,529.6505970675516,32562.111900000004,5.0,694.68195,1,2,3,4,5,6 +341.0,84.0,2213.0202,100,1289.9382428571428,1289.9382428571428,529.6505970675516,529.6505970675516,33245.1808,5.0,709.3238,1,2,3,4,5,6 +341.5,83.99995,2213.0195999999996,100,1322.3565976527368,1322.3565976527368,529.650281799339,529.650281799339,33956.88315,5.0,725.3099,1,2,3,4,5,6 +342.0,83.9999,2213.019,100,1354.7749910416562,1354.7749910416562,529.6499665311264,529.6499665311264,34668.5855,5.0,741.296,1,2,3,4,5,6 +342.5,83.99945,2213.0060999999996,100,1366.4104390564462,1366.4104390564462,529.6471291172137,529.6471291172137,34923.449,5.0,747.0276,1,2,3,4,5,6 +343.0,83.999,2212.9932,100,1378.0460117382352,1378.0460117382352,529.6442917033007,529.6442917033007,35178.3125,5.0,752.7592,1,2,3,4,5,6 +343.5,83.99905,2212.99525,100,1370.0012505260474,1370.0012505260474,529.6446069715133,529.6446069715133,35002.46355,5.0,748.8082999999999,1,2,3,4,5,6 +344.0,83.9991,2212.9973,100,1361.9564988910597,1361.9564988910597,529.6449222397258,529.6449222397258,34826.6146,5.0,744.8574,1,2,3,4,5,6 +344.5,83.99955,2213.00875,100,1333.1982715621693,1333.1982715621693,529.6477596536387,529.6477596536387,34195.09675,5.0,730.6664000000001,1,2,3,4,5,6 +345.0,84.0,2213.0202,100,1304.440352357143,1304.440352357143,529.6505970675516,529.6505970675516,33563.5789,5.0,716.4754,1,2,3,4,5,6 +345.5,84.0,2213.0202,100,1271.5253710714285,1271.5253710714285,529.6505970675516,529.6505970675516,32817.2082,5.0,700.2433000000001,1,2,3,4,5,6 +346.0,84.0,2213.0202,100,1238.6103897857142,1238.6103897857142,529.6505970675516,529.6505970675516,32070.8375,5.0,684.0112,1,2,3,4,5,6 +346.5,84.0,2213.0202,100,1214.97309675,1214.97309675,529.6505970675516,529.6505970675516,31483.9602,5.0,672.3543,1,2,3,4,5,6 +347.0,84.0,2213.0202,100,1191.3358037142857,1191.3358037142857,529.6505970675516,529.6505970675516,30897.0829,5.0,660.6974,1,2,3,4,5,6 +347.5,84.0,2213.0202,100,1171.6439972142857,1171.6439972142857,529.6505970675516,529.6505970675516,30432.375350000002,5.0,650.9861000000001,1,2,3,4,5,6 +348.0,84.0,2213.0202,100,1151.9521907142855,1151.9521907142855,529.6505970675516,529.6505970675516,29967.6678,5.0,641.2748,1,2,3,4,5,6 +348.5,84.0,2213.0202,100,1129.1180650714284,1129.1180650714284,529.6505970675516,529.6505970675516,29459.595849999998,5.0,630.01405,1,2,3,4,5,6 +349.0,84.0,2213.0202,100,1106.2839394285713,1106.2839394285713,529.6505970675516,529.6505970675516,28951.5239,5.0,618.7533,1,2,3,4,5,6 +349.5,84.0,2213.0202,100,1085.5355236071427,1085.5355236071427,529.6505970675516,529.6505970675516,28489.855649999998,5.0,608.521,1,2,3,4,5,6 +350.0,84.0,2213.0202,100,1064.7871077857142,1064.7871077857142,529.6505970675516,529.6505970675516,28028.1874,5.0,598.2887,1,2,3,4,5,6 +350.5,84.0,2213.0202,100,1048.7048194285715,1048.7048194285715,529.6505970675516,529.6505970675516,27670.3475,5.0,590.3576,1,2,3,4,5,6 +351.0,84.0,2213.0202,100,1032.6225310714285,1032.6225310714285,529.6505970675516,529.6505970675516,27312.5076,5.0,582.4265,1,2,3,4,5,6 +351.5,84.0,2213.0202,100,1008.4287481071427,1008.4287481071427,529.6505970675516,529.6505970675516,26727.70725,5.0,570.4977,1,2,3,4,5,6 +352.0,84.0,2213.0202,100,984.234965142857,984.234965142857,529.6505970675516,529.6505970675516,26142.9069,5.0,558.5689,1,2,3,4,5,6 +352.5,84.0,2213.0202,100,954.6954515357141,954.6954515357141,529.6505970675516,529.6505970675516,25452.88675,5.0,544.00665,1,2,3,4,5,6 +353.0,84.0,2213.0202,100,925.1559379285713,925.1559379285713,529.6505970675516,529.6505970675516,24762.8666,5.0,529.4444,1,2,3,4,5,6 +353.5,83.96495,2206.6933,100,819.8456644707107,819.8456644707107,529.4295940505609,529.4295940505609,22283.424899999998,5.0,468.2711,1,2,3,4,5,6 +354.0,83.9299,2200.3664,100,714.4474336797732,714.4474336797732,529.2085910335702,529.2085910335702,19803.9832,5.0,407.0978,1,2,3,4,5,6 +354.5,83.69005,2108.72525,100,299.5589125827981,299.5589125827981,527.6962494180149,527.6962494180149,9910.70895,2.5,158.9318,1,2,3,4,5,6 +355.0,83.4502,2017.0841,100,-117.71452818567242,-117.71452818567242,526.1839078024594,526.1839078024594,17.4347,0.0,-89.2342,1,2,3,4,5,6 +355.5,83.08195,1880.36445,100,-26.58264595378419,-26.58264595378419,523.8619574171008,523.8619574171008,1941.6071000000002,0.0,-19.424149999999997,1,2,3,4,5,6 +356.0,82.7137,1743.6448,100,65.3606935247728,65.3606935247728,521.5400070317421,521.5400070317421,3865.7795,0.0,50.3859,1,2,3,4,5,6 +356.5,82.61080000000001,1670.2631000000001,100,587.9371405675771,587.9371405675771,520.8911850503345,520.8911850503345,15564.389500000001,3.0,449.0185,1,2,3,4,5,6 +357.0,82.5079,1596.8814,100,1111.8170534942715,1111.8170534942715,520.2423630689268,520.2423630689268,27262.9995,6.0,847.6511,1,2,3,4,5,6 +357.5,82.65690000000001,1594.6888,100,1169.6460910704366,1169.6460910704366,521.1818623422967,521.1818623422967,28821.8111,6.0,898.4509,1,2,3,4,5,6 +358.0,82.8059,1592.4962,100,1227.2670148141622,1227.2670148141622,522.1213616156663,522.1213616156663,30380.6227,6.0,949.2507,1,2,3,4,5,6 +358.5,82.9881,1596.0180500000001,100,1231.225504343394,1231.225504343394,523.2701989821629,523.2701989821629,30542.71965,6.0,952.0408500000001,1,2,3,4,5,6 +359.0,83.1703,1599.5399,100,1235.166650258566,1235.166650258566,524.4190363486593,524.4190363486593,30704.8166,6.0,954.831,1,2,3,4,5,6 +359.5,83.3555,1603.11825,100,1234.3723956187653,1234.3723956187653,525.5867898079083,525.5867898079083,30756.2909,6.0,954.2121500000001,1,2,3,4,5,6 +360.0,83.5407,1606.6966,100,1233.5816625189875,1233.5816625189875,526.7545432671573,526.7545432671573,30807.7652,6.0,953.5933,1,2,3,4,5,6 +360.5,83.70134999999999,1609.93025,100,1191.5274105256367,1191.5274105256367,527.7675000340489,527.7675000340489,29938.631350000003,6.0,923.9709,1,2,3,4,5,6 +361.0,83.862,1613.1639,100,1149.6342807469412,1149.6342807469412,528.7804568009407,528.7804568009407,29069.4975,6.0,894.3485,1,2,3,4,5,6 +361.5,83.931,1614.33435,100,988.9901306430282,988.9901306430282,529.2155269342461,529.2155269342461,25524.240250000003,6.0,781.5867499999999,1,2,3,4,5,6 +362.0,84.0,1615.5048,100,828.6098959285714,828.6098959285714,529.6505970675516,529.6505970675516,21978.983,6.0,668.825,1,2,3,4,5,6 +362.5,84.0,1615.5048,100,822.6725001428571,822.6725001428571,529.6505970675516,529.6505970675516,21863.111,6.0,664.6904,1,2,3,4,5,6 +363.0,84.0,1615.5048,100,816.7351043571427,816.7351043571427,529.6505970675516,529.6505970675516,21747.239,6.0,660.5558,1,2,3,4,5,6 +363.5,84.0,1615.5048,100,806.5121949642856,806.5121949642856,529.6505970675516,529.6505970675516,21536.3957,6.0,653.43665,1,2,3,4,5,6 +364.0,84.0,1615.5048,100,796.2892855714285,796.2892855714285,529.6505970675516,529.6505970675516,21325.5524,6.0,646.3175,1,2,3,4,5,6 +364.5,84.0,1615.5048,100,778.9131806785714,778.9131806785714,529.6505970675516,529.6505970675516,20934.83255,6.0,634.21685,1,2,3,4,5,6 +365.0,84.0,1615.5048,100,761.5370757857141,761.5370757857141,529.6505970675516,529.6505970675516,20544.1127,6.0,622.1162,1,2,3,4,5,6 +365.5,84.0,1615.5048,100,744.836515392857,744.836515392857,529.6505970675516,529.6505970675516,20165.49275,6.0,610.4806000000001,1,2,3,4,5,6 +366.0,84.0,1615.5048,100,728.135955,728.135955,529.6505970675516,529.6505970675516,19786.8728,6.0,598.845,1,2,3,4,5,6 +366.5,84.0,1615.5048,100,719.7556856785714,719.7556856785714,529.6505970675516,529.6505970675516,19596.81555,6.0,593.0042000000001,1,2,3,4,5,6 +367.0,84.0,1615.5048,100,711.3754163571427,711.3754163571427,529.6505970675516,529.6505970675516,19406.7583,6.0,587.1634,1,2,3,4,5,6 +367.5,84.0,1615.5048,100,717.1369360714285,717.1369360714285,529.6505970675516,529.6505970675516,19537.41725,6.0,591.1788,1,2,3,4,5,6 +368.0,84.0,1615.5048,100,722.8984557857142,722.8984557857142,529.6505970675516,529.6505970675516,19668.0762,6.0,595.1942,1,2,3,4,5,6 +368.5,84.0,1615.5048,100,742.2173148214284,742.2173148214284,529.6505970675516,529.6505970675516,20106.0746,6.0,608.6546000000001,1,2,3,4,5,6 +369.0,84.0,1615.5048,100,761.5361738571428,761.5361738571428,529.6505970675516,529.6505970675516,20544.073,6.0,622.115,1,2,3,4,5,6 +369.5,84.0,1615.5048,100,788.0158947857143,788.0158947857143,529.6505970675516,529.6505970675516,21116.95735,6.0,640.55565,1,2,3,4,5,6 +370.0,84.0,1615.5048,100,814.4956157142856,814.4956157142856,529.6505970675516,529.6505970675516,21689.8417,6.0,658.9963,1,2,3,4,5,6 +370.5,84.0,1615.5048,100,844.4716627499998,844.4716627499998,529.6505970675516,529.6505970675516,22298.771950000002,6.0,679.87085,1,2,3,4,5,6 +371.0,84.0,1615.5048,100,874.4477097857142,874.4477097857142,529.6505970675516,529.6505970675516,22907.7022,6.0,700.7454,1,2,3,4,5,6 +371.5,84.0,1615.5048,100,892.8587777142857,892.8587777142857,529.6505970675516,529.6505970675516,23310.0164,6.0,713.5662,1,2,3,4,5,6 +372.0,84.0,1615.5048,100,911.2698456428571,911.2698456428571,529.6505970675516,529.6505970675516,23712.3306,6.0,726.387,1,2,3,4,5,6 +372.5,84.0,1615.5048,100,909.7004899285714,909.7004899285714,529.6505970675516,529.6505970675516,23677.720350000003,6.0,725.29405,1,2,3,4,5,6 +373.0,84.0,1615.5048,100,908.1311342142857,908.1311342142857,529.6505970675516,529.6505970675516,23643.1101,6.0,724.2011,1,2,3,4,5,6 +373.5,84.0,1615.5048,100,904.5180083571428,904.5180083571428,529.6505970675516,529.6505970675516,23563.437850000002,6.0,721.6852,1,2,3,4,5,6 +374.0,84.0,1615.5048,100,900.9048824999999,900.9048824999999,529.6505970675516,529.6505970675516,23483.7656,6.0,719.1693,1,2,3,4,5,6 +374.5,84.0,1615.5048,100,908.9352035357141,908.9352035357141,529.6505970675516,529.6505970675516,23660.85085,6.0,724.76135,1,2,3,4,5,6 +375.0,84.0,1615.5048,100,916.9655245714284,916.9655245714284,529.6505970675516,529.6505970675516,23837.9361,6.0,730.3534,1,2,3,4,5,6 +375.5,84.0,1615.5048,100,928.0159534285713,928.0159534285713,529.6505970675516,529.6505970675516,24081.6239,6.0,738.0486,1,2,3,4,5,6 +376.0,84.0,1615.5048,100,939.0663822857141,939.0663822857141,529.6505970675516,529.6505970675516,24325.3117,6.0,745.7438,1,2,3,4,5,6 +376.5,84.0,1615.5048,100,940.3989817499998,940.3989817499998,529.6505970675516,529.6505970675516,24354.6982,6.0,746.6718,1,2,3,4,5,6 +377.0,84.0,1615.5048,100,941.7315812142857,941.7315812142857,529.6505970675516,529.6505970675516,24384.0847,6.0,747.5998,1,2,3,4,5,6 +377.5,84.0,1615.5048,100,935.1858346071429,935.1858346071429,529.6505970675516,529.6505970675516,24239.7313,6.0,743.04135,1,2,3,4,5,6 +378.0,84.0,1615.5048,100,928.640088,928.640088,529.6505970675516,529.6505970675516,24095.3779,6.0,738.4829,1,2,3,4,5,6 +378.5,84.0,1615.5048,100,923.2199482499998,923.2199482499998,529.6505970675516,529.6505970675516,23975.85155,6.0,734.7085,1,2,3,4,5,6 +379.0,84.0,1615.5048,100,917.7998084999998,917.7998084999998,529.6505970675516,529.6505970675516,23856.3252,6.0,730.9341,1,2,3,4,5,6 +379.5,84.0,1615.5048,100,908.4075753214286,908.4075753214286,529.6505970675516,529.6505970675516,23649.206749999998,6.0,724.39365,1,2,3,4,5,6 +380.0,84.0,1615.5048,100,899.0153421428571,899.0153421428571,529.6505970675516,529.6505970675516,23442.0883,6.0,717.8532,1,2,3,4,5,6 +380.5,84.0,1615.5048,100,871.0456352142857,871.0456352142857,529.6505970675516,529.6505970675516,22853.2993,6.0,698.3758,1,2,3,4,5,6 +381.0,84.0,1615.5048,100,843.0759282857142,843.0759282857142,529.6505970675516,529.6505970675516,22264.5103,6.0,678.8984,1,2,3,4,5,6 +381.5,84.0,1615.5048,100,798.7533544285712,798.7533544285712,529.6505970675516,529.6505970675516,21323.7196,6.0,648.0306,1,2,3,4,5,6 +382.0,84.0,1615.5048,100,754.4307805714284,754.4307805714284,529.6505970675516,529.6505970675516,20382.9289,6.0,617.1628,1,2,3,4,5,6 +382.5,84.0,1615.5048,100,721.8066712499998,721.8066712499998,529.6505970675516,529.6505970675516,19652.72365,6.0,594.4292499999999,1,2,3,4,5,6 +383.0,84.0,1615.5048,100,689.1825619285713,689.1825619285713,529.6505970675516,529.6505970675516,18922.5184,6.0,571.6957,1,2,3,4,5,6 +383.5,84.0,1615.5048,100,692.5584805714284,692.5584805714284,529.6505970675516,529.6505970675516,18993.95375,6.0,574.04845,1,2,3,4,5,6 +384.0,84.0,1615.5048,100,695.9343992142857,695.9343992142857,529.6505970675516,529.6505970675516,19065.3891,6.0,576.4012,1,2,3,4,5,6 +384.5,84.0,1615.5048,100,726.4177810714286,726.4177810714286,529.6505970675516,529.6505970675516,19752.17035,6.0,597.6428000000001,1,2,3,4,5,6 +385.0,84.0,1615.5048,100,756.9011629285714,756.9011629285714,529.6505970675516,529.6505970675516,20438.9516,6.0,618.8844,1,2,3,4,5,6 +385.5,84.0,1615.5048,100,794.4443906785714,794.4443906785714,529.6505970675516,529.6505970675516,21241.85505,6.0,645.03075,1,2,3,4,5,6 +386.0,84.0,1615.5048,100,831.9876184285714,831.9876184285714,529.6505970675516,529.6505970675516,22044.7585,6.0,671.1771,1,2,3,4,5,6 +386.5,84.0,1615.5048,100,857.8066766785712,857.8066766785712,529.6505970675516,529.6505970675516,22573.74155,6.0,689.1569,1,2,3,4,5,6 +387.0,84.0,1615.5048,100,883.6257349285713,883.6257349285713,529.6505970675516,529.6505970675516,23102.7246,6.0,707.1367,1,2,3,4,5,6 +387.5,84.0,1615.5048,100,885.2424418928568,885.2424418928568,529.6505970675516,529.6505970675516,23138.3765,6.0,708.2625,1,2,3,4,5,6 +388.0,84.0,1615.5048,100,886.8591488571427,886.8591488571427,529.6505970675516,529.6505970675516,23174.0284,6.0,709.3883,1,2,3,4,5,6 +388.5,84.0,1615.5048,100,882.0559282499999,882.0559282499999,529.6505970675516,529.6505970675516,23068.1008,6.0,706.0433,1,2,3,4,5,6 +389.0,84.0,1615.5048,100,877.2527076428571,877.2527076428571,529.6505970675516,529.6505970675516,22962.1732,6.0,702.6983,1,2,3,4,5,6 +389.5,84.0,1615.5048,100,885.9297114642856,885.9297114642856,529.6505970675516,529.6505970675516,23153.5175,6.0,708.7406000000001,1,2,3,4,5,6 +390.0,84.0,1615.5048,100,894.6067152857141,894.6067152857141,529.6505970675516,529.6505970675516,23344.8618,6.0,714.7829,1,2,3,4,5,6 +390.5,84.0,1615.5048,100,922.1033606785713,922.1033606785713,529.6505970675516,529.6505970675516,23953.09825,6.0,733.931,1,2,3,4,5,6 +391.0,84.0,1615.5048,100,949.6000060714284,949.6000060714284,529.6505970675516,529.6505970675516,24561.3347,6.0,753.0791,1,2,3,4,5,6 +391.5,84.0,1615.5048,100,985.5598982142857,985.5598982142857,529.6505970675516,529.6505970675516,25374.28345,6.0,778.12405,1,2,3,4,5,6 +392.0,84.0,1615.5048,100,1021.5197903571427,1021.5197903571427,529.6505970675516,529.6505970675516,26187.2322,6.0,803.169,1,2,3,4,5,6 +392.5,84.0,1615.5048,100,1037.1709568571428,1037.1709568571428,529.6505970675516,529.6505970675516,26544.84925,6.0,814.0723,1,2,3,4,5,6 +393.0,84.0,1615.5048,100,1052.8221233571426,1052.8221233571426,529.6505970675516,529.6505970675516,26902.4663,6.0,824.9756,1,2,3,4,5,6 +393.5,84.0,1615.5048,100,1039.8036863571426,1039.8036863571426,529.6505970675516,529.6505970675516,26604.999900000003,6.0,815.9062,1,2,3,4,5,6 +394.0,84.0,1615.5048,100,1026.7852493571427,1026.7852493571427,529.6505970675516,529.6505970675516,26307.5335,6.0,806.8368,1,2,3,4,5,6 +394.5,84.0,1615.5048,100,1006.8336874285715,1006.8336874285715,529.6505970675516,529.6505970675516,25851.70645,6.0,792.9392,1,2,3,4,5,6 +395.0,84.0,1615.5048,100,986.8821254999999,986.8821254999999,529.6505970675516,529.6505970675516,25395.8794,6.0,779.0416,1,2,3,4,5,6 +395.5,84.0,1615.5048,100,975.348713892857,975.348713892857,529.6505970675516,529.6505970675516,25133.9822,6.0,771.01,1,2,3,4,5,6 +396.0,84.0,1615.5048,100,963.8153022857141,963.8153022857141,529.6505970675516,529.6505970675516,24872.085,6.0,762.9784,1,2,3,4,5,6 +396.5,84.0,1615.5048,100,958.7270722499999,958.7270722499999,529.6505970675516,529.6505970675516,24759.37,6.0,759.43485,1,2,3,4,5,6 +397.0,84.0,1615.5048,100,953.6388422142857,953.6388422142857,529.6505970675516,529.6505970675516,24646.655,6.0,755.8913,1,2,3,4,5,6 +397.5,84.0,1615.5048,100,945.6197952857142,945.6197952857142,529.6505970675516,529.6505970675516,24469.82475,6.0,750.3072999999999,1,2,3,4,5,6 +398.0,84.0,1615.5048,100,937.6007483571428,937.6007483571428,529.6505970675516,529.6505970675516,24292.9945,6.0,744.7233,1,2,3,4,5,6 +398.5,84.0,1615.5048,100,923.8012412142857,923.8012412142857,529.6505970675516,529.6505970675516,23988.68445,6.0,735.11375,1,2,3,4,5,6 +399.0,84.0,1615.5048,100,910.0017340714285,910.0017340714285,529.6505970675516,529.6505970675516,23684.3744,6.0,725.5042,1,2,3,4,5,6 +399.5,84.0,1615.5048,100,881.9007965357141,881.9007965357141,529.6505970675516,529.6505970675516,23092.30415,6.0,705.9354,1,2,3,4,5,6 +400.0,84.0,1615.5048,100,853.7998589999997,853.7998589999997,529.6505970675516,529.6505970675516,22500.2339,6.0,686.3666,1,2,3,4,5,6 +400.5,84.0,1615.5048,100,811.4930954999999,811.4930954999999,529.6505970675516,529.6505970675516,21608.8165,6.0,656.9041,1,2,3,4,5,6 +401.0,84.0,1615.5048,100,769.1863319999999,769.1863319999999,529.6505970675516,529.6505970675516,20717.3991,6.0,627.4416,1,2,3,4,5,6 +401.5,84.0,1615.5048,100,740.5974511071429,740.5974511071429,529.6505970675516,529.6505970675516,20069.255299999997,6.0,607.52305,1,2,3,4,5,6 +402.0,84.0,1615.5048,100,712.0085702142856,712.0085702142856,529.6505970675516,529.6505970675516,19421.1115,6.0,587.6045,1,2,3,4,5,6 +402.5,84.0,1615.5048,100,683.3818083214284,683.3818083214284,529.6505970675516,529.6505970675516,18793.7972,6.0,567.65275,1,2,3,4,5,6 +403.0,84.0,1615.5048,100,654.7550464285714,654.7550464285714,529.6505970675516,529.6505970675516,18166.4829,6.0,547.701,1,2,3,4,5,6 +403.5,84.0,1615.5048,100,619.4765613214286,619.4765613214286,529.6505970675516,529.6505970675516,17375.070399999997,6.0,523.11295,1,2,3,4,5,6 +404.0,84.0,1615.5048,100,584.1980762142856,584.1980762142856,529.6505970675516,529.6505970675516,16583.6579,6.0,498.5249,1,2,3,4,5,6 +404.5,84.0,1615.5048,100,547.7132616428571,547.7132616428571,529.6505970675516,529.6505970675516,15760.0759,6.0,473.09860000000003,1,2,3,4,5,6 +405.0,84.0,1615.5048,100,511.2284470714285,511.2284470714285,529.6505970675516,529.6505970675516,14936.4939,6.0,447.6723,1,2,3,4,5,6 +405.5,84.0,1615.5048,100,456.5684188928571,456.5684188928571,529.6505970675516,529.6505970675516,13733.5019,6.0,409.6035,1,2,3,4,5,6 +406.0,84.0,1615.5048,100,401.90839071428564,401.90839071428564,529.6505970675516,529.6505970675516,12530.5099,6.0,371.5347,1,2,3,4,5,6 +406.5,84.0,1615.5048,100,349.3142299285714,349.3142299285714,529.6505970675516,529.6505970675516,11377.117999999999,6.0,334.90914999999995,1,2,3,4,5,6 +407.0,84.0,1615.5048,100,296.72006914285714,296.72006914285714,529.6505970675516,529.6505970675516,10223.7261,6.0,298.2836,1,2,3,4,5,6 +407.5,84.0,1615.5048,100,281.71513446428565,281.71513446428565,529.6505970675516,529.6505970675516,9917.218850000001,6.0,287.8346,1,2,3,4,5,6 +408.0,84.0,1615.5048,100,266.7101997857143,266.7101997857143,529.6505970675516,529.6505970675516,9610.7116,6.0,277.3856,1,2,3,4,5,6 +408.5,84.0,1615.5048,100,298.0012586785714,298.0012586785714,529.6505970675516,529.6505970675516,10266.22225,6.0,299.17615,1,2,3,4,5,6 +409.0,84.0,1615.5048,100,329.2923175714285,329.2923175714285,529.6505970675516,529.6505970675516,10921.7329,6.0,320.9667,1,2,3,4,5,6 +409.5,84.0,1615.5048,100,374.56462221428563,374.56462221428563,529.6505970675516,529.6505970675516,11929.7481,6.0,352.493,1,2,3,4,5,6 +410.0,84.0,1615.5048,100,419.8369268571428,419.8369268571428,529.6505970675516,529.6505970675516,12937.7633,6.0,384.0193,1,2,3,4,5,6 +410.5,84.0,1615.5048,100,438.54157253571424,438.54157253571424,529.6505970675516,529.6505970675516,13332.08285,6.0,397.0444,1,2,3,4,5,6 +411.0,84.0,1615.5048,100,457.24621821428565,457.24621821428565,529.6505970675516,529.6505970675516,13726.4024,6.0,410.0695,1,2,3,4,5,6 +411.5,84.0,1615.5048,100,442.78018585714284,442.78018585714284,529.6505970675516,529.6505970675516,13425.42055,6.0,399.996,1,2,3,4,5,6 +412.0,84.0,1615.5048,100,428.3141535,428.3141535,529.6505970675516,529.6505970675516,13124.4387,6.0,389.9225,1,2,3,4,5,6 +412.5,84.0,1615.5048,100,409.0904479285714,409.0904479285714,529.6505970675516,529.6505970675516,12706.770550000001,6.0,376.5358,1,2,3,4,5,6 +413.0,84.0,1615.5048,100,389.8667423571428,389.8667423571428,529.6505970675516,529.6505970675516,12289.1024,6.0,363.1491,1,2,3,4,5,6 +413.5,84.0,1615.5048,100,389.7824120357142,389.7824120357142,529.6505970675516,529.6505970675516,12287.1767,6.0,363.09055,1,2,3,4,5,6 +414.0,84.0,1615.5048,100,389.69808171428565,389.69808171428565,529.6505970675516,529.6505970675516,12285.251,6.0,363.032,1,2,3,4,5,6 +414.5,84.0,1615.5048,100,406.30033189285706,406.30033189285706,529.6505970675516,529.6505970675516,12649.31775,6.0,374.59299999999996,1,2,3,4,5,6 +415.0,84.0,1615.5048,100,422.90258207142847,422.90258207142847,529.6505970675516,529.6505970675516,13013.3845,6.0,386.154,1,2,3,4,5,6 +415.5,84.0,1615.5048,100,435.3902341071429,435.3902341071429,529.6505970675516,529.6505970675516,13265.055,6.0,394.85015,1,2,3,4,5,6 +416.0,84.0,1615.5048,100,447.8778861428571,447.8778861428571,529.6505970675516,529.6505970675516,13516.7255,6.0,403.5463,1,2,3,4,5,6 +416.5,84.0,1615.5048,100,437.00378432142855,437.00378432142855,529.6505970675516,529.6505970675516,13296.64245,6.0,395.97389999999996,1,2,3,4,5,6 +417.0,84.0,1615.5048,100,426.12968249999994,426.12968249999994,529.6505970675516,529.6505970675516,13076.5594,6.0,388.4015,1,2,3,4,5,6 +417.5,84.0,1615.5048,100,400.5054408214286,400.5054408214286,529.6505970675516,529.6505970675516,12511.201799999999,6.0,370.5577,1,2,3,4,5,6 +418.0,84.0,1615.5048,100,374.8811991428571,374.8811991428571,529.6505970675516,529.6505970675516,11945.8442,6.0,352.7139,1,2,3,4,5,6 +418.5,84.0,1615.5048,100,356.7803946428572,356.7803946428572,529.6505970675516,529.6505970675516,11531.21385,6.0,340.1089,1,2,3,4,5,6 +419.0,84.0,1615.5048,100,338.67959014285714,338.67959014285714,529.6505970675516,529.6505970675516,11116.5835,6.0,327.5039,1,2,3,4,5,6 +419.5,84.0,1615.5048,100,321.67598175,321.67598175,529.6505970675516,529.6505970675516,10741.7198,6.0,315.6628,1,2,3,4,5,6 +420.0,84.0,1615.5048,100,304.6723733571428,304.6723733571428,529.6505970675516,529.6505970675516,10366.8561,6.0,303.8217,1,2,3,4,5,6 +420.5,84.0,1615.5048,100,269.6883679285714,269.6883679285714,529.6505970675516,529.6505970675516,9640.118,6.0,279.47925,1,2,3,4,5,6 +421.0,84.0,1615.5048,100,234.70436249999997,234.70436249999997,529.6505970675516,529.6505970675516,8913.3799,6.0,255.1368,1,2,3,4,5,6 +421.5,84.0,1615.5048,100,188.28615760714285,188.28615760714285,529.6505970675516,529.6505970675516,7899.439,6.0,223.476,1,2,3,4,5,6 +422.0,84.0,1615.5048,100,141.8679527142857,141.8679527142857,529.6505970675516,529.6505970675516,6885.4981,6.0,191.8152,1,2,3,4,5,6 +422.5,84.0,1615.5048,100,103.6049859642857,103.6049859642857,529.6505970675516,529.6505970675516,6087.11515,6.0,166.5906,1,2,3,4,5,6 +423.0,84.0,1615.5048,100,65.3420192142857,65.3420192142857,529.6505970675516,529.6505970675516,5288.7322,6.0,141.366,1,2,3,4,5,6 +423.5,84.0,1615.5048,100,36.616045178571426,36.616045178571426,529.6505970675516,529.6505970675516,4728.311250000001,6.0,122.53960000000001,1,2,3,4,5,6 +424.0,84.0,1615.5048,100,7.890071142857143,7.890071142857143,529.6505970675516,529.6505970675516,4167.8903,6.0,103.7132,1,2,3,4,5,6 +424.5,84.0,1615.5048,100,-19.717962428571425,-19.717962428571425,529.6505970675516,529.6505970675516,3749.36845,6.0,85.61959999999999,1,2,3,4,5,6 +425.0,84.0,1615.5048,100,-47.325996,-47.325996,529.6505970675516,529.6505970675516,3330.8466,6.0,67.526,1,2,3,4,5,6 +425.5,84.0,1615.5048,100,-65.4809162142857,-65.4809162142857,529.6505970675516,529.6505970675516,3078.4578,6.0,55.62765,1,2,3,4,5,6 +426.0,84.0,1615.5048,100,-83.63583642857142,-83.63583642857142,529.6505970675516,529.6505970675516,2826.069,6.0,43.7293,1,2,3,4,5,6 +426.5,84.0,1615.5048,100,-82.60042242857142,-82.60042242857142,529.6505970675516,529.6505970675516,2840.4647,6.0,44.40795,1,2,3,4,5,6 +427.0,84.0,1615.5048,100,-81.56500842857142,-81.56500842857142,529.6505970675516,529.6505970675516,2854.8604,6.0,45.0866,1,2,3,4,5,6 +427.5,84.0,1615.5048,100,-72.75542110714285,-72.75542110714285,529.6505970675516,529.6505970675516,2977.3313,6.0,50.86024999999999,1,2,3,4,5,6 +428.0,84.0,1615.5048,100,-63.94583378571428,-63.94583378571428,529.6505970675516,529.6505970675516,3099.8022,6.0,56.6339,1,2,3,4,5,6 +428.5,84.0,1615.5048,100,-62.99790685714285,-62.99790685714285,529.6505970675516,529.6505970675516,3112.9791,6.0,57.2551,1,2,3,4,5,6 +429.0,84.0,1615.5048,100,-62.04997992857142,-62.04997992857142,529.6505970675516,529.6505970675516,3126.156,6.0,57.8763,1,2,3,4,5,6 +429.5,84.0,1615.5048,100,-73.05756717857142,-73.05756717857142,529.6505970675516,529.6505970675516,2973.12875,6.0,50.662099999999995,1,2,3,4,5,6 +430.0,84.0,1615.5048,100,-84.06515442857142,-84.06515442857142,529.6505970675516,529.6505970675516,2820.1015,6.0,43.4479,1,2,3,4,5,6 +430.5,84.0,1615.5048,100,-102.91140289285714,-102.91140289285714,529.6505970675516,529.6505970675516,2563.11535,6.0,31.119049999999998,1,2,3,4,5,6 +431.0,84.0,1615.5048,100,-121.75765135714285,-121.75765135714285,529.6505970675516,529.6505970675516,2306.1292,6.0,18.7902,1,2,3,4,5,6 +431.5,84.0,1615.5048,100,-139.03724989285712,-139.03724989285712,529.6505970675516,529.6505970675516,2080.6850999999997,6.0,7.649149999999999,1,2,3,4,5,6 +432.0,84.0,1615.5048,100,-156.3168484285714,-156.3168484285714,529.6505970675516,529.6505970675516,1855.241,6.0,-3.4919,1,2,3,4,5,6 +432.5,84.0,1615.5048,100,-164.9343249642857,-164.9343249642857,529.6505970675516,529.6505970675516,1728.6895,6.0,-9.0264,1,2,3,4,5,6 +433.0,84.0,1615.5048,100,-173.55180149999998,-173.55180149999998,529.6505970675516,529.6505970675516,1602.138,6.0,-14.5609,1,2,3,4,5,6 +433.5,84.0,1615.5048,100,-175.60053225,-175.60053225,529.6505970675516,529.6505970675516,1569.079,6.0,-15.87665,1,2,3,4,5,6 +434.0,84.0,1615.5048,100,-177.64926299999996,-177.64926299999996,529.6505970675516,529.6505970675516,1536.02,6.0,-17.1924,1,2,3,4,5,6 +434.5,84.0,1615.5048,100,-178.40643203571426,-178.40643203571426,529.6505970675516,529.6505970675516,1523.4721,6.0,-17.678649999999998,1,2,3,4,5,6 +435.0,84.0,1615.5048,100,-179.16360107142856,-179.16360107142856,529.6505970675516,529.6505970675516,1510.9242,6.0,-18.1649,1,2,3,4,5,6 +435.5,84.0,1615.5048,100,-180.0781566428571,-180.0781566428571,529.6505970675516,529.6505970675516,1495.7642,6.0,-18.752299999999998,1,2,3,4,5,6 +436.0,84.0,1615.5048,100,-180.9927122142857,-180.9927122142857,529.6505970675516,529.6505970675516,1480.6042,6.0,-19.3397,1,2,3,4,5,6 +436.5,84.0,1615.5048,100,-177.8526478928571,-177.8526478928571,529.6505970675516,529.6505970675516,1531.5369,6.0,-17.32285,1,2,3,4,5,6 +437.0,84.0,1615.5048,100,-174.71258357142855,-174.71258357142855,529.6505970675516,529.6505970675516,1582.4696,6.0,-15.306,1,2,3,4,5,6 +437.5,84.0,1615.5048,100,-166.97178160714282,-166.97178160714282,529.6505970675516,529.6505970675516,1700.11405,6.0,-10.33465,1,2,3,4,5,6 +438.0,84.0,1615.5048,100,-159.23097964285714,-159.23097964285714,529.6505970675516,529.6505970675516,1817.7585,6.0,-5.3633,1,2,3,4,5,6 +438.5,84.0,1615.5048,100,-157.84922507142855,-157.84922507142855,529.6505970675516,529.6505970675516,1838.2776,6.0,-4.475899999999999,1,2,3,4,5,6 +439.0,84.0,1615.5048,100,-156.46747049999996,-156.46747049999996,529.6505970675516,529.6505970675516,1858.7967,6.0,-3.5885,1,2,3,4,5,6 +439.5,84.0,1615.5048,100,-163.61931310714283,-163.61931310714283,529.6505970675516,529.6505970675516,1751.5479,6.0,-8.181750000000001,1,2,3,4,5,6 +440.0,84.0,1615.5048,100,-170.7711557142857,-170.7711557142857,529.6505970675516,529.6505970675516,1644.2991,6.0,-12.775,1,2,3,4,5,6 +440.5,84.0,1615.5048,100,-176.45285474999994,-176.45285474999994,529.6505970675516,529.6505970675516,1552.9924,6.0,-16.4239,1,2,3,4,5,6 +441.0,84.0,1615.5048,100,-182.13455378571425,-182.13455378571425,529.6505970675516,529.6505970675516,1461.6857,6.0,-20.0728,1,2,3,4,5,6 +441.5,84.0,1615.5048,100,-175.4494592142857,-175.4494592142857,529.6505970675516,529.6505970675516,1565.0679,6.0,-15.77955,1,2,3,4,5,6 +442.0,84.0,1615.5048,100,-168.76436464285712,-168.76436464285712,529.6505970675516,529.6505970675516,1668.4501,6.0,-11.4863,1,2,3,4,5,6 +442.5,84.0,1615.5048,100,-140.51776564285714,-140.51776564285714,529.6505970675516,529.6505970675516,2054.4737,6.0,6.77825,1,2,3,4,5,6 +443.0,84.0,1615.5048,100,-112.27116664285714,-112.27116664285714,529.6505970675516,529.6505970675516,2440.4973,6.0,25.0428,1,2,3,4,5,6 +443.5,84.0,1615.5048,100,-63.289229785714284,-63.289229785714284,529.6505970675516,529.6505970675516,3141.6949,6.0,57.10415,1,2,3,4,5,6 +444.0,84.0,1615.5048,100,-14.307292928571426,-14.307292928571426,529.6505970675516,529.6505970675516,3842.8925,6.0,89.1655,1,2,3,4,5,6 +444.5,84.0,1615.5048,100,42.85693992857142,42.85693992857142,529.6505970675516,529.6505970675516,4926.0076,6.0,126.67034999999998,1,2,3,4,5,6 +445.0,84.0,1615.5048,100,100.02117278571428,100.02117278571428,529.6505970675516,529.6505970675516,6009.1227,6.0,164.1752,1,2,3,4,5,6 +445.5,84.0,1615.5048,100,145.8680059285714,145.8680059285714,529.6505970675516,529.6505970675516,6988.69685,6.0,194.79070000000002,1,2,3,4,5,6 +446.0,84.0,1615.5048,100,191.71483907142854,191.71483907142854,529.6505970675516,529.6505970675516,7968.271,6.0,225.4062,1,2,3,4,5,6 +446.5,84.0,1615.5048,100,213.70475957142855,213.70475957142855,529.6505970675516,529.6505970675516,8461.4742,6.0,240.59655,1,2,3,4,5,6 +447.0,84.0,1615.5048,100,235.69468007142854,235.69468007142854,529.6505970675516,529.6505970675516,8954.6774,6.0,255.7869,1,2,3,4,5,6 +447.5,84.0,1615.5048,100,227.17145507142854,227.17145507142854,529.6505970675516,529.6505970675516,8762.131150000001,6.0,249.85660000000001,1,2,3,4,5,6 +448.0,84.0,1615.5048,100,218.64823007142854,218.64823007142854,529.6505970675516,529.6505970675516,8569.5849,6.0,243.9263,1,2,3,4,5,6 +448.5,84.0,1615.5048,100,188.53328603571424,188.53328603571424,529.6505970675516,529.6505970675516,7903.032999999999,6.0,223.3673,1,2,3,4,5,6 +449.0,84.0,1615.5048,100,158.41834199999997,158.41834199999997,529.6505970675516,529.6505970675516,7236.4811,6.0,202.8083,1,2,3,4,5,6 +449.5,84.0,1615.5048,100,132.71833832142858,132.71833832142858,529.6505970675516,529.6505970675516,6692.56835,6.0,185.7441,1,2,3,4,5,6 +450.0,84.0,1615.5048,100,107.01833464285713,107.01833464285713,529.6505970675516,529.6505970675516,6148.6556,6.0,168.6799,1,2,3,4,5,6 +450.5,84.0,1615.5048,100,93.96968303571427,93.96968303571427,529.6505970675516,529.6505970675516,5879.42145,6.0,160.1282,1,2,3,4,5,6 +451.0,84.0,1615.5048,100,80.92103142857142,80.92103142857142,529.6505970675516,529.6505970675516,5610.1873,6.0,151.5765,1,2,3,4,5,6 +451.5,84.0,1615.5048,100,75.78860689285715,75.78860689285715,529.6505970675516,529.6505970675516,5504.28065,6.0,148.21255000000002,1,2,3,4,5,6 +452.0,84.0,1615.5048,100,70.65618235714284,70.65618235714284,529.6505970675516,529.6505970675516,5398.374,6.0,144.8486,1,2,3,4,5,6 +452.5,84.0,1615.5048,100,83.36796364285712,83.36796364285712,529.6505970675516,529.6505970675516,5660.91865,6.0,153.18785,1,2,3,4,5,6 +453.0,84.0,1615.5048,100,96.0797449285714,96.0797449285714,529.6505970675516,529.6505970675516,5923.4633,6.0,161.5271,1,2,3,4,5,6 +453.5,84.0,1615.5048,100,133.0606202142857,133.0606202142857,529.6505970675516,529.6505970675516,6708.79075,6.0,186.13549999999998,1,2,3,4,5,6 +454.0,84.0,1615.5048,100,170.0414955,170.0414955,529.6505970675516,529.6505970675516,7494.1182,6.0,210.7439,1,2,3,4,5,6 +454.5,84.0,1615.5048,100,218.30639914285712,218.30639914285712,529.6505970675516,529.6505970675516,8542.42985,6.0,244.01624999999999,1,2,3,4,5,6 +455.0,84.0,1615.5048,100,266.57130278571424,266.57130278571424,529.6505970675516,529.6505970675516,9590.7415,6.0,277.2886,1,2,3,4,5,6 +455.5,84.0,1615.5048,100,325.0956439285714,325.0956439285714,529.6505970675516,529.6505970675516,10859.082900000001,6.0,318.04395,1,2,3,4,5,6 +456.0,84.0,1615.5048,100,383.6199850714285,383.6199850714285,529.6505970675516,529.6505970675516,12127.4243,6.0,358.7993,1,2,3,4,5,6 +456.5,84.0,1615.5048,100,456.7939010357142,456.7939010357142,529.6505970675516,529.6505970675516,13744.10785,6.0,409.76725,1,2,3,4,5,6 +457.0,84.0,1615.5048,100,529.967817,529.967817,529.6505970675516,529.6505970675516,15360.7914,6.0,460.7352,1,2,3,4,5,6 +457.5,84.0,1615.5048,100,606.8964616071428,606.8964616071428,529.6505970675516,529.6505970675516,17082.00225,6.0,514.3473,1,2,3,4,5,6 +458.0,84.0,1615.5048,100,683.8251062142857,683.8251062142857,529.6505970675516,529.6505970675516,18803.2131,6.0,567.9594,1,2,3,4,5,6 +458.5,84.0,1615.5048,100,753.6911991428572,753.6911991428572,529.6505970675516,529.6505970675516,20330.70185,6.0,616.63285,1,2,3,4,5,6 +459.0,84.0,1615.5048,100,823.5572920714285,823.5572920714285,529.6505970675516,529.6505970675516,21858.1906,6.0,665.3063,1,2,3,4,5,6 +459.5,84.0,1615.5048,100,880.1497022142855,880.1497022142855,529.6505970675516,529.6505970675516,23067.54075,6.0,704.7157,1,2,3,4,5,6 +460.0,84.0,1615.5048,100,936.7421123571427,936.7421123571427,529.6505970675516,529.6505970675516,24276.8909,6.0,744.1251,1,2,3,4,5,6 +460.5,84.0,1615.5048,100,973.3423737857142,973.3423737857142,529.6505970675516,529.6505970675516,25099.8055,6.0,769.6147,1,2,3,4,5,6 +461.0,84.0,1615.5048,100,1009.9426352142856,1009.9426352142856,529.6505970675516,529.6505970675516,25922.7201,6.0,795.1043,1,2,3,4,5,6 +461.5,84.0,1615.5048,100,1011.9634061785713,1011.9634061785713,529.6505970675516,529.6505970675516,25968.8883,6.0,796.5119,1,2,3,4,5,6 +462.0,84.0,1615.5048,100,1013.984177142857,1013.984177142857,529.6505970675516,529.6505970675516,26015.0565,6.0,797.9195,1,2,3,4,5,6 +462.5,84.0,1615.5048,100,973.7644763571427,973.7644763571427,529.6505970675516,529.6505970675516,25111.1164,6.0,769.90895,1,2,3,4,5,6 +463.0,84.0,1615.5048,100,933.5447755714284,933.5447755714284,529.6505970675516,529.6505970675516,24207.1763,6.0,741.8984,1,2,3,4,5,6 +463.5,84.0,1615.5048,100,872.9974086428571,872.9974086428571,529.6505970675516,529.6505970675516,22920.0596,6.0,699.7347,1,2,3,4,5,6 +464.0,84.0,1615.5048,100,812.4500417142856,812.4500417142856,529.6505970675516,529.6505970675516,21632.9429,6.0,657.571,1,2,3,4,5,6 +464.5,84.0,1615.5048,100,763.7869366071428,763.7869366071428,529.6505970675516,529.6505970675516,20564.70425,6.0,623.67325,1,2,3,4,5,6 +465.0,84.0,1615.5048,100,715.1238314999999,715.1238314999999,529.6505970675516,529.6505970675516,19496.4656,6.0,589.7755,1,2,3,4,5,6 +465.5,84.0,1615.5048,100,693.4035876428571,693.4035876428571,529.6505970675516,529.6505970675516,19026.50335,6.0,574.63735,1,2,3,4,5,6 +466.0,84.0,1615.5048,100,671.6833437857143,671.6833437857143,529.6505970675516,529.6505970675516,18556.5411,6.0,559.4992,1,2,3,4,5,6 +466.5,84.0,1615.5048,100,668.2560152142858,668.2560152142858,529.6505970675516,529.6505970675516,18487.05315,6.0,557.11045,1,2,3,4,5,6 +467.0,84.0,1615.5048,100,664.8286866428571,664.8286866428571,529.6505970675516,529.6505970675516,18417.5652,6.0,554.7217,1,2,3,4,5,6 +467.5,84.0,1615.5048,100,661.0284106071429,661.0284106071429,529.6505970675516,529.6505970675516,18332.2143,6.0,552.0729,1,2,3,4,5,6 +468.0,84.0,1615.5048,100,657.2281345714287,657.2281345714287,529.6505970675516,529.6505970675516,18246.8634,6.0,549.4241,1,2,3,4,5,6 +468.5,84.0,1615.5048,100,645.0286487142857,645.0286487142857,529.6505970675516,529.6505970675516,17968.977,6.0,540.92175,1,2,3,4,5,6 +469.0,84.0,1615.5048,100,632.8291628571428,632.8291628571428,529.6505970675516,529.6505970675516,17691.0906,6.0,532.4194,1,2,3,4,5,6 +469.5,84.0,1615.5048,100,617.3344809642857,617.3344809642857,529.6505970675516,529.6505970675516,17338.1289,6.0,521.62005,1,2,3,4,5,6 +470.0,84.0,1615.5048,100,601.8397990714284,601.8397990714284,529.6505970675516,529.6505970675516,16985.1672,6.0,510.8207,1,2,3,4,5,6 +470.5,84.0,1615.5048,100,592.3077669642856,592.3077669642856,529.6505970675516,529.6505970675516,16768.0306,6.0,504.1771,1,2,3,4,5,6 +471.0,84.0,1615.5048,100,582.7757348571428,582.7757348571428,529.6505970675516,529.6505970675516,16550.894,6.0,497.5335,1,2,3,4,5,6 +471.5,84.0,1615.5048,100,580.5682646785715,580.5682646785715,529.6505970675516,529.6505970675516,16500.6116,6.0,495.99505,1,2,3,4,5,6 +472.0,84.0,1615.5048,100,578.3607944999999,578.3607944999999,529.6505970675516,529.6505970675516,16450.3292,6.0,494.4566,1,2,3,4,5,6 +472.5,84.0,1615.5048,100,586.9345275,586.9345275,529.6505970675516,529.6505970675516,16645.63075,6.0,500.4321,1,2,3,4,5,6 +473.0,84.0,1615.5048,100,595.5082605,595.5082605,529.6505970675516,529.6505970675516,16840.9323,6.0,506.4076,1,2,3,4,5,6 +473.5,84.0,1615.5048,100,603.9566254285714,603.9566254285714,529.6505970675516,529.6505970675516,17033.384599999998,6.0,512.29595,1,2,3,4,5,6 +474.0,84.0,1615.5048,100,612.4049903571428,612.4049903571428,529.6505970675516,529.6505970675516,17225.8369,6.0,518.1843,1,2,3,4,5,6 +474.5,84.0,1615.5048,100,623.1117844285714,623.1117844285714,529.6505970675516,529.6505970675516,17469.7237,6.0,525.64635,1,2,3,4,5,6 +475.0,84.0,1615.5048,100,633.8185785000001,633.8185785000001,529.6505970675516,529.6505970675516,17713.6105,6.0,533.1084,1,2,3,4,5,6 +475.5,84.0,1615.5048,100,648.5799924642855,648.5799924642855,529.6505970675516,529.6505970675516,18044.8372,6.0,543.39685,1,2,3,4,5,6 +476.0,84.0,1615.5048,100,663.3414064285713,663.3414064285713,529.6505970675516,529.6505970675516,18376.0639,6.0,553.6853,1,2,3,4,5,6 +476.5,84.0,1615.5048,100,677.9756484642857,677.9756484642857,529.6505970675516,529.6505970675516,18682.94075,6.0,563.88465,1,2,3,4,5,6 +477.0,84.0,1615.5048,100,692.6098905,692.6098905,529.6505970675516,529.6505970675516,18989.8176,6.0,574.084,1,2,3,4,5,6 +477.5,84.0,1615.5048,100,711.18736425,711.18736425,529.6505970675516,529.6505970675516,19406.7886,6.0,587.0313,1,2,3,4,5,6 +478.0,84.0,1615.5048,100,729.7648379999999,729.7648379999999,529.6505970675516,529.6505970675516,19823.7596,6.0,599.9786,1,2,3,4,5,6 +478.5,84.0,1615.5048,100,764.8007043214286,764.8007043214286,529.6505970675516,529.6505970675516,20600.006800000003,6.0,624.38315,1,2,3,4,5,6 +479.0,84.0,1615.5048,100,799.836570642857,799.836570642857,529.6505970675516,529.6505970675516,21376.254,6.0,648.7877,1,2,3,4,5,6 +479.5,84.0,1615.5048,100,846.5722543928571,846.5722543928571,529.6505970675516,529.6505970675516,22348.298450000002,6.0,681.3332,1,2,3,4,5,6 +480.0,84.0,1615.5048,100,893.307938142857,893.307938142857,529.6505970675516,529.6505970675516,23320.3429,6.0,713.8787,1,2,3,4,5,6 +480.5,84.0,1615.5048,100,938.4485612142856,938.4485612142856,529.6505970675516,529.6505970675516,24322.90655,6.0,745.3143,1,2,3,4,5,6 +481.0,84.0,1615.5048,100,983.5891842857142,983.5891842857142,529.6505970675516,529.6505970675516,25325.4702,6.0,776.7499,1,2,3,4,5,6 +481.5,84.0,1615.5048,100,1020.3517928571428,1020.3517928571428,529.6505970675516,529.6505970675516,26158.5524,6.0,802.3579,1,2,3,4,5,6 +482.0,84.0,1615.5048,100,1057.1144014285712,1057.1144014285712,529.6505970675516,529.6505970675516,26991.6346,6.0,827.9659,1,2,3,4,5,6 +482.5,84.0,1615.5048,100,1078.2578619642857,1078.2578619642857,529.6505970675516,529.6505970675516,27435.466800000002,6.0,842.696,1,2,3,4,5,6 +483.0,84.0,1615.5048,100,1099.4013224999999,1099.4013224999999,529.6505970675516,529.6505970675516,27879.299,6.0,857.4261,1,2,3,4,5,6 +483.5,84.0,1615.5048,100,1099.119018857143,1099.119018857143,529.6505970675516,529.6505970675516,27874.716699999997,6.0,857.22945,1,2,3,4,5,6 +484.0,84.0,1615.5048,100,1098.8367152142857,1098.8367152142857,529.6505970675516,529.6505970675516,27870.1344,6.0,857.0328,1,2,3,4,5,6 +484.5,84.0,1615.5048,100,1089.3321919285713,1089.3321919285713,529.6505970675516,529.6505970675516,27687.21815,6.0,850.4110499999999,1,2,3,4,5,6 +485.0,84.0,1615.5048,100,1079.8276686428571,1079.8276686428571,529.6505970675516,529.6505970675516,27504.3019,6.0,843.7893,1,2,3,4,5,6 +485.5,84.0,1615.5048,100,1080.8581220357141,1080.8581220357141,529.6505970675516,529.6505970675516,27523.962050000002,6.0,844.5074500000001,1,2,3,4,5,6 +486.0,84.0,1615.5048,100,1081.8885754285714,1081.8885754285714,529.6505970675516,529.6505970675516,27543.6222,6.0,845.2256,1,2,3,4,5,6 +486.5,84.0,1615.5048,100,1094.1796070357143,1094.1796070357143,529.6505970675516,529.6505970675516,27790.709300000002,6.0,853.78835,1,2,3,4,5,6 +487.0,84.0,1615.5048,100,1106.470638642857,1106.470638642857,529.6505970675516,529.6505970675516,28037.7964,6.0,862.3511,1,2,3,4,5,6 +487.5,84.0,1615.5048,100,1118.5808335714282,1118.5808335714282,529.6505970675516,529.6505970675516,28315.3373,6.0,870.78765,1,2,3,4,5,6 +488.0,84.0,1615.5048,100,1130.6910285,1130.6910285,529.6505970675516,529.6505970675516,28592.8782,6.0,879.2242,1,2,3,4,5,6 +488.5,84.0,1615.5048,100,1132.4538478928569,1132.4538478928569,529.6505970675516,529.6505970675516,28634.2397,6.0,880.4526000000001,1,2,3,4,5,6 +489.0,84.0,1615.5048,100,1134.216667285714,1134.216667285714,529.6505970675516,529.6505970675516,28675.6012,6.0,881.681,1,2,3,4,5,6 +489.5,84.0,1615.5048,100,1116.7309780714284,1116.7309780714284,529.6505970675516,529.6505970675516,28284.3793,6.0,869.4991,1,2,3,4,5,6 +490.0,84.0,1615.5048,100,1099.2452888571427,1099.2452888571427,529.6505970675516,529.6505970675516,27893.1574,6.0,857.3172,1,2,3,4,5,6 +490.5,84.0,1615.5048,100,1068.2004564642855,1068.2004564642855,529.6505970675516,529.6505970675516,27218.82775,6.0,835.6894,1,2,3,4,5,6 +491.0,84.0,1615.5048,100,1037.1556240714283,1037.1556240714283,529.6505970675516,529.6505970675516,26544.4981,6.0,814.0616,1,2,3,4,5,6 +491.5,84.0,1615.5048,100,998.6428231071428,998.6428231071428,529.6505970675516,529.6505970675516,25671.052,6.0,787.2366,1,2,3,4,5,6 +492.0,84.0,1615.5048,100,960.130022142857,960.130022142857,529.6505970675516,529.6505970675516,24797.6059,6.0,760.4116,1,2,3,4,5,6 +492.5,84.0,1615.5048,100,910.029242892857,910.029242892857,529.6505970675516,529.6505970675516,23706.48435,6.0,725.523,1,2,3,4,5,6 +493.0,84.0,1615.5048,100,859.9284636428571,859.9284636428571,529.6505970675516,529.6505970675516,22615.3628,6.0,690.6344,1,2,3,4,5,6 +493.5,84.0,1615.5048,100,809.5670270357141,809.5670270357141,529.6505970675516,529.6505970675516,21553.27145,6.0,655.56195,1,2,3,4,5,6 +494.0,84.0,1615.5048,100,759.2055904285712,759.2055904285712,529.6505970675516,529.6505970675516,20491.1801,6.0,620.4895,1,2,3,4,5,6 +494.5,84.0,1615.5048,100,720.7947073928569,720.7947073928569,529.6505970675516,529.6505970675516,19635.6281,6.0,593.7232,1,2,3,4,5,6 +495.0,84.0,1615.5048,100,682.3838243571428,682.3838243571428,529.6505970675516,529.6505970675516,18780.0761,6.0,566.9569,1,2,3,4,5,6 +495.5,84.0,1615.5048,100,655.6015063928571,655.6015063928571,529.6505970675516,529.6505970675516,18189.90155,6.0,548.29045,1,2,3,4,5,6 +496.0,84.0,1615.5048,100,628.8191884285714,628.8191884285714,529.6505970675516,529.6505970675516,17599.727,6.0,529.624,1,2,3,4,5,6 +496.5,84.0,1615.5048,100,613.1666690357142,613.1666690357142,529.6505970675516,529.6505970675516,17243.172749999998,6.0,518.7147,1,2,3,4,5,6 +497.0,84.0,1615.5048,100,597.5141496428571,597.5141496428571,529.6505970675516,529.6505970675516,16886.6185,6.0,507.8054,1,2,3,4,5,6 +497.5,84.0,1615.5048,100,594.2117381785714,594.2117381785714,529.6505970675516,529.6505970675516,16811.3982,6.0,505.50395000000003,1,2,3,4,5,6 +498.0,84.0,1615.5048,100,590.9093267142856,590.9093267142856,529.6505970675516,529.6505970675516,16736.1779,6.0,503.2025,1,2,3,4,5,6 +498.5,84.0,1615.5048,100,590.1494518928571,590.1494518928571,529.6505970675516,529.6505970675516,16718.8666,6.0,502.67285,1,2,3,4,5,6 +499.0,84.0,1615.5048,100,589.3895770714286,589.3895770714286,529.6505970675516,529.6505970675516,16701.5553,6.0,502.1432,1,2,3,4,5,6 +499.5,84.0,1615.5048,100,575.1021265714285,575.1021265714285,529.6505970675516,529.6505970675516,16376.715049999999,6.0,492.1853,1,2,3,4,5,6 +500.0,84.0,1615.5048,100,560.8146760714285,560.8146760714285,529.6505970675516,529.6505970675516,16051.8748,6.0,482.2274,1,2,3,4,5,6 +500.5,84.0,1615.5048,100,538.98665175,538.98665175,529.6505970675516,529.6505970675516,15560.61155,6.0,467.014,1,2,3,4,5,6 +501.0,84.0,1615.5048,100,517.1586274285713,517.1586274285713,529.6505970675516,529.6505970675516,15069.3483,6.0,451.8006,1,2,3,4,5,6 +501.5,84.0,1615.5048,100,502.8707259642856,502.8707259642856,529.6505970675516,529.6505970675516,14748.9987,6.0,441.84595,1,2,3,4,5,6 +502.0,84.0,1615.5048,100,488.58282449999996,488.58282449999996,529.6505970675516,529.6505970675516,14428.6491,6.0,431.8913,1,2,3,4,5,6 +502.5,84.0,1615.5048,100,474.1037141785714,474.1037141785714,529.6505970675516,529.6505970675516,14106.775300000001,6.0,421.8086,1,2,3,4,5,6 +503.0,84.0,1615.5048,100,459.6246038571428,459.6246038571428,529.6505970675516,529.6505970675516,13784.9015,6.0,411.7259,1,2,3,4,5,6 +503.5,84.0,1615.5048,100,438.6534116785714,438.6534116785714,529.6505970675516,529.6505970675516,13344.9006,6.0,397.1225,1,2,3,4,5,6 +504.0,84.0,1615.5048,100,417.6822195,417.6822195,529.6505970675516,529.6505970675516,12904.8997,6.0,382.5191,1,2,3,4,5,6 +504.5,84.0,1615.5048,100,403.3974747857143,403.3974747857143,529.6505970675516,529.6505970675516,12588.36825,6.0,372.57165,1,2,3,4,5,6 +505.0,84.0,1615.5048,100,389.1127300714285,389.1127300714285,529.6505970675516,529.6505970675516,12271.8368,6.0,362.6242,1,2,3,4,5,6 +505.5,84.0,1615.5048,100,393.07715710714285,393.07715710714285,529.6505970675516,529.6505970675516,12362.64615,6.0,365.38485000000003,1,2,3,4,5,6 +506.0,84.0,1615.5048,100,397.0415841428571,397.0415841428571,529.6505970675516,529.6505970675516,12453.4555,6.0,368.1455,1,2,3,4,5,6 +506.5,84.0,1615.5048,100,417.5554985357142,417.5554985357142,529.6505970675516,529.6505970675516,12890.4269,6.0,382.43050000000005,1,2,3,4,5,6 +507.0,84.0,1615.5048,100,438.0694129285714,438.0694129285714,529.6505970675516,529.6505970675516,13327.3983,6.0,396.7155,1,2,3,4,5,6 +507.5,84.0,1615.5048,100,453.2222638928571,453.2222638928571,529.6505970675516,529.6505970675516,13651.5994,6.0,407.26745,1,2,3,4,5,6 +508.0,84.0,1615.5048,100,468.3751148571428,468.3751148571428,529.6505970675516,529.6505970675516,13975.8005,6.0,417.8194,1,2,3,4,5,6 +508.5,84.0,1615.5048,100,518.6265161785714,518.6265161785714,529.6505970675516,529.6505970675516,15108.80955,6.0,452.83425,1,2,3,4,5,6 +509.0,84.0,1615.5048,100,568.8779175,568.8779175,529.6505970675516,529.6505970675516,16241.8186,6.0,487.8491,1,2,3,4,5,6 +509.5,84.0,1615.5048,100,613.1107494642856,613.1107494642856,529.6505970675516,529.6505970675516,17240.79515,6.0,518.6768999999999,1,2,3,4,5,6 +510.0,84.0,1615.5048,100,657.3435814285714,657.3435814285714,529.6505970675516,529.6505970675516,18239.7717,6.0,549.5047,1,2,3,4,5,6 +510.5,84.0,1615.5048,100,675.5336768571427,675.5336768571427,529.6505970675516,529.6505970675516,18625.3283,6.0,562.1825,1,2,3,4,5,6 +511.0,84.0,1615.5048,100,693.7237722857142,693.7237722857142,529.6505970675516,529.6505970675516,19010.8849,6.0,574.8603,1,2,3,4,5,6 +511.5,84.0,1615.5048,100,691.5577908214285,691.5577908214285,529.6505970675516,529.6505970675516,18965.42695,6.0,573.3507500000001,1,2,3,4,5,6 +512.0,84.0,1615.5048,100,689.3918093571428,689.3918093571428,529.6505970675516,529.6505970675516,18919.969,6.0,571.8412,1,2,3,4,5,6 +512.5,84.0,1615.5048,100,676.799082642857,676.799082642857,529.6505970675516,529.6505970675516,18658.30035,6.0,563.06445,1,2,3,4,5,6 +513.0,84.0,1615.5048,100,664.2063559285713,664.2063559285713,529.6505970675516,529.6505970675516,18396.6317,6.0,554.2877,1,2,3,4,5,6 +513.5,84.0,1615.5048,100,658.9237602857141,658.9237602857141,529.6505970675516,529.6505970675516,18280.902000000002,6.0,550.6061500000001,1,2,3,4,5,6 +514.0,84.0,1615.5048,100,653.6411646428571,653.6411646428571,529.6505970675516,529.6505970675516,18165.1723,6.0,546.9246,1,2,3,4,5,6 +514.5,84.0,1615.5048,100,668.3574821785713,668.3574821785713,529.6505970675516,529.6505970675516,18481.20785,6.0,557.1813500000001,1,2,3,4,5,6 +515.0,84.0,1615.5048,100,683.0737997142857,683.0737997142857,529.6505970675516,529.6505970675516,18797.2434,6.0,567.4381,1,2,3,4,5,6 +515.5,84.0,1615.5048,100,716.3445918214286,716.3445918214286,529.6505970675516,529.6505970675516,19535.52045,6.0,590.62355,1,2,3,4,5,6 +516.0,84.0,1615.5048,100,749.6153839285713,749.6153839285713,529.6505970675516,529.6505970675516,20273.7975,6.0,613.809,1,2,3,4,5,6 +516.5,84.0,1615.5048,100,786.5854360714285,786.5854360714285,529.6505970675516,529.6505970675516,21073.036200000002,6.0,639.55715,1,2,3,4,5,6 +517.0,84.0,1615.5048,100,823.5554882142857,823.5554882142857,529.6505970675516,529.6505970675516,21872.2749,6.0,665.3053,1,2,3,4,5,6 +517.5,84.0,1615.5048,100,852.630057642857,852.630057642857,529.6505970675516,529.6505970675516,22466.31495,6.0,685.552,1,2,3,4,5,6 +518.0,84.0,1615.5048,100,881.7046270714285,881.7046270714285,529.6505970675516,529.6505970675516,23060.355,6.0,705.7987,1,2,3,4,5,6 +518.5,84.0,1615.5048,100,894.9259979999999,894.9259979999999,529.6505970675516,529.6505970675516,23351.91055,6.0,715.0055,1,2,3,4,5,6 +519.0,84.0,1615.5048,100,908.1473689285713,908.1473689285713,529.6505970675516,529.6505970675516,23643.4661,6.0,724.2123,1,2,3,4,5,6 +519.5,84.0,1615.5048,100,906.1306566428572,906.1306566428572,529.6505970675516,529.6505970675516,23598.99845,6.0,722.8081,1,2,3,4,5,6 +520.0,84.0,1615.5048,100,904.1139443571428,904.1139443571428,529.6505970675516,529.6505970675516,23554.5308,6.0,721.4039,1,2,3,4,5,6 +520.5,84.0,1615.5048,100,898.7177057142856,898.7177057142856,529.6505970675516,529.6505970675516,23435.533,6.0,717.64615,1,2,3,4,5,6 +521.0,84.0,1615.5048,100,893.3214670714284,893.3214670714284,529.6505970675516,529.6505970675516,23316.5352,6.0,713.8884,1,2,3,4,5,6 +521.5,84.0,1615.5048,100,887.3579153571427,887.3579153571427,529.6505970675516,529.6505970675516,23185.0213,6.0,709.73545,1,2,3,4,5,6 +522.0,84.0,1615.5048,100,881.3943636428569,881.3943636428569,529.6505970675516,529.6505970675516,23053.5074,6.0,705.5825,1,2,3,4,5,6 +522.5,84.0,1615.5048,100,867.6521289642856,867.6521289642856,529.6505970675516,529.6505970675516,22762.08445,6.0,696.01295,1,2,3,4,5,6 +523.0,84.0,1615.5048,100,853.9098942857142,853.9098942857142,529.6505970675516,529.6505970675516,22470.6615,6.0,686.4434,1,2,3,4,5,6 +523.5,84.0,1615.5048,100,829.8541063928569,829.8541063928569,529.6505970675516,529.6505970675516,21994.18395,6.0,669.69145,1,2,3,4,5,6 +524.0,84.0,1615.5048,100,805.7983184999999,805.7983184999999,529.6505970675516,529.6505970675516,21517.7064,6.0,652.9395,1,2,3,4,5,6 +524.5,84.0,1615.5048,100,775.8917199642856,775.8917199642856,529.6505970675516,529.6505970675516,20854.612699999998,6.0,632.10995,1,2,3,4,5,6 +525.0,84.0,1615.5048,100,745.9851214285713,745.9851214285713,529.6505970675516,529.6505970675516,20191.519,6.0,611.2804,1,2,3,4,5,6 +525.5,84.0,1615.5048,100,716.6922852857142,716.6922852857142,529.6505970675516,529.6505970675516,19539.009749999997,6.0,590.86655,1,2,3,4,5,6 +526.0,84.0,1615.5048,100,687.3994491428571,687.3994491428571,529.6505970675516,529.6505970675516,18886.5005,6.0,570.4527,1,2,3,4,5,6 +526.5,84.0,1615.5048,100,662.669469642857,662.669469642857,529.6505970675516,529.6505970675516,18346.9997,6.0,553.2169,1,2,3,4,5,6 +527.0,84.0,1615.5048,100,637.939490142857,637.939490142857,529.6505970675516,529.6505970675516,17807.4989,6.0,535.9811,1,2,3,4,5,6 +527.5,84.0,1615.5048,100,617.3065211785713,617.3065211785713,529.6505970675516,529.6505970675516,17337.493,6.0,521.6006,1,2,3,4,5,6 +528.0,84.0,1615.5048,100,596.6735522142857,596.6735522142857,529.6505970675516,529.6505970675516,16867.4871,6.0,507.2201,1,2,3,4,5,6 +528.5,84.0,1615.5048,100,575.871471642857,575.871471642857,529.6505970675516,529.6505970675516,16394.6292,6.0,492.72165,1,2,3,4,5,6 +529.0,84.0,1615.5048,100,555.0693910714285,555.0693910714285,529.6505970675516,529.6505970675516,15921.7713,6.0,478.2232,1,2,3,4,5,6 +529.5,84.0,1615.5048,100,534.4314615,534.4314615,529.6505970675516,529.6505970675516,15457.83235,6.0,463.83955000000003,1,2,3,4,5,6 +530.0,84.0,1615.5048,100,513.7935319285714,513.7935319285714,529.6505970675516,529.6505970675516,14993.8934,6.0,449.4559,1,2,3,4,5,6 +530.5,84.0,1615.5048,100,497.2025558571428,497.2025558571428,529.6505970675516,529.6505970675516,14621.9581,6.0,437.8983,1,2,3,4,5,6 +531.0,84.0,1615.5048,100,480.6115797857143,480.6115797857143,529.6505970675516,529.6505970675516,14250.0228,6.0,426.3407,1,2,3,4,5,6 +531.5,84.0,1615.5048,100,471.2486592857142,471.2486592857142,529.6505970675516,529.6505970675516,14040.2048,6.0,419.82075,1,2,3,4,5,6 +532.0,84.0,1615.5048,100,461.88573878571424,461.88573878571424,529.6505970675516,529.6505970675516,13830.3868,6.0,413.3008,1,2,3,4,5,6 +532.5,84.0,1615.5048,100,462.5342254285714,462.5342254285714,529.6505970675516,529.6505970675516,13844.91385,6.0,413.7522,1,2,3,4,5,6 +533.0,84.0,1615.5048,100,463.18271207142857,463.18271207142857,529.6505970675516,529.6505970675516,13859.4409,6.0,414.2036,1,2,3,4,5,6 +533.5,84.0,1615.5048,100,474.43111424999995,474.43111424999995,529.6505970675516,529.6505970675516,14111.5203,6.0,422.03679999999997,1,2,3,4,5,6 +534.0,84.0,1615.5048,100,485.6795164285714,485.6795164285714,529.6505970675516,529.6505970675516,14363.5997,6.0,429.87,1,2,3,4,5,6 +534.5,84.0,1615.5048,100,501.43891435714283,501.43891435714283,529.6505970675516,529.6505970675516,14716.917150000001,6.0,440.8491,1,2,3,4,5,6 +535.0,84.0,1615.5048,100,517.1983122857142,517.1983122857142,529.6505970675516,529.6505970675516,15070.2346,6.0,451.8282,1,2,3,4,5,6 +535.5,84.0,1615.5048,100,523.9086608571428,523.9086608571428,529.6505970675516,529.6505970675516,15220.7438,6.0,456.50514999999996,1,2,3,4,5,6 +536.0,84.0,1615.5048,100,530.6190094285713,530.6190094285713,529.6505970675516,529.6505970675516,15371.253,6.0,461.1821,1,2,3,4,5,6 +536.5,84.0,1615.5048,100,546.7067093571428,546.7067093571428,529.6505970675516,529.6505970675516,15734.0183,6.0,472.39464999999996,1,2,3,4,5,6 +537.0,84.0,1615.5048,100,562.7944092857142,562.7944092857142,529.6505970675516,529.6505970675516,16096.7836,6.0,483.6072,1,2,3,4,5,6 +537.5,84.0,1615.5048,100,571.4547274285715,571.4547274285715,529.6505970675516,529.6505970675516,16293.53545,6.0,489.64315,1,2,3,4,5,6 +538.0,84.0,1615.5048,100,580.1150455714285,580.1150455714285,529.6505970675516,529.6505970675516,16490.2873,6.0,495.6791,1,2,3,4,5,6 +538.5,84.0,1615.5048,100,578.3057768571427,578.3057768571427,529.6505970675516,529.6505970675516,16449.07745,6.0,494.41825,1,2,3,4,5,6 +539.0,84.0,1615.5048,100,576.496508142857,576.496508142857,529.6505970675516,529.6505970675516,16407.8676,6.0,493.1574,1,2,3,4,5,6 +539.5,84.0,1615.5048,100,568.8355268571428,568.8355268571428,529.6505970675516,529.6505970675516,16233.40985,6.0,487.81780000000003,1,2,3,4,5,6 +540.0,84.0,1615.5048,100,561.1745455714286,561.1745455714286,529.6505970675516,529.6505970675516,16058.9521,6.0,482.4782,1,2,3,4,5,6 +540.5,84.0,1615.5048,100,555.6146068928571,555.6146068928571,529.6505970675516,529.6505970675516,15933.061099999999,6.0,478.60305,1,2,3,4,5,6 +541.0,84.0,1615.5048,100,550.0546682142857,550.0546682142857,529.6505970675516,529.6505970675516,15807.1701,6.0,474.7279,1,2,3,4,5,6 +541.5,84.0,1615.5048,100,549.4106912142856,549.4106912142856,529.6505970675516,529.6505970675516,15792.72985,6.0,474.27914999999996,1,2,3,4,5,6 +542.0,84.0,1615.5048,100,548.7667142142856,548.7667142142856,529.6505970675516,529.6505970675516,15778.2896,6.0,473.8304,1,2,3,4,5,6 +542.5,84.0,1615.5048,100,551.5374387857142,551.5374387857142,529.6505970675516,529.6505970675516,15840.569800000001,6.0,475.7615,1,2,3,4,5,6 +543.0,84.0,1615.5048,100,554.3081633571428,554.3081633571428,529.6505970675516,529.6505970675516,15902.85,6.0,477.6926,1,2,3,4,5,6 +543.5,84.0,1615.5048,100,558.1070864999999,558.1070864999999,529.6505970675516,529.6505970675516,15989.1705,6.0,480.34025,1,2,3,4,5,6 +544.0,84.0,1615.5048,100,561.906009642857,561.906009642857,529.6505970675516,529.6505970675516,16075.491,6.0,482.9879,1,2,3,4,5,6 +544.5,84.0,1615.5048,100,564.279885642857,564.279885642857,529.6505970675516,529.6505970675516,16129.565999999999,6.0,484.6424,1,2,3,4,5,6 +545.0,84.0,1615.5048,100,566.653761642857,566.653761642857,529.6505970675516,529.6505970675516,16183.641,6.0,486.2969,1,2,3,4,5,6 +545.5,84.0,1615.5048,100,569.8087077857142,569.8087077857142,529.6505970675516,529.6505970675516,16255.511999999999,6.0,488.49585,1,2,3,4,5,6 +546.0,84.0,1615.5048,100,572.9636539285714,572.9636539285714,529.6505970675516,529.6505970675516,16327.383,6.0,490.6948,1,2,3,4,5,6 +546.5,84.0,1615.5048,100,574.8892714285713,574.8892714285713,529.6505970675516,529.6505970675516,16371.25115,6.0,492.03705,1,2,3,4,5,6 +547.0,84.0,1615.5048,100,576.8148889285713,576.8148889285713,529.6505970675516,529.6505970675516,16415.1193,6.0,493.3793,1,2,3,4,5,6 +547.5,84.0,1615.5048,100,579.356523642857,579.356523642857,529.6505970675516,529.6505970675516,16473.009599999998,6.0,495.15049999999997,1,2,3,4,5,6 +548.0,84.0,1615.5048,100,581.8981583571427,581.8981583571427,529.6505970675516,529.6505970675516,16530.8999,6.0,496.9217,1,2,3,4,5,6 +548.5,84.0,1615.5048,100,584.9272854642855,584.9272854642855,529.6505970675516,529.6505970675516,16599.8993,6.0,499.03285,1,2,3,4,5,6 +549.0,84.0,1615.5048,100,587.9564125714286,587.9564125714286,529.6505970675516,529.6505970675516,16668.8987,6.0,501.144,1,2,3,4,5,6 +549.5,84.0,1615.5048,100,590.9598347142856,590.9598347142856,529.6505970675516,529.6505970675516,16737.3157,6.0,503.2373,1,2,3,4,5,6 +550.0,84.0,1615.5048,100,593.9632568571428,593.9632568571428,529.6505970675516,529.6505970675516,16805.7327,6.0,505.3306,1,2,3,4,5,6 +550.5,84.0,1615.5048,100,596.5378119642858,596.5378119642858,529.6505970675516,529.6505970675516,16864.38095,6.0,507.12505,1,2,3,4,5,6 +551.0,84.0,1615.5048,100,599.1123670714286,599.1123670714286,529.6505970675516,529.6505970675516,16923.0292,6.0,508.9195,1,2,3,4,5,6 +551.5,84.0,1615.5048,100,600.8043850714286,600.8043850714286,529.6505970675516,529.6505970675516,16961.57585,6.0,510.0989,1,2,3,4,5,6 +552.0,84.0,1615.5048,100,602.4964030714284,602.4964030714284,529.6505970675516,529.6505970675516,17000.1225,6.0,511.2783,1,2,3,4,5,6 +552.5,84.0,1615.5048,100,603.2220046071427,603.2220046071427,529.6505970675516,529.6505970675516,17016.64775,6.0,511.7839,1,2,3,4,5,6 +553.0,84.0,1615.5048,100,603.9476061428571,603.9476061428571,529.6505970675516,529.6505970675516,17033.173,6.0,512.2895,1,2,3,4,5,6 +553.5,84.0,1615.5048,100,604.0828954285714,604.0828954285714,529.6505970675516,529.6505970675516,17036.2618,6.0,512.384,1,2,3,4,5,6 +554.0,84.0,1615.5048,100,604.2181847142857,604.2181847142857,529.6505970675516,529.6505970675516,17039.3506,6.0,512.4785,1,2,3,4,5,6 +554.5,84.0,1615.5048,100,604.1000320714285,604.1000320714285,529.6505970675516,529.6505970675516,17036.658150000003,6.0,512.3961,1,2,3,4,5,6 +555.0,84.0,1615.5048,100,603.9818794285712,603.9818794285712,529.6505970675516,529.6505970675516,17033.9657,6.0,512.3137,1,2,3,4,5,6 +555.5,84.0,1615.5048,100,602.9293287857141,602.9293287857141,529.6505970675516,529.6505970675516,17009.9872,6.0,511.58005,1,2,3,4,5,6 +556.0,84.0,1615.5048,100,601.8767781428572,601.8767781428572,529.6505970675516,529.6505970675516,16986.0087,6.0,510.8464,1,2,3,4,5,6 +556.5,84.0,1615.5048,100,600.742152,600.742152,529.6505970675516,529.6505970675516,16960.156750000002,6.0,510.05545,1,2,3,4,5,6 +557.0,84.0,1615.5048,100,599.6075258571427,599.6075258571427,529.6505970675516,529.6505970675516,16934.3048,6.0,509.2645,1,2,3,4,5,6 +557.5,84.0,1615.5048,100,597.4686022499999,597.4686022499999,529.6505970675516,529.6505970675516,16885.58335,6.0,507.7738,1,2,3,4,5,6 +558.0,84.0,1615.5048,100,595.3296786428571,595.3296786428571,529.6505970675516,529.6505970675516,16836.8619,6.0,506.2831,1,2,3,4,5,6 +558.5,84.0,1615.5048,100,593.9808444642856,593.9808444642856,529.6505970675516,529.6505970675516,16806.141600000003,6.0,505.34315000000004,1,2,3,4,5,6 +559.0,84.0,1615.5048,100,592.6320102857142,592.6320102857142,529.6505970675516,529.6505970675516,16775.4213,6.0,504.4032,1,2,3,4,5,6 +559.5,84.0,1615.5048,100,590.4994001785715,590.4994001785715,529.6505970675516,529.6505970675516,16726.841,6.0,502.9168,1,2,3,4,5,6 +560.0,84.0,1615.5048,100,588.3667900714286,588.3667900714286,529.6505970675516,529.6505970675516,16678.2607,6.0,501.4304,1,2,3,4,5,6 +560.5,84.0,1615.5048,100,583.8652645714284,583.8652645714284,529.6505970675516,529.6505970675516,16575.71295,6.0,498.29285000000004,1,2,3,4,5,6 +561.0,84.0,1615.5048,100,579.3637390714284,579.3637390714284,529.6505970675516,529.6505970675516,16473.1652,6.0,495.1553,1,2,3,4,5,6 +561.5,84.0,1615.5048,100,571.9751402142857,571.9751402142857,529.6505970675516,529.6505970675516,16304.89865,6.0,490.0059,1,2,3,4,5,6 +562.0,84.0,1615.5048,100,564.5865413571428,564.5865413571428,529.6505970675516,529.6505970675516,16136.6321,6.0,484.8565,1,2,3,4,5,6 +562.5,84.0,1615.5048,100,554.3672396785714,554.3672396785714,529.6505970675516,529.6505970675516,15905.6658,6.0,477.734,1,2,3,4,5,6 +563.0,84.0,1615.5048,100,544.147938,544.147938,529.6505970675516,529.6505970675516,15674.6995,6.0,470.6115,1,2,3,4,5,6 +563.5,84.0,1615.5048,100,531.8654747142857,531.8654747142857,529.6505970675516,529.6505970675516,15399.217,6.0,462.05105,1,2,3,4,5,6 +564.0,84.0,1615.5048,100,519.5830114285714,519.5830114285714,529.6505970675516,529.6505970675516,15123.7345,6.0,453.4906,1,2,3,4,5,6 +564.5,84.0,1615.5048,100,508.3634709642856,508.3634709642856,529.6505970675516,529.6505970675516,14872.13255,6.0,445.67224999999996,1,2,3,4,5,6 +565.0,84.0,1615.5048,100,497.14393049999995,497.14393049999995,529.6505970675516,529.6505970675516,14620.5306,6.0,437.8539,1,2,3,4,5,6 +565.5,84.0,1615.5048,100,490.1088876428571,490.1088876428571,529.6505970675516,529.6505970675516,14462.8657,6.0,432.9546,1,2,3,4,5,6 +566.0,84.0,1615.5048,100,483.07384478571424,483.07384478571424,529.6505970675516,529.6505970675516,14305.2008,6.0,428.0553,1,2,3,4,5,6 +566.5,84.0,1615.5048,100,479.55000985714275,479.55000985714275,529.6505970675516,529.6505970675516,14226.23085,6.0,425.60135,1,2,3,4,5,6 +567.0,84.0,1615.5048,100,476.0261749285713,476.0261749285713,529.6505970675516,529.6505970675516,14147.2609,6.0,423.1474,1,2,3,4,5,6 +567.5,84.0,1615.5048,100,473.1327880714285,473.1327880714285,529.6505970675516,529.6505970675516,14082.415799999999,6.0,421.13239999999996,1,2,3,4,5,6 +568.0,84.0,1615.5048,100,470.23940121428564,470.23940121428564,529.6505970675516,529.6505970675516,14017.5707,6.0,419.1174,1,2,3,4,5,6 +568.5,84.0,1615.5048,100,465.97959257142855,465.97959257142855,529.6505970675516,529.6505970675516,13922.11465,6.0,416.15115000000003,1,2,3,4,5,6 +569.0,84.0,1615.5048,100,461.71978392857136,461.71978392857136,529.6505970675516,529.6505970675516,13826.6586,6.0,413.1849,1,2,3,4,5,6 +569.5,84.0,1615.5048,100,454.8299515714286,454.8299515714286,529.6505970675516,529.6505970675516,13673.9181,6.0,408.387,1,2,3,4,5,6 +570.0,84.0,1615.5048,100,447.9401192142857,447.9401192142857,529.6505970675516,529.6505970675516,13521.1776,6.0,403.5891,1,2,3,4,5,6 +570.5,84.0,1615.5048,100,442.02797742857143,442.02797742857143,529.6505970675516,529.6505970675516,13401.40795,6.0,399.4722,1,2,3,4,5,6 +571.0,84.0,1615.5048,100,436.1158356428571,436.1158356428571,529.6505970675516,529.6505970675516,13281.6383,6.0,395.3553,1,2,3,4,5,6 +571.5,84.0,1615.5048,100,436.65067928571426,436.65067928571426,529.6505970675516,529.6505970675516,13291.96925,6.0,395.72785,1,2,3,4,5,6 +572.0,84.0,1615.5048,100,437.18552292857134,437.18552292857134,529.6505970675516,529.6505970675516,13302.3002,6.0,396.1004,1,2,3,4,5,6 +572.5,84.0,1615.5048,100,442.90194621428566,442.90194621428566,529.6505970675516,529.6505970675516,13418.6086,6.0,400.08105,1,2,3,4,5,6 +573.0,84.0,1615.5048,100,448.6183695,448.6183695,529.6505970675516,529.6505970675516,13534.917,6.0,404.0617,1,2,3,4,5,6 +573.5,84.0,1615.5048,100,454.3221657857142,454.3221657857142,529.6505970675516,529.6505970675516,13661.810099999999,6.0,408.0336,1,2,3,4,5,6 +574.0,84.0,1615.5048,100,460.02596207142847,460.02596207142847,529.6505970675516,529.6505970675516,13788.7032,6.0,412.0055,1,2,3,4,5,6 +574.5,84.0,1615.5048,100,482.55749067857136,482.55749067857136,529.6505970675516,529.6505970675516,14293.6937,6.0,427.6977,1,2,3,4,5,6 +575.0,84.0,1615.5048,100,505.08901928571424,505.08901928571424,529.6505970675516,529.6505970675516,14798.6842,6.0,443.3899,1,2,3,4,5,6 +575.5,84.0,1615.5048,100,521.8360289999999,521.8360289999999,529.6505970675516,529.6505970675516,15174.47705,6.0,455.0613,1,2,3,4,5,6 +576.0,84.0,1615.5048,100,538.5830387142856,538.5830387142856,529.6505970675516,529.6505970675516,15550.2699,6.0,466.7327,1,2,3,4,5,6 +576.5,84.0,1615.5048,100,558.9576051428571,558.9576051428571,529.6505970675516,529.6505970675516,16011.36565,6.0,480.9332,1,2,3,4,5,6 +577.0,84.0,1615.5048,100,579.3321715714286,579.3321715714286,529.6505970675516,529.6505970675516,16472.4614,6.0,495.1337,1,2,3,4,5,6 +577.5,84.0,1615.5048,100,601.6278458571428,601.6278458571428,529.6505970675516,529.6505970675516,16980.34225,6.0,510.67305,1,2,3,4,5,6 +578.0,84.0,1615.5048,100,623.923520142857,623.923520142857,529.6505970675516,529.6505970675516,17488.2231,6.0,526.2124,1,2,3,4,5,6 +578.5,84.0,1615.5048,100,649.1576777142857,649.1576777142857,529.6505970675516,529.6505970675516,18047.64815,6.0,543.79955,1,2,3,4,5,6 +579.0,84.0,1615.5048,100,674.3918352857141,674.3918352857141,529.6505970675516,529.6505970675516,18607.0732,6.0,561.3867,1,2,3,4,5,6 +579.5,84.0,1615.5048,100,703.5593033571429,703.5593033571429,529.6505970675516,529.6505970675516,19249.000549999997,6.0,581.7147500000001,1,2,3,4,5,6 +580.0,84.0,1615.5048,100,732.7267714285714,732.7267714285714,529.6505970675516,529.6505970675516,19890.9279,6.0,602.0428,1,2,3,4,5,6 +580.5,84.0,1615.5048,100,756.3888674999998,756.3888674999998,529.6505970675516,529.6505970675516,20427.29875,6.0,618.5263500000001,1,2,3,4,5,6 +581.0,84.0,1615.5048,100,780.0509635714285,780.0509635714285,529.6505970675516,529.6505970675516,20963.6696,6.0,635.0099,1,2,3,4,5,6 +581.5,84.0,1615.5048,100,784.3644369642856,784.3644369642856,529.6505970675516,529.6505970675516,21061.41245,6.0,638.0137,1,2,3,4,5,6 +582.0,84.0,1615.5048,100,788.6779103571428,788.6779103571428,529.6505970675516,529.6505970675516,21159.1553,6.0,641.0175,1,2,3,4,5,6 +582.5,84.0,1615.5048,100,779.4214174285714,779.4214174285714,529.6505970675516,529.6505970675516,20949.39935,6.0,634.5713499999999,1,2,3,4,5,6 +583.0,84.0,1615.5048,100,770.1649245,770.1649245,529.6505970675516,529.6505970675516,20739.6434,6.0,628.1252,1,2,3,4,5,6 +583.5,84.0,1615.5048,100,766.0841486785713,766.0841486785713,529.6505970675516,529.6505970675516,20647.173600000002,6.0,625.2834499999999,1,2,3,4,5,6 +584.0,84.0,1615.5048,100,762.0033728571427,762.0033728571427,529.6505970675516,529.6505970675516,20554.7038,6.0,622.4417,1,2,3,4,5,6 +584.5,84.0,1615.5048,100,767.8302823928569,767.8302823928569,529.6505970675516,529.6505970675516,20686.74485,6.0,626.49955,1,2,3,4,5,6 +585.0,84.0,1615.5048,100,773.6571919285713,773.6571919285713,529.6505970675516,529.6505970675516,20818.7859,6.0,630.5574,1,2,3,4,5,6 +585.5,84.0,1615.5048,100,781.360112892857,781.360112892857,529.6505970675516,529.6505970675516,20993.32865,6.0,635.9213500000001,1,2,3,4,5,6 +586.0,84.0,1615.5048,100,789.0630338571427,789.0630338571427,529.6505970675516,529.6505970675516,21167.8714,6.0,641.2853,1,2,3,4,5,6 +586.5,84.0,1615.5048,100,788.2936887857143,788.2936887857143,529.6505970675516,529.6505970675516,21150.44455,6.0,640.74975,1,2,3,4,5,6 +587.0,84.0,1615.5048,100,787.5243437142857,787.5243437142857,529.6505970675516,529.6505970675516,21133.0177,6.0,640.2142,1,2,3,4,5,6 +587.5,84.0,1615.5048,100,774.5505521785713,774.5505521785713,529.6505970675516,529.6505970675516,20839.01885,6.0,631.1791499999999,1,2,3,4,5,6 +588.0,84.0,1615.5048,100,761.576760642857,761.576760642857,529.6505970675516,529.6505970675516,20545.02,6.0,622.1441,1,2,3,4,5,6 +588.5,84.0,1615.5048,100,743.1954563571428,743.1954563571428,529.6505970675516,529.6505970675516,20128.2719,6.0,609.3367499999999,1,2,3,4,5,6 +589.0,84.0,1615.5048,100,724.8141520714285,724.8141520714285,529.6505970675516,529.6505970675516,19711.5238,6.0,596.5294,1,2,3,4,5,6 +589.5,84.0,1615.5048,100,712.5262772142856,712.5262772142856,529.6505970675516,529.6505970675516,19432.853,6.0,587.9654,1,2,3,4,5,6 +590.0,84.0,1615.5048,100,700.2384023571428,700.2384023571428,529.6505970675516,529.6505970675516,19154.1822,6.0,579.4014,1,2,3,4,5,6 +590.5,84.0,1615.5048,100,701.3779891071428,701.3779891071428,529.6505970675516,529.6505970675516,19180.02205,6.0,580.1955,1,2,3,4,5,6 +591.0,84.0,1615.5048,100,702.5175758571428,702.5175758571428,529.6505970675516,529.6505970675516,19205.8619,6.0,580.9896,1,2,3,4,5,6 +591.5,84.0,1615.5048,100,715.4426632499999,715.4426632499999,529.6505970675516,529.6505970675516,19498.99635,6.0,589.9981,1,2,3,4,5,6 +592.0,84.0,1615.5048,100,728.367750642857,728.367750642857,529.6505970675516,529.6505970675516,19792.1308,6.0,599.0066,1,2,3,4,5,6 +592.5,84.0,1615.5048,100,748.0893207857141,748.0893207857141,529.6505970675516,529.6505970675516,20239.219449999997,6.0,612.74635,1,2,3,4,5,6 +593.0,84.0,1615.5048,100,767.8108909285714,767.8108909285714,529.6505970675516,529.6505970675516,20686.3081,6.0,626.4861,1,2,3,4,5,6 +593.5,84.0,1615.5048,100,788.9033924999999,788.9033924999999,529.6505970675516,529.6505970675516,21146.38975,6.0,641.1742999999999,1,2,3,4,5,6 +594.0,84.0,1615.5048,100,809.9958940714286,809.9958940714286,529.6505970675516,529.6505970675516,21606.4714,6.0,655.8625,1,2,3,4,5,6 +594.5,84.0,1615.5048,100,828.4651363928571,828.4651363928571,529.6505970675516,529.6505970675516,21968.9079,6.0,668.72415,1,2,3,4,5,6 +595.0,84.0,1615.5048,100,846.9343787142857,846.9343787142857,529.6505970675516,529.6505970675516,22331.3444,6.0,681.5858,1,2,3,4,5,6 +595.5,84.0,1615.5048,100,867.6340903928572,867.6340903928572,529.6505970675516,529.6505970675516,22768.93855,6.0,696.00025,1,2,3,4,5,6 +596.0,84.0,1615.5048,100,888.3338020714284,888.3338020714284,529.6505970675516,529.6505970675516,23206.5327,6.0,710.4147,1,2,3,4,5,6 +596.5,84.0,1615.5048,100,918.8361244285713,918.8361244285713,529.6505970675516,529.6505970675516,23880.7178,6.0,731.6559,1,2,3,4,5,6 +597.0,84.0,1615.5048,100,949.3384467857142,949.3384467857142,529.6505970675516,529.6505970675516,24554.9029,6.0,752.8971,1,2,3,4,5,6 +597.5,84.0,1615.5048,100,982.7490378214284,982.7490378214284,529.6505970675516,529.6505970675516,25309.834150000002,6.0,776.1661,1,2,3,4,5,6 +598.0,84.0,1615.5048,100,1016.1596288571427,1016.1596288571427,529.6505970675516,529.6505970675516,26064.7654,6.0,799.4351,1,2,3,4,5,6 +598.5,84.0,1615.5048,100,1045.4921498571427,1045.4921498571427,529.6505970675516,529.6505970675516,26722.88085,6.0,819.86955,1,2,3,4,5,6 +599.0,84.0,1615.5048,100,1074.8246708571428,1074.8246708571428,529.6505970675516,529.6505970675516,27380.9963,6.0,840.304,1,2,3,4,5,6 +599.5,84.0,1615.5048,100,1103.5646247857142,1103.5646247857142,529.6505970675516,529.6505970675516,28005.865749999997,6.0,860.32625,1,2,3,4,5,6 +600.0,84.0,1615.5048,100,1132.3045787142855,1132.3045787142855,529.6505970675516,529.6505970675516,28630.7352,6.0,880.3485,1,2,3,4,5,6 +600.5,83.9988,1615.49315,100,1166.1449122487463,1166.1449122487463,529.6430306304508,529.6430306304508,29396.072099999998,6.0,903.9013,1,2,3,4,5,6 +601.0,83.9976,1615.4815,100,1199.986212677505,1199.986212677505,529.6354641933497,529.6354641933497,30161.409,6.0,927.4541,1,2,3,4,5,6 +601.5,83.97765000000001,1615.15375,100,1216.4958855838424,1216.4958855838424,529.5096721765462,529.5096721765462,30505.432800000002,6.0,938.6801,1,2,3,4,5,6 +602.0,83.9577,1614.826,100,1233.0134045358557,1233.0134045358557,529.3838801597426,529.3838801597426,30849.4566,6.0,949.9061,1,2,3,4,5,6 +602.5,83.89175,1613.5569500000001,100,1235.2447875863838,1235.2447875863838,528.9680413874021,528.9680413874021,30862.10305,6.0,951.06235,1,2,3,4,5,6 +603.0,83.8258,1612.2879,100,1237.479681720902,1237.479681720902,528.5522026150616,528.5522026150616,30874.7495,6.0,952.2186,1,2,3,4,5,6 +603.5,83.709,1610.0153,100,1238.911298570046,1238.911298570046,527.8157360705676,527.8157360705676,30852.511400000003,6.0,952.9285500000001,1,2,3,4,5,6 +604.0,83.5922,1607.7427,100,1240.3469160998272,1240.3469160998272,527.0792695260737,527.0792695260737,30830.2733,6.0,953.6385,1,2,3,4,5,6 +604.5,83.4416,1604.82295,100,1241.7416097126616,1241.7416097126616,526.1296816699025,526.1296816699025,30799.48955,6.0,954.4835,1,2,3,4,5,6 +605.0,83.291,1601.9032,100,1243.141346868209,1243.141346868209,525.1800938137314,525.1800938137314,30768.7058,6.0,955.3285,1,2,3,4,5,6 +605.5,83.1245,1598.6903499999999,100,1243.6672558872535,1243.6672558872535,524.1302506659725,524.1302506659725,30715.2349,6.0,955.66425,1,2,3,4,5,6 +606.0,82.958,1595.4775,100,1244.1952759468647,1244.1952759468647,523.0804075182136,523.0804075182136,30661.764,6.0,956.0,1,2,3,4,5,6 +606.5,82.78595,1592.1642,100,1244.1769518982385,1244.1769518982385,521.9955695988629,521.9955695988629,30595.19875,6.0,956.0,1,2,3,4,5,6 +607.0,82.6139,1588.8509,100,1244.158551527043,1244.158551527043,520.910731679512,520.910731679512,30528.6335,6.0,956.0,1,2,3,4,5,6 +607.5,82.43995000000001,1585.50635,100,1244.1342857922643,1244.1342857922643,519.8139135680847,519.8139135680847,30461.4416,6.0,956.0,1,2,3,4,5,6 +608.0,82.266,1582.1618,100,1244.1099174385529,1244.1099174385529,518.7170954566571,518.7170954566571,30394.2497,6.0,956.0,1,2,3,4,5,6 +608.5,82.08955,1578.7752500000001,100,1244.1104130062838,1244.1104130062838,517.6045139346028,517.6045139346028,30326.2134,6.0,956.0,1,2,3,4,5,6 +609.0,81.9131,1575.3887,100,1244.1109107090317,1244.1109107090317,516.4919324125484,516.4919324125484,30258.1771,6.0,956.0,1,2,3,4,5,6 +609.5,81.73195,1571.8948,100,1244.1199201780946,1244.1199201780946,515.3497156785152,515.3497156785152,30187.9846,6.0,956.0,1,2,3,4,5,6 +610.0,81.5508,1568.4009,100,1244.1289696728911,1244.1289696728911,514.207498944482,514.207498944482,30117.7921,6.0,956.0,1,2,3,4,5,6 +610.5,81.36914999999999,1564.8967499999999,100,1244.0260594217834,1244.0260594217834,513.0621295283233,513.0621295283233,30047.39325,6.0,956.0,1,2,3,4,5,6 +611.0,81.1875,1561.3926,100,1243.922688665127,1243.922688665127,511.9167601121648,511.9167601121648,29976.9944,6.0,956.0,1,2,3,4,5,6 +611.5,81.0138,1558.04875,100,1243.7650642853437,1243.7650642853437,510.8215183418002,510.8215183418002,29909.8168,6.0,956.0,1,2,3,4,5,6 +612.0,80.8401,1554.7049,100,1243.60676253493,1243.60676253493,509.72627657143545,509.72627657143545,29842.6392,6.0,956.0,1,2,3,4,5,6 +612.5,80.67755,1551.57855,100,1243.448248614392,1243.448248614392,508.70133961246717,508.70133961246717,29779.8309,6.0,956.0,1,2,3,4,5,6 +613.0,80.515,1548.4522,100,1243.2890946531704,1243.2890946531704,507.676402653499,507.676402653499,29717.0226,6.0,956.0,1,2,3,4,5,6 +613.5,80.36585,1545.5745499999998,100,1243.0860527201542,1243.0860527201542,506.73595757549157,506.73595757549157,29659.20965,6.0,956.0,1,2,3,4,5,6 +614.0,80.2167,1542.6969,100,1242.882255739765,1242.882255739765,505.7955124974842,505.7955124974842,29601.3967,6.0,956.0,1,2,3,4,5,6 +614.5,80.08664999999999,1540.19015,100,1242.6088442830362,1242.6088442830362,504.975499876667,504.975499876667,29551.03615,6.0,956.0,1,2,3,4,5,6 +615.0,79.9566,1537.6834,100,1242.3345434148027,1242.3345434148027,504.15548725584995,504.15548725584995,29500.6756,6.0,956.0,1,2,3,4,5,6 +615.5,79.84864999999999,1535.6174999999998,100,1242.0965307741585,1242.0965307741585,503.4748231849756,503.4748231849756,29459.1716,6.0,956.0,1,2,3,4,5,6 +616.0,79.7407,1533.5516,100,1241.8578737081566,1241.8578737081566,502.7941591141014,502.7941591141014,29417.6676,6.0,956.0,1,2,3,4,5,6 +616.5,79.64855,1531.79295,100,1241.7375301370837,1241.7375301370837,502.2131197983897,502.2131197983897,29382.336349999998,6.0,956.0,1,2,3,4,5,6 +617.0,79.5564,1530.0343,100,1241.6169077786326,1241.6169077786326,501.6320804826782,501.6320804826782,29347.0051,6.0,956.0,1,2,3,4,5,6 +617.5,79.471,1528.39435,100,1241.5654930100288,1241.5654930100288,501.0936023756595,501.0936023756595,29314.0587,6.0,956.0,1,2,3,4,5,6 +618.0,79.3856,1526.7544,100,1241.5139676213319,1241.5139676213319,500.5551242686408,500.5551242686408,29281.1123,6.0,956.0,1,2,3,4,5,6 +618.5,79.30494999999999,1525.19425,100,1241.418543798338,1241.418543798338,500.0465966418133,500.0465966418133,29249.7679,6.0,956.0,1,2,3,4,5,6 +619.0,79.2243,1523.6341,100,1241.3229256932534,1241.3229256932534,499.53806901498604,499.53806901498604,29218.4235,6.0,956.0,1,2,3,4,5,6 +619.5,79.15025,1522.2159000000001,100,1241.238475165903,1241.238475165903,499.071156792214,499.071156792214,29189.9323,6.0,956.0,1,2,3,4,5,6 +620.0,79.0762,1520.7977,100,1241.153866473098,1241.153866473098,498.60424456944196,498.60424456944196,29161.4411,6.0,956.0,1,2,3,4,5,6 +620.5,79.02445,1519.72325,100,1240.6858047604255,1240.6858047604255,498.27794196946286,498.27794196946286,29139.8554,6.0,956.0,1,2,3,4,5,6 +621.0,78.9727,1518.6488,100,1240.2171296156775,1240.2171296156775,497.9516393694837,497.9516393694837,29118.2697,6.0,956.0,1,2,3,4,5,6 +621.5,78.96090000000001,1518.46895,100,1239.802789253922,1239.802789253922,497.87723607132426,497.87723607132426,29114.32155,6.0,955.9898499999999,1,2,3,4,5,6 +622.0,78.9491,1518.2891,100,1239.3883250347376,1239.3883250347376,497.80283277316477,497.80283277316477,29110.3734,6.0,955.9797,1,2,3,4,5,6 +622.5,78.9727,1518.74995,100,1239.0265834902443,1239.0265834902443,497.9516393694837,497.9516393694837,29117.784050000002,6.0,955.9237,1,2,3,4,5,6 +623.0,78.9963,1519.2108,100,1238.665058084999,1238.665058084999,498.10044596580275,498.10044596580275,29125.1947,6.0,955.8677,1,2,3,4,5,6 +623.5,79.04525000000001,1520.1592,100,1238.3652465265145,1238.3652465265145,498.40909354587967,498.40909354587967,29142.211600000002,6.0,955.8059499999999,1,2,3,4,5,6 +624.0,79.0942,1521.1076,100,1238.0658060641615,1238.0658060641615,498.7177411259564,498.7177411259564,29159.2285,6.0,955.7442,1,2,3,4,5,6 +624.5,79.1611,1522.4116,100,1237.8947339918216,1237.8947339918216,499.1395699943353,499.1395699943353,29183.9671,6.0,955.7,1,2,3,4,5,6 +625.0,79.228,1523.7156,100,1237.7239508254659,1237.7239508254659,499.561398862714,499.561398862714,29208.7057,6.0,955.6558,1,2,3,4,5,6 +625.5,79.30455,1525.1847,100,1237.6536409323298,1237.6536409323298,500.0440744961132,500.0440744961132,29237.5878,6.0,955.6366,1,2,3,4,5,6 +626.0,79.3811,1526.6538,100,1237.5834666438232,1237.5834666438232,500.5267501295122,500.5267501295122,29266.4699,6.0,955.6174,1,2,3,4,5,6 +626.5,79.46305000000001,1528.2322,100,1237.5394514683235,1237.5394514683235,501.04347472986564,501.04347472986564,29297.78785,6.0,955.60555,1,2,3,4,5,6 +627.0,79.545,1529.8106,100,1237.4955269847255,1237.4955269847255,501.560199330219,501.560199330219,29329.1058,6.0,955.5937,1,2,3,4,5,6 +627.5,79.63555,1531.5369,100,1237.3551610681411,1237.3551610681411,502.13115006312927,502.13115006312927,29363.204400000002,6.0,955.576,1,2,3,4,5,6 +628.0,79.7261,1533.2632,100,1237.2151139965458,1237.2151139965458,502.7021007960396,502.7021007960396,29397.303,6.0,955.5583,1,2,3,4,5,6 +628.5,79.83415,1535.33195,100,1236.9427651575172,1236.9427651575172,503.38339540333897,503.38339540333897,29437.538950000002,6.0,955.5181,1,2,3,4,5,6 +629.0,79.9422,1537.4007,100,1236.6711525327048,1236.6711525327048,504.06469001063834,504.06469001063834,29477.7749,6.0,955.4779,1,2,3,4,5,6 +629.5,80.0749,1539.9533999999999,100,1236.3545969211327,1236.3545969211327,504.90141184672,504.90141184672,29527.29865,6.0,955.42455,1,2,3,4,5,6 +630.0,80.2076,1542.5061,100,1236.0390887646556,1236.0390887646556,505.7381336828018,505.7381336828018,29576.8224,6.0,955.3712,1,2,3,4,5,6 +630.5,80.36535,1545.5462499999999,100,1235.7707399270953,1235.7707399270953,506.7328048933663,506.7328048933663,29636.28225,6.0,955.3222000000001,1,2,3,4,5,6 +631.0,80.5231,1548.5864,100,1235.5034425152535,1235.5034425152535,507.7274761039305,507.7274761039305,29695.7421,6.0,955.2732,1,2,3,4,5,6 +631.5,80.70075,1552.0174499999998,100,1235.3442577299468,1235.3442577299468,508.84762406308596,508.84762406308596,29763.5809,6.0,955.2401,1,2,3,4,5,6 +632.0,80.8784,1555.4485,100,1235.1857722457416,1235.1857722457416,509.96777202224126,509.96777202224126,29831.4197,6.0,955.207,1,2,3,4,5,6 +632.5,81.0658,1559.05765,100,1235.1953274130399,1235.1953274130399,511.1493972828419,511.1493972828419,29903.75645,6.0,955.2018,1,2,3,4,5,6 +633.0,81.2532,1562.6668,100,1235.2048385048217,1235.2048385048217,512.3310225434427,512.3310225434427,29976.0932,6.0,955.1966,1,2,3,4,5,6 +633.5,81.4448,1566.36555,100,1235.212932550636,1235.212932550636,513.5391303338967,513.5391303338967,30050.495750000002,6.0,955.1994500000001,1,2,3,4,5,6 +634.0,81.6364,1570.0643,100,1235.2209886031233,1235.2209886031233,514.7472381243508,514.7472381243508,30124.8983,6.0,955.2023,1,2,3,4,5,6 +634.5,81.82595,1573.7132000000001,100,1235.39652242351,1235.39652242351,515.9424199180908,515.9424199180908,30198.922599999998,6.0,955.2241,1,2,3,4,5,6 +635.0,82.0155,1577.3621,100,1235.5712448744443,1235.5712448744443,517.1376017118307,517.1376017118307,30272.9469,6.0,955.2459,1,2,3,4,5,6 +635.5,82.19725,1580.8486,100,1235.710343886201,1235.710343886201,518.2836016644143,518.2836016644143,30343.90685,6.0,955.27365,1,2,3,4,5,6 +636.0,82.379,1584.3351,100,1235.8488291190715,1235.8488291190715,519.4296016169981,519.4296016169981,30414.8668,6.0,955.3014,1,2,3,4,5,6 +636.5,82.5578,1587.7662500000001,100,1235.9056056605195,1235.9056056605195,520.5570007450417,520.5570007450417,30484.333599999998,6.0,955.3176,1,2,3,4,5,6 +637.0,82.7366,1591.1974,100,1235.9621368052349,1235.9621368052349,521.6843998730856,521.6843998730856,30553.8004,6.0,955.3338,1,2,3,4,5,6 +637.5,82.92044999999999,1594.7289,100,1235.8284827687262,1235.8284827687262,522.8436410905958,522.8436410905958,30623.151299999998,6.0,955.2854,1,2,3,4,5,6 +638.0,83.1043,1598.2604,100,1235.6954200925825,1235.6954200925825,524.0028823081062,524.0028823081062,30692.5022,6.0,955.237,1,2,3,4,5,6 +638.5,83.2964,1601.9582999999998,100,1234.6929221671044,1234.6929221671044,525.2141427806858,525.2141427806858,30744.3424,6.0,954.5563999999999,1,2,3,4,5,6 +639.0,83.4885,1605.6562,100,1233.6950375680485,1233.6950375680485,526.4254032532652,526.4254032532652,30796.1826,6.0,953.8758,1,2,3,4,5,6 +639.5,83.66525,1609.2323,100,1183.4493423016127,1183.4493423016127,527.5398763845949,527.5398763845949,29762.81145,6.0,918.6173,1,2,3,4,5,6 +640.0,83.842,1612.8084,100,1133.4154961475153,1133.4154961475153,528.6543495159247,528.6543495159247,28729.4403,6.0,883.3588,1,2,3,4,5,6 +640.5,83.92099999999999,1614.1565999999998,100,940.4121539900622,940.4121539900622,529.152473291738,529.152473291738,24480.79555,6.0,747.94395,1,2,3,4,5,6 +641.0,84.0,1615.5048,100,747.7718419285713,747.7718419285713,529.6505970675516,529.6505970675516,20232.1508,6.0,612.5291,1,2,3,4,5,6 +641.5,84.0,1615.5048,100,738.2019288214285,738.2019288214285,529.6505970675516,529.6505970675516,20015.1329,6.0,605.8598,1,2,3,4,5,6 +642.0,84.0,1615.5048,100,728.6320157142857,728.6320157142857,529.6505970675516,529.6505970675516,19798.115,6.0,599.1905,1,2,3,4,5,6 +642.5,84.0,1615.5048,100,717.9274764642857,717.9274764642857,529.6505970675516,529.6505970675516,19555.343350000003,6.0,591.7297000000001,1,2,3,4,5,6 +643.0,84.0,1615.5048,100,707.2229372142857,707.2229372142857,529.6505970675516,529.6505970675516,19312.5717,6.0,584.2689,1,2,3,4,5,6 +643.5,84.0,1615.5048,100,698.2428853928571,698.2428853928571,529.6505970675516,529.6505970675516,19113.8497,6.0,578.01025,1,2,3,4,5,6 +644.0,84.0,1615.5048,100,689.2628335714285,689.2628335714285,529.6505970675516,529.6505970675516,18915.1277,6.0,571.7516,1,2,3,4,5,6 +644.5,84.0,1615.5048,100,682.1475190714285,682.1475190714285,529.6505970675516,529.6505970675516,18769.67615,6.0,566.79255,1,2,3,4,5,6 +645.0,84.0,1615.5048,100,675.0322045714285,675.0322045714285,529.6505970675516,529.6505970675516,18624.2246,6.0,561.8335,1,2,3,4,5,6 +645.5,84.0,1615.5048,100,668.4571452857142,668.4571452857142,529.6505970675516,529.6505970675516,18487.16235,6.0,557.2509,1,2,3,4,5,6 +646.0,84.0,1615.5048,100,661.8820859999998,661.8820859999998,529.6505970675516,529.6505970675516,18350.1001,6.0,552.6683,1,2,3,4,5,6 +646.5,84.0,1615.5048,100,655.4351005714284,655.4351005714284,529.6505970675516,529.6505970675516,18204.63275,6.0,548.17475,1,2,3,4,5,6 +647.0,84.0,1615.5048,100,648.9881151428572,648.9881151428572,529.6505970675516,529.6505970675516,18059.1654,6.0,543.6812,1,2,3,4,5,6 +647.5,84.0,1615.5048,100,642.9632322857142,642.9632322857142,529.6505970675516,529.6505970675516,17921.926050000002,6.0,539.48215,1,2,3,4,5,6 +648.0,84.0,1615.5048,100,636.9383494285714,636.9383494285714,529.6505970675516,529.6505970675516,17784.6867,6.0,535.2831,1,2,3,4,5,6 +648.5,84.0,1615.5048,100,631.8492174642857,631.8492174642857,529.6505970675516,529.6505970675516,17668.75765,6.0,531.7361000000001,1,2,3,4,5,6 +649.0,84.0,1615.5048,100,626.7600855,626.7600855,529.6505970675516,529.6505970675516,17552.8286,6.0,528.1891,1,2,3,4,5,6 +649.5,84.0,1615.5048,100,622.7870901428571,622.7870901428571,529.6505970675516,529.6505970675516,17462.3305,6.0,525.42015,1,2,3,4,5,6 +650.0,84.0,1615.5048,100,618.8140947857142,618.8140947857142,529.6505970675516,529.6505970675516,17371.8324,6.0,522.6512,1,2,3,4,5,6 +650.5,84.0,1615.5048,100,615.9292762499999,615.9292762499999,529.6505970675516,529.6505970675516,17306.120049999998,6.0,520.64065,1,2,3,4,5,6 +651.0,84.0,1615.5048,100,613.0444577142856,613.0444577142856,529.6505970675516,529.6505970675516,17240.4077,6.0,518.6301,1,2,3,4,5,6 +651.5,84.0,1615.5048,100,611.0778024642857,611.0778024642857,529.6505970675516,529.6505970675516,17195.6025,6.0,517.2592500000001,1,2,3,4,5,6 +652.0,84.0,1615.5048,100,609.1111472142857,609.1111472142857,529.6505970675516,529.6505970675516,17150.7973,6.0,515.8884,1,2,3,4,5,6 +652.5,84.0,1615.5048,100,607.9061706428571,607.9061706428571,529.6505970675516,529.6505970675516,17123.34795,6.0,515.04855,1,2,3,4,5,6 +653.0,84.0,1615.5048,100,606.7011940714285,606.7011940714285,529.6505970675516,529.6505970675516,17095.8986,6.0,514.2087,1,2,3,4,5,6 +653.5,84.0,1615.5048,100,606.1997217857142,606.1997217857142,529.6505970675516,529.6505970675516,17084.473700000002,6.0,513.8591,1,2,3,4,5,6 +654.0,84.0,1615.5048,100,605.6982495,605.6982495,529.6505970675516,529.6505970675516,17073.0488,6.0,513.5095,1,2,3,4,5,6 +654.5,84.0,1615.5048,100,605.6315067857142,605.6315067857142,529.6505970675516,529.6505970675516,17071.53415,6.0,513.4632,1,2,3,4,5,6 +655.0,84.0,1615.5048,100,605.5647640714284,605.5647640714284,529.6505970675516,529.6505970675516,17070.0195,6.0,513.4169,1,2,3,4,5,6 +655.5,84.0,1615.5048,100,605.3514579642856,605.3514579642856,529.6505970675516,529.6505970675516,17065.157099999997,6.0,513.2681,1,2,3,4,5,6 +656.0,84.0,1615.5048,100,605.1381518571428,605.1381518571428,529.6505970675516,529.6505970675516,17060.2947,6.0,513.1193,1,2,3,4,5,6 +656.5,84.0,1615.5048,100,604.1266389642857,604.1266389642857,529.6505970675516,529.6505970675516,17037.2564,6.0,512.4144,1,2,3,4,5,6 +657.0,84.0,1615.5048,100,603.1151260714284,603.1151260714284,529.6505970675516,529.6505970675516,17014.2181,6.0,511.7095,1,2,3,4,5,6 +657.5,84.0,1615.5048,100,599.9200441071429,599.9200441071429,529.6505970675516,529.6505970675516,16941.4349,6.0,509.4826,1,2,3,4,5,6 +658.0,84.0,1615.5048,100,596.7249621428571,596.7249621428571,529.6505970675516,529.6505970675516,16868.6517,6.0,507.2557,1,2,3,4,5,6 +658.5,84.0,1615.5048,100,592.3929992142856,592.3929992142856,529.6505970675516,529.6505970675516,16769.9678,6.0,504.23635,1,2,3,4,5,6 +659.0,84.0,1615.5048,100,588.0610362857142,588.0610362857142,529.6505970675516,529.6505970675516,16671.2839,6.0,501.217,1,2,3,4,5,6 +659.5,84.0,1615.5048,100,582.1800110357142,582.1800110357142,529.6505970675516,529.6505970675516,16537.32705,6.0,497.11839999999995,1,2,3,4,5,6 +660.0,84.0,1615.5048,100,576.2989857857142,576.2989857857142,529.6505970675516,529.6505970675516,16403.3702,6.0,493.0198,1,2,3,4,5,6 +660.5,84.0,1615.5048,100,570.55415175,570.55415175,529.6505970675516,529.6505970675516,16272.50515,6.0,489.0158,1,2,3,4,5,6 +661.0,84.0,1615.5048,100,564.8093177142856,564.8093177142856,529.6505970675516,529.6505970675516,16141.6401,6.0,485.0118,1,2,3,4,5,6 +661.5,84.0,1615.5048,100,563.9222709642856,563.9222709642856,529.6505970675516,529.6505970675516,16121.43115,6.0,484.39345000000003,1,2,3,4,5,6 +662.0,84.0,1615.5048,100,563.0352242142857,563.0352242142857,529.6505970675516,529.6505970675516,16101.2222,6.0,483.7751,1,2,3,4,5,6 +662.5,84.0,1615.5048,100,552.0745372499999,552.0745372499999,529.6505970675516,529.6505970675516,15854.41035,6.0,476.1358,1,2,3,4,5,6 +663.0,84.0,1615.5048,100,541.1138502857142,541.1138502857142,529.6505970675516,529.6505970675516,15607.5985,6.0,468.4965,1,2,3,4,5,6 +663.5,84.0,1615.5048,100,518.2616860714285,518.2616860714285,529.6505970675516,529.6505970675516,15094.63385,6.0,452.57140000000004,1,2,3,4,5,6 +664.0,84.0,1615.5048,100,495.40952185714275,495.40952185714275,529.6505970675516,529.6505970675516,14581.6692,6.0,436.6463,1,2,3,4,5,6 +664.5,84.0,1615.5048,100,482.73877832142847,482.73877832142847,529.6505970675516,529.6505970675516,14297.7019,6.0,427.82225,1,2,3,4,5,6 +665.0,84.0,1615.5048,100,470.06803478571425,470.06803478571425,529.6505970675516,529.6505970675516,14013.7346,6.0,418.9982,1,2,3,4,5,6 +665.5,84.0,1615.5048,100,456.8836429285714,456.8836429285714,529.6505970675516,529.6505970675516,13725.91425,6.0,409.81705,1,2,3,4,5,6 +666.0,84.0,1615.5048,100,443.69925107142853,443.69925107142853,529.6505970675516,529.6505970675516,13438.0939,6.0,400.6359,1,2,3,4,5,6 +666.5,84.0,1615.5048,100,429.16106442857136,429.16106442857136,529.6505970675516,529.6505970675516,13141.253799999999,6.0,390.51225,1,2,3,4,5,6 +667.0,84.0,1615.5048,100,414.62287778571425,414.62287778571425,529.6505970675516,529.6505970675516,12844.4137,6.0,380.3886,1,2,3,4,5,6 +667.5,84.0,1615.5048,100,399.94534317857136,399.94534317857136,529.6505970675516,529.6505970675516,12514.095,6.0,370.16785,1,2,3,4,5,6 +668.0,84.0,1615.5048,100,385.26780857142853,385.26780857142853,529.6505970675516,529.6505970675516,12183.7763,6.0,359.9471,1,2,3,4,5,6 +668.5,84.0,1615.5048,100,373.56663825,373.56663825,529.6505970675516,529.6505970675516,11915.734550000001,6.0,351.7985,1,2,3,4,5,6 +669.0,84.0,1615.5048,100,361.8654679285713,361.8654679285713,529.6505970675516,529.6505970675516,11647.6928,6.0,343.6499,1,2,3,4,5,6 +669.5,84.0,1615.5048,100,343.08460928571424,343.08460928571424,529.6505970675516,529.6505970675516,11217.48375,6.0,330.5713,1,2,3,4,5,6 +670.0,84.0,1615.5048,100,324.3037506428571,324.3037506428571,529.6505970675516,529.6505970675516,10787.2747,6.0,317.4927,1,2,3,4,5,6 +670.5,84.0,1615.5048,100,311.30786185714277,311.30786185714277,529.6505970675516,529.6505970675516,10506.59605,6.0,308.44259999999997,1,2,3,4,5,6 +671.0,84.0,1615.5048,100,298.31197307142855,298.31197307142855,529.6505970675516,529.6505970675516,10225.9174,6.0,299.3925,1,2,3,4,5,6 +671.5,84.0,1615.5048,100,291.1610323928571,291.1610323928571,529.6505970675516,529.6505970675516,10086.6545,6.0,294.4126,1,2,3,4,5,6 +672.0,84.0,1615.5048,100,284.0100917142857,284.0100917142857,529.6505970675516,529.6505970675516,9947.3916,6.0,289.4327,1,2,3,4,5,6 +672.5,84.0,1615.5048,100,288.36370092857135,288.36370092857135,529.6505970675516,529.6505970675516,10032.10735,6.0,292.46450000000004,1,2,3,4,5,6 +673.0,84.0,1615.5048,100,292.7173101428571,292.7173101428571,529.6505970675516,529.6505970675516,10116.8231,6.0,295.4963,1,2,3,4,5,6 +673.5,84.0,1615.5048,100,305.7172576071428,305.7172576071428,529.6505970675516,529.6505970675516,10389.18675,6.0,304.54945,1,2,3,4,5,6 +674.0,84.0,1615.5048,100,318.7172050714285,318.7172050714285,529.6505970675516,529.6505970675516,10661.5504,6.0,313.6026,1,2,3,4,5,6 +674.5,84.0,1615.5048,100,334.4829165,334.4829165,529.6505970675516,529.6505970675516,11021.5668,6.0,324.5813,1,2,3,4,5,6 +675.0,84.0,1615.5048,100,350.2486279285714,350.2486279285714,529.6505970675516,529.6505970675516,11381.5832,6.0,335.56,1,2,3,4,5,6 +675.5,84.0,1615.5048,100,363.41994182142855,363.41994182142855,529.6505970675516,529.6505970675516,11683.305649999998,6.0,344.73255,1,2,3,4,5,6 +676.0,84.0,1615.5048,100,376.5912557142857,376.5912557142857,529.6505970675516,529.6505970675516,11985.0281,6.0,353.9051,1,2,3,4,5,6 +676.5,84.0,1615.5048,100,382.2364266428571,382.2364266428571,529.6505970675516,529.6505970675516,12114.333050000001,6.0,357.83605,1,2,3,4,5,6 +677.0,84.0,1615.5048,100,387.88159757142853,387.88159757142853,529.6505970675516,529.6505970675516,12243.638,6.0,361.767,1,2,3,4,5,6 +677.5,84.0,1615.5048,100,398.22040478571427,398.22040478571427,529.6505970675516,529.6505970675516,12480.46275,6.0,368.96659999999997,1,2,3,4,5,6 +678.0,84.0,1615.5048,100,408.55921199999995,408.55921199999995,529.6505970675516,529.6505970675516,12717.2875,6.0,376.1662,1,2,3,4,5,6 +678.5,84.0,1615.5048,100,412.70402475,412.70402475,529.6505970675516,529.6505970675516,12809.1173,6.0,379.0523,1,2,3,4,5,6 +679.0,84.0,1615.5048,100,416.84883749999995,416.84883749999995,529.6505970675516,529.6505970675516,12900.9471,6.0,381.9384,1,2,3,4,5,6 +679.5,84.0,1615.5048,100,427.2426623571428,427.2426623571428,529.6505970675516,529.6505970675516,13107.15755,6.0,389.17625,1,2,3,4,5,6 +680.0,84.0,1615.5048,100,437.6364872142857,437.6364872142857,529.6505970675516,529.6505970675516,13313.368,6.0,396.4141,1,2,3,4,5,6 +680.5,84.0,1615.5048,100,445.6257705,445.6257705,529.6505970675516,529.6505970675516,13479.20405,6.0,401.9777,1,2,3,4,5,6 +681.0,84.0,1615.5048,100,453.6150537857142,453.6150537857142,529.6505970675516,529.6505970675516,13645.0401,6.0,407.5413,1,2,3,4,5,6 +681.5,84.0,1615.5048,100,449.23754346428564,449.23754346428564,529.6505970675516,529.6505970675516,13551.983199999999,6.0,404.49289999999996,1,2,3,4,5,6 +682.0,84.0,1615.5048,100,444.86003314285705,444.86003314285705,529.6505970675516,529.6505970675516,13458.9263,6.0,401.4445,1,2,3,4,5,6 +682.5,84.0,1615.5048,100,429.80549239285705,429.80549239285705,529.6505970675516,529.6505970675516,13152.118299999998,6.0,390.961,1,2,3,4,5,6 +683.0,84.0,1615.5048,100,414.7509516428571,414.7509516428571,529.6505970675516,529.6505970675516,12845.3103,6.0,380.4775,1,2,3,4,5,6 +683.5,84.0,1615.5048,100,402.258339,402.258339,529.6505970675516,529.6505970675516,12566.04925,6.0,371.7781,1,2,3,4,5,6 +684.0,84.0,1615.5048,100,389.7657263571428,389.7657263571428,529.6505970675516,529.6505970675516,12286.7882,6.0,363.0787,1,2,3,4,5,6 +684.5,84.0,1615.5048,100,388.62072803571425,388.62072803571425,529.6505970675516,529.6505970675516,12260.5668,6.0,362.2816,1,2,3,4,5,6 +685.0,84.0,1615.5048,100,387.47572971428565,387.47572971428565,529.6505970675516,529.6505970675516,12234.3454,6.0,361.4845,1,2,3,4,5,6 +685.5,84.0,1615.5048,100,388.99096971428565,388.99096971428565,529.6505970675516,529.6505970675516,12269.05645,6.0,362.53970000000004,1,2,3,4,5,6 +686.0,84.0,1615.5048,100,390.5062097142856,390.5062097142856,529.6505970675516,529.6505970675516,12303.7675,6.0,363.5949,1,2,3,4,5,6 +686.5,84.0,1615.5048,100,384.66351642857137,384.66351642857137,529.6505970675516,529.6505970675516,12169.9335,6.0,359.5263,1,2,3,4,5,6 +687.0,84.0,1615.5048,100,378.8208231428571,378.8208231428571,529.6505970675516,529.6505970675516,12036.0995,6.0,355.4577,1,2,3,4,5,6 +687.5,84.0,1615.5048,100,381.96539710714285,381.96539710714285,529.6505970675516,529.6505970675516,12108.12125,6.0,357.6472,1,2,3,4,5,6 +688.0,84.0,1615.5048,100,385.1099710714285,385.1099710714285,529.6505970675516,529.6505970675516,12180.143,6.0,359.8367,1,2,3,4,5,6 +688.5,84.0,1615.5048,100,405.2622121071428,405.2622121071428,529.6505970675516,529.6505970675516,12622.451000000001,6.0,373.87005,1,2,3,4,5,6 +689.0,84.0,1615.5048,100,425.41445314285716,425.41445314285716,529.6505970675516,529.6505970675516,13064.759,6.0,387.9034,1,2,3,4,5,6 +689.5,84.0,1615.5048,100,444.97863674999996,444.97863674999996,529.6505970675516,529.6505970675516,13477.3406,6.0,401.5271,1,2,3,4,5,6 +690.0,84.0,1615.5048,100,464.54282035714283,464.54282035714283,529.6505970675516,529.6505970675516,13889.9222,6.0,415.1508,1,2,3,4,5,6 +690.5,84.0,1615.5048,100,480.13942017857136,480.13942017857136,529.6505970675516,529.6505970675516,14239.46425,6.0,426.01255000000003,1,2,3,4,5,6 +691.0,84.0,1615.5048,100,495.73601999999994,495.73601999999994,529.6505970675516,529.6505970675516,14589.0063,6.0,436.8743,1,2,3,4,5,6 +691.5,84.0,1615.5048,100,513.9734666785713,513.9734666785713,529.6505970675516,529.6505970675516,14998.0469,6.0,449.5829,1,2,3,4,5,6 +692.0,84.0,1615.5048,100,532.2109133571428,532.2109133571428,529.6505970675516,529.6505970675516,15407.0875,6.0,462.2915,1,2,3,4,5,6 +692.5,84.0,1615.5048,100,553.6456968214285,553.6456968214285,529.6505970675516,529.6505970675516,15891.34245,6.0,477.23075,1,2,3,4,5,6 +693.0,84.0,1615.5048,100,575.0804802857143,575.0804802857143,529.6505970675516,529.6505970675516,16375.5974,6.0,492.17,1,2,3,4,5,6 +693.5,84.0,1615.5048,100,591.5790086785713,591.5790086785713,529.6505970675516,529.6505970675516,16751.4234,6.0,503.66895,1,2,3,4,5,6 +694.0,84.0,1615.5048,100,608.0775370714287,608.0775370714287,529.6505970675516,529.6505970675516,17127.2494,6.0,515.1679,1,2,3,4,5,6 +694.5,84.0,1615.5048,100,611.538237,611.538237,529.6505970675516,529.6505970675516,17206.0873,6.0,517.58005,1,2,3,4,5,6 +695.0,84.0,1615.5048,100,614.9989369285714,614.9989369285714,529.6505970675516,529.6505970675516,17284.9252,6.0,519.9922,1,2,3,4,5,6 +695.5,84.0,1615.5048,100,596.2469399999999,596.2469399999999,529.6505970675516,529.6505970675516,16859.074050000003,6.0,506.9225,1,2,3,4,5,6 +696.0,84.0,1615.5048,100,577.4949430714285,577.4949430714285,529.6505970675516,529.6505970675516,16433.2229,6.0,493.8528,1,2,3,4,5,6 +696.5,84.0,1615.5048,100,528.7082737499999,528.7082737499999,529.6505970675516,529.6505970675516,15334.41345,6.0,459.85735,1,2,3,4,5,6 +697.0,84.0,1615.5048,100,479.92160442857136,479.92160442857136,529.6505970675516,529.6505970675516,14235.604,6.0,425.8619,1,2,3,4,5,6 +697.5,84.0,1615.5048,100,453.64662128571416,453.64662128571416,529.6505970675516,529.6505970675516,13672.46835,6.0,407.56415,1,2,3,4,5,6 +698.0,84.0,1615.5048,100,427.3716381428571,427.3716381428571,529.6505970675516,529.6505970675516,13109.3327,6.0,389.2664,1,2,3,4,5,6 +698.5,84.0,1615.5048,100,415.3304407499999,415.3304407499999,529.6505970675516,529.6505970675516,12852.945500000002,6.0,380.88115,1,2,3,4,5,6 +699.0,84.0,1615.5048,100,403.2892433571428,403.2892433571428,529.6505970675516,529.6505970675516,12596.5583,6.0,372.4959,1,2,3,4,5,6 +699.5,84.0,1615.5048,100,392.42461178571426,392.42461178571426,529.6505970675516,529.6505970675516,12347.694650000001,6.0,364.9303,1,2,3,4,5,6 +700.0,84.0,1615.5048,100,381.5599802142857,381.5599802142857,529.6505970675516,529.6505970675516,12098.831,6.0,357.3647,1,2,3,4,5,6 +700.5,84.0,1615.5048,100,379.6420291071429,379.6420291071429,529.6505970675516,529.6505970675516,12054.89715,6.0,356.02909999999997,1,2,3,4,5,6 +701.0,84.0,1615.5048,100,377.724078,377.724078,529.6505970675516,529.6505970675516,12010.9633,6.0,354.6935,1,2,3,4,5,6 +701.5,84.0,1615.5048,100,353.61597824999996,353.61597824999996,529.6505970675516,529.6505970675516,11474.7063,6.0,337.90515,1,2,3,4,5,6 +702.0,84.0,1615.5048,100,329.5078785,329.5078785,529.6505970675516,529.6505970675516,10938.4493,6.0,321.1168,1,2,3,4,5,6 +702.5,84.0,1615.5048,100,277.6339076785714,277.6339076785714,529.6505970675516,529.6505970675516,9834.347300000001,6.0,285.01005,1,2,3,4,5,6 +703.0,84.0,1615.5048,100,225.75993685714283,225.75993685714283,529.6505970675516,529.6505970675516,8730.2453,6.0,248.9033,1,2,3,4,5,6 +703.5,84.0,1615.5048,100,183.12577328571425,183.12577328571425,529.6505970675516,529.6505970675516,7793.74055,6.0,219.9071,1,2,3,4,5,6 +704.0,84.0,1615.5048,100,140.49160971428572,140.49160971428572,529.6505970675516,529.6505970675516,6857.2358,6.0,190.9109,1,2,3,4,5,6 +704.5,84.0,1615.5048,100,94.41027514285713,94.41027514285713,529.6505970675516,529.6505970675516,5902.590550000001,6.0,160.56355,1,2,3,4,5,6 +705.0,84.0,1615.5048,100,48.32894057142856,48.32894057142856,529.6505970675516,529.6505970675516,4947.9453,6.0,130.2162,1,2,3,4,5,6 +705.5,84.0,1615.5048,100,9.137438357142853,9.137438357142853,529.6505970675516,529.6505970675516,4264.0074,6.0,104.5309,1,2,3,4,5,6 +706.0,84.0,1615.5048,100,-30.054063857142854,-30.054063857142854,529.6505970675516,529.6505970675516,3580.0695,6.0,78.8456,1,2,3,4,5,6 +706.5,84.0,1615.5048,100,-58.4003259642857,-58.4003259642857,529.6505970675516,529.6505970675516,3181.4496,6.0,60.26820000000001,1,2,3,4,5,6 +707.0,84.0,1615.5048,100,-86.74658807142858,-86.74658807142858,529.6505970675516,529.6505970675516,2782.8297,6.0,41.6908,1,2,3,4,5,6 +707.5,84.0009,1615.51325,100,-125.20528472909217,-125.20528472909217,529.6562718953774,529.6562718953774,2235.08465,6.0,16.823900000000002,1,2,3,4,5,6 +708.0,84.0018,1615.5217,100,-163.66315728948666,-163.66315728948666,529.6619467232031,529.6619467232031,1687.3396,6.0,-8.043,1,2,3,4,5,6 +708.5,84.0161,1615.76125,100,-217.3082531443378,-217.3082531443378,529.7521134319895,529.7521134319895,843.66975,6.0,-42.386599999999994,1,2,3,4,5,6 +709.0,84.0304,1616.0008,100,-270.9350907290695,-270.9350907290695,529.8422801407761,529.8422801407761,-0.0001,6.0,-76.7302,1,2,3,4,5,6 +709.5,84.0681,1616.7611000000002,100,-271.22048185934966,-271.22048185934966,530.0799923730315,530.0799923730315,-0.0001,6.0,-76.7603,1,2,3,4,5,6 +710.0,84.1058,1617.5214,100,-271.505617139365,-271.505617139365,530.3177046052866,530.3177046052866,-0.0001,6.0,-76.7904,1,2,3,4,5,6 +710.5,84.15335,1618.45245,100,-271.53181249468975,-271.53181249468975,530.6175246754124,530.6175246754124,-0.0001,6.0,-76.8272,1,2,3,4,5,6 +711.0,84.2009,1619.3835,100,-271.5579782638903,-271.5579782638903,530.9173447455382,530.9173447455382,-0.0001,6.0,-76.864,1,2,3,4,5,6 +711.5,84.24610000000001,1620.2428,100,-271.56785890385424,-271.56785890385424,531.2023472096746,531.2023472096746,-0.0001,6.0,-76.898,1,2,3,4,5,6 +712.0,84.2913,1621.1021,100,-271.5777289471155,-271.5777289471155,531.487349673811,531.487349673811,-0.0001,6.0,-76.932,1,2,3,4,5,6 +712.5,84.33755,1621.9861500000002,100,-271.6753865034021,-271.6753865034021,531.7789727704105,531.7789727704105,-0.0001,6.0,-76.967,1,2,3,4,5,6 +713.0,84.3838,1622.8702,100,-271.77293700923633,-271.77293700923633,532.0705958670103,532.0705958670103,-0.0001,6.0,-77.002,1,2,3,4,5,6 +713.5,84.4357,1623.8694500000001,100,-271.893463108614,-271.893463108614,532.3978442716269,532.3978442716269,-0.0001,6.0,-77.0415,1,2,3,4,5,6 +714.0,84.4876,1624.8687,100,-272.01384113171633,-272.01384113171633,532.7250926762438,532.7250926762438,-0.0001,6.0,-77.081,1,2,3,4,5,6 +714.5,84.544,1625.96325,100,-272.0989756694739,-272.0989756694739,533.0807152199891,533.0807152199891,-0.0001,6.0,-77.1243,1,2,3,4,5,6 +715.0,84.6004,1627.0578,100,-272.1839966950511,-272.1839966950511,533.4363377637344,533.4363377637344,-0.0001,6.0,-77.1676,1,2,3,4,5,6 +715.5,84.65254999999999,1628.08105,100,-272.11297580521796,-272.11297580521796,533.7651625094138,533.7651625094138,-0.0001,6.0,-77.2081,1,2,3,4,5,6 +716.0,84.7047,1629.1043,100,-272.042042366008,-272.042042366008,534.0939872550933,534.0939872550933,-0.0001,6.0,-77.2486,1,2,3,4,5,6 +716.5,84.74045000000001,1629.79235,100,-271.8329522087739,-271.8329522087739,534.3194040270597,534.3194040270597,-0.0001,6.0,-77.2758,1,2,3,4,5,6 +717.0,84.7762,1630.4804,100,-271.62403839756917,-271.62403839756917,534.5448207990258,534.5448207990258,-0.0001,6.0,-77.303,1,2,3,4,5,6 +717.5,84.79509999999999,1630.8235,100,-271.50542040754715,-271.50542040754715,534.663992183366,534.663992183366,-0.0001,6.0,-77.3166,1,2,3,4,5,6 +718.0,84.814,1631.1666,100,-271.3868552833259,-271.3868552833259,534.7831635677062,534.7831635677062,-0.0001,6.0,-77.3302,1,2,3,4,5,6 +718.5,84.829,1631.43925,100,-271.4424682125217,-271.4424682125217,534.8777440314683,534.8777440314683,-0.0001,6.0,-77.34100000000001,1,2,3,4,5,6 +719.0,84.844,1631.7119,100,-271.49806147753526,-271.49806147753526,534.9723244952303,534.9723244952303,-0.0001,6.0,-77.3518,1,2,3,4,5,6 +719.5,84.8685,1632.1711500000001,100,-271.6861554640414,-271.6861554640414,535.1268059193751,535.1268059193751,-0.0001,6.0,-77.36994999999999,1,2,3,4,5,6 +720.0,84.893,1632.6304,100,-271.8741408832295,-271.8741408832295,535.2812873435197,535.2812873435197,-0.0001,6.0,-77.3881,1,2,3,4,5,6 +720.5,84.93625,1633.4583,100,-272.16697663247436,-272.16697663247436,535.553994347367,535.553994347367,-5e-05,6.0,-77.42085,1,2,3,4,5,6 +721.0,84.9795,1634.2862,100,-272.45951430639155,-272.45951430639155,535.8267013512143,535.8267013512143,0.0,6.0,-77.4536,1,2,3,4,5,6 +721.5,85.0426,1635.51765,100,-272.71481684473434,-272.71481684473434,536.22456983544,536.22456983544,0.0,6.0,-77.50229999999999,1,2,3,4,5,6 +722.0,85.1057,1636.7491,100,-272.9697408046699,-272.9697408046699,536.6224383196658,536.6224383196658,0.0,6.0,-77.551,1,2,3,4,5,6 +722.5,85.1755,1638.1194,100,-273.00088268340073,-273.00088268340073,537.0625527443719,537.0625527443719,0.0,6.0,-77.60525,1,2,3,4,5,6 +723.0,85.2453,1639.4897,100,-273.0319735633519,-273.0319735633519,537.502667169078,537.502667169078,0.0,6.0,-77.6595,1,2,3,4,5,6 +723.5,85.30305,1640.61175,100,-272.86045371179574,-272.86045371179574,537.866801954562,537.866801954562,0.0,6.0,-77.70384999999999,1,2,3,4,5,6 +724.0,85.3608,1641.7338,100,-272.689165940338,-272.689165940338,538.2309367400459,538.2309367400459,0.0,6.0,-77.7482,1,2,3,4,5,6 +724.5,85.3949,1642.396,100,-272.4245724861789,-272.4245724861789,538.4459496609984,538.4459496609984,0.0,6.0,-77.7744,1,2,3,4,5,6 +725.0,85.429,1643.0582,100,-272.16019026325955,-272.16019026325955,538.6609625819508,538.6609625819508,0.0,6.0,-77.8006,1,2,3,4,5,6 +725.5,85.43555,1643.1803,100,-271.84713289725414,-271.84713289725414,538.7022627177936,538.7022627177936,0.0,6.0,-77.80545000000001,1,2,3,4,5,6 +726.0,85.4421,1643.3024,100,-271.53412352926716,-271.53412352926716,538.7435628536364,538.7435628536364,0.0,6.0,-77.8103,1,2,3,4,5,6 +726.5,85.4258,1642.9676,100,-271.32208935707945,-271.32208935707945,538.6407854163483,538.6407854163483,0.0,6.0,-77.79705,1,2,3,4,5,6 +727.0,85.4095,1642.6328,100,-271.1099742534496,-271.1099742534496,538.5380079790601,538.5380079790601,0.0,6.0,-77.7838,1,2,3,4,5,6 +727.5,85.38499999999999,1642.14335,100,-271.0901625109798,-271.0901625109798,538.3835265549153,538.3835265549153,0.0,6.0,-77.76445,1,2,3,4,5,6 +728.0,85.3605,1641.6539,100,-271.07033939585637,-271.07033939585637,538.2290451307707,538.2290451307707,0.0,6.0,-77.7451,1,2,3,4,5,6 +728.5,85.33905,1641.24485,100,-271.1118397263621,-271.1118397263621,538.0937950675909,538.0937950675909,0.0,6.0,-77.7289,1,2,3,4,5,6 +729.0,85.3176,1640.8358,100,-271.1533609243579,-271.1533609243579,537.9585450044112,537.9585450044112,0.0,6.0,-77.7127,1,2,3,4,5,6 +729.5,85.3086,1640.6284500000002,100,-271.3547015775666,-271.3547015775666,537.901796726154,537.901796726154,0.0,6.0,-77.7045,1,2,3,4,5,6 +730.0,85.2996,1640.4211,100,-271.556084717865,-271.556084717865,537.8450484478967,537.8450484478967,0.0,6.0,-77.6963,1,2,3,4,5,6 +730.5,85.3083,1640.61715,100,-271.74908257461465,-271.74908257461465,537.8999051168788,537.8999051168788,0.0,6.0,-77.70405,1,2,3,4,5,6 +731.0,85.317,1640.8132,100,-271.94204107036114,-271.94204107036114,537.9547617858607,537.9547617858607,0.0,6.0,-77.7118,1,2,3,4,5,6 +731.5,85.33645,1641.1951,100,-272.02477164212945,-272.02477164212945,538.0774011205389,538.0774011205389,0.0,6.0,-77.7269,1,2,3,4,5,6 +732.0,85.3559,1641.577,100,-272.10746451036186,-272.10746451036186,538.200040455217,538.200040455217,0.0,6.0,-77.742,1,2,3,4,5,6 +732.5,85.37540000000001,1641.9702499999999,100,-272.06838670155565,-272.06838670155565,538.3229950581078,538.3229950581078,0.0,6.0,-77.7576,1,2,3,4,5,6 +733.0,85.3949,1642.3635,100,-272.0293267396531,-272.0293267396531,538.4459496609984,538.4459496609984,0.0,6.0,-77.7732,1,2,3,4,5,6 +733.5,85.4038,1642.5475000000001,100,-271.8643644193818,-271.8643644193818,538.5020674028306,538.5020674028306,0.0,6.0,-77.78045,1,2,3,4,5,6 +734.0,85.4127,1642.7315,100,-271.69943647724523,-271.69943647724523,538.5581851446627,538.5581851446627,0.0,6.0,-77.7877,1,2,3,4,5,6 +734.5,85.39425,1642.3778000000002,100,-271.2475538692594,-271.2475538692594,538.4418511742352,538.4418511742352,0.0,6.0,-77.77369999999999,1,2,3,4,5,6 +735.0,85.3758,1642.0241,100,-270.7954759545445,-270.7954759545445,538.325517203808,538.325517203808,0.0,6.0,-77.7597,1,2,3,4,5,6 +735.5,85.33045,1641.1299,100,-270.58069596492226,-270.58069596492226,538.039568935034,538.039568935034,0.0,6.0,-77.72434999999999,1,2,3,4,5,6 +736.0,85.2851,1640.2357,100,-270.3656875585536,-270.3656875585536,537.7536206662601,537.7536206662601,0.0,6.0,-77.689,1,2,3,4,5,6 +736.5,85.22905,1639.161,100,-270.23947933245756,-270.23947933245756,537.4002050000025,537.4002050000025,0.0,6.0,-77.64644999999999,1,2,3,4,5,6 +737.0,85.173,1638.0863,100,-270.1131049980627,-270.1131049980627,537.046789333745,537.046789333745,0.0,6.0,-77.6039,1,2,3,4,5,6 +737.5,85.10464999999999,1636.7909,100,-269.8519916126792,-269.8519916126792,536.6158176872024,536.6158176872024,0.0,6.0,-77.55265,1,2,3,4,5,6 +738.0,85.0363,1635.4955,100,-269.5904584747925,-269.5904584747925,536.18484604066,536.18484604066,0.0,6.0,-77.5014,1,2,3,4,5,6 +738.5,84.9455,1633.748,100,-269.2030229853259,-269.2030229853259,535.612318966687,535.612318966687,0.0,6.0,-77.4323,1,2,3,4,5,6 +739.0,84.8547,1632.0005,100,-268.8147583339521,-268.8147583339521,535.0397918927139,535.0397918927139,0.0,6.0,-77.3632,1,2,3,4,5,6 +739.5,84.74289999999999,1629.83965,100,-268.53688107204266,-268.53688107204266,534.334852169474,534.334852169474,-5e-05,6.0,-77.27770000000001,1,2,3,4,5,6 +740.0,84.6311,1627.6788,100,-268.25826964319265,-268.25826964319265,533.6299124462341,533.6299124462341,-0.0001,6.0,-77.1922,1,2,3,4,5,6 +740.5,84.49985000000001,1625.15605,100,-267.87114783043995,-267.87114783043995,532.8023333883161,532.8023333883161,-0.0001,6.0,-77.0924,1,2,3,4,5,6 +741.0,84.3686,1622.6333,100,-267.4828215473529,-267.4828215473529,531.974754330398,531.974754330398,-0.0001,6.0,-76.9926,1,2,3,4,5,6 +741.5,84.2407,1620.0076,100,-208.3019489035585,-208.3019489035585,531.1682982427202,531.1682982427202,995.687,6.0,-38.3231,1,2,3,4,5,6 +742.0,84.1128,1617.3819,100,-148.9410980968414,-148.9410980968414,530.3618421550423,530.3618421550423,1991.3741,6.0,0.3464,1,2,3,4,5,6 +742.5,84.0564,1616.44335,100,21.410035975844814,21.410035975844814,530.0062196112971,530.0062196112971,4983.9547,6.0,113.0036,1,2,3,4,5,6 +743.0,84.0,1615.5048,100,191.98992728571426,191.98992728571426,529.6505970675516,529.6505970675516,7976.5353,6.0,225.6608,1,2,3,4,5,6 +743.5,84.0,1615.5048,100,243.70470771428566,243.70470771428566,529.6505970675516,529.6505970675516,9086.9451,6.0,261.51955,1,2,3,4,5,6 +744.0,84.0,1615.5048,100,295.41948814285706,295.41948814285706,529.6505970675516,529.6505970675516,10197.3549,6.0,297.3783,1,2,3,4,5,6 +744.5,84.0,1615.5048,100,354.18148746428574,354.18148746428574,529.6505970675516,529.6505970675516,11492.964,6.0,338.29855,1,2,3,4,5,6 +745.0,84.0,1615.5048,100,412.94348678571424,412.94348678571424,529.6505970675516,529.6505970675516,12788.5731,6.0,379.2188,1,2,3,4,5,6 +745.5,84.0,1615.5048,100,472.84326899999996,472.84326899999996,529.6505970675516,529.6505970675516,14105.176899999999,6.0,420.94245,1,2,3,4,5,6 +746.0,84.0,1615.5048,100,532.7430512142857,532.7430512142857,529.6505970675516,529.6505970675516,15421.7807,6.0,462.6661,1,2,3,4,5,6 +746.5,84.0,1615.5048,100,590.1783136071429,590.1783136071429,529.6505970675516,529.6505970675516,16718.62515,6.0,502.69485,1,2,3,4,5,6 +747.0,84.0,1615.5048,100,647.6135759999999,647.6135759999999,529.6505970675516,529.6505970675516,18015.4696,6.0,542.7236,1,2,3,4,5,6 +747.5,84.0,1615.5048,100,698.0778324642855,698.0778324642855,529.6505970675516,529.6505970675516,19131.913099999998,6.0,577.8918,1,2,3,4,5,6 +748.0,84.0,1615.5048,100,748.5420889285714,748.5420889285714,529.6505970675516,529.6505970675516,20248.3566,6.0,613.06,1,2,3,4,5,6 +748.5,84.0,1615.5048,100,796.8277369285713,796.8277369285713,529.6505970675516,529.6505970675516,21280.0942,6.0,646.6886,1,2,3,4,5,6 +749.0,84.0,1615.5048,100,845.1133849285713,845.1133849285713,529.6505970675516,529.6505970675516,22311.8318,6.0,680.3172,1,2,3,4,5,6 +749.5,84.0,1615.5048,100,897.2331312857141,897.2331312857141,529.6505970675516,529.6505970675516,23434.46065,6.0,716.6123,1,2,3,4,5,6 +750.0,84.0,1615.5048,100,949.352877642857,949.352877642857,529.6505970675516,529.6505970675516,24557.0895,6.0,752.9074,1,2,3,4,5,6 +750.5,84.0,1615.5048,100,987.8805604285712,987.8805604285712,529.6505970675516,529.6505970675516,25428.003299999997,6.0,779.74075,1,2,3,4,5,6 +751.0,84.0,1615.5048,100,1026.4082432142857,1026.4082432142857,529.6505970675516,529.6505970675516,26298.9171,6.0,806.5741,1,2,3,4,5,6 +751.5,84.0,1615.5048,100,1036.61672175,1036.61672175,529.6505970675516,529.6505970675516,26532.173799999997,6.0,813.6858,1,2,3,4,5,6 +752.0,84.0,1615.5048,100,1046.8252002857143,1046.8252002857143,529.6505970675516,529.6505970675516,26765.4305,6.0,820.7975,1,2,3,4,5,6 +752.5,84.0,1615.5048,100,1042.5798225,1042.5798225,529.6505970675516,529.6505970675516,26668.427,6.0,817.84,1,2,3,4,5,6 +753.0,84.0,1615.5048,100,1038.3344447142856,1038.3344447142856,529.6505970675516,529.6505970675516,26571.4235,6.0,814.8825,1,2,3,4,5,6 +753.5,84.0,1615.5048,100,1045.479071892857,1045.479071892857,529.6505970675516,529.6505970675516,26732.67295,6.0,819.85985,1,2,3,4,5,6 +754.0,84.0,1615.5048,100,1052.6236990714285,1052.6236990714285,529.6505970675516,529.6505970675516,26893.9224,6.0,824.8372,1,2,3,4,5,6 +754.5,84.0,1615.5048,100,1085.0895199285715,1085.0895199285715,529.6505970675516,529.6505970675516,27605.01615,6.0,847.45515,1,2,3,4,5,6 +755.0,84.0,1615.5048,100,1117.5553407857142,1117.5553407857142,529.6505970675516,529.6505970675516,28316.1099,6.0,870.0731,1,2,3,4,5,6 +755.5,83.99945,1615.4993,100,1160.2016105581645,1160.2016105581645,529.6471291172137,529.6471291172137,29269.05635,6.0,899.77305,1,2,3,4,5,6 +756.0,83.9989,1615.4938,100,1202.8484388009842,1202.8484388009842,529.6436611668759,529.6436611668759,30222.0028,6.0,929.473,1,2,3,4,5,6 +756.5,83.9929,1615.3832,100,1217.7051436133293,1217.7051436133293,529.6058289813709,529.6058289813709,30542.3121,6.0,939.75305,1,2,3,4,5,6 +757.0,83.9869,1615.2726,100,1232.563971143119,1232.563971143119,529.5679967958661,529.5679967958661,30862.6214,6.0,950.0331,1,2,3,4,5,6 +757.5,83.97725,1615.06425,100,1233.5166610718977,1233.5166610718977,529.5071500308458,529.5071500308458,30881.2929,6.0,950.72605,1,2,3,4,5,6 +758.0,83.9676,1614.8559,100,1234.4695699769911,1234.4695699769911,529.4463032658256,529.4463032658256,30899.9644,6.0,951.419,1,2,3,4,5,6 +758.5,83.9651,1614.80555,100,1234.3971466954722,1234.3971466954722,529.4305398551986,529.4305398551986,30900.239950000003,6.0,951.458,1,2,3,4,5,6 +759.0,83.9626,1614.7552,100,1234.3247191011235,1234.3247191011235,529.4147764445715,529.4147764445715,30900.5155,6.0,951.497,1,2,3,4,5,6 +759.5,83.97055,1614.91785,100,1234.1650014796853,1234.1650014796853,529.4649040903655,529.4649040903655,30901.94625,6.0,951.44135,1,2,3,4,5,6 +760.0,83.9785,1615.0805,100,1234.0053140982516,1234.0053140982516,529.5150317361592,529.5150317361592,30903.377,6.0,951.3857,1,2,3,4,5,6 +760.5,83.98695000000001,1615.27005,100,1223.6801156965455,1223.6801156965455,529.5683120640787,529.5683120640787,30685.13285,6.0,944.12295,1,2,3,4,5,6 +761.0,83.9954,1615.4596,100,1213.3569947401884,1213.3569947401884,529.6215923919979,529.6215923919979,30466.8887,6.0,936.8602,1,2,3,4,5,6 +761.5,83.99770000000001,1615.4822,100,1211.9721939886454,1211.9721939886454,529.6360947297748,529.6360947297748,30431.76365,6.0,935.87315,1,2,3,4,5,6 +762.0,84.0,1615.5048,100,1210.5874690714286,1210.5874690714286,529.6505970675516,529.6505970675516,30396.6386,6.0,934.8861,1,2,3,4,5,6 +762.5,83.9992,1615.49585,100,1219.3139664068228,1219.3139664068228,529.645552776151,529.645552776151,30582.0136,6.0,940.95085,1,2,3,4,5,6 +763.0,83.9984,1615.4869,100,1228.0406299643803,1228.0406299643803,529.6405084847503,529.6405084847503,30767.3886,6.0,947.0156,1,2,3,4,5,6 +763.5,83.99245,1615.3765,100,1231.0952357265446,1231.0952357265446,529.602991567458,529.602991567458,30833.242899999997,6.0,949.07925,1,2,3,4,5,6 +764.0,83.9865,1615.2661,100,1234.150274294083,1234.150274294083,529.5654746501658,529.5654746501658,30899.0972,6.0,951.1429,1,2,3,4,5,6 +764.5,83.9735,1615.0070500000002,100,1234.450050706473,1234.450050706473,529.4835049149053,529.4835049149053,30899.7887,6.0,951.3216,1,2,3,4,5,6 +765.0,83.9605,1614.748,100,1234.749919950453,1234.749919950453,529.4015351796448,529.4015351796448,30900.4802,6.0,951.5003,1,2,3,4,5,6 +765.5,83.9447,1614.4434999999999,100,1234.886204858675,1234.886204858675,529.3019104244821,529.3019104244821,30897.4514,6.0,951.59395,1,2,3,4,5,6 +766.0,83.9289,1614.139,100,1235.022541079414,1235.022541079414,529.2022856693194,529.2022856693194,30894.4226,6.0,951.6876,1,2,3,4,5,6 +766.5,83.91114999999999,1613.80395,100,1235.2043356812533,1235.2043356812533,529.0903654538677,529.0903654538677,30891.06245,6.0,951.7898,1,2,3,4,5,6 +767.0,83.8934,1613.4689,100,1235.3862072105792,1235.3862072105792,528.9784452384159,528.9784452384159,30887.7023,6.0,951.892,1,2,3,4,5,6 +767.5,83.8692,1613.0120000000002,100,1235.6857610421937,1235.6857610421937,528.8258554235465,528.8258554235465,30883.120000000003,6.0,952.03135,1,2,3,4,5,6 +768.0,83.845,1612.5551,100,1235.9854877929513,1235.9854877929513,528.673265608677,528.673265608677,30878.5377,6.0,952.1707,1,2,3,4,5,6 +768.5,83.8092,1611.8661000000002,100,1236.4203421342763,1236.4203421342763,528.4475335684982,528.4475335684982,30871.627350000002,6.0,952.38085,1,2,3,4,5,6 +769.0,83.7734,1611.1771,100,1236.8555681397677,1236.8555681397677,528.2218015283194,528.2218015283194,30864.717,6.0,952.591,1,2,3,4,5,6 +769.5,83.7282,1610.2889,100,1237.2712722236952,1237.2712722236952,527.9367990641831,527.9367990641831,30855.80905,6.0,952.8619,1,2,3,4,5,6 +770.0,83.683,1609.4007,100,1237.6874253791093,1237.6874253791093,527.6517966000467,527.6517966000467,30846.9011,6.0,953.1328,1,2,3,4,5,6 +770.5,83.64080000000001,1608.5634,100,1237.9115218171034,1237.9115218171034,527.3857102286628,527.3857102286628,30838.50405,6.0,953.38815,1,2,3,4,5,6 +771.0,83.5986,1607.7261,100,1238.1358444997884,1238.1358444997884,527.1196238572788,527.1196238572788,30830.107,6.0,953.6435,1,2,3,4,5,6 +771.5,83.57650000000001,1607.30575,100,1238.0172453500684,1238.0172453500684,526.9802753073361,526.9802753073361,30825.89085,6.0,953.77175,1,2,3,4,5,6 +772.0,83.5544,1606.8854,100,1237.8985834617922,1237.8985834617922,526.8409267573934,526.8409267573934,30821.6747,6.0,953.9,1,2,3,4,5,6 +772.5,83.5522,1606.8654,100,1237.8128458735976,1237.8128458735976,526.8270549560415,526.8270549560415,30821.42905,6.0,953.9047,1,2,3,4,5,6 +773.0,83.55,1606.8454,100,1237.7271037701976,1237.7271037701976,526.8131831546897,526.8131831546897,30821.1834,6.0,953.9094,1,2,3,4,5,6 +773.5,83.5488,1606.8551499999999,100,1237.8369212125128,1237.8369212125128,526.8056167175888,526.8056167175888,30821.2913,6.0,953.9067,1,2,3,4,5,6 +774.0,83.5476,1606.8649,100,1237.9467418094594,1237.9467418094594,526.7980502804878,526.7980502804878,30821.3992,6.0,953.904,1,2,3,4,5,6 +774.5,83.52369999999999,1606.4189999999999,100,1238.5295578380747,1238.5295578380747,526.6473520748935,526.6473520748935,30816.96255,6.0,954.0410999999999,1,2,3,4,5,6 +775.0,83.4998,1605.9731,100,1239.1127075034913,1239.1127075034913,526.4966538692993,526.4966538692993,30812.5259,6.0,954.1782,1,2,3,4,5,6 +775.5,83.43745,1604.7804999999998,100,1240.0363847289198,1240.0363847289198,526.1035144082617,526.1035144082617,30800.564899999998,6.0,954.54195,1,2,3,4,5,6 +776.0,83.3751,1603.5879,100,1240.9614434525415,1240.9614434525415,525.7103749472241,525.7103749472241,30788.6039,6.0,954.9057,1,2,3,4,5,6 +776.5,83.27215000000001,1601.6057,100,1242.0330142430569,1242.0330142430569,525.0612376976039,525.0612376976039,30764.208899999998,6.0,955.3734,1,2,3,4,5,6 +777.0,83.1692,1599.6235,100,1243.1072378957595,1243.1072378957595,524.4121004479836,524.4121004479836,30739.8139,6.0,955.8411,1,2,3,4,5,6 +777.5,83.0291,1596.90905,100,1243.5139909260731,1243.5139909260731,523.5287189164458,523.5287189164458,30687.9019,6.0,955.92055,1,2,3,4,5,6 +778.0,82.889,1594.1946,100,1243.922118954264,1243.922118954264,522.6453373849082,522.6453373849082,30635.9899,6.0,956.0,1,2,3,4,5,6 +778.5,82.72595,1591.0334,100,1243.9954645912196,1243.9954645912196,521.6172477438146,521.6172477438146,30572.48085,6.0,956.0,1,2,3,4,5,6 +779.0,82.5629,1587.8722,100,1244.0690999226044,1244.0690999226044,520.589158102721,520.589158102721,30508.9718,6.0,956.0,1,2,3,4,5,6 +779.5,82.394,1584.6201,100,1244.0175754423865,1244.0175754423865,519.5241820807602,519.5241820807602,30443.636899999998,6.0,956.0,1,2,3,4,5,6 +780.0,82.2251,1581.368,100,1243.9658392875167,1243.9658392875167,518.4592060587993,518.4592060587993,30378.302,6.0,956.0,1,2,3,4,5,6 +780.5,82.05385,1578.0898,100,1243.995219870853,1243.995219870853,517.379412430849,517.379412430849,30312.44295,6.0,956.0,1,2,3,4,5,6 +781.0,81.8826,1574.8116,100,1244.0247233478174,1244.0247233478174,516.2996188028987,516.2996188028987,30246.5839,6.0,956.0,1,2,3,4,5,6 +781.5,81.69915,1571.29725,100,1244.1854106682874,1244.1854106682874,515.1428997310887,515.1428997310887,30175.9799,6.0,956.0,1,2,3,4,5,6 +782.0,81.5157,1567.7829,100,1244.3468212381176,1244.3468212381176,513.9861806592787,513.9861806592787,30105.3759,6.0,956.0,1,2,3,4,5,6 +782.5,81.31049999999999,1563.837,100,1244.5506820521339,1244.5506820521339,512.6923199150136,512.6923199150136,30026.10255,6.0,956.0,1,2,3,4,5,6 +783.0,81.1053,1559.8911,100,1244.7555744199208,1244.7555744199208,511.3984591707487,511.3984591707487,29946.8292,6.0,956.0,1,2,3,4,5,6 +783.5,80.87715,1555.4980500000001,100,1244.9152554707973,1244.9152554707973,509.95989031692784,509.95989031692784,29858.5726,6.0,956.0,1,2,3,4,5,6 +784.0,80.649,1551.105,100,1245.0758399732174,1245.0758399732174,508.52132146310686,508.52132146310686,29770.316,6.0,956.0,1,2,3,4,5,6 +784.5,80.39835,1546.29645,100,1245.2635455578381,1245.2635455578381,506.94088191364267,506.94088191364267,29673.7122,6.0,956.0,1,2,3,4,5,6 +785.0,80.1477,1541.4879,100,1245.452425185002,1245.452425185002,505.36044236417865,505.36044236417865,29577.1084,6.0,956.0,1,2,3,4,5,6 +785.5,79.86885000000001,1536.13425,100,1245.7280052360836,1245.7280052360836,503.602191542842,503.602191542842,29469.552750000003,6.0,956.0,1,2,3,4,5,6 +786.0,79.59,1530.7806,100,1246.0055163211457,1246.0055163211457,501.84394072150525,501.84394072150525,29361.9971,6.0,956.0,1,2,3,4,5,6 +786.5,79.27825,1524.7747,100,1246.2512492896853,1246.2512492896853,499.878243416317,499.878243416317,29241.338450000003,6.0,956.0,1,2,3,4,5,6 +787.0,78.9665,1518.7688,100,1246.498922505113,1246.498922505113,497.91254611112873,497.91254611112873,29120.6798,6.0,956.0,1,2,3,4,5,6 +787.5,78.6274,1512.2341000000001,100,1246.6209598562336,1246.6209598562336,495.774397093681,495.774397093681,28989.3974,6.0,956.0,1,2,3,4,5,6 +788.0,78.2883,1505.6994,100,1246.7440543989333,1246.7440543989333,493.6362480762334,493.6362480762334,28858.115,6.0,956.0,1,2,3,4,5,6 +788.5,77.9311,1498.8253,100,1246.7888759429802,1246.7888759429802,491.3839719658461,491.3839719658461,28720.013899999998,6.0,956.0,1,2,3,4,5,6 +789.0,77.5739,1491.9512,100,1246.8341102613122,1246.8341102613122,489.13169585545876,489.13169585545876,28581.9128,6.0,956.0,1,2,3,4,5,6 +789.5,77.2031,1484.8172,100,1246.8560410916139,1246.8560410916139,486.7936667912607,486.7936667912607,28438.5899,6.0,956.0,1,2,3,4,5,6 +790.0,76.8323,1477.6832,100,1246.878183602469,1246.878183602469,484.4556377270624,484.4556377270624,28295.267,6.0,956.0,1,2,3,4,5,6 +790.5,76.4526,1470.36655,100,1246.8053855722367,1246.8053855722367,482.0614909210321,482.0614909210321,28148.27575,6.0,956.0,1,2,3,4,5,6 +791.0,76.0729,1463.0499,100,1246.73186083349,1246.73186083349,479.66734411500175,479.66734411500175,28001.2845,6.0,956.0,1,2,3,4,5,6 +791.5,75.50995,1488.4607999999998,100,814.403912451273,814.403912451273,476.11773931001153,476.11773931001153,20436.01145,3.0,688.8941,1,2,3,4,5,6 +792.0,74.947,1513.8717,100,375.58126732224105,375.58126732224105,472.56813450502136,472.56813450502136,12870.7384,0.0,421.7882,1,2,3,4,5,6 +792.5,74.10905,1635.1417000000001,100,130.41586987014406,130.41586987014406,467.28455453105994,467.28455453105994,9013.2385,0.0,271.3084,1,2,3,4,5,6 +793.0,73.2711,1756.4117,100,-120.35709577172992,-120.35709577172992,462.00097455709863,462.00097455709863,5155.7386,0.0,120.8286,1,2,3,4,5,6 +793.5,72.59155000000001,1839.92985,100,447.12454255350644,447.12454255350644,457.7161642804647,457.7161642804647,13997.2218,2.5,345.17314999999996,1,2,3,4,5,6 +794.0,71.912,1923.448,100,1025.3312934419846,1025.3312934419846,453.4313540038306,453.4313540038306,22838.705,5.0,569.5177,1,2,3,4,5,6 +794.5,71.61160000000001,1901.0846999999999,100,1319.3751140038762,1319.3751140038762,451.5372225828891,451.5372225828891,28085.691300000002,5.0,718.5529,1,2,3,4,5,6 +795.0,71.3112,1878.7214,100,1615.896266701444,1615.896266701444,449.6430911619475,449.6430911619475,33332.6776,5.0,867.5881,1,2,3,4,5,6 +795.5,71.1356,1874.1096499999999,100,1619.4037504428163,1619.4037504428163,448.53586919950624,448.53586919950624,33313.241500000004,5.0,869.30565,1,2,3,4,5,6 +796.0,70.96,1869.4979,100,1622.9285936583997,1622.9285936583997,447.428647237065,447.428647237065,33293.8054,5.0,871.0232,1,2,3,4,5,6 +796.5,70.77895,1864.7289500000002,100,1626.3687036470592,1626.3687036470592,446.2870610394569,446.2870610394569,33261.69765,5.0,872.6685,1,2,3,4,5,6 +797.0,70.5979,1859.96,100,1629.8264581241085,1629.8264581241085,445.14547484184885,445.14547484184885,33229.5899,5.0,874.3138,1,2,3,4,5,6 +797.5,70.41055,1855.01575,100,1633.3168608255442,1633.3168608255442,443.96416484946064,443.96416484946064,33194.0115,5.0,876.01955,1,2,3,4,5,6 +798.0,70.2232,1850.0715,100,1636.8258877692845,1636.8258877692845,442.7828548570725,442.7828548570725,33158.4331,5.0,877.7253,1,2,3,4,5,6 +798.5,70.03460000000001,1845.0898,100,1640.1985225588494,1640.1985225588494,441.5936631593709,441.5936631593709,33122.525850000005,5.0,879.444,1,2,3,4,5,6 +799.0,69.846,1840.1081,100,1643.5893711021388,1643.5893711021388,440.4044714616692,440.4044714616692,33086.6186,5.0,881.1627,1,2,3,4,5,6 +799.5,69.6636,1835.2902,100,1646.6877812516152,1646.6877812516152,439.2543730223225,439.2543730223225,33049.270950000006,5.0,882.8249000000001,1,2,3,4,5,6 +800.0,69.4812,1830.4723,100,1649.8024591112417,1649.8024591112417,438.10427458297585,438.10427458297585,33011.9233,5.0,884.4871,1,2,3,4,5,6 +800.5,69.31255,1826.022,100,1652.5170925611596,1652.5170925611596,437.0408749020777,437.0408749020777,32974.1368,5.0,886.02245,1,2,3,4,5,6 +801.0,69.1439,1821.5717,100,1655.2449686234072,1655.2449686234072,435.9774752211796,435.9774752211796,32936.3503,5.0,887.5578,1,2,3,4,5,6 +801.5,68.99155,1817.5675999999999,100,1657.6982409729887,1657.6982409729887,435.0168529775695,435.0168529775695,32902.35205,5.0,888.9392,1,2,3,4,5,6 +802.0,68.8392,1813.5635,100,1660.1623721368055,1660.1623721368055,434.0562307339595,434.0562307339595,32868.3538,5.0,890.3206,1,2,3,4,5,6 +802.5,68.697,1809.83585,100,1662.6470873837286,1662.6470873837286,433.15960793749514,433.15960793749514,32836.70325,5.0,891.60665,1,2,3,4,5,6 +803.0,68.5548,1806.1082,100,1665.142110486793,1665.142110486793,432.2629851410308,432.2629851410308,32805.0527,5.0,892.8927,1,2,3,4,5,6 +803.5,68.41435,1802.4081,100,1667.6380702294184,1667.6380702294184,431.37739673200537,431.37739673200537,32772.2521,5.0,894.13235,1,2,3,4,5,6 +804.0,68.2739,1798.708,100,1670.1442991245558,1670.1442991245558,430.4918083229799,430.4918083229799,32739.4515,5.0,895.372,1,2,3,4,5,6 +804.5,68.13845,1795.1066,100,1672.0944794018649,1672.0944794018649,429.6377467352085,429.6377467352085,32703.88395,5.0,896.48145,1,2,3,4,5,6 +805.0,68.003,1791.5052,100,1674.0524285105066,1674.0524285105066,428.78368514743704,428.78368514743704,32668.3164,5.0,897.5909,1,2,3,4,5,6 +805.5,67.89054999999999,1788.50365,100,1675.1446221013086,1675.1446221013086,428.07464693743407,428.07464693743407,32638.3275,5.0,898.5064,1,2,3,4,5,6 +806.0,67.7781,1785.5021,100,1676.2404397880732,1676.2404397880732,427.36560872743115,427.36560872743115,32608.3386,5.0,899.4219,1,2,3,4,5,6 +806.5,67.7076,1783.63105,100,1676.3851415646104,1676.3851415646104,426.92108054774945,426.92108054774945,32589.64475,5.0,899.99255,1,2,3,4,5,6 +807.0,67.6371,1781.76,100,1676.530144994389,1676.530144994389,426.4765523680678,426.4765523680678,32570.9509,5.0,900.5632,1,2,3,4,5,6 +807.5,67.61605,1781.2133,100,1675.8722179719164,1675.8722179719164,426.3438244505884,426.3438244505884,32565.466500000002,5.0,900.7293500000001,1,2,3,4,5,6 +808.0,67.595,1780.6666,100,1675.2138811746431,1675.2138811746431,426.21109653310896,426.21109653310896,32559.9821,5.0,900.8955,1,2,3,4,5,6 +808.5,67.62115,1781.36665,100,1673.8966211458987,1673.8966211458987,426.3759818082675,426.3759818082675,32566.65255,5.0,900.67335,1,2,3,4,5,6 +809.0,67.6473,1782.0667,100,1672.5803795273423,1672.5803795273423,426.540867083426,426.540867083426,32573.323,5.0,900.4512,1,2,3,4,5,6 +809.5,67.7149,1783.85545,100,1670.7109246414013,1670.7109246414013,426.9671097067803,426.9671097067803,32590.82285,5.0,899.8957,1,2,3,4,5,6 +810.0,67.7825,1785.6442,100,1668.8451985984584,1668.8451985984584,427.39335233013475,427.39335233013475,32608.3227,5.0,899.3402,1,2,3,4,5,6 +810.5,67.88714999999999,1788.4018999999998,100,1666.4400254540078,1666.4400254540078,428.0532086989813,428.0532086989813,32635.5723,5.0,898.49105,1,2,3,4,5,6 +811.0,67.9918,1791.1596,100,1664.042256183834,1664.042256183834,428.71306506782804,428.71306506782804,32662.8219,5.0,897.6419,1,2,3,4,5,6 +811.5,68.13159999999999,1794.8465,100,1661.0753670690258,1661.0753670690258,429.59455499009033,429.59455499009033,32699.08195,5.0,896.50205,1,2,3,4,5,6 +812.0,68.2714,1798.5334,100,1658.1206286087588,1658.1206286087588,430.47604491235285,430.47604491235285,32735.342,5.0,895.3622,1,2,3,4,5,6 +812.5,68.44550000000001,1803.1198,100,1654.3595781899467,1654.3595781899467,431.57380882841795,431.57380882841795,32775.81605,5.0,893.8207,1,2,3,4,5,6 +813.0,68.6196,1807.7062,100,1650.617612664603,1650.617612664603,432.6715727444829,432.6715727444829,32816.2901,5.0,892.2792,1,2,3,4,5,6 +813.5,68.8285,1813.2028500000001,100,1646.0927304096415,1646.0927304096415,433.98876333647587,433.98876333647587,32862.894,5.0,890.3811,1,2,3,4,5,6 +814.0,69.0374,1818.6995,100,1641.5952318018926,1641.5952318018926,435.30595392846897,435.30595392846897,32909.4979,5.0,888.483,1,2,3,4,5,6 +814.5,69.2821,1825.1586,100,1636.4150651611308,1636.4150651611308,436.84887656064075,436.84887656064075,32963.8629,5.0,886.2536,1,2,3,4,5,6 +815.0,69.5268,1831.6177,100,1631.2713617770414,1631.2713617770414,438.3917991928124,438.3917991928124,33018.2279,5.0,884.0242,1,2,3,4,5,6 +815.5,69.8024,1838.8997,100,1625.7336667507132,1625.7336667507132,440.1295575803341,440.1295575803341,33073.10495,5.0,881.51325,1,2,3,4,5,6 +816.0,70.078,1846.1817,100,1620.2395285824368,1620.2395285824368,441.86731596785575,441.86731596785575,33127.982,5.0,879.0023,1,2,3,4,5,6 +816.5,70.3725,1853.9651,100,1614.6352008099757,1614.6352008099757,443.72424573971756,443.72424573971756,33183.63885,5.0,876.3206,1,2,3,4,5,6 +817.0,70.667,1861.7485,100,1609.077584360451,1609.077584360451,445.58117551157943,445.58117551157943,33239.2957,5.0,873.6389,1,2,3,4,5,6 +817.5,70.96535,1869.62615,100,1603.7235797047433,1603.7235797047433,447.46238093580683,447.46238093580683,33286.98545,5.0,870.92605,1,2,3,4,5,6 +818.0,71.2637,1877.5038,100,1598.4144048091807,1598.4144048091807,449.34358636003424,449.34358636003424,33334.6752,5.0,868.2132,1,2,3,4,5,6 +818.5,71.5599,1885.2639,100,1593.0078536303154,1593.0078536303154,451.2112352511224,451.2112352511224,33375.364050000004,5.0,865.5405000000001,1,2,3,4,5,6 +819.0,71.8561,1893.024,100,1587.6458754371583,1587.6458754371583,453.07888414221065,453.07888414221065,33416.0529,5.0,862.8678,1,2,3,4,5,6 +819.5,72.1753,1901.4361,100,1580.883681869005,1580.883681869005,455.09155641106736,455.09155641106736,33460.04565,5.0,859.96775,1,2,3,4,5,6 +820.0,72.4945,1909.8482,100,1574.1810374304255,1574.1810374304255,457.10422867992406,457.10422867992406,33504.0384,5.0,857.0677,1,2,3,4,5,6 +820.5,72.83924999999999,1918.9521,100,1567.7840467055878,1567.7840467055878,459.2780030053888,459.2780030053888,33551.6918,5.0,853.93025,1,2,3,4,5,6 +821.0,73.184,1928.056,100,1561.4473249617404,1561.4473249617404,461.45177733085353,461.45177733085353,33599.3452,5.0,850.7928,1,2,3,4,5,6 +821.5,73.5384,1937.35655,100,1554.6646044923468,1554.6646044923468,463.6863984213385,463.6863984213385,33648.0257,5.0,847.5875000000001,1,2,3,4,5,6 +822.0,73.8928,1946.6571,100,1547.946945737609,1547.946945737609,465.92101951182354,465.92101951182354,33696.7062,5.0,844.3822,1,2,3,4,5,6 +822.5,74.27475,1956.6751,100,1540.1341866650512,1540.1341866650512,468.32935338741817,468.32935338741817,33749.097200000004,5.0,840.9285500000001,1,2,3,4,5,6 +823.0,74.6567,1966.6931,100,1532.4013690666745,1532.4013690666745,470.7376872630129,470.7376872630129,33801.4882,5.0,837.4749,1,2,3,4,5,6 +823.5,75.0903,1978.0904500000001,100,1523.189983939337,1523.189983939337,473.47169320216153,473.47169320216153,33861.27255,5.0,833.5501,1,2,3,4,5,6 +824.0,75.5239,1989.4878,100,1514.0843681536571,1514.0843681536571,476.2056991413103,476.2056991413103,33921.0569,5.0,829.6253,1,2,3,4,5,6 +824.5,76.0235,2002.66155,100,1503.7446772379596,1503.7446772379596,479.355859121012,479.355859121012,33993.734,5.0,825.1942,1,2,3,4,5,6 +825.0,76.5231,2015.8353,100,1493.5399967852845,1493.5399967852845,482.50601910071373,482.50601910071373,34066.4111,5.0,820.7631,1,2,3,4,5,6 +825.5,77.0824,2030.6258,100,1482.6878277920766,1482.6878277920766,486.03260932618866,486.03260932618866,34150.4182,5.0,815.8822,1,2,3,4,5,6 +826.0,77.6417,2045.4163,100,1471.9920082378414,1471.9920082378414,489.5591995516633,489.5591995516633,34234.4253,5.0,811.0013,1,2,3,4,5,6 +826.5,78.2321,2061.0401,100,1461.3553244895638,1461.3553244895638,493.2818866053382,493.2818866053382,34323.1136,5.0,805.8461500000001,1,2,3,4,5,6 +827.0,78.8225,2076.6639,100,1450.877983519934,1450.877983519934,497.004573659013,497.004573659013,34411.8019,5.0,800.691,1,2,3,4,5,6 +827.5,79.4058,2092.0825999999997,100,1441.1212665195742,1441.1212665195742,500.682492626507,500.682492626507,34499.3388,5.0,795.60385,1,2,3,4,5,6 +828.0,79.9891,2107.5013,100,1431.506846232799,1431.506846232799,504.36041159400105,504.36041159400105,34586.8757,5.0,790.5167,1,2,3,4,5,6 +828.5,80.5338,2121.87855,100,1422.9328792382826,1422.9328792382826,507.7949435014141,507.7949435014141,34668.50405,5.0,785.77325,1,2,3,4,5,6 +829.0,81.0785,2136.2558,100,1414.4741151599987,1414.4741151599987,511.2294754088273,511.2294754088273,34750.1324,5.0,781.0298,1,2,3,4,5,6 +829.5,81.5685,2149.1582,100,1407.0061830486031,1407.0061830486031,514.3191038917213,514.3191038917213,34823.3854,5.0,776.7728999999999,1,2,3,4,5,6 +830.0,82.0585,2162.0606,100,1399.6274382056704,1399.6274382056704,517.4087323746152,517.4087323746152,34896.6384,5.0,772.516,1,2,3,4,5,6 +830.5,82.49645,2173.5663999999997,100,1392.8299721503167,1392.8299721503167,520.170166648255,520.170166648255,34973.6912,5.0,768.71975,1,2,3,4,5,6 +831.0,82.9344,2185.0722,100,1386.1042965765712,1386.1042965765712,522.9316009218946,522.9316009218946,35050.744,5.0,764.9235,1,2,3,4,5,6 +831.5,83.28215,2188.87115,100,1252.5337686527064,1252.5337686527064,525.1242913401118,525.1242913401118,32144.486149999997,5.0,689.31975,1,2,3,4,5,6 +832.0,83.6299,2192.6701,100,1120.0740671458414,1120.0740671458414,527.316981758329,527.316981758329,29238.2283,5.0,613.716,1,2,3,4,5,6 +832.5,83.6435,2104.81785,100,501.06395474842634,501.06395474842634,527.4027347121399,527.4027347121399,14627.8441,2.5,262.244,1,2,3,4,5,6 +833.0,83.6571,2016.9656,100,-117.74489469513048,-117.74489469513048,527.4884876659509,527.4884876659509,17.4599,0.0,-89.228,1,2,3,4,5,6 +833.5,83.4354,1880.8308,100,-26.29978027312148,-26.29978027312148,526.0905884115475,526.0905884115475,1983.3525000000002,0.0,-18.340549999999993,1,2,3,4,5,6 +834.0,83.2137,1744.696,100,65.63259482513097,65.63259482513097,524.6926891571443,524.6926891571443,3949.2451,0.0,52.5469,1,2,3,4,5,6 +834.5,83.22745,1676.9315,100,587.445669703926,587.445669703926,524.7793879155928,524.7793879155928,15766.60195,3.0,451.65675,1,2,3,4,5,6 +835.0,83.2412,1609.167,100,1109.086355674834,1109.086355674834,524.8660866740414,524.8660866740414,27583.9588,6.0,850.7666,1,2,3,4,5,6 +835.5,83.45775,1609.2754,100,1159.5856464857968,1159.5856464857968,526.231513302553,526.231513302553,28962.723299999998,6.0,894.10625,1,2,3,4,5,6 +836.0,83.6743,1609.3838,100,1209.82355186718,1209.82355186718,527.5969399310648,527.5969399310648,30341.4878,6.0,937.4459,1,2,3,4,5,6 +836.5,83.80965,1612.1802,100,1061.592678122388,1061.592678122388,528.4503709824111,528.4503709824111,27118.4374,6.0,833.1373000000001,1,2,3,4,5,6 +837.0,83.945,1614.9766,100,913.8398089939843,913.8398089939843,529.3038020337573,529.3038020337573,23895.387,6.0,728.8287,1,2,3,4,5,6 +837.5,83.9725,1615.2406999999998,100,882.9515367292863,882.9515367292863,529.4771995506545,529.4771995506545,23168.627999999997,6.0,706.99995,1,2,3,4,5,6 +838.0,84.0,1615.5048,100,852.0834889285713,852.0834889285713,529.6505970675516,529.6505970675516,22441.869,6.0,685.1712,1,2,3,4,5,6 +838.5,84.0,1615.5048,100,890.8763387142856,890.8763387142856,529.6505970675516,529.6505970675516,23280.7963,6.0,712.18565,1,2,3,4,5,6 +839.0,84.0,1615.5048,100,929.6691884999999,929.6691884999999,529.6505970675516,529.6505970675516,24119.7236,6.0,739.2001,1,2,3,4,5,6 +839.5,84.0,1615.5048,100,969.3035376428571,969.3035376428571,529.6505970675516,529.6505970675516,25009.7494,6.0,766.80245,1,2,3,4,5,6 +840.0,84.0,1615.5048,100,1008.9378867857142,1008.9378867857142,529.6505970675516,529.6505970675516,25899.7752,6.0,794.4048,1,2,3,4,5,6 +840.5,84.0,1615.5048,100,1031.2376197499998,1031.2376197499998,529.6505970675516,529.6505970675516,26409.2947,6.0,809.9394,1,2,3,4,5,6 +841.0,84.0,1615.5048,100,1053.5373527142856,1053.5373527142856,529.6505970675516,529.6505970675516,26918.8142,6.0,825.474,1,2,3,4,5,6 +841.5,84.0,1615.5048,100,1047.8926327499998,1047.8926327499998,529.6505970675516,529.6505970675516,26789.82965,6.0,821.5414000000001,1,2,3,4,5,6 +842.0,84.0,1615.5048,100,1042.247912785714,1042.247912785714,529.6505970675516,529.6505970675516,26660.8451,6.0,817.6088,1,2,3,4,5,6 +842.5,84.0,1615.5048,100,1027.0747684285714,1027.0747684285714,529.6505970675516,529.6505970675516,26314.144399999997,6.0,807.03835,1,2,3,4,5,6 +843.0,84.0,1615.5048,100,1011.9016240714285,1011.9016240714285,529.6505970675516,529.6505970675516,25967.4437,6.0,796.4679,1,2,3,4,5,6 +843.5,84.0,1615.5048,100,1008.8359688571427,1008.8359688571427,529.6505970675516,529.6505970675516,25897.3908,6.0,794.33205,1,2,3,4,5,6 +844.0,84.0,1615.5048,100,1005.7703136428571,1005.7703136428571,529.6505970675516,529.6505970675516,25827.3379,6.0,792.1962,1,2,3,4,5,6 +844.5,84.0,1615.5048,100,1019.6437789285714,1019.6437789285714,529.6505970675516,529.6505970675516,26144.3401,6.0,801.8612,1,2,3,4,5,6 +845.0,84.0,1615.5048,100,1033.5172442142855,1033.5172442142855,529.6505970675516,529.6505970675516,26461.3423,6.0,811.5262,1,2,3,4,5,6 +845.5,84.0,1615.5048,100,1045.4308187142856,1045.4308187142856,529.6505970675516,529.6505970675516,26733.576800000003,6.0,819.8263,1,2,3,4,5,6 +846.0,84.0,1615.5048,100,1057.3443932142857,1057.3443932142857,529.6505970675516,529.6505970675516,27005.8113,6.0,828.1264,1,2,3,4,5,6 +846.5,84.0,1615.5048,100,1040.5870113214282,1040.5870113214282,529.6505970675516,529.6505970675516,26622.91255,6.0,816.4522999999999,1,2,3,4,5,6 +847.0,84.0,1615.5048,100,1023.8296294285714,1023.8296294285714,529.6505970675516,529.6505970675516,26240.0138,6.0,804.7782,1,2,3,4,5,6 +847.5,84.0,1615.5048,100,986.7382678928572,986.7382678928572,529.6505970675516,529.6505970675516,25401.2968,6.0,778.9449,1,2,3,4,5,6 +848.0,84.0,1615.5048,100,949.6469063571427,949.6469063571427,529.6505970675516,529.6505970675516,24562.5798,6.0,753.1116,1,2,3,4,5,6 +848.5,84.0,1615.5048,100,929.1447170357142,929.1447170357142,529.6505970675516,529.6505970675516,24108.490700000002,6.0,738.83465,1,2,3,4,5,6 +849.0,84.0,1615.5048,100,908.6425277142855,908.6425277142855,529.6505970675516,529.6505970675516,23654.4016,6.0,724.5577,1,2,3,4,5,6 +849.5,84.0,1615.5048,100,919.6492130357143,919.6492130357143,529.6505970675516,529.6505970675516,23897.11565,6.0,732.22215,1,2,3,4,5,6 +850.0,84.0,1615.5048,100,930.6558983571429,930.6558983571429,529.6505970675516,529.6505970675516,24139.8297,6.0,739.8866,1,2,3,4,5,6 +850.5,84.0,1615.5048,100,961.1243983928572,961.1243983928572,529.6505970675516,529.6505970675516,24822.2218,6.0,761.10505,1,2,3,4,5,6 +851.0,84.0,1615.5048,100,991.5928984285714,991.5928984285714,529.6505970675516,529.6505970675516,25504.6139,6.0,782.3235,1,2,3,4,5,6 +851.5,84.0,1615.5048,100,1028.1760232142856,1028.1760232142856,529.6505970675516,529.6505970675516,26331.1918,6.0,807.8077499999999,1,2,3,4,5,6 +852.0,84.0,1615.5048,100,1064.7591479999999,1064.7591479999999,529.6505970675516,529.6505970675516,27157.7697,6.0,833.292,1,2,3,4,5,6 +852.5,84.0,1615.5048,100,1098.3469679999998,1098.3469679999998,529.6505970675516,529.6505970675516,27889.91615,6.0,856.69145,1,2,3,4,5,6 +853.0,84.0,1615.5048,100,1131.9347879999998,1131.9347879999998,529.6505970675516,529.6505970675516,28622.0626,6.0,880.0909,1,2,3,4,5,6 +853.5,84.0,1615.5048,100,1152.7941410357141,1152.7941410357141,529.6505970675516,529.6505970675516,29111.38095,6.0,894.62305,1,2,3,4,5,6 +854.0,84.0,1615.5048,100,1173.6534940714284,1173.6534940714284,529.6505970675516,529.6505970675516,29600.6993,6.0,909.1552,1,2,3,4,5,6 +854.5,84.0,1615.5048,100,1178.2244680714284,1178.2244680714284,529.6505970675516,529.6505970675516,29707.91905,6.0,912.3395,1,2,3,4,5,6 +855.0,84.0,1615.5048,100,1182.7954420714286,1182.7954420714286,529.6505970675516,529.6505970675516,29815.1388,6.0,915.5238,1,2,3,4,5,6 +855.5,84.0,1615.5048,100,1179.2819793214285,1179.2819793214285,529.6505970675516,529.6505970675516,29732.7228,6.0,913.0761500000001,1,2,3,4,5,6 +856.0,84.0,1615.5048,100,1175.7685165714286,1175.7685165714286,529.6505970675516,529.6505970675516,29650.3068,6.0,910.6285,1,2,3,4,5,6 +856.5,84.0,1615.5048,100,1168.780374,1168.780374,529.6505970675516,529.6505970675516,29486.38295,6.0,905.7601500000001,1,2,3,4,5,6 +857.0,84.0,1615.5048,100,1161.7922314285715,1161.7922314285715,529.6505970675516,529.6505970675516,29322.4591,6.0,900.8918,1,2,3,4,5,6 +857.5,84.0,1615.5048,100,1149.7045847142856,1149.7045847142856,529.6505970675516,529.6505970675516,29041.67615,6.0,892.4708,1,2,3,4,5,6 +858.0,84.0,1615.5048,100,1137.616938,1137.616938,529.6505970675516,529.6505970675516,28760.8932,6.0,884.0498,1,2,3,4,5,6 +858.5,84.0,1615.5048,100,1108.7006570357141,1108.7006570357141,529.6505970675516,529.6505970675516,28126.963499999998,6.0,863.9047,1,2,3,4,5,6 +859.0,84.0,1615.5048,100,1079.7843760714284,1079.7843760714284,529.6505970675516,529.6505970675516,27493.0338,6.0,843.7596,1,2,3,4,5,6 +859.5,84.0,1615.5048,100,1075.0402317857142,1075.0402317857142,529.6505970675516,529.6505970675516,27397.392050000002,6.0,840.45445,1,2,3,4,5,6 +860.0,84.0,1615.5048,100,1070.2960874999999,1070.2960874999999,529.6505970675516,529.6505970675516,27301.7503,6.0,837.1493,1,2,3,4,5,6 +860.5,84.0,1615.5048,100,1070.3957506071429,1070.3957506071429,529.6505970675516,529.6505970675516,27302.42785,6.0,837.2188000000001,1,2,3,4,5,6 +861.0,84.0,1615.5048,100,1070.4954137142856,1070.4954137142856,529.6505970675516,529.6505970675516,27303.1054,6.0,837.2883,1,2,3,4,5,6 +861.5,84.0,1615.5048,100,1084.6421633571429,1084.6421633571429,529.6505970675516,529.6505970675516,27590.4104,6.0,847.1439,1,2,3,4,5,6 +862.0,84.0,1615.5048,100,1098.7889129999999,1098.7889129999999,529.6505970675516,529.6505970675516,27877.7154,6.0,856.9995,1,2,3,4,5,6 +862.5,84.0,1615.5048,100,1105.0843744285712,1105.0843744285712,529.6505970675516,529.6505970675516,28011.132100000003,6.0,861.3851500000001,1,2,3,4,5,6 +863.0,84.0,1615.5048,100,1111.3798358571428,1111.3798358571428,529.6505970675516,529.6505970675516,28144.5488,6.0,865.7708,1,2,3,4,5,6 +863.5,84.0,1615.5048,100,1091.1644598214284,1091.1644598214284,529.6505970675516,529.6505970675516,27717.1194,6.0,851.6875,1,2,3,4,5,6 +864.0,84.0,1615.5048,100,1070.9490837857143,1070.9490837857143,529.6505970675516,529.6505970675516,27289.69,6.0,837.6042,1,2,3,4,5,6 +864.5,84.0,1615.5048,100,1031.9605155,1031.9605155,529.6505970675516,529.6505970675516,26414.0924,6.0,810.44465,1,2,3,4,5,6 +865.0,84.0,1615.5048,100,992.9719472142856,992.9719472142856,529.6505970675516,529.6505970675516,25538.4948,6.0,783.2851,1,2,3,4,5,6 +865.5,84.0,1615.5048,100,948.7219786071428,948.7219786071428,529.6505970675516,529.6505970675516,24550.4579,6.0,752.4691,1,2,3,4,5,6 +866.0,84.0,1615.5048,100,904.4720099999998,904.4720099999998,529.6505970675516,529.6505970675516,23562.421,6.0,721.6531,1,2,3,4,5,6 +866.5,84.0,1615.5048,100,868.836812142857,868.836812142857,529.6505970675516,529.6505970675516,22813.22745,6.0,696.8379,1,2,3,4,5,6 +867.0,84.0,1615.5048,100,833.2016142857142,833.2016142857142,529.6505970675516,529.6505970675516,22064.0339,6.0,672.0227,1,2,3,4,5,6 +867.5,84.0,1615.5048,100,817.1793041785713,817.1793041785713,529.6505970675516,529.6505970675516,21749.98565,6.0,660.8649499999999,1,2,3,4,5,6 +868.0,84.0,1615.5048,100,801.1569940714286,801.1569940714286,529.6505970675516,529.6505970675516,21435.9374,6.0,649.7072,1,2,3,4,5,6 +868.5,84.0,1615.5048,100,807.547158,807.547158,529.6505970675516,529.6505970675516,21563.99165,6.0,654.1572,1,2,3,4,5,6 +869.0,84.0,1615.5048,100,813.9373219285714,813.9373219285714,529.6505970675516,529.6505970675516,21692.0459,6.0,658.6072,1,2,3,4,5,6 +869.5,84.0,1615.5048,100,828.3934330714286,828.3934330714286,529.6505970675516,529.6505970675516,21970.39165,6.0,668.67425,1,2,3,4,5,6 +870.0,84.0,1615.5048,100,842.8495442142857,842.8495442142857,529.6505970675516,529.6505970675516,22248.7374,6.0,678.7413,1,2,3,4,5,6 +870.5,84.0,1615.5048,100,853.4354798571428,853.4354798571428,529.6505970675516,529.6505970675516,22460.0922,6.0,686.11285,1,2,3,4,5,6 +871.0,84.0,1615.5048,100,864.0214155,864.0214155,529.6505970675516,529.6505970675516,22671.447,6.0,693.4844,1,2,3,4,5,6 +871.5,84.0,1615.5048,100,878.2655734285713,878.2655734285713,529.6505970675516,529.6505970675516,22985.03695,6.0,703.40365,1,2,3,4,5,6 +872.0,84.0,1615.5048,100,892.5097313571428,892.5097313571428,529.6505970675516,529.6505970675516,23298.6269,6.0,713.3229,1,2,3,4,5,6 +872.5,84.0,1615.5048,100,904.7340202499998,904.7340202499998,529.6505970675516,529.6505970675516,23568.199,6.0,721.83555,1,2,3,4,5,6 +873.0,84.0,1615.5048,100,916.9583091428569,916.9583091428569,529.6505970675516,529.6505970675516,23837.7711,6.0,730.3482,1,2,3,4,5,6 +873.5,84.0,1615.5048,100,917.0575212857143,917.0575212857143,529.6505970675516,529.6505970675516,23839.960850000003,6.0,730.4173000000001,1,2,3,4,5,6 +874.0,84.0,1615.5048,100,917.1567334285712,917.1567334285712,529.6505970675516,529.6505970675516,23842.1506,6.0,730.4864,1,2,3,4,5,6 +874.5,84.0,1615.5048,100,923.1058542857141,923.1058542857141,529.6505970675516,529.6505970675516,23973.3431,6.0,734.62925,1,2,3,4,5,6 +875.0,84.0,1615.5048,100,929.054975142857,929.054975142857,529.6505970675516,529.6505970675516,24104.5356,6.0,738.7721,1,2,3,4,5,6 +875.5,84.0,1615.5048,100,954.3919525714285,954.3919525714285,529.6505970675516,529.6505970675516,24670.6003,6.0,756.4167,1,2,3,4,5,6 +876.0,84.0,1615.5048,100,979.7289299999999,979.7289299999999,529.6505970675516,529.6505970675516,25236.665,6.0,774.0613,1,2,3,4,5,6 +876.5,84.0,1615.5048,100,1021.1982528214285,1021.1982528214285,529.6505970675516,529.6505970675516,26173.7273,6.0,802.94805,1,2,3,4,5,6 +877.0,84.0,1615.5048,100,1062.6675756428572,1062.6675756428572,529.6505970675516,529.6505970675516,27110.7896,6.0,831.8348,1,2,3,4,5,6 +877.5,84.0,1615.5048,100,1103.4297864642856,1103.4297864642856,529.6505970675516,529.6505970675516,28010.1921,6.0,860.23255,1,2,3,4,5,6 +878.0,84.0,1615.5048,100,1144.1919972857143,1144.1919972857143,529.6505970675516,529.6505970675516,28909.5946,6.0,888.6303,1,2,3,4,5,6 +878.5,84.0,1615.5048,100,1163.839609285714,1163.839609285714,529.6505970675516,529.6505970675516,29370.48865,6.0,902.31825,1,2,3,4,5,6 +879.0,84.0,1615.5048,100,1183.487221285714,1183.487221285714,529.6505970675516,529.6505970675516,29831.3827,6.0,916.0062,1,2,3,4,5,6 +879.5,84.0,1615.5048,100,1187.2902031071426,1187.2902031071426,529.6505970675516,529.6505970675516,29918.59165,6.0,918.65555,1,2,3,4,5,6 +880.0,84.0,1615.5048,100,1191.0931849285714,1191.0931849285714,529.6505970675516,529.6505970675516,30005.8006,6.0,921.3049,1,2,3,4,5,6 +880.5,83.99945,1615.4993,100,1202.2709913338717,1202.2709913338717,529.6471291172137,529.6471291172137,30231.7827,6.0,929.0813,1,2,3,4,5,6 +881.0,83.9989,1615.4938,100,1213.4489441171252,1213.4489441171252,529.6436611668759,529.6436611668759,30457.7648,6.0,936.8577,1,2,3,4,5,6 +881.5,83.99115,1615.35825,100,1223.1976802198803,1223.1976802198803,529.5947945939321,529.5947945939321,30663.10435,6.0,943.54885,1,2,3,4,5,6 +882.0,83.9834,1615.2227,100,1232.9482155521207,1232.9482155521207,529.5459280209883,529.5459280209883,30868.4439,6.0,950.24,1,2,3,4,5,6 +882.5,83.9653,1614.8661,100,1233.9480184433332,1233.9480184433332,529.4318009280487,529.4318009280487,30882.7526,6.0,950.8910000000001,1,2,3,4,5,6 +883.0,83.9472,1614.5095,100,1234.948252472983,1234.948252472983,529.3176738351092,529.3176738351092,30897.0613,6.0,951.542,1,2,3,4,5,6 +883.5,83.9197,1613.9729,100,1235.3132150377085,1235.3132150377085,529.1442763182121,529.1442763182121,30892.218249999998,6.0,951.72195,1,2,3,4,5,6 +884.0,83.8922,1613.4363,100,1235.6784168730824,1235.6784168730824,528.9708788013149,528.9708788013149,30887.3752,6.0,951.9019,1,2,3,4,5,6 +884.5,83.85905,1612.79905,100,1235.9478028787591,1235.9478028787591,528.7618559764007,528.7618559764007,30880.98405,6.0,952.09625,1,2,3,4,5,6 +885.0,83.8259,1612.1618,100,1236.2174019485624,1236.2174019485624,528.5528331514865,528.5528331514865,30874.5929,6.0,952.2906,1,2,3,4,5,6 +885.5,83.787,1611.43595,100,1236.6647526943316,1236.6647526943316,528.3075544821304,528.3075544821304,30867.3133,6.0,952.512,1,2,3,4,5,6 +886.0,83.7481,1610.7101,100,1237.112519018342,1237.112519018342,528.062275812774,528.062275812774,30860.0337,6.0,952.7334,1,2,3,4,5,6 +886.5,83.68924999999999,1609.5915,100,1237.8887561664135,1237.8887561664135,527.6912051266141,527.6912051266141,30848.815199999997,6.0,953.0745999999999,1,2,3,4,5,6 +887.0,83.6304,1608.4729,100,1238.6660857774207,1238.6660857774207,527.3201344404544,527.3201344404544,30837.5967,6.0,953.4158,1,2,3,4,5,6 +887.5,83.5446,1606.80525,100,1239.6294106261805,1239.6294106261805,526.7791341877354,526.7791341877354,30820.87145,6.0,953.9244,1,2,3,4,5,6 +888.0,83.4588,1605.1376,100,1240.5947161713323,1240.5947161713323,526.2381339350164,526.2381339350164,30804.1462,6.0,954.433,1,2,3,4,5,6 +888.5,83.35634999999999,1603.1430500000001,100,1241.456444757958,1241.456444757958,525.5921493675214,525.5921493675214,30783.12595,6.0,955.01055,1,2,3,4,5,6 +889.0,83.2539,1601.1485,100,1242.3202941844165,1242.3202941844165,524.9461648000266,524.9461648000266,30762.1057,6.0,955.5881,1,2,3,4,5,6 +889.5,83.15375,1599.2005,100,1242.4544335042015,1242.4544335042015,524.3146825703086,524.3146825703086,30729.76425,6.0,955.79405,1,2,3,4,5,6 +890.0,83.0536,1597.2525,100,1242.5888963271912,1242.5888963271912,523.6832003405906,523.6832003405906,30697.4228,6.0,956.0,1,2,3,4,5,6 +890.5,82.97345,1595.696,100,1242.2670855074723,1242.2670855074723,523.1778253958886,523.1778253958886,30666.1523,6.0,956.0,1,2,3,4,5,6 +891.0,82.8933,1594.1395,100,1241.9446523663553,1241.9446523663553,522.6724504511866,522.6724504511866,30634.8818,6.0,956.0,1,2,3,4,5,6 +891.5,82.84385,1593.19225,100,1241.5958740208234,1241.5958740208234,522.3606501889843,522.3606501889843,30615.8517,6.0,956.0,1,2,3,4,5,6 +892.0,82.7944,1592.245,100,1241.246679050757,1241.246679050757,522.048849926782,522.048849926782,30596.8216,6.0,956.0,1,2,3,4,5,6 +892.5,82.7744,1591.86965,100,1240.9827754958055,1240.9827754958055,521.922742641766,521.922742641766,30589.2764,6.0,955.9998499999999,1,2,3,4,5,6 +893.0,82.7544,1591.4943,100,1240.7187443809632,1240.7187443809632,521.79663535675,521.79663535675,30581.7312,6.0,955.9997,1,2,3,4,5,6 +893.5,82.75905,1591.5814,100,1240.4554136012916,1240.4554136012916,521.8259553005162,521.8259553005162,30582.9809,6.0,955.9845499999999,1,2,3,4,5,6 +894.0,82.7637,1591.6685,100,1240.1921124116009,1240.1921124116009,521.8552752442824,521.8552752442824,30584.2306,6.0,955.9694,1,2,3,4,5,6 +894.5,82.79235,1592.2206999999999,100,1239.8860271872943,1239.8860271872943,522.035923930068,522.035923930068,30593.945050000002,6.0,955.9276,1,2,3,4,5,6 +895.0,82.821,1592.7729,100,1239.5801537291268,1239.5801537291268,522.2165726158535,522.2165726158535,30603.6595,6.0,955.8858,1,2,3,4,5,6 +895.5,82.8726,1593.7699,100,1239.3157186090455,1239.3157186090455,522.541929411195,522.541929411195,30622.343800000002,6.0,955.845,1,2,3,4,5,6 +896.0,82.9242,1594.7669,100,1239.0516125811282,1239.0516125811282,522.8672862065364,522.8672862065364,30641.0281,6.0,955.8042,1,2,3,4,5,6 +896.5,82.99735,1596.1694,100,1238.7884146662511,1238.7884146662511,523.3285236014829,523.3285236014829,30667.98875,6.0,955.7673500000001,1,2,3,4,5,6 +897.0,83.0705,1597.5719,100,1238.5256802836145,1238.5256802836145,523.7897609964291,523.7897609964291,30694.9494,6.0,955.7305,1,2,3,4,5,6 +897.5,83.1673,1599.43055,100,1237.9723217418382,1237.9723217418382,524.400120255907,524.400120255907,30725.195,6.0,955.5154,1,2,3,4,5,6 +898.0,83.2641,1601.2892,100,1237.42024983156,1237.42024983156,525.0104795153848,525.0104795153848,30755.4406,6.0,955.3003,1,2,3,4,5,6 +898.5,83.38615,1603.6394,100,1236.2259898316447,1236.2259898316447,525.7800492221954,525.7800492221954,30780.4975,6.0,954.62855,1,2,3,4,5,6 +899.0,83.5082,1605.9896,100,1235.035220732814,1235.035220732814,526.5496189290062,526.5496189290062,30805.5544,6.0,953.9568,1,2,3,4,5,6 +899.5,83.6481,1608.7391,100,1220.5462974891238,1220.5462974891238,527.4317393876936,527.4317393876936,30542.4944,6.0,943.92005,1,2,3,4,5,6 +900.0,83.788,1611.4886,100,1206.105758270874,1206.105758270874,528.3138598463811,528.3138598463811,30279.4344,6.0,933.8833,1,2,3,4,5,6 +900.5,83.87729999999999,1613.3361,100,1056.8425642456305,1056.8425642456305,528.8769288739778,528.8769288739778,27008.68495,6.0,829.1546,1,2,3,4,5,6 +901.0,83.9666,1615.1836,100,907.8968584413326,907.8968584413326,529.4399979015748,529.4399979015748,23737.9355,6.0,724.4259,1,2,3,4,5,6 +901.5,83.9833,1615.3442,100,863.0299571819635,863.0299571819635,529.5452974845632,529.5452974845632,22756.738149999997,6.0,692.9942,1,2,3,4,5,6 +902.0,84.0,1615.5048,100,818.1808958571428,818.1808958571428,529.6505970675516,529.6505970675516,21775.5408,6.0,661.5625,1,2,3,4,5,6 +902.5,84.0,1615.5048,100,812.7598541785713,812.7598541785713,529.6505970675516,529.6505970675516,21667.36685,6.0,657.7873,1,2,3,4,5,6 +903.0,84.0,1615.5048,100,807.3388124999999,807.3388124999999,529.6505970675516,529.6505970675516,21559.1929,6.0,654.0121,1,2,3,4,5,6 +903.5,84.0,1615.5048,100,794.1904977857141,794.1904977857141,529.6505970675516,529.6505970675516,21272.6583,6.0,644.856,1,2,3,4,5,6 +904.0,84.0,1615.5048,100,781.0421830714286,781.0421830714286,529.6505970675516,529.6505970675516,20986.1237,6.0,635.6999,1,2,3,4,5,6 +904.5,84.0,1615.5048,100,771.005972892857,771.005972892857,529.6505970675516,529.6505970675516,20758.71,6.0,628.7111,1,2,3,4,5,6 +905.0,84.0,1615.5048,100,760.9697627142856,760.9697627142856,529.6505970675516,529.6505970675516,20531.2963,6.0,621.7223,1,2,3,4,5,6 +905.5,84.0,1615.5048,100,764.3700334285714,764.3700334285714,529.6505970675516,529.6505970675516,20608.347800000003,6.0,624.09025,1,2,3,4,5,6 +906.0,84.0,1615.5048,100,767.770304142857,767.770304142857,529.6505970675516,529.6505970675516,20685.3993,6.0,626.4582,1,2,3,4,5,6 +906.5,84.0,1615.5048,100,776.5848520714285,776.5848520714285,529.6505970675516,529.6505970675516,20885.131,6.0,632.59625,1,2,3,4,5,6 +907.0,84.0,1615.5048,100,785.3993999999999,785.3993999999999,529.6505970675516,529.6505970675516,21084.8627,6.0,638.7343,1,2,3,4,5,6 +907.5,84.0,1615.5048,100,784.1845022142857,784.1845022142857,529.6505970675516,529.6505970675516,21057.33145,6.0,637.88825,1,2,3,4,5,6 +908.0,84.0,1615.5048,100,782.9696044285713,782.9696044285713,529.6505970675516,529.6505970675516,21029.8002,6.0,637.0422,1,2,3,4,5,6 +908.5,84.0,1615.5048,100,775.8267811071427,775.8267811071427,529.6505970675516,529.6505970675516,20867.9425,6.0,632.06805,1,2,3,4,5,6 +909.0,84.0,1615.5048,100,768.6839577857141,768.6839577857141,529.6505970675516,529.6505970675516,20706.0848,6.0,627.0939,1,2,3,4,5,6 +909.5,84.0,1615.5048,100,758.5782991071426,758.5782991071426,529.6505970675516,529.6505970675516,20477.055099999998,6.0,620.0554500000001,1,2,3,4,5,6 +910.0,84.0,1615.5048,100,748.4726404285714,748.4726404285714,529.6505970675516,529.6505970675516,20248.0254,6.0,613.017,1,2,3,4,5,6 +910.5,84.0,1615.5048,100,732.6514603928572,732.6514603928572,529.6505970675516,529.6505970675516,19889.238899999997,6.0,601.9909,1,2,3,4,5,6 +911.0,84.0,1615.5048,100,716.8302803571428,716.8302803571428,529.6505970675516,529.6505970675516,19530.4524,6.0,590.9648,1,2,3,4,5,6 +911.5,84.0,1615.5048,100,704.6722832142856,704.6722832142856,529.6505970675516,529.6505970675516,19257.083599999998,6.0,582.4911,1,2,3,4,5,6 +912.0,84.0,1615.5048,100,692.5142860714285,692.5142860714285,529.6505970675516,529.6505970675516,18983.7148,6.0,574.0174,1,2,3,4,5,6 +912.5,84.0,1615.5048,100,690.8240719285712,690.8240719285712,529.6505970675516,529.6505970675516,18947.69085,6.0,572.8394,1,2,3,4,5,6 +913.0,84.0,1615.5048,100,689.1338577857142,689.1338577857142,529.6505970675516,529.6505970675516,18911.6669,6.0,571.6614,1,2,3,4,5,6 +913.5,84.0,1615.5048,100,702.4914199285713,702.4914199285713,529.6505970675516,529.6505970675516,19209.9333,6.0,580.97115,1,2,3,4,5,6 +914.0,84.0,1615.5048,100,715.8489820714285,715.8489820714285,529.6505970675516,529.6505970675516,19508.1997,6.0,590.2809,1,2,3,4,5,6 +914.5,84.0,1615.5048,100,742.355309892857,742.355309892857,529.6505970675516,529.6505970675516,20107.9558,6.0,608.7488,1,2,3,4,5,6 +915.0,84.0,1615.5048,100,768.8616377142856,768.8616377142856,529.6505970675516,529.6505970675516,20707.7119,6.0,627.2167,1,2,3,4,5,6 +915.5,84.0,1615.5048,100,802.2361516071428,802.2361516071428,529.6505970675516,529.6505970675516,21413.1534,6.0,650.4585,1,2,3,4,5,6 +916.0,84.0,1615.5048,100,835.6106654999999,835.6106654999999,529.6505970675516,529.6505970675516,22118.5949,6.0,673.7003,1,2,3,4,5,6 +916.5,84.0,1615.5048,100,871.3486832142856,871.3486832142856,529.6505970675516,529.6505970675516,22869.3374,6.0,698.58705,1,2,3,4,5,6 +917.0,84.0,1615.5048,100,907.0867009285713,907.0867009285713,529.6505970675516,529.6505970675516,23620.0799,6.0,723.4738,1,2,3,4,5,6 +917.5,84.0,1615.5048,100,927.7719817499999,927.7719817499999,529.6505970675516,529.6505970675516,24076.2399,6.0,737.87855,1,2,3,4,5,6 +918.0,84.0,1615.5048,100,948.4572625714285,948.4572625714285,529.6505970675516,529.6505970675516,24532.3999,6.0,752.2833,1,2,3,4,5,6 +918.5,84.0,1615.5048,100,947.654546142857,947.654546142857,529.6505970675516,529.6505970675516,24514.694499999998,6.0,751.7242000000001,1,2,3,4,5,6 +919.0,84.0,1615.5048,100,946.8518297142856,946.8518297142856,529.6505970675516,529.6505970675516,24496.9891,6.0,751.1651,1,2,3,4,5,6 +919.5,84.0,1615.5048,100,944.7864132857142,944.7864132857142,529.6505970675516,529.6505970675516,24451.440499999997,6.0,749.72675,1,2,3,4,5,6 +920.0,84.0,1615.5048,100,942.7209968571427,942.7209968571427,529.6505970675516,529.6505970675516,24405.8919,6.0,748.2884,1,2,3,4,5,6 +920.5,84.0,1615.5048,100,953.6180978571427,953.6180978571427,529.6505970675516,529.6505970675516,24647.463949999998,6.0,755.8769500000001,1,2,3,4,5,6 +921.0,84.0,1615.5048,100,964.5151988571428,964.5151988571428,529.6505970675516,529.6505970675516,24889.036,6.0,763.4655,1,2,3,4,5,6 +921.5,84.0,1615.5048,100,979.5241922142854,979.5241922142854,529.6505970675516,529.6505970675516,25229.83725,6.0,773.9176500000001,1,2,3,4,5,6 +922.0,84.0,1615.5048,100,994.5331855714284,994.5331855714284,529.6505970675516,529.6505970675516,25570.6385,6.0,784.3698,1,2,3,4,5,6 +922.5,84.0,1615.5048,100,999.5091254999998,999.5091254999998,529.6505970675516,529.6505970675516,25684.29905,6.0,787.8351500000001,1,2,3,4,5,6 +923.0,84.0,1615.5048,100,1004.4850654285714,1004.4850654285714,529.6505970675516,529.6505970675516,25797.9596,6.0,791.3005,1,2,3,4,5,6 +923.5,84.0,1615.5048,100,999.1231000714283,999.1231000714283,529.6505970675516,529.6505970675516,25675.4705,6.0,787.56595,1,2,3,4,5,6 +924.0,84.0,1615.5048,100,993.7611347142855,993.7611347142855,529.6505970675516,529.6505970675516,25552.9814,6.0,783.8314,1,2,3,4,5,6 +924.5,84.0,1615.5048,100,985.609504285714,985.609504285714,529.6505970675516,529.6505970675516,25366.87595,6.0,778.15485,1,2,3,4,5,6 +925.0,84.0,1615.5048,100,977.4578738571428,977.4578738571428,529.6505970675516,529.6505970675516,25180.7705,6.0,772.4783,1,2,3,4,5,6 +925.5,84.0,1615.5048,100,961.6222629642856,961.6222629642856,529.6505970675516,529.6505970675516,24827.1361,6.0,761.45085,1,2,3,4,5,6 +926.0,84.0,1615.5048,100,945.7866520714284,945.7866520714284,529.6505970675516,529.6505970675516,24473.5017,6.0,750.4234,1,2,3,4,5,6 +926.5,84.0,1615.5048,100,910.6871997857143,910.6871997857143,529.6505970675516,529.6505970675516,23708.8331,6.0,725.98105,1,2,3,4,5,6 +927.0,84.0,1615.5048,100,875.5877474999999,875.5877474999999,529.6505970675516,529.6505970675516,22944.1645,6.0,701.5387,1,2,3,4,5,6 +927.5,84.0,1615.5048,100,828.3875705357142,828.3875705357142,529.6505970675516,529.6505970675516,21957.04795,6.0,668.6693,1,2,3,4,5,6 +928.0,84.0,1615.5048,100,781.1873935714285,781.1873935714285,529.6505970675516,529.6505970675516,20969.9314,6.0,635.7999,1,2,3,4,5,6 +928.5,84.0,1615.5048,100,752.2142911071427,752.2142911071427,529.6505970675516,529.6505970675516,20322.894650000002,6.0,615.6166000000001,1,2,3,4,5,6 +929.0,84.0,1615.5048,100,723.2411886428571,723.2411886428571,529.6505970675516,529.6505970675516,19675.8579,6.0,595.4333,1,2,3,4,5,6 +929.5,84.0,1615.5048,100,733.1790886071427,733.1790886071427,529.6505970675516,529.6505970675516,19901.18995,6.0,602.35815,1,2,3,4,5,6 +930.0,84.0,1615.5048,100,743.1169885714285,743.1169885714285,529.6505970675516,529.6505970675516,20126.522,6.0,609.283,1,2,3,4,5,6 +930.5,84.0,1615.5048,100,777.9544306071426,777.9544306071426,529.6505970675516,529.6505970675516,20885.987849999998,6.0,633.5463500000001,1,2,3,4,5,6 +931.0,84.0,1615.5048,100,812.791872642857,812.791872642857,529.6505970675516,529.6505970675516,21645.4537,6.0,657.8097,1,2,3,4,5,6 +931.5,84.0,1615.5048,100,852.6918397499999,852.6918397499999,529.6505970675516,529.6505970675516,22472.944499999998,6.0,685.59485,1,2,3,4,5,6 +932.0,84.0,1615.5048,100,892.5918068571427,892.5918068571427,529.6505970675516,529.6505970675516,23300.4353,6.0,713.38,1,2,3,4,5,6 +932.5,84.0,1615.5048,100,919.0904682857142,919.0904682857142,529.6505970675516,529.6505970675516,23884.7935,6.0,731.833,1,2,3,4,5,6 +933.0,84.0,1615.5048,100,945.5891297142856,945.5891297142856,529.6505970675516,529.6505970675516,24469.1517,6.0,750.286,1,2,3,4,5,6 +933.5,84.0,1615.5048,100,948.3436195714285,948.3436195714285,529.6505970675516,529.6505970675516,24529.8885,6.0,752.204,1,2,3,4,5,6 +934.0,84.0,1615.5048,100,951.0981094285713,951.0981094285713,529.6505970675516,529.6505970675516,24590.6253,6.0,754.122,1,2,3,4,5,6 +934.5,84.0,1615.5048,100,950.0076777857142,950.0076777857142,529.6505970675516,529.6505970675516,24566.58715,6.0,753.3629,1,2,3,4,5,6 +935.0,84.0,1615.5048,100,948.917246142857,948.917246142857,529.6505970675516,529.6505970675516,24542.549,6.0,752.6038,1,2,3,4,5,6 +935.5,84.0,1615.5048,100,952.443335892857,952.443335892857,529.6505970675516,529.6505970675516,24621.763,6.0,755.0591999999999,1,2,3,4,5,6 +936.0,84.0,1615.5048,100,955.969425642857,955.969425642857,529.6505970675516,529.6505970675516,24700.977,6.0,757.5146,1,2,3,4,5,6 +936.5,84.0,1615.5048,100,987.0589034999998,987.0589034999998,529.6505970675516,529.6505970675516,25405.59925,6.0,779.1677999999999,1,2,3,4,5,6 +937.0,84.0,1615.5048,100,1018.1483813571427,1018.1483813571427,529.6505970675516,529.6505970675516,26110.2215,6.0,800.821,1,2,3,4,5,6 +937.5,84.0,1615.5048,100,1051.7519851071427,1051.7519851071427,529.6505970675516,529.6505970675516,26853.173600000002,6.0,824.23085,1,2,3,4,5,6 +938.0,84.0,1615.5048,100,1085.3555888571427,1085.3555888571427,529.6505970675516,529.6505970675516,27596.1257,6.0,847.6407,1,2,3,4,5,6 +938.5,84.0,1615.5048,100,1096.9354497857141,1096.9354497857141,529.6505970675516,529.6505970675516,27837.136749999998,6.0,855.70815,1,2,3,4,5,6 +939.0,84.0,1615.5048,100,1108.5153107142855,1108.5153107142855,529.6505970675516,529.6505970675516,28078.1478,6.0,863.7756,1,2,3,4,5,6 +939.5,84.0,1615.5048,100,1093.6812914999998,1093.6812914999998,529.6505970675516,529.6505970675516,27774.815049999997,6.0,853.4411500000001,1,2,3,4,5,6 +940.0,84.0,1615.5048,100,1078.8472722857143,1078.8472722857143,529.6505970675516,529.6505970675516,27471.4823,6.0,843.1067,1,2,3,4,5,6 +940.5,84.0,1615.5048,100,1059.9789265714285,1059.9789265714285,529.6505970675516,529.6505970675516,27053.1753,6.0,829.9617499999999,1,2,3,4,5,6 +941.0,84.0,1615.5048,100,1041.1105808571428,1041.1105808571428,529.6505970675516,529.6505970675516,26634.8683,6.0,816.8168,1,2,3,4,5,6 +941.5,84.0,1615.5048,100,1030.1562073928571,1030.1562073928571,529.6505970675516,529.6505970675516,26384.552949999998,6.0,809.185,1,2,3,4,5,6 +942.0,84.0,1615.5048,100,1019.2018339285713,1019.2018339285713,529.6505970675516,529.6505970675516,26134.2376,6.0,801.5532,1,2,3,4,5,6 +942.5,84.0,1615.5048,100,1012.2678070714285,1012.2678070714285,529.6505970675516,529.6505970675516,25975.802799999998,6.0,796.7227499999999,1,2,3,4,5,6 +943.0,84.0,1615.5048,100,1005.3337802142855,1005.3337802142855,529.6505970675516,529.6505970675516,25817.368,6.0,791.8923,1,2,3,4,5,6 +943.5,84.0,1615.5048,100,993.3683448214284,993.3683448214284,529.6505970675516,529.6505970675516,25544.482949999998,6.0,783.55895,1,2,3,4,5,6 +944.0,84.0,1615.5048,100,981.4029094285713,981.4029094285713,529.6505970675516,529.6505970675516,25271.5979,6.0,775.2256,1,2,3,4,5,6 +944.5,84.0,1615.5048,100,959.6799597857141,959.6799597857141,529.6505970675516,529.6505970675516,24786.22455,6.0,760.0985000000001,1,2,3,4,5,6 +945.0,84.0,1615.5048,100,937.9570101428571,937.9570101428571,529.6505970675516,529.6505970675516,24300.8512,6.0,744.9714,1,2,3,4,5,6 +945.5,84.0,1615.5048,100,905.7527485714285,905.7527485714285,529.6505970675516,529.6505970675516,23598.1807,6.0,722.54505,1,2,3,4,5,6 +946.0,84.0,1615.5048,100,873.5484869999998,873.5484869999998,529.6505970675516,529.6505970675516,22895.5102,6.0,700.1187,1,2,3,4,5,6 +946.5,84.0,1615.5048,100,834.7610487857141,834.7610487857141,529.6505970675516,529.6505970675516,22095.77635,6.0,673.10845,1,2,3,4,5,6 +947.0,84.0,1615.5048,100,795.9736105714285,795.9736105714285,529.6505970675516,529.6505970675516,21296.0425,6.0,646.0982,1,2,3,4,5,6 +947.5,84.0,1615.5048,100,756.4321600714285,756.4321600714285,529.6505970675516,529.6505970675516,20418.515,6.0,618.5527500000001,1,2,3,4,5,6 +948.0,84.0,1615.5048,100,716.8907095714285,716.8907095714285,529.6505970675516,529.6505970675516,19540.9875,6.0,591.0073,1,2,3,4,5,6 +948.5,84.0,1615.5048,100,676.1294006785713,676.1294006785713,529.6505970675516,529.6505970675516,18642.429799999998,6.0,562.5980999999999,1,2,3,4,5,6 +949.0,84.0,1615.5048,100,635.3680917857142,635.3680917857142,529.6505970675516,529.6505970675516,17743.8721,6.0,534.1889,1,2,3,4,5,6 +949.5,84.0,1615.5048,100,593.8608879642857,593.8608879642857,529.6505970675516,529.6505970675516,16803.20515,6.0,505.2598,1,2,3,4,5,6 +950.0,84.0,1615.5048,100,552.3536841428571,552.3536841428571,529.6505970675516,529.6505970675516,15862.5382,6.0,476.3307,1,2,3,4,5,6 +950.5,84.0,1615.5048,100,502.50724874999986,502.50724874999986,529.6505970675516,529.6505970675516,14748.823400000001,6.0,441.60355,1,2,3,4,5,6 +951.0,84.0,1615.5048,100,452.6608133571428,452.6608133571428,529.6505970675516,529.6505970675516,13635.1086,6.0,406.8764,1,2,3,4,5,6 +951.5,84.0,1615.5048,100,387.87573503571423,387.87573503571423,529.6505970675516,529.6505970675516,12213.66215,6.0,361.7622,1,2,3,4,5,6 +952.0,84.0,1615.5048,100,323.0906567142857,323.0906567142857,529.6505970675516,529.6505970675516,10792.2157,6.0,316.648,1,2,3,4,5,6 +952.5,84.0,1615.5048,100,266.56859699999995,266.56859699999995,529.6505970675516,529.6505970675516,9584.65935,6.0,277.323,1,2,3,4,5,6 +953.0,84.0,1615.5048,100,210.04653728571424,210.04653728571424,529.6505970675516,529.6505970675516,8377.103,6.0,237.998,1,2,3,4,5,6 +953.5,84.0,1615.5048,100,195.28106464285713,195.28106464285713,529.6505970675516,529.6505970675516,8046.80925,6.0,227.82515,1,2,3,4,5,6 +954.0,84.0,1615.5048,100,180.51559199999997,180.51559199999997,529.6505970675516,529.6505970675516,7716.5155,6.0,217.6523,1,2,3,4,5,6 +954.5,84.0,1615.5048,100,211.69255692857138,211.69255692857138,529.6505970675516,529.6505970675516,8404.60015,6.0,239.21785,1,2,3,4,5,6 +955.0,84.0,1615.5048,100,242.86952185714284,242.86952185714284,529.6505970675516,529.6505970675516,9092.6848,6.0,260.7834,1,2,3,4,5,6 +955.5,84.0,1615.5048,100,284.65677450000004,284.65677450000004,529.6505970675516,529.6505970675516,9970.34835,6.0,289.88315,1,2,3,4,5,6 +956.0,84.0,1615.5048,100,326.4440271428571,326.4440271428571,529.6505970675516,529.6505970675516,10848.0119,6.0,318.9829,1,2,3,4,5,6 +956.5,84.0,1615.5048,100,338.85050560714285,338.85050560714285,529.6505970675516,529.6505970675516,11126.35095,6.0,327.6227,1,2,3,4,5,6 +957.0,84.0,1615.5048,100,351.2569840714285,351.2569840714285,529.6505970675516,529.6505970675516,11404.69,6.0,336.2625,1,2,3,4,5,6 +957.5,84.0,1615.5048,100,331.9214393571428,331.9214393571428,529.6505970675516,529.6505970675516,10969.212650000001,6.0,322.7975,1,2,3,4,5,6 +958.0,84.0,1615.5048,100,312.5858946428571,312.5858946428571,529.6505970675516,529.6505970675516,10533.7353,6.0,309.3325,1,2,3,4,5,6 +958.5,84.0,1615.5048,100,291.5109806785714,291.5109806785714,529.6505970675516,529.6505970675516,10108.48205,6.0,294.65639999999996,1,2,3,4,5,6 +959.0,84.0,1615.5048,100,270.4360667142857,270.4360667142857,529.6505970675516,529.6505970675516,9683.2288,6.0,279.9803,1,2,3,4,5,6 +959.5,84.0,1615.5048,100,268.49917510714283,268.49917510714283,529.6505970675516,529.6505970675516,9645.53325,6.0,278.63145,1,2,3,4,5,6 +960.0,84.0,1615.5048,100,266.5622835,266.5622835,529.6505970675516,529.6505970675516,9607.8377,6.0,277.2826,1,2,3,4,5,6 +960.5,84.0,1615.5048,100,278.47495607142855,278.47495607142855,529.6505970675516,529.6505970675516,9839.6687,6.0,285.57845,1,2,3,4,5,6 +961.0,84.0,1615.5048,100,290.3876286428571,290.3876286428571,529.6505970675516,529.6505970675516,10071.4997,6.0,293.8743,1,2,3,4,5,6 +961.5,84.0,1615.5048,100,294.84541060714287,294.84541060714287,529.6505970675516,529.6505970675516,10158.2419,6.0,296.97860000000003,1,2,3,4,5,6 +962.0,84.0,1615.5048,100,299.30319257142855,299.30319257142855,529.6505970675516,529.6505970675516,10244.9841,6.0,300.0829,1,2,3,4,5,6 +962.5,84.0,1615.5048,100,279.3151025357143,279.3151025357143,529.6505970675516,529.6505970675516,9847.852200000001,6.0,286.16345,1,2,3,4,5,6 +963.0,84.0,1615.5048,100,259.32701249999997,259.32701249999997,529.6505970675516,529.6505970675516,9450.7203,6.0,272.244,1,2,3,4,5,6 +963.5,84.0,1615.5048,100,227.65218299999998,227.65218299999998,529.6505970675516,529.6505970675516,8755.3632,6.0,250.2378,1,2,3,4,5,6 +964.0,84.0,1615.5048,100,195.9773535,195.9773535,529.6505970675516,529.6505970675516,8060.0061,6.0,228.2316,1,2,3,4,5,6 +964.5,84.0,1615.5048,100,175.43277353571426,175.43277353571426,529.6505970675516,529.6505970675516,7608.9264,6.0,214.33864999999997,1,2,3,4,5,6 +965.0,84.0,1615.5048,100,154.88819357142856,154.88819357142856,529.6505970675516,529.6505970675516,7157.8467,6.0,200.4457,1,2,3,4,5,6 +965.5,84.0,1615.5048,100,129.24410946428569,129.24410946428569,529.6505970675516,529.6505970675516,6620.3552,6.0,183.4932,1,2,3,4,5,6 +966.0,84.0,1615.5048,100,103.60002535714284,103.60002535714284,529.6505970675516,529.6505970675516,6082.8637,6.0,166.5407,1,2,3,4,5,6 +966.5,84.0,1615.5048,100,49.23988842857142,49.23988842857142,529.6505970675516,529.6505970675516,5042.09515,6.0,130.8637,1,2,3,4,5,6 +967.0,84.0,1615.5048,100,-5.120248499999999,-5.120248499999999,529.6505970675516,529.6505970675516,4001.3266,6.0,95.1867,1,2,3,4,5,6 +967.5,84.0,1615.5048,100,-64.44595317857143,-64.44595317857143,529.6505970675516,529.6505970675516,3140.0019,6.0,56.405,1,2,3,4,5,6 +968.0,84.0,1615.5048,100,-123.77165785714284,-123.77165785714284,529.6505970675516,529.6505970675516,2278.6772,6.0,17.6233,1,2,3,4,5,6 +968.5,84.0,1615.5048,100,-171.73216060714284,-171.73216060714284,529.6505970675516,529.6505970675516,1558.9339,6.0,-13.285049999999998,1,2,3,4,5,6 +969.0,84.0,1615.5048,100,-219.6926633571428,-219.6926633571428,529.6505970675516,529.6505970675516,839.1906,6.0,-44.1934,1,2,3,4,5,6 +969.5,84.0052,1615.5738000000001,100,-244.0399997262074,-244.0399997262074,529.6833849616557,529.6833849616557,437.57,6.0,-59.75825,1,2,3,4,5,6 +970.0,84.0104,1615.6428,100,-268.3843220363193,-268.3843220363193,529.7161728557601,529.7161728557601,35.9494,6.0,-75.3231,1,2,3,4,5,6 +970.5,84.0344,1616.10465,100,-269.7961466970669,-269.7961466970669,529.8675015977793,529.8675015977793,17.974649999999997,6.0,-76.03784999999999,1,2,3,4,5,6 +971.0,84.0584,1616.5665,100,-271.20716516136395,-271.20716516136395,530.0188303397987,530.0188303397987,-0.0001,6.0,-76.7526,1,2,3,4,5,6 +971.5,84.10475,1617.4792499999999,100,-271.45135519694185,-271.45135519694185,530.3110839728234,530.3110839728234,-0.0001,6.0,-76.7887,1,2,3,4,5,6 +972.0,84.1511,1618.392,100,-271.69527623524823,-271.69527623524823,530.6033376058482,530.6033376058482,-0.0001,6.0,-76.8248,1,2,3,4,5,6 +972.5,84.2063,1619.47055,100,-271.75289739603807,-271.75289739603807,530.9513937124925,530.9513937124925,-0.0001,6.0,-76.86744999999999,1,2,3,4,5,6 +973.0,84.2615,1620.5491,100,-271.8104430611845,-271.8104430611845,531.2994498191368,531.2994498191368,-0.0001,6.0,-76.9101,1,2,3,4,5,6 +973.5,84.3138,1621.5522999999998,100,-271.79369718836057,-271.79369718836057,531.6292203694541,531.6292203694541,-0.0001,6.0,-76.94980000000001,1,2,3,4,5,6 +974.0,84.3661,1622.5555,100,-271.77697207764726,-271.77697207764726,531.958990919771,531.958990919771,-0.0001,6.0,-76.9895,1,2,3,4,5,6 +974.5,84.416,1623.5030499999998,100,-271.832612845906,-271.832612845906,532.2736285958862,532.2736285958862,-0.0001,6.0,-77.027,1,2,3,4,5,6 +975.0,84.4659,1624.4506,100,-271.88818787226563,-271.88818787226563,532.5882662720013,532.5882662720013,-0.0001,6.0,-77.0645,1,2,3,4,5,6 +975.5,84.522,1625.5176,100,-272.0662701781784,-272.0662701781784,532.9419972064715,532.9419972064715,-0.0001,6.0,-77.10669999999999,1,2,3,4,5,6 +976.0,84.5781,1626.5846,100,-272.2441162428571,-272.2441162428571,533.2957281409416,533.2957281409416,-0.0001,6.0,-77.1489,1,2,3,4,5,6 +976.5,84.64905,1627.9459,100,-272.51624260402207,-272.51624260402207,533.7430937345362,533.7430937345362,-0.0001,6.0,-77.20275000000001,1,2,3,4,5,6 +977.0,84.72,1629.3072,100,-272.78791317280456,-272.78791317280456,534.1904593281306,534.1904593281306,-0.0001,6.0,-77.2566,1,2,3,4,5,6 +977.5,84.80799999999999,1631.00875,100,-273.0488994198661,-273.0488994198661,534.7453313822014,534.7453313822014,-0.0001,6.0,-77.32395,1,2,3,4,5,6 +978.0,84.896,1632.7103,100,-273.30934460987567,-273.30934460987567,535.3002034362721,535.3002034362721,-0.0001,6.0,-77.3913,1,2,3,4,5,6 +978.5,84.99535,1634.6307,100,-273.48413941468556,-273.48413941468556,535.9266413745896,535.9266413745896,-5e-05,6.0,-77.46725,1,2,3,4,5,6 +979.0,85.0947,1636.5511,100,-273.6585260656656,-273.6585260656656,536.553079312907,536.553079312907,0.0,6.0,-77.5432,1,2,3,4,5,6 +979.5,85.19825,1638.5456,100,-273.774989368913,-273.774989368913,537.2059997810778,537.2059997810778,0.0,6.0,-77.62209999999999,1,2,3,4,5,6 +980.0,85.3018,1640.5401,100,-273.8911699166958,-273.8911699166958,537.8589202492485,537.8589202492485,0.0,6.0,-77.701,1,2,3,4,5,6 +980.5,85.40635,1642.55085,100,-273.995876770287,-273.995876770287,538.5181460816701,538.5181460816701,0.0,6.0,-77.78055,1,2,3,4,5,6 +981.0,85.5109,1644.5616,100,-274.10032758396886,-274.10032758396886,539.1773719140916,539.1773719140916,0.0,6.0,-77.8601,1,2,3,4,5,6 +981.5,85.6149,1646.56695,100,-274.18548928983154,-274.18548928983154,539.8331297961753,539.8331297961753,0.0,6.0,-77.93945,1,2,3,4,5,6 +982.0,85.7189,1648.5723,100,-274.2704443477459,-274.2704443477459,540.488887678259,540.488887678259,0.0,6.0,-78.0188,1,2,3,4,5,6 +982.5,85.8187,1650.49905,100,-274.287843022558,-274.287843022558,541.1181630304893,541.1181630304893,-5e-05,6.0,-78.095,1,2,3,4,5,6 +983.0,85.9185,1652.4258,100,-274.30520127795523,-274.30520127795523,541.7474383827195,541.7474383827195,-0.0001,6.0,-78.1712,1,2,3,4,5,6 +983.5,86.0106,1654.1902,100,-274.3008333042672,-274.3008333042672,542.3281624302184,542.3281624302184,0.020450000000000003,6.0,-78.2402,1,2,3,4,5,6 +984.0,86.1027,1655.9546,100,-274.2964746750102,-274.2964746750102,542.9088864777176,542.9088864777176,0.041,6.0,-78.3092,1,2,3,4,5,6 +984.5,86.18950000000001,1657.6192,100,-274.3415158575001,-274.3415158575001,543.4561920946874,543.4561920946874,0.17470000000000002,6.0,-78.3699,1,2,3,4,5,6 +985.0,86.2763,1659.2838,100,-274.386466410822,-274.386466410822,544.0034977116571,544.0034977116571,0.3084,6.0,-78.4306,1,2,3,4,5,6 +985.5,86.3536,1660.846,100,-295.13179326629114,-295.13179326629114,544.4909023682444,544.4909023682444,0.34875,6.0,-78.4867,1,2,3,4,5,6 +986.0,86.4309,1662.4082,100,-315.84001270378997,-315.84001270378997,544.9783070248315,544.9783070248315,0.3891,6.0,-78.5428,1,2,3,4,5,6 +986.5,86.46545,1662.99675,100,-392.4804288649397,-392.4804288649397,545.1961573596968,545.1961573596968,0.28265,6.0,-78.56395,1,2,3,4,5,6 +987.0,86.5,1663.5853,100,-469.05962129479764,-469.05962129479764,545.4140076945621,545.4140076945621,0.1762,6.0,-78.5851,1,2,3,4,5,6 +987.5,86.5,1663.5853,100,-454.5299586589596,-454.5299586589596,545.4140076945621,545.4140076945621,0.1762,6.0,-78.5851,1,2,3,4,5,6 +988.0,86.5,1663.5853,100,-440.0002960231214,-440.0002960231214,545.4140076945621,545.4140076945621,0.1762,6.0,-78.5851,1,2,3,4,5,6 +988.5,86.49895000000001,1663.5752499999999,100,-382.761715061281,-382.761715061281,545.4073870620988,545.4073870620988,0.17905,6.0,-78.58475,1,2,3,4,5,6 +989.0,86.4979,1663.5652,100,-325.521744458536,-325.521744458536,545.4007664296354,545.4007664296354,0.1819,6.0,-78.5844,1,2,3,4,5,6 +989.5,86.4781,1663.24255,100,-298.67730913375755,-298.67730913375755,545.2759202174694,545.2759202174694,0.26405,6.0,-78.5728,1,2,3,4,5,6 +990.0,86.4583,1662.9199,100,-271.8205784060062,-271.8205784060062,545.1510740053035,545.1510740053035,0.3462,6.0,-78.5612,1,2,3,4,5,6 +990.5,86.40719999999999,1661.8683,100,-271.4578785101242,-271.4578785101242,544.8288698920874,544.8288698920874,0.39935,6.0,-78.52345,1,2,3,4,5,6 +991.0,86.3561,1660.8167,100,-271.09474936918184,-271.09474936918184,544.5066657788713,544.5066657788713,0.4525,6.0,-78.4857,1,2,3,4,5,6 +991.5,86.286,1659.5221999999999,100,-270.92777790139763,-270.92777790139763,544.06465974489,544.06465974489,0.33085,6.0,-78.4392,1,2,3,4,5,6 +992.0,86.2159,1658.2277,100,-270.76053491293374,-270.76053491293374,543.6226537109086,543.6226537109086,0.2092,6.0,-78.3927,1,2,3,4,5,6 +992.5,86.10285,1656.0526,100,-269.81597992400947,-269.81597992400947,542.9098322823552,542.9098322823552,0.10919999999999999,6.0,-78.3105,1,2,3,4,5,6 +993.0,85.9898,1653.8775,100,-268.86894133955434,-268.86894133955434,542.1970108538017,542.1970108538017,0.0092,6.0,-78.2283,1,2,3,4,5,6 +993.5,85.8403,1650.92085,100,-268.73704229831446,-268.73704229831446,541.2543588983065,541.2543588983065,0.0046,6.0,-78.1115,1,2,3,4,5,6 +994.0,85.6908,1647.9642,100,-268.6046830231484,-268.6046830231484,540.3117069428113,540.3117069428113,0.0,6.0,-77.9947,1,2,3,4,5,6 +994.5,85.5542,1645.34325,100,-268.7342364956952,-268.7342364956952,539.4503941861514,539.4503941861514,0.0,6.0,-77.89099999999999,1,2,3,4,5,6 +995.0,85.4176,1642.7223,100,-268.8642043325966,-268.8642043325966,538.5890814294916,538.5890814294916,0.0,6.0,-77.7873,1,2,3,4,5,6 +995.5,85.29845,1640.4481999999998,100,-268.8862667961727,-268.8862667961727,537.8377972790083,537.8377972790083,0.0,6.0,-77.69735,1,2,3,4,5,6 +996.0,85.1793,1638.1741,100,-268.9083909823161,-268.9083909823161,537.086513128525,537.086513128525,0.0,6.0,-77.6074,1,2,3,4,5,6 +996.5,85.06665,1636.01665,100,-268.8147317191873,-268.8147317191873,536.3762138456718,536.3762138456718,0.0,6.0,-77.52205000000001,1,2,3,4,5,6 +997.0,84.954,1633.8592,100,-268.7208240694964,-268.7208240694964,535.6659145628189,535.6659145628189,0.0,6.0,-77.4367,1,2,3,4,5,6 +997.5,84.83609999999999,1631.61445,100,-268.4870088087501,-268.4870088087501,534.9225121176489,534.9225121176489,-5e-05,6.0,-77.34790000000001,1,2,3,4,5,6 +998.0,84.7182,1629.3697,100,-268.25254275940705,-268.25254275940705,534.1791096724792,534.1791096724792,-0.0001,6.0,-77.2591,1,2,3,4,5,6 +998.5,84.57775,1626.6965500000001,100,-267.74759420769647,-267.74759420769647,533.2935212634537,533.2935212634537,-0.0001,6.0,-77.15335,1,2,3,4,5,6 +999.0,84.4373,1624.0234,100,-267.2409658290827,-267.2409658290827,532.4079328544282,532.4079328544282,-0.0001,6.0,-77.0476,1,2,3,4,5,6 +999.5,84.2886,1620.93805,100,-186.73814049586778,-186.73814049586778,531.4703251903337,531.4703251903337,1386.98405,6.0,-24.123649999999998,1,2,3,4,5,6 +1000.0,84.1399,1617.8527,100,-105.95077072827519,-105.95077072827519,530.5327175262391,530.5327175262391,2773.9682,6.0,28.8003,1,2,3,4,5,6 +1000.5,84.06995,1616.67875,100,131.2665070218312,131.2665070218312,530.0916572968955,530.0916572968955,7285.206899999999,6.0,188.6669,1,2,3,4,5,6 +1001.0,84.0,1615.5048,100,368.8788644999999,368.8788644999999,529.6505970675516,529.6505970675516,11796.4456,6.0,348.5335,1,2,3,4,5,6 +1001.5,84.0,1615.5048,100,453.4333151785714,453.4333151785714,529.6505970675516,529.6505970675516,13668.6669,6.0,407.42895,1,2,3,4,5,6 +1002.0,84.0,1615.5048,100,537.9877658571428,537.9877658571428,529.6505970675516,529.6505970675516,15540.8882,6.0,466.3244,1,2,3,4,5,6 +1002.5,84.0,1615.5048,100,611.9833387499999,611.9833387499999,529.6505970675516,529.6505970675516,17184.35135,6.0,517.88765,1,2,3,4,5,6 +1003.0,84.0,1615.5048,100,685.978911642857,685.978911642857,529.6505970675516,529.6505970675516,18827.8145,6.0,569.4509,1,2,3,4,5,6 +1003.5,84.0,1615.5048,100,815.0264006785712,815.0264006785712,529.6505970675516,529.6505970675516,21637.09435,6.0,659.3421000000001,1,2,3,4,5,6 +1004.0,84.0,1615.5048,100,944.0738897142855,944.0738897142855,529.6505970675516,529.6505970675516,24446.3742,6.0,749.2333,1,2,3,4,5,6 +1004.5,84.0,1615.5048,100,1025.3768878928572,1025.3768878928572,529.6505970675516,529.6505970675516,26261.267249999997,6.0,805.86505,1,2,3,4,5,6 +1005.0,84.0,1615.5048,100,1106.6798860714284,1106.6798860714284,529.6505970675516,529.6505970675516,28076.1603,6.0,862.4968,1,2,3,4,5,6 +1005.5,83.997,1615.46615,100,1159.761019607843,1159.761019607843,529.6316809747992,529.6316809747992,29259.884899999997,6.0,899.4252,1,2,3,4,5,6 +1006.0,83.994,1615.4275,100,1212.8459449246375,1212.8459449246375,529.6127648820468,529.6127648820468,30443.6095,6.0,936.3536,1,2,3,4,5,6 +1006.5,83.98060000000001,1615.1545,100,1223.3080409404074,1223.3080409404074,529.5282730010861,529.5282730010861,30660.888,6.0,943.5481,1,2,3,4,5,6 +1007.0,83.9672,1614.8815,100,1233.7734761668844,1233.7734761668844,529.4437811201252,529.4437811201252,30878.1665,6.0,950.7426,1,2,3,4,5,6 +1007.5,83.9552,1614.6033499999999,100,1234.1794868810985,1234.1794868810985,529.3681167491156,529.3681167491156,30886.91685,6.0,951.1773000000001,1,2,3,4,5,6 +1008.0,83.9432,1614.3252,100,1234.585613676867,1234.585613676867,529.292452378106,529.292452378106,30895.6672,6.0,951.612,1,2,3,4,5,6 +1008.5,83.95655,1614.6252,100,1216.9247928720276,1216.9247928720276,529.3766289908541,529.3766289908541,30516.6595,6.0,939.5289,1,2,3,4,5,6 +1009.0,83.9699,1614.9252,100,1199.2695876974965,1199.2695876974965,529.4608056036024,529.4608056036024,30137.6518,6.0,927.4458,1,2,3,4,5,6 +1009.5,83.98495,1615.215,100,1111.9285537111114,1111.9285537111114,529.5557013355769,529.5557013355769,28197.83425,6.0,866.38645,1,2,3,4,5,6 +1010.0,84.0,1615.5048,100,1024.6188169285713,1024.6188169285713,529.6505970675516,529.6505970675516,26258.0167,6.0,805.3271,1,2,3,4,5,6 +1010.5,84.0,1615.5048,100,1006.4923074642857,1006.4923074642857,529.6505970675516,529.6505970675516,25846.982799999998,6.0,792.70115,1,2,3,4,5,6 +1011.0,84.0,1615.5048,100,988.3657979999999,988.3657979999999,529.6505970675516,529.6505970675516,25435.9489,6.0,780.0752,1,2,3,4,5,6 +1011.5,84.0,1615.5048,100,953.8652262857141,953.8652262857141,529.6505970675516,529.6505970675516,24663.394,6.0,756.04955,1,2,3,4,5,6 +1012.0,84.0,1615.5048,100,919.3646545714284,919.3646545714284,529.6505970675516,529.6505970675516,23890.8391,6.0,732.0239,1,2,3,4,5,6 +1012.5,84.0,1615.5048,100,918.9033181071427,918.9033181071427,529.6505970675516,529.6505970675516,23880.66465,6.0,731.70265,1,2,3,4,5,6 +1013.0,84.0,1615.5048,100,918.441981642857,918.441981642857,529.6505970675516,529.6505970675516,23870.4902,6.0,731.3814,1,2,3,4,5,6 +1013.5,84.0,1615.5048,100,915.308681785714,915.308681785714,529.6505970675516,529.6505970675516,23801.396950000002,6.0,729.19955,1,2,3,4,5,6 +1014.0,84.0,1615.5048,100,912.1753819285714,912.1753819285714,529.6505970675516,529.6505970675516,23732.3037,6.0,727.0177,1,2,3,4,5,6 +1014.5,84.0,1615.5048,100,896.6626614642856,896.6626614642856,529.6505970675516,529.6505970675516,23390.213900000002,6.0,716.2151,1,2,3,4,5,6 +1015.0,84.0,1615.5048,100,881.149941,881.149941,529.6505970675516,529.6505970675516,23048.1241,6.0,705.4125,1,2,3,4,5,6 +1015.5,84.0,1615.5048,100,871.2219622499998,871.2219622499998,529.6505970675516,529.6505970675516,22829.34015,6.0,698.4988000000001,1,2,3,4,5,6 +1016.0,84.0,1615.5048,100,861.2939834999999,861.2939834999999,529.6505970675516,529.6505970675516,22610.5562,6.0,691.5851,1,2,3,4,5,6 +1016.5,84.0,1615.5048,100,860.8827040714284,860.8827040714284,529.6505970675516,529.6505970675516,22601.63655,6.0,691.2987499999999,1,2,3,4,5,6 +1017.0,84.0,1615.5048,100,860.4714246428571,860.4714246428571,529.6505970675516,529.6505970675516,22592.7169,6.0,691.0124,1,2,3,4,5,6 +1017.5,84.0,1615.5048,100,867.2981219999998,867.2981219999998,529.6505970675516,529.6505970675516,22742.96315,6.0,695.76645,1,2,3,4,5,6 +1018.0,84.0,1615.5048,100,874.1248193571428,874.1248193571428,529.6505970675516,529.6505970675516,22893.2094,6.0,700.5205,1,2,3,4,5,6 +1018.5,84.0,1615.5048,100,888.5719112142857,888.5719112142857,529.6505970675516,529.6505970675516,23211.79475,6.0,710.5808999999999,1,2,3,4,5,6 +1019.0,84.0,1615.5048,100,903.0190030714285,903.0190030714285,529.6505970675516,529.6505970675516,23530.3801,6.0,720.6413,1,2,3,4,5,6 +1019.5,84.0,1615.5048,100,916.1695726071429,916.1695726071429,529.6505970675516,529.6505970675516,23820.37885,6.0,729.79895,1,2,3,4,5,6 +1020.0,84.0,1615.5048,100,929.320142142857,929.320142142857,529.6505970675516,529.6505970675516,24110.3776,6.0,738.9566,1,2,3,4,5,6 +1020.5,84.0,1615.5048,100,948.2331333214285,948.2331333214285,529.6505970675516,529.6505970675516,24529.942049999998,6.0,752.12715,1,2,3,4,5,6 +1021.0,84.0,1615.5048,100,967.1461244999999,967.1461244999999,529.6505970675516,529.6505970675516,24949.5065,6.0,765.2977,1,2,3,4,5,6 +1021.5,84.0,1615.5048,100,988.5561049285715,988.5561049285715,529.6505970675516,529.6505970675516,25436.3668,6.0,780.20875,1,2,3,4,5,6 +1022.0,84.0,1615.5048,100,1009.9660853571428,1009.9660853571428,529.6505970675516,529.6505970675516,25923.2271,6.0,795.1198,1,2,3,4,5,6 +1022.5,84.0,1615.5048,100,1031.3314203214286,1031.3314203214286,529.6505970675516,529.6505970675516,26408.95605,6.0,810.0039,1,2,3,4,5,6 +1023.0,84.0,1615.5048,100,1052.696755285714,1052.696755285714,529.6505970675516,529.6505970675516,26894.685,6.0,824.888,1,2,3,4,5,6 +1023.5,84.0,1615.5048,100,1086.1407176785713,1086.1407176785713,529.6505970675516,529.6505970675516,27628.172400000003,6.0,848.1875,1,2,3,4,5,6 +1024.0,84.0,1615.5048,100,1119.5846800714285,1119.5846800714285,529.6505970675516,529.6505970675516,28361.6598,6.0,871.487,1,2,3,4,5,6 +1024.5,83.99765,1615.4782500000001,100,1163.1167836838295,1163.1167836838295,529.6357794615622,529.6357794615622,29330.958550000003,6.0,901.7727,1,2,3,4,5,6 +1025.0,83.9953,1615.4517,100,1206.6513231573674,1206.6513231573674,529.6209618555728,529.6209618555728,30300.2573,6.0,932.0584,1,2,3,4,5,6 +1025.5,83.97455,1615.0814500000001,100,1220.301171271534,1220.301171271534,529.4901255473686,529.4901255473686,30585.0354,6.0,941.32575,1,2,3,4,5,6 +1026.0,83.9538,1614.7112,100,1233.9577667717244,1233.9577667717244,529.3592892391645,529.3592892391645,30869.8135,6.0,950.5931,1,2,3,4,5,6 +1026.5,83.89840000000001,1613.63815,100,1235.4412637308933,1235.4412637308933,529.00997205967,529.00997205967,30874.0291,6.0,951.3744,1,2,3,4,5,6 +1027.0,83.843,1612.5651,100,1236.9267211574013,1236.9267211574013,528.6606548801755,528.6606548801755,30878.2447,6.0,952.1557,1,2,3,4,5,6 +1027.5,83.756,1610.8742,100,1237.9112433497303,1237.9112433497303,528.1120881903554,528.1120881903554,30861.482799999998,6.0,952.6774,1,2,3,4,5,6 +1028.0,83.669,1609.1833,100,1238.8978129773275,1238.8978129773275,527.5635215005353,527.5635215005353,30844.7209,6.0,953.1991,1,2,3,4,5,6 +1028.5,83.56524999999999,1607.1626,100,1239.8153781027404,1239.8153781027404,526.9093399595143,526.9093399595143,30824.45535,6.0,953.8154,1,2,3,4,5,6 +1029.0,83.4615,1605.1419,100,1240.7352244567853,1240.7352244567853,526.2551584184936,526.2551584184936,30804.1898,6.0,954.4317,1,2,3,4,5,6 +1029.5,83.3577,1603.1375,100,1241.4676953418818,1241.4676953418818,525.6006616092601,525.6006616092601,30783.1862,6.0,955.01575,1,2,3,4,5,6 +1030.0,83.2539,1601.1331,100,1242.201992699441,1242.201992699441,524.9461648000266,524.9461648000266,30762.1826,6.0,955.5998,1,2,3,4,5,6 +1030.5,83.15610000000001,1599.26565,100,1242.4293435117809,1242.4293435117809,524.329500176298,524.329500176298,30731.2664,6.0,955.7999,1,2,3,4,5,6 +1031.0,83.0583,1597.3982,100,1242.6572297289977,1242.6572297289977,523.7128355525693,523.7128355525693,30700.3502,6.0,956.0,1,2,3,4,5,6 +1031.5,82.9599,1595.51525,100,1242.7033192783501,1242.7033192783501,523.0923877102902,523.0923877102902,30662.521650000002,6.0,956.0,1,2,3,4,5,6 +1032.0,82.8615,1593.6323,100,1242.7495182925722,1242.7495182925722,522.4719398680111,522.4719398680111,30624.6931,6.0,956.0,1,2,3,4,5,6 +1032.5,82.7556,1591.59375,100,1242.8178260444006,1242.8178260444006,521.8042017938509,521.8042017938509,30583.737999999998,6.0,956.0,1,2,3,4,5,6 +1033.0,82.6497,1589.5552,100,1242.8863088432263,1242.8863088432263,521.1364637196907,521.1364637196907,30542.7829,6.0,956.0,1,2,3,4,5,6 +1033.5,82.53675,1587.3742499999998,100,1242.9032542594662,1242.9032542594662,520.4242728275624,520.4242728275624,30498.9675,6.0,956.0,1,2,3,4,5,6 +1034.0,82.4238,1585.1933,100,1242.9202461182329,1242.9202461182329,519.7120819354341,519.7120819354341,30455.1521,6.0,956.0,1,2,3,4,5,6 +1034.5,82.3126,1583.0322,100,1242.7921253246764,1242.7921253246764,519.0109254307447,519.0109254307447,30411.735849999997,6.0,956.0,1,2,3,4,5,6 +1035.0,82.2014,1580.8711,100,1242.6636578939042,1242.6636578939042,518.3097689260553,518.3097689260553,30368.3196,6.0,956.0,1,2,3,4,5,6 +1035.5,82.10675,1579.0351500000002,100,1242.3715861363405,1242.3715861363405,517.7129661997167,517.7129661997167,30331.435749999997,6.0,956.0,1,2,3,4,5,6 +1036.0,82.0121,1577.1992,100,1242.078840219919,1242.078840219919,517.1161634733779,517.1161634733779,30294.5519,6.0,956.0,1,2,3,4,5,6 +1036.5,81.9468,1575.93625,100,1241.7104715986472,1241.7104715986472,516.7044231878004,516.7044231878004,30269.1788,6.0,956.0,1,2,3,4,5,6 +1037.0,81.8815,1574.6733,100,1241.341515433889,1241.341515433889,516.292682902223,516.292682902223,30243.8057,6.0,956.0,1,2,3,4,5,6 +1037.5,81.8545,1574.13915,100,1240.877239101088,1240.877239101088,516.1224380674512,516.1224380674512,30232.9837,6.0,955.99725,1,2,3,4,5,6 +1038.0,81.8275,1573.605,100,1240.4126563808013,1240.4126563808013,515.9521932326795,515.9521932326795,30222.1617,6.0,955.9945,1,2,3,4,5,6 +1038.5,81.8476,1573.98835,100,1239.81414488635,1239.81414488635,516.0789310541206,516.0789310541206,30228.18385,6.0,955.9436000000001,1,2,3,4,5,6 +1039.0,81.8677,1574.3717,100,1239.215927282677,1239.215927282677,516.2056688755617,516.2056688755617,30234.206,6.0,955.8927,1,2,3,4,5,6 +1039.5,81.93639999999999,1575.70545,100,1238.635061352464,1238.635061352464,516.638847399592,516.638847399592,30257.9806,6.0,955.80115,1,2,3,4,5,6 +1040.0,82.0051,1577.0392,100,1238.0551686663393,1238.0551686663393,517.0720259236223,517.0720259236223,30281.7552,6.0,955.7096,1,2,3,4,5,6 +1040.5,82.1146,1579.1574,100,1237.6170262170185,1237.6170262170185,517.7624633090854,517.7624633090854,30321.8378,6.0,955.63465,1,2,3,4,5,6 +1041.0,82.2241,1581.2756,100,1237.1800507393816,1237.1800507393816,518.4529006945486,518.4529006945486,30361.9204,6.0,955.5597,1,2,3,4,5,6 +1041.5,82.36415,1583.9822,100,1236.8838692562238,1236.8838692562238,519.3359669578734,519.3359669578734,30414.6018,6.0,955.5083,1,2,3,4,5,6 +1042.0,82.5042,1586.6888,100,1236.5886933028862,1236.5886933028862,520.2190332211987,520.2190332211987,30467.2832,6.0,955.4569,1,2,3,4,5,6 +1042.5,82.66435,1589.7844,100,1236.4494115540735,1236.4494115540735,521.228837305965,521.228837305965,30528.56475,6.0,955.42935,1,2,3,4,5,6 +1043.0,82.8245,1592.88,100,1236.310668437479,1236.310668437479,522.2386413907313,522.2386413907313,30589.8463,6.0,955.4018,1,2,3,4,5,6 +1043.5,82.99369999999999,1596.14275,100,1236.22069245015,1236.22069245015,523.3055090219673,523.3055090219673,30653.1682,6.0,955.33425,1,2,3,4,5,6 +1044.0,83.1629,1599.4055,100,1236.1310825861053,1236.1310825861053,524.3723766532033,524.3723766532033,30716.4901,6.0,955.2667,1,2,3,4,5,6 +1044.5,83.3363,1602.7278000000001,100,1235.0767944701165,1235.0767944701165,525.4657268142929,525.4657268142929,30759.518649999998,6.0,954.54775,1,2,3,4,5,6 +1045.0,83.5097,1606.0501,100,1234.0268846134043,1234.0268846134043,526.5590769753823,526.5590769753823,30802.5472,6.0,953.8288,1,2,3,4,5,6 +1045.5,83.67625,1609.40845,100,1189.9947673085253,1189.9947673085253,527.6092353913538,527.6092353913538,29896.28155,6.0,923.0319999999999,1,2,3,4,5,6 +1046.0,83.8428,1612.7668,100,1146.1375856960885,1146.1375856960885,528.6593938073252,528.6593938073252,28990.0159,6.0,892.2352,1,2,3,4,5,6 +1046.5,83.9214,1614.1358,100,936.6367875297599,936.6367875297599,529.1549954374384,529.1549954374384,24381.546,6.0,745.3281,1,2,3,4,5,6 +1047.0,84.0,1615.5048,100,727.528055142857,727.528055142857,529.6505970675516,529.6505970675516,19773.0761,6.0,598.421,1,2,3,4,5,6 +1047.5,84.0,1615.5048,100,712.4820827142858,712.4820827142858,529.6505970675516,529.6505970675516,19434.30285,6.0,587.93445,1,2,3,4,5,6 +1048.0,84.0,1615.5048,100,697.4361102857143,697.4361102857143,529.6505970675516,529.6505970675516,19095.5296,6.0,577.4479,1,2,3,4,5,6 +1048.5,84.0,1615.5048,100,680.1998043214286,680.1998043214286,529.6505970675516,529.6505970675516,18729.6834,6.0,565.4349500000001,1,2,3,4,5,6 +1049.0,84.0,1615.5048,100,662.9634983571428,662.9634983571428,529.6505970675516,529.6505970675516,18363.8372,6.0,553.422,1,2,3,4,5,6 +1049.5,84.0,1615.5048,100,644.1961686428571,644.1961686428571,529.6505970675516,529.6505970675516,17943.175900000002,6.0,540.3418,1,2,3,4,5,6 +1050.0,84.0,1615.5048,100,625.4288389285714,625.4288389285714,529.6505970675516,529.6505970675516,17522.5146,6.0,527.2616,1,2,3,4,5,6 +1050.5,84.0,1615.5048,100,620.8438850357142,620.8438850357142,529.6505970675516,529.6505970675516,17418.072849999997,6.0,524.06605,1,2,3,4,5,6 +1051.0,84.0,1615.5048,100,616.2589311428571,616.2589311428571,529.6505970675516,529.6505970675516,17313.6311,6.0,520.8705,1,2,3,4,5,6 +1051.5,84.0,1615.5048,100,633.5822732142857,633.5822732142857,529.6505970675516,529.6505970675516,17703.18705,6.0,532.9442,1,2,3,4,5,6 +1052.0,84.0,1615.5048,100,650.9056152857141,650.9056152857141,529.6505970675516,529.6505970675516,18092.743,6.0,545.0179,1,2,3,4,5,6 +1052.5,84.0,1615.5048,100,686.6404762499998,686.6404762499998,529.6505970675516,529.6505970675516,18876.315799999997,6.0,569.92265,1,2,3,4,5,6 +1053.0,84.0,1615.5048,100,722.3753372142855,722.3753372142855,529.6505970675516,529.6505970675516,19659.8886,6.0,594.8274,1,2,3,4,5,6 +1053.5,84.0,1615.5048,100,769.8077607857141,769.8077607857141,529.6505970675516,529.6505970675516,20697.512799999997,6.0,627.8675000000001,1,2,3,4,5,6 +1054.0,84.0,1615.5048,100,817.2401843571427,817.2401843571427,529.6505970675516,529.6505970675516,21735.137,6.0,660.9076,1,2,3,4,5,6 +1054.5,84.0,1615.5048,100,862.1859908571427,862.1859908571427,529.6505970675516,529.6505970675516,22678.10455,6.0,692.2064,1,2,3,4,5,6 +1055.0,84.0,1615.5048,100,907.1317973571427,907.1317973571427,529.6505970675516,529.6505970675516,23621.0721,6.0,723.5052,1,2,3,4,5,6 +1055.5,84.0,1615.5048,100,940.1514023571427,940.1514023571427,529.6505970675516,529.6505970675516,24353.91125,6.0,746.4992,1,2,3,4,5,6 +1056.0,84.0,1615.5048,100,973.1710073571427,973.1710073571427,529.6505970675516,529.6505970675516,25086.7504,6.0,769.4932,1,2,3,4,5,6 +1056.5,84.0,1615.5048,100,988.5939859285714,988.5939859285714,529.6505970675516,529.6505970675516,25437.0096,6.0,780.2339,1,2,3,4,5,6 +1057.0,84.0,1615.5048,100,1004.0169644999999,1004.0169644999999,529.6505970675516,529.6505970675516,25787.2688,6.0,790.9746,1,2,3,4,5,6 +1057.5,84.0,1615.5048,100,999.528066,999.528066,529.6505970675516,529.6505970675516,25684.73005,6.0,787.8483,1,2,3,4,5,6 +1058.0,84.0,1615.5048,100,995.0391674999998,995.0391674999998,529.6505970675516,529.6505970675516,25582.1913,6.0,784.722,1,2,3,4,5,6 +1058.5,84.0,1615.5048,100,985.2906725357141,985.2906725357141,529.6505970675516,529.6505970675516,25359.5245,6.0,777.9331500000001,1,2,3,4,5,6 +1059.0,84.0,1615.5048,100,975.5421775714285,975.5421775714285,529.6505970675516,529.6505970675516,25136.8577,6.0,771.1443,1,2,3,4,5,6 +1059.5,84.0,1615.5048,100,978.4734454285714,978.4734454285714,529.6505970675516,529.6505970675516,25203.8166,6.0,773.1858,1,2,3,4,5,6 +1060.0,84.0,1615.5048,100,981.4047132857143,981.4047132857143,529.6505970675516,529.6505970675516,25270.7755,6.0,775.2273,1,2,3,4,5,6 +1060.5,84.0,1615.5048,100,1007.5096828928571,1007.5096828928571,529.6505970675516,529.6505970675516,25865.829550000002,6.0,793.4110000000001,1,2,3,4,5,6 +1061.0,84.0,1615.5048,100,1033.6146525,1033.6146525,529.6505970675516,529.6505970675516,26460.8836,6.0,811.5947,1,2,3,4,5,6 +1061.5,84.0,1615.5048,100,1075.3486913571428,1075.3486913571428,529.6505970675516,529.6505970675516,27384.43105,6.0,840.6693,1,2,3,4,5,6 +1062.0,84.0,1615.5048,100,1117.0827302142854,1117.0827302142854,529.6505970675516,529.6505970675516,28307.9785,6.0,869.7439,1,2,3,4,5,6 +1062.5,83.9995,1615.50005,100,1157.6452901386317,1157.6452901386317,529.6474443854262,529.6474443854262,29217.377800000002,6.0,897.9933000000001,1,2,3,4,5,6 +1063.0,83.999,1615.4953,100,1198.208332956345,1198.208332956345,529.6442917033007,529.6442917033007,30126.7771,6.0,926.2427,1,2,3,4,5,6 +1063.5,83.99185,1615.3728,100,1215.0630270079776,1215.0630270079776,529.5992083489076,529.5992083489076,30486.3007,6.0,937.89015,1,2,3,4,5,6 +1064.0,83.9847,1615.2503,100,1231.9205908933413,1231.9205908933413,529.5541249945143,529.5541249945143,30845.8243,6.0,949.5376,1,2,3,4,5,6 +1064.5,83.9668,1614.88915,100,1233.408965531615,1233.408965531615,529.441258974425,529.441258974425,30871.01365,6.0,950.52115,1,2,3,4,5,6 +1065.0,83.9489,1614.528,100,1234.8979748871043,1234.8979748871043,529.3283929543354,529.3283929543354,30896.203,6.0,951.5047,1,2,3,4,5,6 +1065.5,83.928,1614.1165,100,1235.0813712825277,1235.0813712825277,529.1966108414937,529.1966108414937,30893.1365,6.0,951.6623500000001,1,2,3,4,5,6 +1066.0,83.9071,1613.705,100,1235.264859040534,1235.264859040534,529.064828728652,529.064828728652,30890.07,6.0,951.82,1,2,3,4,5,6 +1066.5,83.89085,1613.39025,100,1235.3320939411149,1235.3320939411149,528.9623665595764,528.9623665595764,30886.9132,6.0,951.9159999999999,1,2,3,4,5,6 +1067.0,83.8746,1613.0755,100,1235.3993548940919,1235.3993548940919,528.8599043905008,528.8599043905008,30883.7564,6.0,952.012,1,2,3,4,5,6 +1067.5,83.86685,1612.9167499999999,100,1235.3491045389212,1235.3491045389212,528.811037817557,528.811037817557,30882.1546,6.0,952.0600999999999,1,2,3,4,5,6 +1068.0,83.8591,1612.758,100,1235.2988448957838,1235.2988448957838,528.7621712446133,528.7621712446133,30880.5528,6.0,952.1082,1,2,3,4,5,6 +1068.5,83.86685,1612.8941,100,1235.0103443494063,1235.0103443494063,528.811037817557,528.811037817557,30881.663099999998,6.0,952.05895,1,2,3,4,5,6 +1069.0,83.8746,1613.0302,100,1234.7218971178402,1234.7218971178402,528.8599043905008,528.8599043905008,30882.7734,6.0,952.0097,1,2,3,4,5,6 +1069.5,83.9046,1613.6248,100,1227.8920235839278,1227.8920235839278,529.0490653180249,529.0490653180249,30749.5732,6.0,947.4155499999999,1,2,3,4,5,6 +1070.0,83.9346,1614.2194,100,1221.0670323323156,1221.0670323323156,529.2382262455491,529.2382262455491,30616.373,6.0,942.8214,1,2,3,4,5,6 +1070.5,83.96145,1614.8060500000001,100,1145.4811738601468,1145.4811738601468,529.407525275683,529.407525275683,28944.187599999997,6.0,889.92265,1,2,3,4,5,6 +1071.0,83.9883,1615.3927,100,1069.9436430788576,1069.9436430788576,529.5768243058171,529.5768243058171,27272.0022,6.0,837.0239,1,2,3,4,5,6 +1071.5,83.99414999999999,1615.44875,100,1019.4081177081978,1019.4081177081978,529.6137106866844,529.6137106866844,26131.44595,6.0,801.76445,1,2,3,4,5,6 +1072.0,84.0,1615.5048,100,968.8796312142856,968.8796312142856,529.6505970675516,529.6505970675516,24990.8897,6.0,766.505,1,2,3,4,5,6 +1072.5,84.0,1615.5048,100,938.7935488928571,938.7935488928571,529.6505970675516,529.6505970675516,24323.35265,6.0,745.5536500000001,1,2,3,4,5,6 +1073.0,84.0,1615.5048,100,908.7074665714284,908.7074665714284,529.6505970675516,529.6505970675516,23655.8156,6.0,724.6023,1,2,3,4,5,6 +1073.5,84.0,1615.5048,100,882.0072241071426,882.0072241071426,529.6505970675516,529.6505970675516,23080.5443,6.0,706.0091500000001,1,2,3,4,5,6 +1074.0,84.0,1615.5048,100,855.306981642857,855.306981642857,529.6505970675516,529.6505970675516,22505.273,6.0,687.416,1,2,3,4,5,6 +1074.5,84.0,1615.5048,100,826.9945418571427,826.9945418571427,529.6505970675516,529.6505970675516,21934.3886,6.0,667.69985,1,2,3,4,5,6 +1075.0,84.0,1615.5048,100,798.6821020714284,798.6821020714284,529.6505970675516,529.6505970675516,21363.5042,6.0,647.9837,1,2,3,4,5,6 +1075.5,84.0,1615.5048,100,771.7640438571427,771.7640438571427,529.6505970675516,529.6505970675516,20764.6186,6.0,629.23585,1,2,3,4,5,6 +1076.0,84.0,1615.5048,100,744.845985642857,744.845985642857,529.6505970675516,529.6505970675516,20165.733,6.0,610.488,1,2,3,4,5,6 +1076.5,84.0,1615.5048,100,724.7816826428569,724.7816826428569,529.6505970675516,529.6505970675516,19711.288800000002,6.0,596.50525,1,2,3,4,5,6 +1077.0,84.0,1615.5048,100,704.717379642857,704.717379642857,529.6505970675516,529.6505970675516,19256.8446,6.0,582.5225,1,2,3,4,5,6 +1077.5,84.0,1615.5048,100,694.6369749642857,694.6369749642857,529.6505970675516,529.6505970675516,19036.77015,6.0,575.4969000000001,1,2,3,4,5,6 +1078.0,84.0,1615.5048,100,684.5565702857142,684.5565702857142,529.6505970675516,529.6505970675516,18816.6957,6.0,568.4713,1,2,3,4,5,6 +1078.5,84.0,1615.5048,100,685.8869149285712,685.8869149285712,529.6505970675516,529.6505970675516,18844.74365,6.0,569.3984,1,2,3,4,5,6 +1079.0,84.0,1615.5048,100,687.2172595714285,687.2172595714285,529.6505970675516,529.6505970675516,18872.7916,6.0,570.3255,1,2,3,4,5,6 +1079.5,84.0,1615.5048,100,698.8512362142856,698.8512362142856,529.6505970675516,529.6505970675516,19129.67905,6.0,578.4342,1,2,3,4,5,6 +1080.0,84.0,1615.5048,100,710.4852128571428,710.4852128571428,529.6505970675516,529.6505970675516,19386.5665,6.0,586.5429,1,2,3,4,5,6 +1080.5,84.0,1615.5048,100,725.6998459285714,725.6998459285714,529.6505970675516,529.6505970675516,19731.606200000002,6.0,597.1465499999999,1,2,3,4,5,6 +1081.0,84.0,1615.5048,100,740.9144789999999,740.9144789999999,529.6505970675516,529.6505970675516,20076.6459,6.0,607.7502,1,2,3,4,5,6 +1081.5,84.0,1615.5048,100,752.6729217857144,752.6729217857144,529.6505970675516,529.6505970675516,20343.191,6.0,615.94155,1,2,3,4,5,6 +1082.0,84.0,1615.5048,100,764.4313645714285,764.4313645714285,529.6505970675516,529.6505970675516,20609.7361,6.0,624.1329,1,2,3,4,5,6 +1082.5,84.0,1615.5048,100,772.8743179285714,772.8743179285714,529.6505970675516,529.6505970675516,20801.04765,6.0,630.01225,1,2,3,4,5,6 +1083.0,84.0,1615.5048,100,781.3172712857141,781.3172712857141,529.6505970675516,529.6505970675516,20992.3592,6.0,635.8916,1,2,3,4,5,6 +1083.5,84.0,1615.5048,100,784.3572215357142,784.3572215357142,529.6505970675516,529.6505970675516,21061.247049999998,6.0,638.0086,1,2,3,4,5,6 +1084.0,84.0,1615.5048,100,787.3971717857142,787.3971717857142,529.6505970675516,529.6505970675516,21130.1349,6.0,640.1256,1,2,3,4,5,6 +1084.5,84.0,1615.5048,100,781.3533484285713,781.3533484285713,529.6505970675516,529.6505970675516,20993.1833,6.0,635.91685,1,2,3,4,5,6 +1085.0,84.0,1615.5048,100,775.3095250714284,775.3095250714284,529.6505970675516,529.6505970675516,20856.2317,6.0,631.7081,1,2,3,4,5,6 +1085.5,84.0,1615.5048,100,765.6611441785712,765.6611441785712,529.6505970675516,529.6505970675516,20637.593350000003,6.0,624.989,1,2,3,4,5,6 +1086.0,84.0,1615.5048,100,756.0127632857142,756.0127632857142,529.6505970675516,529.6505970675516,20418.955,6.0,618.2699,1,2,3,4,5,6 +1086.5,84.0,1615.5048,100,750.442903392857,750.442903392857,529.6505970675516,529.6505970675516,20292.7006,6.0,614.3899,1,2,3,4,5,6 +1087.0,84.0,1615.5048,100,744.8730434999999,744.8730434999999,529.6505970675516,529.6505970675516,20166.4462,6.0,610.5099,1,2,3,4,5,6 +1087.5,84.0,1615.5048,100,744.4509409285713,744.4509409285713,529.6505970675516,529.6505970675516,20156.8768,6.0,610.2158,1,2,3,4,5,6 +1088.0,84.0,1615.5048,100,744.0288383571427,744.0288383571427,529.6505970675516,529.6505970675516,20147.3074,6.0,609.9217,1,2,3,4,5,6 +1088.5,84.0,1615.5048,100,746.9077943571426,746.9077943571426,529.6505970675516,529.6505970675516,20212.58945,6.0,611.92795,1,2,3,4,5,6 +1089.0,84.0,1615.5048,100,749.7867503571428,749.7867503571428,529.6505970675516,529.6505970675516,20277.8715,6.0,613.9342,1,2,3,4,5,6 +1089.5,84.0,1615.5048,100,753.628064142857,753.628064142857,529.6505970675516,529.6505970675516,20364.9193,6.0,616.6093000000001,1,2,3,4,5,6 +1090.0,84.0,1615.5048,100,757.4693779285714,757.4693779285714,529.6505970675516,529.6505970675516,20451.9671,6.0,619.2844,1,2,3,4,5,6 +1090.5,84.0,1615.5048,100,759.9478776428571,759.9478776428571,529.6505970675516,529.6505970675516,20508.132700000002,6.0,621.01045,1,2,3,4,5,6 +1091.0,84.0,1615.5048,100,762.4263773571428,762.4263773571428,529.6505970675516,529.6505970675516,20564.2983,6.0,622.7365,1,2,3,4,5,6 +1091.5,84.0,1615.5048,100,764.1080231785712,764.1080231785712,529.6505970675516,529.6505970675516,20602.4001,6.0,623.9074499999999,1,2,3,4,5,6 +1092.0,84.0,1615.5048,100,765.7896689999999,765.7896689999999,529.6505970675516,529.6505970675516,20640.5019,6.0,625.0784,1,2,3,4,5,6 +1092.5,84.0,1615.5048,100,770.2203931071427,770.2203931071427,529.6505970675516,529.6505970675516,20740.908750000002,6.0,628.16405,1,2,3,4,5,6 +1093.0,84.0,1615.5048,100,774.6511172142857,774.6511172142857,529.6505970675516,529.6505970675516,20841.3156,6.0,631.2497,1,2,3,4,5,6 +1093.5,84.0,1615.5048,100,778.5488015357141,778.5488015357141,529.6505970675516,529.6505970675516,20929.63325,6.0,633.96385,1,2,3,4,5,6 +1094.0,84.0,1615.5048,100,782.4464858571429,782.4464858571429,529.6505970675516,529.6505970675516,21017.9509,6.0,636.678,1,2,3,4,5,6 +1094.5,84.0,1615.5048,100,786.7766449285713,786.7766449285713,529.6505970675516,529.6505970675516,21116.067750000002,6.0,639.6933,1,2,3,4,5,6 +1095.0,84.0,1615.5048,100,791.1068039999999,791.1068039999999,529.6505970675516,529.6505970675516,21214.1846,6.0,642.7086,1,2,3,4,5,6 +1095.5,84.0,1615.5048,100,795.2331272142857,795.2331272142857,529.6505970675516,529.6505970675516,21307.04985,6.0,645.5821000000001,1,2,3,4,5,6 +1096.0,84.0,1615.5048,100,799.3594504285712,799.3594504285712,529.6505970675516,529.6505970675516,21399.9151,6.0,648.4556,1,2,3,4,5,6 +1096.5,84.0,1615.5048,100,802.7353690714285,802.7353690714285,529.6505970675516,529.6505970675516,21469.576399999998,6.0,650.8065,1,2,3,4,5,6 +1097.0,84.0,1615.5048,100,806.1112877142857,806.1112877142857,529.6505970675516,529.6505970675516,21539.2377,6.0,653.1574,1,2,3,4,5,6 +1097.5,84.0,1615.5048,100,808.2777201428571,808.2777201428571,529.6505970675516,529.6505970675516,21581.6544,6.0,654.6661,1,2,3,4,5,6 +1098.0,84.0,1615.5048,100,810.4441525714285,810.4441525714285,529.6505970675516,529.6505970675516,21624.0711,6.0,656.1748,1,2,3,4,5,6 +1098.5,84.0,1615.5048,100,811.4642337857141,811.4642337857141,529.6505970675516,529.6505970675516,21644.040200000003,6.0,656.8851,1,2,3,4,5,6 +1099.0,84.0,1615.5048,100,812.4843149999999,812.4843149999999,529.6505970675516,529.6505970675516,21664.0093,6.0,657.5954,1,2,3,4,5,6 +1099.5,84.0,1615.5048,100,812.7909707142854,812.7909707142854,529.6505970675516,529.6505970675516,21670.011550000003,6.0,657.8089,1,2,3,4,5,6 +1100.0,84.0,1615.5048,100,813.0976264285713,813.0976264285713,529.6505970675516,529.6505970675516,21676.0138,6.0,658.0224,1,2,3,4,5,6 +1100.5,84.0,1615.5048,100,812.6728180714284,812.6728180714284,529.6505970675516,529.6505970675516,21667.7004,6.0,657.7266999999999,1,2,3,4,5,6 +1101.0,84.0,1615.5048,100,812.2480097142856,812.2480097142856,529.6505970675516,529.6505970675516,21659.387,6.0,657.431,1,2,3,4,5,6 +1101.5,84.0,1615.5048,100,810.7232994642857,810.7232994642857,529.6505970675516,529.6505970675516,21629.534050000002,6.0,656.36915,1,2,3,4,5,6 +1102.0,84.0,1615.5048,100,809.1985892142856,809.1985892142856,529.6505970675516,529.6505970675516,21599.6811,6.0,655.3073,1,2,3,4,5,6 +1102.5,84.0,1615.5048,100,806.8576336071427,806.8576336071427,529.6505970675516,529.6505970675516,21553.8509,6.0,653.67715,1,2,3,4,5,6 +1103.0,84.0,1615.5048,100,804.516678,804.516678,529.6505970675516,529.6505970675516,21508.0207,6.0,652.047,1,2,3,4,5,6 +1103.5,84.0,1615.5048,100,802.0102184999998,802.0102184999998,529.6505970675516,529.6505970675516,21456.083749999998,6.0,650.3016,1,2,3,4,5,6 +1104.0,84.0,1615.5048,100,799.503759,799.503759,529.6505970675516,529.6505970675516,21404.1468,6.0,648.5562,1,2,3,4,5,6 +1104.5,84.0,1615.5048,100,796.7691115714284,796.7691115714284,529.6505970675516,529.6505970675516,21342.336499999998,6.0,646.6518,1,2,3,4,5,6 +1105.0,84.0,1615.5048,100,794.0344641428571,794.0344641428571,529.6505970675516,529.6505970675516,21280.5262,6.0,644.7474,1,2,3,4,5,6 +1105.5,84.0,1615.5048,100,789.6979915714286,789.6979915714286,529.6505970675516,529.6505970675516,21182.26815,6.0,641.72775,1,2,3,4,5,6 +1106.0,84.0,1615.5048,100,785.3615189999999,785.3615189999999,529.6505970675516,529.6505970675516,21084.0101,6.0,638.7081,1,2,3,4,5,6 +1106.5,84.0,1615.5048,100,778.0211733214285,778.0211733214285,529.6505970675516,529.6505970675516,20917.674899999998,6.0,633.59635,1,2,3,4,5,6 +1107.0,84.0,1615.5048,100,770.680827642857,770.680827642857,529.6505970675516,529.6505970675516,20751.3397,6.0,628.4846,1,2,3,4,5,6 +1107.5,84.0,1615.5048,100,760.1408903571428,760.1408903571428,529.6505970675516,529.6505970675516,20512.476450000002,6.0,621.14395,1,2,3,4,5,6 +1108.0,84.0,1615.5048,100,749.6009530714284,749.6009530714284,529.6505970675516,529.6505970675516,20273.6132,6.0,613.8033,1,2,3,4,5,6 +1108.5,84.0,1615.5048,100,735.8199354642858,735.8199354642858,529.6505970675516,529.6505970675516,19961.0971,6.0,604.19915,1,2,3,4,5,6 +1109.0,84.0,1615.5048,100,722.0389178571428,722.0389178571428,529.6505970675516,529.6505970675516,19648.581,6.0,594.595,1,2,3,4,5,6 +1109.5,84.0,1615.5048,100,708.0657894642857,708.0657894642857,529.6505970675516,529.6505970675516,19333.9112,6.0,584.8563,1,2,3,4,5,6 +1110.0,84.0,1615.5048,100,694.0926610714284,694.0926610714284,529.6505970675516,529.6505970675516,19019.2414,6.0,575.1176,1,2,3,4,5,6 +1110.5,84.0,1615.5048,100,683.3362609285714,683.3362609285714,529.6505970675516,529.6505970675516,18794.64075,6.0,567.6206999999999,1,2,3,4,5,6 +1111.0,84.0,1615.5048,100,672.5798607857141,672.5798607857141,529.6505970675516,529.6505970675516,18570.0401,6.0,560.1238,1,2,3,4,5,6 +1111.5,84.0,1615.5048,100,660.3032600357142,660.3032600357142,529.6505970675516,529.6505970675516,18303.6511,6.0,551.5673999999999,1,2,3,4,5,6 +1112.0,84.0,1615.5048,100,648.0266592857142,648.0266592857142,529.6505970675516,529.6505970675516,18037.2621,6.0,543.011,1,2,3,4,5,6 +1112.5,84.0,1615.5048,100,642.5203853571428,642.5203853571428,529.6505970675516,529.6505970675516,17911.83695,6.0,539.17345,1,2,3,4,5,6 +1113.0,84.0,1615.5048,100,637.0141114285714,637.0141114285714,529.6505970675516,529.6505970675516,17786.4118,6.0,535.3359,1,2,3,4,5,6 +1113.5,84.0,1615.5048,100,631.6142650714286,631.6142650714286,529.6505970675516,529.6505970675516,17663.40405,6.0,531.5723,1,2,3,4,5,6 +1114.0,84.0,1615.5048,100,626.2144187142856,626.2144187142856,529.6505970675516,529.6505970675516,17540.3963,6.0,527.8087,1,2,3,4,5,6 +1114.5,84.0,1615.5048,100,619.0783598571427,619.0783598571427,529.6505970675516,529.6505970675516,17377.848149999998,6.0,522.8353,1,2,3,4,5,6 +1115.0,84.0,1615.5048,100,611.942301,611.942301,529.6505970675516,529.6505970675516,17215.3,6.0,517.8619,1,2,3,4,5,6 +1115.5,84.0,1615.5048,100,605.977396392857,605.977396392857,529.6505970675516,529.6505970675516,17079.4205,6.0,513.7045,1,2,3,4,5,6 +1116.0,84.0,1615.5048,100,600.0124917857142,600.0124917857142,529.6505970675516,529.6505970675516,16943.541,6.0,509.5471,1,2,3,4,5,6 +1116.5,84.0,1615.5048,100,595.4329494642857,595.4329494642857,529.6505970675516,529.6505970675516,16839.217,6.0,506.35515,1,2,3,4,5,6 +1117.0,84.0,1615.5048,100,590.8534071428571,590.8534071428571,529.6505970675516,529.6505970675516,16734.893,6.0,503.1632,1,2,3,4,5,6 +1117.5,84.0,1615.5048,100,590.3956783928571,590.3956783928571,529.6505970675516,529.6505970675516,16724.47105,6.0,502.8443,1,2,3,4,5,6 +1118.0,84.0,1615.5048,100,589.9379496428571,589.9379496428571,529.6505970675516,529.6505970675516,16714.0491,6.0,502.5254,1,2,3,4,5,6 +1118.5,84.0,1615.5048,100,600.8882644285715,600.8882644285715,529.6505970675516,529.6505970675516,16963.4883,6.0,510.15735,1,2,3,4,5,6 +1119.0,84.0,1615.5048,100,611.8385792142856,611.8385792142856,529.6505970675516,529.6505970675516,17212.9275,6.0,517.7893,1,2,3,4,5,6 +1119.5,84.0,1615.5048,100,627.9001232142856,627.9001232142856,529.6505970675516,529.6505970675516,17578.67995,6.0,528.98355,1,2,3,4,5,6 +1120.0,84.0,1615.5048,100,643.9616672142856,643.9616672142856,529.6505970675516,529.6505970675516,17944.4324,6.0,540.1778,1,2,3,4,5,6 +1120.5,84.0,1615.5048,100,662.7267421071427,662.7267421071427,529.6505970675516,529.6505970675516,18352.50785,6.0,553.2567,1,2,3,4,5,6 +1121.0,84.0,1615.5048,100,681.4918169999999,681.4918169999999,529.6505970675516,529.6505970675516,18760.5833,6.0,566.3356,1,2,3,4,5,6 +1121.5,84.0,1615.5048,100,704.2380046071428,704.2380046071428,529.6505970675516,529.6505970675516,19260.6526,6.0,582.18845,1,2,3,4,5,6 +1122.0,84.0,1615.5048,100,726.9841922142857,726.9841922142857,529.6505970675516,529.6505970675516,19760.7219,6.0,598.0413,1,2,3,4,5,6 +1122.5,84.0,1615.5048,100,753.5153230714286,753.5153230714286,529.6505970675516,529.6505970675516,20359.26085,6.0,616.5241,1,2,3,4,5,6 +1123.0,84.0,1615.5048,100,780.0464539285714,780.0464539285714,529.6505970675516,529.6505970675516,20957.7998,6.0,635.0069,1,2,3,4,5,6 +1123.5,84.0,1615.5048,100,808.3737755357142,808.3737755357142,529.6505970675516,529.6505970675516,21547.353199999998,6.0,654.73325,1,2,3,4,5,6 +1124.0,84.0,1615.5048,100,836.7010971428571,836.7010971428571,529.6505970675516,529.6505970675516,22136.9066,6.0,674.4596,1,2,3,4,5,6 +1124.5,84.0,1615.5048,100,868.3258696071426,868.3258696071426,529.6505970675516,529.6505970675516,22799.81495,6.0,696.4822,1,2,3,4,5,6 +1125.0,84.0,1615.5048,100,899.9506420714284,899.9506420714284,529.6505970675516,529.6505970675516,23462.7233,6.0,718.5048,1,2,3,4,5,6 +1125.5,84.0,1615.5048,100,933.0297743571426,933.0297743571426,529.6505970675516,529.6505970675516,24195.523350000003,6.0,741.5400999999999,1,2,3,4,5,6 +1126.0,84.0,1615.5048,100,966.1089066428569,966.1089066428569,529.6505970675516,529.6505970675516,24928.3234,6.0,764.5754,1,2,3,4,5,6 +1126.5,84.0,1615.5048,100,987.738957642857,987.738957642857,529.6505970675516,529.6505970675516,25418.9458,6.0,779.6393499999999,1,2,3,4,5,6 +1127.0,84.0,1615.5048,100,1009.369008642857,1009.369008642857,529.6505970675516,529.6505970675516,25909.5682,6.0,794.7033,1,2,3,4,5,6 +1127.5,84.0,1615.5048,100,1010.3439934285713,1010.3439934285713,529.6505970675516,529.6505970675516,25931.840300000003,6.0,795.3823500000001,1,2,3,4,5,6 +1128.0,84.0,1615.5048,100,1011.3189782142856,1011.3189782142856,529.6505970675516,529.6505970675516,25954.1124,6.0,796.0614,1,2,3,4,5,6 +1128.5,84.0,1615.5048,100,1004.4417728571427,1004.4417728571427,529.6505970675516,529.6505970675516,25796.985800000002,6.0,791.2708,1,2,3,4,5,6 +1129.0,84.0,1615.5048,100,997.5645674999998,997.5645674999998,529.6505970675516,529.6505970675516,25639.8592,6.0,786.4802,1,2,3,4,5,6 +1129.5,84.0,1615.5048,100,998.8209539999998,998.8209539999998,529.6505970675516,529.6505970675516,25668.56425,6.0,787.3553999999999,1,2,3,4,5,6 +1130.0,84.0,1615.5048,100,1000.0773404999998,1000.0773404999998,529.6505970675516,529.6505970675516,25697.2693,6.0,788.2306,1,2,3,4,5,6 +1130.5,84.0,1615.5048,100,1008.8237928214285,1008.8237928214285,529.6505970675516,529.6505970675516,25897.1149,6.0,794.32365,1,2,3,4,5,6 +1131.0,84.0,1615.5048,100,1017.5702451428571,1017.5702451428571,529.6505970675516,529.6505970675516,26096.9605,6.0,800.4167,1,2,3,4,5,6 +1131.5,84.0,1615.5048,100,1025.2420495714284,1025.2420495714284,529.6505970675516,529.6505970675516,26272.25845,6.0,805.7613,1,2,3,4,5,6 +1132.0,84.0,1615.5048,100,1032.913854,1032.913854,529.6505970675516,529.6505970675516,26447.5564,6.0,811.1059,1,2,3,4,5,6 +1132.5,84.0,1615.5048,100,1030.6734634285713,1030.6734634285713,529.6505970675516,529.6505970675516,26396.36435,6.0,809.54515,1,2,3,4,5,6 +1133.0,84.0,1615.5048,100,1028.4330728571426,1028.4330728571426,529.6505970675516,529.6505970675516,26345.1723,6.0,807.9844,1,2,3,4,5,6 +1133.5,84.0,1615.5048,100,1016.3224269642856,1016.3224269642856,529.6505970675516,529.6505970675516,26068.456299999998,6.0,799.54765,1,2,3,4,5,6 +1134.0,84.0,1615.5048,100,1004.2117810714285,1004.2117810714285,529.6505970675516,529.6505970675516,25791.7403,6.0,791.1109,1,2,3,4,5,6 +1134.5,84.0,1615.5048,100,991.4075521071428,991.4075521071428,529.6505970675516,529.6505970675516,25499.254950000002,6.0,782.1934,1,2,3,4,5,6 +1135.0,84.0,1615.5048,100,978.603323142857,978.603323142857,529.6505970675516,529.6505970675516,25206.7696,6.0,773.2759,1,2,3,4,5,6 +1135.5,84.0,1615.5048,100,975.6427426071427,975.6427426071427,529.6505970675516,529.6505970675516,25139.15125,6.0,771.2143,1,2,3,4,5,6 +1136.0,84.0,1615.5048,100,972.6821620714285,972.6821620714285,529.6505970675516,529.6505970675516,25071.5329,6.0,769.1527,1,2,3,4,5,6 +1136.5,84.0,1615.5048,100,983.8024903928571,983.8024903928571,529.6505970675516,529.6505970675516,25325.53775,6.0,776.8969999999999,1,2,3,4,5,6 +1137.0,84.0,1615.5048,100,994.9228187142855,994.9228187142855,529.6505970675516,529.6505970675516,25579.5426,6.0,784.6413,1,2,3,4,5,6 +1137.5,84.0,1615.5048,100,1017.926957892857,1017.926957892857,529.6505970675516,529.6505970675516,26105.14805,6.0,800.66635,1,2,3,4,5,6 +1138.0,84.0,1615.5048,100,1040.9310970714284,1040.9310970714284,529.6505970675516,529.6505970675516,26630.7535,6.0,816.6914,1,2,3,4,5,6 +1138.5,84.0,1615.5048,100,1072.3353479999998,1072.3353479999998,529.6505970675516,529.6505970675516,27315.973749999997,6.0,838.5699500000001,1,2,3,4,5,6 +1139.0,84.0,1615.5048,100,1103.7395989285712,1103.7395989285712,529.6505970675516,529.6505970675516,28001.194,6.0,860.4485,1,2,3,4,5,6 +1139.5,84.0,1615.5048,100,1129.0170490714286,1129.0170490714286,529.6505970675516,529.6505970675516,28573.8838,6.0,878.0584,1,2,3,4,5,6 +1140.0,84.0,1615.5048,100,1154.2944992142855,1154.2944992142855,529.6505970675516,529.6505970675516,29146.5736,6.0,895.6683,1,2,3,4,5,6 +1140.5,83.9969,1615.46455,100,1183.4086833799818,1183.4086833799818,529.6310504383741,529.6310504383741,29791.28435,6.0,915.8982000000001,1,2,3,4,5,6 +1141.0,83.9938,1615.4243,100,1212.5250166083688,1212.5250166083688,529.6115038091966,529.6115038091966,30435.9951,6.0,936.1281,1,2,3,4,5,6 +1141.5,83.9755,1615.0917,100,1223.297528862585,1223.297528862585,529.4961156434068,529.4961156434068,30656.394500000002,6.0,943.4518,1,2,3,4,5,6 +1142.0,83.9572,1614.7591,100,1234.0747372470732,1234.0747372470732,529.3807274776173,529.3807274776173,30876.7939,6.0,950.7755,1,2,3,4,5,6 +1142.5,83.90854999999999,1613.82935,100,1235.3617941914144,1235.3617941914144,529.0739715068155,529.0739715068155,30879.25605,6.0,951.4164000000001,1,2,3,4,5,6 +1143.0,83.8599,1612.8996,100,1236.6503444673797,1236.6503444673797,528.767215536014,528.767215536014,30881.7182,6.0,952.0573,1,2,3,4,5,6 +1143.5,83.7757,1611.27535,100,1237.7028938104966,1237.7028938104966,528.2363038660963,528.2363038660963,30865.565499999997,6.0,952.55685,1,2,3,4,5,6 +1144.0,83.6915,1609.6511,100,1238.7575610426388,1238.7575610426388,527.7053921961785,527.7053921961785,30849.4128,6.0,953.0564,1,2,3,4,5,6 +1144.5,83.57385,1607.3886,100,1240.051768202614,1240.051768202614,526.9635660920713,526.9635660920713,30826.721599999997,6.0,953.7465,1,2,3,4,5,6 +1145.0,83.4562,1605.1261,100,1241.3496243059235,1241.3496243059235,526.2217399879643,526.2217399879643,30804.0304,6.0,954.4366,1,2,3,4,5,6 +1145.5,83.3049,1602.22305,100,1242.658355462884,1242.658355462884,525.2677383768176,525.2677383768176,30768.16645,6.0,955.1174,1,2,3,4,5,6 +1146.0,83.1536,1599.32,100,1243.9718491562603,1243.9718491562603,524.3137367656709,524.3137367656709,30732.3025,6.0,955.7982,1,2,3,4,5,6 +1146.5,82.96135,1595.6446,100,1244.5715089737573,1244.5715089737573,523.1015304884538,523.1015304884538,30661.7919,6.0,955.8991,1,2,3,4,5,6 +1147.0,82.7691,1591.9692,100,1245.1739544830136,1245.1739544830136,521.8893242112367,521.8893242112367,30591.2813,6.0,956.0,1,2,3,4,5,6 +1147.5,82.5206,1587.20955,100,1245.8071493299851,1245.8071493299851,520.3224411949119,520.3224411949119,30495.6593,6.0,956.0,1,2,3,4,5,6 +1148.0,82.2721,1582.4499,100,1246.4441692627272,1246.4441692627272,518.755558178587,518.755558178587,30400.0373,6.0,956.0,1,2,3,4,5,6 +1148.5,81.95605,1576.3613500000001,100,1247.0752602644957,1247.0752602644957,516.7627478071204,516.7627478071204,30277.7179,6.0,956.0,1,2,3,4,5,6 +1149.0,81.64,1570.2728,100,1247.7112375061247,1247.7112375061247,514.7699374356537,514.7699374356537,30155.3985,6.0,956.0,1,2,3,4,5,6 +1149.5,81.2633,1563.0010499999999,100,1248.1310599372657,1248.1310599372657,512.3947067223758,512.3947067223758,30009.3086,6.0,956.0,1,2,3,4,5,6 +1150.0,80.8866,1555.7293,100,1248.554792709794,1248.554792709794,510.0194760090978,510.0194760090978,29863.2187,6.0,956.0,1,2,3,4,5,6 +1150.5,80.4685,1547.66705,100,1248.7494705257336,1248.7494705257336,507.3832032158367,507.3832032158367,29701.24755,6.0,956.0,1,2,3,4,5,6 +1151.0,80.0504,1539.6048,100,1248.946181930384,1248.946181930384,504.74693042257536,504.74693042257536,29539.2764,6.0,956.0,1,2,3,4,5,6 +1151.5,79.60845,1531.0922,100,1248.9943388170477,1248.9943388170477,501.96027469193257,501.96027469193257,29368.257700000002,6.0,956.0,1,2,3,4,5,6 +1152.0,79.1665,1522.5796,100,1249.0430333790177,1249.0430333790177,499.1736189612896,499.1736189612896,29197.239,6.0,956.0,1,2,3,4,5,6 +1152.5,78.7116,1513.82375,100,1249.0066169027182,1249.0066169027182,496.30530876359876,496.30530876359876,29021.3332,6.0,956.0,1,2,3,4,5,6 +1153.0,78.2567,1505.0679,100,1248.9697770542332,1248.9697770542332,493.43699856590797,493.43699856590797,28845.4274,6.0,956.0,1,2,3,4,5,6 +1153.5,77.79429999999999,1496.1752000000001,100,1248.901962830182,1248.901962830182,490.521398136336,490.521398136336,28666.77235,6.0,956.0,1,2,3,4,5,6 +1154.0,77.3319,1487.2825,100,1248.8333376265164,1248.8333376265164,487.6057977067643,487.6057977067643,28488.1173,6.0,956.0,1,2,3,4,5,6 +1154.5,76.86330000000001,1478.27065,100,1248.7630912412035,1248.7630912412035,484.6511040188375,484.6511040188375,28307.06955,6.0,956.0,1,2,3,4,5,6 +1155.0,76.3947,1469.2588,100,1248.691983082596,1248.691983082596,481.69641033091057,481.69641033091057,28126.0218,6.0,956.0,1,2,3,4,5,6 +1155.5,75.73564999999999,1493.4237,100,816.1883700608631,816.1883700608631,477.5408600214179,477.5408600214179,20511.72355,3.0,688.7217,1,2,3,4,5,6 +1156.0,75.0766,1517.5886,100,376.0914055511305,376.0914055511305,473.3853097119255,473.3853097119255,12897.4253,0.0,421.4434,1,2,3,4,5,6 +1156.5,74.1306,1638.9508500000002,100,131.04737221875985,131.04737221875985,467.4204351306648,467.4204351306648,9036.97655,0.0,271.20135,1,2,3,4,5,6 +1157.0,73.1846,1760.3131,100,-120.33164567408988,-120.33164567408988,461.455560549404,461.455560549404,5176.5278,0.0,120.9593,1,2,3,4,5,6 +1157.5,72.3938,1841.2136,100,453.0186413339265,453.0186413339265,456.46927849986804,456.46927849986804,13981.27485,2.5,345.1789,1,2,3,4,5,6 +1158.0,71.603,1922.1141,100,1039.0333532114576,1039.0333532114576,451.4829964503321,451.4829964503321,22786.0219,5.0,569.3985,1,2,3,4,5,6 +1158.5,71.1968,1893.5398,100,1332.5378972931371,1332.5378972931371,448.9217574916554,448.9217574916554,28019.3517,5.0,720.85835,1,2,3,4,5,6 +1159.0,70.7906,1864.9655,100,1629.410728853831,1629.410728853831,446.3605185329788,446.3605185329788,33252.6815,5.0,872.3182,1,2,3,4,5,6 +1159.5,70.52199999999999,1857.885,100,1634.2324920592157,1634.2324920592157,444.66689769521275,444.66689769521275,33208.1944,5.0,874.89535,1,2,3,4,5,6 +1160.0,70.2534,1850.8045,100,1639.0911253832553,1639.0911253832553,442.9732768574468,442.9732768574468,33163.7073,5.0,877.4725,1,2,3,4,5,6 +1160.5,70.00365,1844.2093,100,1643.1791121748652,1643.1791121748652,441.3985121358084,441.3985121358084,33115.8698,5.0,879.7478,1,2,3,4,5,6 +1161.0,69.7539,1837.6141,100,1647.2963725899197,1647.2963725899197,439.82374741417016,439.82374741417016,33068.0323,5.0,882.0231,1,2,3,4,5,6 +1161.5,69.52850000000001,1831.67545,100,1650.840887808596,1650.840887808596,438.4025183120389,438.4025183120389,33019.8738,5.0,884.07195,1,2,3,4,5,6 +1162.0,69.3031,1825.7368,100,1654.4084592464121,1654.4084592464121,436.9812892099075,436.9812892099075,32971.7153,5.0,886.1208,1,2,3,4,5,6 +1162.5,69.10255000000001,1820.4708999999998,100,1657.5949435440514,1657.5949435440514,435.71674840940875,435.71674840940875,32927.003500000006,5.0,887.93755,1,2,3,4,5,6 +1163.0,68.902,1815.205,100,1660.799977359148,1660.799977359148,434.45220760890993,434.45220760890993,32882.2917,5.0,889.7543,1,2,3,4,5,6 +1163.5,68.71855,1810.38985,100,1663.8924361326017,1663.8924361326017,433.2954885370999,433.2954885370999,32841.37975,5.0,891.4148,1,2,3,4,5,6 +1164.0,68.5351,1805.5747,100,1667.0014502641711,1667.0014502641711,432.13876946528995,432.13876946528995,32800.4678,5.0,893.0753,1,2,3,4,5,6 +1164.5,68.3591,1800.9450499999998,100,1669.9783859208208,1669.9783859208208,431.02902535714844,431.02902535714844,32758.421499999997,5.0,894.5995499999999,1,2,3,4,5,6 +1165.0,68.1831,1796.3154,100,1672.970690215024,1672.970690215024,429.9192812490069,429.9192812490069,32716.3752,5.0,896.1238,1,2,3,4,5,6 +1165.5,68.00995,1791.7444500000001,100,1675.6793258045327,1675.6793258045327,428.8275074289802,428.8275074289802,32670.70655,5.0,897.5179499999999,1,2,3,4,5,6 +1166.0,67.8368,1787.1735,100,1678.4017887046562,1678.4017887046562,427.7357336089533,427.7357336089533,32625.0379,5.0,898.9121,1,2,3,4,5,6 +1166.5,67.67089999999999,1782.781,100,1680.8080526193687,1680.8080526193687,426.6896736797449,426.6896736797449,32581.1522,5.0,900.2518,1,2,3,4,5,6 +1167.0,67.505,1778.3885,100,1683.226143781942,1683.226143781942,425.64361375053653,425.64361375053653,32537.2665,5.0,901.5915,1,2,3,4,5,6 +1167.5,67.35705,1774.47465,100,1685.1012090939253,1685.1012090939253,424.7107351096301,424.7107351096301,32498.163,5.0,902.7852,1,2,3,4,5,6 +1168.0,67.2091,1770.5608,100,1686.9845297139818,1686.9845297139818,423.77785646872366,423.77785646872366,32459.0595,5.0,903.9789,1,2,3,4,5,6 +1168.5,67.0889,1767.3878,100,1688.2752724966426,1688.2752724966426,423.01995168577696,423.01995168577696,32427.3577,5.0,904.9467,1,2,3,4,5,6 +1169.0,66.9687,1764.2148,100,1689.5706487060374,1689.5706487060374,422.26204690283026,422.26204690283026,32395.6559,5.0,905.9145,1,2,3,4,5,6 +1169.5,66.8806,1761.8958499999999,100,1690.3259065558623,1690.3259065558623,421.7065443123344,421.7065443123344,32372.4868,5.0,906.6218,1,2,3,4,5,6 +1170.0,66.7925,1759.5769,100,1691.0831567915561,1691.0831567915561,421.1510417218385,421.1510417218385,32349.3177,5.0,907.3291,1,2,3,4,5,6 +1170.5,66.7351,1758.07355,100,1691.430235648107,1691.430235648107,420.7891138138425,420.7891138138425,32334.297599999998,5.0,907.7876,1,2,3,4,5,6 +1171.0,66.6777,1756.5702,100,1691.7779120755517,1691.7779120755517,420.4271859058462,420.4271859058462,32319.2775,5.0,908.2461,1,2,3,4,5,6 +1171.5,66.64625000000001,1755.7496500000002,100,1691.823137280792,1691.823137280792,420.22888220015847,420.22888220015847,32311.079250000003,5.0,908.4963499999999,1,2,3,4,5,6 +1172.0,66.6148,1754.9291,100,1691.8684051892371,1691.8684051892371,420.0305784944707,420.0305784944707,32302.881,5.0,908.7466,1,2,3,4,5,6 +1172.5,66.60415,1754.65775,100,1691.6708549692473,1691.6708549692473,419.96342636519967,419.96342636519967,32300.165399999998,5.0,908.82925,1,2,3,4,5,6 +1173.0,66.5935,1754.3864,100,1691.473241562615,1691.473241562615,419.8962742359286,419.8962742359286,32297.4498,5.0,908.9119,1,2,3,4,5,6 +1173.5,66.5968,1754.4912,100,1691.239259664128,1691.239259664128,419.91708193795625,419.91708193795625,32298.43155,5.0,908.8782,1,2,3,4,5,6 +1174.0,66.6001,1754.596,100,1691.0053009530013,1691.0053009530013,419.93788963998384,419.93788963998384,32299.4133,5.0,908.8445,1,2,3,4,5,6 +1174.5,66.60755,1754.8069,100,1690.9071584827848,1690.9071584827848,419.98486460365234,419.98486460365234,32301.498050000002,5.0,908.7796000000001,1,2,3,4,5,6 +1175.0,66.615,1755.0178,100,1690.8090379644225,1690.8090379644225,420.03183956732084,420.03183956732084,32303.5828,5.0,908.7147,1,2,3,4,5,6 +1175.5,66.62155,1755.18,100,1690.7207016498417,1690.7207016498417,420.0731397031636,420.0731397031636,32305.225449999998,5.0,908.6658,1,2,3,4,5,6 +1176.0,66.6281,1755.3422,100,1690.6323827033937,1690.6323827033937,420.1144398390064,420.1144398390064,32306.8681,5.0,908.6169,1,2,3,4,5,6 +1176.5,66.63865,1755.59725,100,1690.2743434778465,1690.2743434778465,420.1809614318524,420.1809614318524,32309.3525,5.0,908.5373999999999,1,2,3,4,5,6 +1177.0,66.6492,1755.8523,100,1689.9164176014117,1689.9164176014117,420.24748302469834,420.24748302469834,32311.8369,5.0,908.4579,1,2,3,4,5,6 +1177.5,66.67495,1756.51045,100,1689.0592364898664,1689.0592364898664,420.40984615415647,420.40984615415647,32318.207349999997,5.0,908.2517,1,2,3,4,5,6 +1178.0,66.7007,1757.1686,100,1688.202717212863,1688.202717212863,420.5722092836147,420.5722092836147,32324.5778,5.0,908.0455,1,2,3,4,5,6 +1178.5,66.75184999999999,1758.5113999999999,100,1686.7763039676054,1686.7763039676054,420.8947286650434,420.8947286650434,32337.684849999998,5.0,907.6277,1,2,3,4,5,6 +1179.0,66.803,1759.8542,100,1685.3520750864484,1685.3520750864484,421.217248046472,421.217248046472,32350.7919,5.0,907.2099,1,2,3,4,5,6 +1179.5,66.88364999999999,1761.9906,100,1683.4636932344456,1683.4636932344456,421.7257756732994,421.7257756732994,32371.82105,5.0,906.54985,1,2,3,4,5,6 +1180.0,66.9643,1764.127,100,1681.5798600149633,1681.5798600149633,422.23430330012667,422.23430330012667,32392.8502,5.0,905.8898,1,2,3,4,5,6 +1180.5,67.0642,1766.8020999999999,100,1679.8019072321747,1679.8019072321747,422.86420918878207,422.86420918878207,32419.434549999998,5.0,905.0701,1,2,3,4,5,6 +1181.0,67.1641,1769.4772,100,1678.0292435095537,1678.0292435095537,423.4941150774374,423.4941150774374,32446.0189,5.0,904.2504,1,2,3,4,5,6 +1181.5,67.27885,1772.40315,100,1675.7449008120677,1675.7449008120677,424.2176556252173,424.2176556252173,32475.17665,5.0,903.356,1,2,3,4,5,6 +1182.0,67.3936,1775.3291,100,1673.4683371418057,1673.4683371418057,424.941196172997,424.941196172997,32504.3344,5.0,902.4616,1,2,3,4,5,6 +1182.5,67.53110000000001,1779.0462,100,1670.7834827805257,1670.7834827805257,425.8081837574827,425.8081837574827,32541.2317,5.0,901.3214499999999,1,2,3,4,5,6 +1183.0,67.6686,1782.7633,100,1668.109539461434,1668.109539461434,426.6751713419681,426.6751713419681,32578.129,5.0,900.1813,1,2,3,4,5,6 +1183.5,67.81354999999999,1786.61455,100,1666.0030680299144,1666.0030680299144,427.5891338901221,427.5891338901221,32616.7028,5.0,899.0092500000001,1,2,3,4,5,6 +1184.0,67.9585,1790.4658,100,1663.9055824657698,1663.9055824657698,428.5030964382762,428.5030964382762,32655.2766,5.0,897.8372,1,2,3,4,5,6 +1184.5,68.08395,1793.79275,100,1662.4927310621665,1662.4927310621665,429.29410438353966,429.29410438353966,32688.7464,5.0,896.8286,1,2,3,4,5,6 +1185.0,68.2094,1797.1197,100,1661.0850766609883,1661.0850766609883,430.085112328803,430.085112328803,32722.2162,5.0,895.82,1,2,3,4,5,6 +1185.5,68.3031,1799.58565,100,1660.211716334983,1660.211716334983,430.6759249591034,430.6759249591034,32745.777000000002,5.0,895.0391500000001,1,2,3,4,5,6 +1186.0,68.3968,1802.0516,100,1659.3407489239262,1659.3407489239262,431.2667375894037,431.2667375894037,32769.3378,5.0,894.2583,1,2,3,4,5,6 +1186.5,68.46115,1803.7246,100,1658.6652601365884,1658.6652601365884,431.67248777894304,431.67248777894304,32783.8015,5.0,893.68805,1,2,3,4,5,6 +1187.0,68.5255,1805.3976,100,1657.991040007005,1657.991040007005,432.0782379684822,432.0782379684822,32798.2652,5.0,893.1178,1,2,3,4,5,6 +1187.5,68.57239999999999,1806.6123499999999,100,1657.3509258243844,1657.3509258243844,432.37395955184485,432.37395955184485,32808.6806,5.0,892.70135,1,2,3,4,5,6 +1188.0,68.6193,1807.8271,100,1656.7116866537551,1656.7116866537551,432.66968113520767,432.66968113520767,32819.096,5.0,892.2849,1,2,3,4,5,6 +1188.5,68.66045,1808.89955,100,1655.981392431888,1655.981392431888,432.9291468741282,432.9291468741282,32828.2288,5.0,891.9156499999999,1,2,3,4,5,6 +1189.0,68.7016,1809.972,100,1655.2519730544852,1655.2519730544852,433.1886126130488,433.1886126130488,32837.3616,5.0,891.5464,1,2,3,4,5,6 +1189.5,68.74334999999999,1811.0711000000001,100,1654.452779010625,1654.452779010625,433.45186157051984,433.45186157051984,32846.68905,5.0,891.1670999999999,1,2,3,4,5,6 +1190.0,68.7851,1812.1702,100,1653.654555128945,1653.654555128945,433.71511052799104,433.71511052799104,32856.0165,5.0,890.7878,1,2,3,4,5,6 +1190.5,68.82685000000001,1813.28025,100,1652.937104908912,1652.937104908912,433.9783594854622,433.9783594854622,32865.449649999995,5.0,890.405,1,2,3,4,5,6 +1191.0,68.8686,1814.3903,100,1652.2205245641699,1652.2205245641699,434.24160844293317,434.24160844293317,32874.8828,5.0,890.0222,1,2,3,4,5,6 +1191.5,68.90625,1815.3876,100,1651.664100832653,1651.664100832653,434.47900540697594,434.47900540697594,32883.38525,5.0,889.6791000000001,1,2,3,4,5,6 +1192.0,68.9439,1816.3849,100,1651.1082848228775,1651.1082848228775,434.7164023710188,434.7164023710188,32891.8877,5.0,889.336,1,2,3,4,5,6 +1192.5,68.97625,1817.2277,100,1650.6096046102828,1650.6096046102828,434.9203809045321,434.9203809045321,32899.0787,5.0,889.04615,1,2,3,4,5,6 +1193.0,69.0086,1818.0705,100,1650.1113919424536,1650.1113919424536,435.12435943804576,435.12435943804576,32906.2697,5.0,888.7563,1,2,3,4,5,6 +1193.5,69.0402,1818.88755,100,1649.4740950489718,1649.4740950489718,435.3236089483711,435.3236089483711,32913.20645,5.0,888.4744000000001,1,2,3,4,5,6 +1194.0,69.0718,1819.7046,100,1648.8373812757163,1648.8373812757163,435.52285845869653,435.52285845869653,32920.1432,5.0,888.1925,1,2,3,4,5,6 +1194.5,69.10925,1820.6875,100,1647.9806083700807,1647.9806083700807,435.75899434988924,435.75899434988924,32928.4513,5.0,887.8524,1,2,3,4,5,6 +1195.0,69.1467,1821.6704,100,1647.1247635245068,1647.1247635245068,435.9951302410817,435.9951302410817,32936.7594,5.0,887.5123,1,2,3,4,5,6 +1195.5,69.1919,1822.8715499999998,100,1646.1670250708535,1646.1670250708535,436.28013270521814,436.28013270521814,32946.9206,5.0,887.0969,1,2,3,4,5,6 +1196.0,69.2371,1824.0727,100,1645.2105370964412,1645.2105370964412,436.56513516935445,436.56513516935445,32957.0818,5.0,886.6815,1,2,3,4,5,6 +1196.5,69.28635,1825.3778499999999,100,1644.2904008365288,1644.2904008365288,436.87567435870653,436.87567435870653,32968.155750000005,5.0,886.231,1,2,3,4,5,6 +1197.0,69.3356,1826.683,100,1643.3715717466928,1643.3715717466928,437.18621354805873,437.18621354805873,32979.2297,5.0,885.7805,1,2,3,4,5,6 +1197.5,69.3848,1827.9802,100,1642.5065504260301,1642.5065504260301,437.4964374691982,437.4964374691982,32990.255000000005,5.0,885.3332499999999,1,2,3,4,5,6 +1198.0,69.434,1829.2774,100,1641.6427549903503,1641.6427549903503,437.80666139033787,437.80666139033787,33001.2803,5.0,884.886,1,2,3,4,5,6 +1198.5,69.4825,1830.5483,100,1640.7612756449462,1640.7612756449462,438.1124715565019,438.1124715565019,33012.0812,5.0,884.4477999999999,1,2,3,4,5,6 +1199.0,69.531,1831.8192,100,1639.881026017172,1639.881026017172,438.41828172266594,438.41828172266594,33022.8821,5.0,884.0096,1,2,3,4,5,6 +1199.5,69.58185,1833.14915,100,1638.8562773050728,1638.8562773050728,438.73890949481927,438.73890949481927,33033.99845,5.0,883.5505499999999,1,2,3,4,5,6 +1200.0,69.6327,1834.4791,100,1637.8330252596845,1637.8330252596845,439.0595372669726,439.0595372669726,33045.1148,5.0,883.0915,1,2,3,4,5,6 +1200.5,69.69125,1836.0151,100,1636.5575833838539,1636.5575833838539,439.4287163438572,439.4287163438572,33056.44055,5.0,882.56065,1,2,3,4,5,6 +1201.0,69.7498,1837.5511,100,1635.2842827936424,1635.2842827936424,439.7978954207417,439.7978954207417,33067.7663,5.0,882.0298,1,2,3,4,5,6 +1201.5,69.81995,1839.398,100,1633.7481511373182,1633.7481511373182,440.24021672293566,440.24021672293566,33081.0113,5.0,881.3914500000001,1,2,3,4,5,6 +1202.0,69.8901,1841.2449,100,1632.2151031691183,1632.2151031691183,440.68253802512965,440.68253802512965,33094.2563,5.0,880.7531,1,2,3,4,5,6 +1202.5,69.9734,1843.4391999999998,100,1630.4311895091564,1630.4311895091564,441.20777486722164,441.20777486722164,33110.00385,5.0,879.9949,1,2,3,4,5,6 +1203.0,70.0567,1845.6335,100,1628.6515181274592,1628.6515181274592,441.7330117093137,441.7330117093137,33125.7514,5.0,879.2367,1,2,3,4,5,6 +1203.5,70.1523,1848.16005,100,1626.6837061079968,1626.6837061079968,442.3358045316904,442.3358045316904,33143.9018,5.0,878.3642500000001,1,2,3,4,5,6 +1204.0,70.2479,1850.6866,100,1624.721250058721,1624.721250058721,442.9385973540673,442.9385973540673,33162.0522,5.0,877.4918,1,2,3,4,5,6 +1204.5,70.35245,1853.44825,100,1622.687989544074,1622.687989544074,443.59782318648894,443.59782318648894,33181.91845,5.0,876.53885,1,2,3,4,5,6 +1205.0,70.457,1856.2099,100,1620.6607632740538,1620.6607632740538,444.2570490189105,444.2570490189105,33201.7847,5.0,875.5859,1,2,3,4,5,6 +1205.5,70.56725,1859.1114,100,1618.556039437558,1618.556039437558,444.95221542756167,444.95221542756167,33222.67195,5.0,874.5851,1,2,3,4,5,6 +1206.0,70.6775,1862.0129,100,1616.4578819284782,1616.4578819284782,445.6473818362128,445.6473818362128,33243.5592,5.0,873.5843,1,2,3,4,5,6 +1206.5,70.79335,1865.06755,100,1614.221435120672,1614.221435120672,446.3778582846685,446.3778582846685,33264.4522,5.0,872.5306499999999,1,2,3,4,5,6 +1207.0,70.9092,1868.1222,100,1611.992296034929,1611.992296034929,447.1083347331242,447.1083347331242,33285.3452,5.0,871.477,1,2,3,4,5,6 +1207.5,71.0279,1871.27225,100,1609.84663471678,1609.84663471678,447.8567814696947,447.8567814696947,33302.545750000005,5.0,870.3908,1,2,3,4,5,6 +1208.0,71.1466,1874.4223,100,1607.7081329817586,1607.7081329817586,448.6052282062651,448.6052282062651,33319.7463,5.0,869.3046,1,2,3,4,5,6 +1208.5,71.2562,1877.33835,100,1606.0704683241597,1606.0704683241597,449.2962961281533,449.2962961281533,33335.03365,5.0,868.3002,1,2,3,4,5,6 +1209.0,71.3658,1880.2544,100,1604.4378337523024,1604.4378337523024,449.9873640500412,449.9873640500412,33350.321,5.0,867.2958,1,2,3,4,5,6 +1209.5,71.45065,1882.5039000000002,100,1603.53718337062,1603.53718337062,450.52237420672213,450.52237420672213,33362.164950000006,5.0,866.52225,1,2,3,4,5,6 +1210.0,71.5355,1884.7534,100,1602.638669555675,1602.638669555675,451.05738436340283,451.05738436340283,33374.0089,5.0,865.7487,1,2,3,4,5,6 +1210.5,71.58699999999999,1886.1039,100,1602.39746754299,1602.39746754299,451.38211062231915,451.38211062231915,33381.1651,5.0,865.28545,1,2,3,4,5,6 +1211.0,71.6385,1887.4544,100,1602.1566123243788,1602.1566123243788,451.7068368812357,451.7068368812357,33388.3213,5.0,864.8222,1,2,3,4,5,6 +1211.5,71.66045,1888.0061500000002,100,1602.244170752486,1602.244170752486,451.84523962654083,451.84523962654083,33391.281350000005,5.0,864.6338,1,2,3,4,5,6 +1212.0,71.6824,1888.5579,100,1602.3316755577378,1602.3316755577378,451.98364237184603,451.98364237184603,33394.2414,5.0,864.4454,1,2,3,4,5,6 +1212.5,71.6899,1888.72005,100,1602.2797638021536,1602.2797638021536,452.03093260372697,452.03093260372697,33395.116500000004,5.0,864.39015,1,2,3,4,5,6 +1213.0,71.6974,1888.8822,100,1602.2278629071627,1602.2278629071627,452.078222835608,452.078222835608,33395.9916,5.0,864.3349,1,2,3,4,5,6 +1213.5,71.71005,1889.19255,100,1601.7001130803844,1601.7001130803844,452.1579856933807,452.1579856933807,33397.584050000005,5.0,864.2272,1,2,3,4,5,6 +1214.0,71.7227,1889.5029,100,1601.1725494160146,1601.1725494160146,452.2377485511534,452.2377485511534,33399.1765,5.0,864.1195,1,2,3,4,5,6 +1214.5,71.75370000000001,1890.31525,100,1600.162446912145,1600.162446912145,452.43321484292835,452.43321484292835,33403.36135,5.0,863.83785,1,2,3,4,5,6 +1215.0,71.7847,1891.1276,100,1599.1532168275412,1599.1532168275412,452.62868113470324,452.62868113470324,33407.5462,5.0,863.5562,1,2,3,4,5,6 +1215.5,71.83855,1892.54295,100,1597.7008606521151,1597.7008606521151,452.96822499960905,452.96822499960905,33414.876449999996,5.0,863.0665,1,2,3,4,5,6 +1216.0,71.8924,1893.9583,100,1596.2506802109824,1596.2506802109824,453.3077688645148,453.3077688645148,33422.2067,5.0,862.5768,1,2,3,4,5,6 +1216.5,71.96945,1895.9977,100,1594.3843670196177,1594.3843670196177,453.7935971800393,453.7935971800393,33432.8004,5.0,861.8720000000001,1,2,3,4,5,6 +1217.0,72.0465,1898.0371,100,1592.5220456788327,1592.5220456788327,454.2794254955637,454.2794254955637,33443.3941,5.0,861.1672,1,2,3,4,5,6 +1217.5,72.14150000000001,1900.56225,100,1590.53729265402,1590.53729265402,454.87843509939023,454.87843509939023,33456.5496,5.0,860.2954500000001,1,2,3,4,5,6 +1218.0,72.2365,1903.0874,100,1588.5577600243641,1588.5577600243641,455.47744470321663,455.47744470321663,33469.7051,5.0,859.4237,1,2,3,4,5,6 +1218.5,72.33795,1905.77315,100,1586.7074589893684,1586.7074589893684,456.1171239064607,456.1171239064607,33483.732449999996,5.0,858.4973,1,2,3,4,5,6 +1219.0,72.4394,1908.4589,100,1584.8623405770888,1584.8623405770888,456.7568031097048,456.7568031097048,33497.7598,5.0,857.5709,1,2,3,4,5,6 +1219.5,72.53855,1911.0787,100,1583.1488203307067,1583.1488203307067,457.381979975172,457.381979975172,33511.45635,5.0,856.6676500000001,1,2,3,4,5,6 +1220.0,72.6377,1913.6985,100,1581.4399779728708,1581.4399779728708,458.00715684063925,458.00715684063925,33525.1529,5.0,855.7644,1,2,3,4,5,6 +1220.5,72.7306,1916.1458,100,1579.9043596230472,1579.9043596230472,458.59292517953895,458.59292517953895,33537.95345,5.0,854.92075,1,2,3,4,5,6 +1221.0,72.8235,1918.5931,100,1578.3726592102826,1578.3726592102826,459.1786935184386,459.1786935184386,33550.754,5.0,854.0771,1,2,3,4,5,6 +1221.5,72.9048,1920.7777,100,1577.2017535470918,1577.2017535470918,459.691319632029,459.691319632029,33562.187099999996,5.0,853.3242,1,2,3,4,5,6 +1222.0,72.9861,1922.9623,100,1576.033456452667,1576.033456452667,460.20394574561936,460.20394574561936,33573.6202,5.0,852.5713,1,2,3,4,5,6 +1222.5,73.04825,1924.5619499999998,100,1575.3589242863454,1575.3589242863454,460.59582413380684,460.59582413380684,33582.0159,5.0,852.02055,1,2,3,4,5,6 +1223.0,73.1104,1926.1616,100,1574.685538938373,1574.685538938373,460.9877025219944,460.9877025219944,33590.4116,5.0,851.4698,1,2,3,4,5,6 +1223.5,73.1579,1927.4161,100,1573.9417014977194,1573.9417014977194,461.2872073239075,461.2872073239075,33596.97735,5.0,851.03745,1,2,3,4,5,6 +1224.0,73.2054,1928.6706,100,1573.1988293486547,1573.1988293486547,461.58671212582067,461.58671212582067,33603.5431,5.0,850.6051,1,2,3,4,5,6 +1224.5,73.23859999999999,1929.5455,100,1573.0458351880022,1573.0458351880022,461.7960502189474,461.7960502189474,33608.13975,5.0,850.30395,1,2,3,4,5,6 +1225.0,73.2718,1930.4204,100,1572.8929796729442,1572.8929796729442,462.0053883120741,462.0053883120741,33612.7364,5.0,850.0028,1,2,3,4,5,6 +1225.5,73.2913,1930.91745,100,1572.6311004307468,1572.6311004307468,462.12834291496483,462.12834291496483,33615.34675,5.0,849.83175,1,2,3,4,5,6 +1226.0,73.3108,1931.4145,100,1572.3693605035,1572.3693605035,462.2512975178555,462.2512975178555,33617.9571,5.0,849.6607,1,2,3,4,5,6 +1226.5,73.32715,1931.83895,100,1572.1029702777212,1572.1029702777212,462.3543902233562,462.3543902233562,33620.1757,5.0,849.51435,1,2,3,4,5,6 +1227.0,73.3435,1932.2634,100,1571.8366988212993,1571.8366988212993,462.4574829288569,462.4574829288569,33622.3943,5.0,849.368,1,2,3,4,5,6 +1227.5,73.36135,1932.72425,100,1571.4160348194248,1571.4160348194248,462.5700336807337,462.5700336807337,33624.795849999995,5.0,849.2089000000001,1,2,3,4,5,6 +1228.0,73.3792,1933.1851,100,1570.9955754764298,1570.9955754764298,462.6825844326104,462.6825844326104,33627.1974,5.0,849.0498,1,2,3,4,5,6 +1228.5,73.4032,1933.8220999999999,100,1570.407607134294,1570.407607134294,462.8339131746298,462.8339131746298,33630.51205,5.0,848.8298,1,2,3,4,5,6 +1229.0,73.4272,1934.4591,100,1569.8200231521835,1569.8200231521835,462.9852419166491,462.9852419166491,33633.8267,5.0,848.6098,1,2,3,4,5,6 +1229.5,73.4684,1935.45,100,1568.5199850547992,1568.5199850547992,463.24502292378224,463.24502292378224,33638.975,5.0,848.26735,1,2,3,4,5,6 +1230.0,73.5096,1936.4409,100,1567.2214042247545,1567.2214042247545,463.5048039309154,463.5048039309154,33644.1233,5.0,847.9249,1,2,3,4,5,6 +1230.5,73.58635000000001,1938.5022,100,1564.9392073122256,1564.9392073122256,463.9887406371647,463.9887406371647,33654.82725,5.0,847.2124,1,2,3,4,5,6 +1231.0,73.6631,1940.5635,100,1562.6617660674067,1562.6617660674067,464.47267734341386,464.47267734341386,33665.5312,5.0,846.4999,1,2,3,4,5,6 +1231.5,73.77945,1943.6468,100,1559.8385610220732,1559.8385610220732,465.20630647399486,465.20630647399486,33681.592099999994,5.0,845.4354000000001,1,2,3,4,5,6 +1232.0,73.8958,1946.7301,100,1557.024246330644,1557.024246330644,465.93993560457596,465.93993560457596,33697.653,5.0,844.3709,1,2,3,4,5,6 +1232.5,74.03909999999999,1950.5023,100,1554.0270545428023,1554.0270545428023,466.8434943017162,466.8434943017162,33717.3362,5.0,843.06935,1,2,3,4,5,6 +1233.0,74.1824,1954.2745,100,1551.041442255845,1551.041442255845,467.7470529988564,467.7470529988564,33737.0194,5.0,841.7678,1,2,3,4,5,6 +1233.5,74.3554,1958.8563,100,1547.068427726836,1547.068427726836,468.8378810142456,468.8378810142456,33760.9257,5.0,840.1868999999999,1,2,3,4,5,6 +1234.0,74.5284,1963.4381,100,1543.1138580192246,1543.1138580192246,469.9287090296347,469.9287090296347,33784.832,5.0,838.606,1,2,3,4,5,6 +1234.5,74.72525,1968.6538500000001,100,1539.3773021033717,1539.3773021033717,471.1699199824055,471.1699199824055,33812.0722,5.0,836.807,1,2,3,4,5,6 +1235.0,74.9221,1973.8696,100,1535.6603810090744,1535.6603810090744,472.4111309351763,472.4111309351763,33839.3124,5.0,835.008,1,2,3,4,5,6 +1235.5,75.11965000000001,1979.0824499999999,100,1532.155922065664,1532.155922065664,473.6567556429228,473.6567556429228,33866.5499,5.0,833.2103,1,2,3,4,5,6 +1236.0,75.3172,1984.2953,100,1528.6698468610093,1528.6698468610093,474.902380350669,474.902380350669,33893.7874,5.0,831.4126,1,2,3,4,5,6 +1236.5,75.5068,1989.301,100,1525.4127663866036,1525.4127663866036,476.0978774126214,476.0978774126214,33919.944749999995,5.0,829.6864,1,2,3,4,5,6 +1237.0,75.6964,1994.3067,100,1522.1720022088236,1522.1720022088236,477.29337447457397,477.29337447457397,33946.1021,5.0,827.9602,1,2,3,4,5,6 +1237.5,75.87025,1998.9105,100,1519.4654625890912,1519.4654625890912,478.3895620495763,478.3895620495763,33971.20015,5.0,826.3984,1,2,3,4,5,6 +1238.0,76.0441,2003.5143,100,1516.7712982072242,1516.7712982072242,479.48574962457866,479.48574962457866,33996.2982,5.0,824.8366,1,2,3,4,5,6 +1238.5,76.1908,2007.39385,100,1514.870590793114,1514.870590793114,480.41074656017156,480.41074656017156,34018.6483,5.0,823.55665,1,2,3,4,5,6 +1239.0,76.3375,2011.2734,100,1512.9771886687408,1512.9771886687408,481.3357434957645,481.3357434957645,34040.9984,5.0,822.2767,1,2,3,4,5,6 +1239.5,76.44855000000001,2014.20045,100,1511.7967029198064,1511.7967029198064,482.03595419581643,482.03595419581643,34057.6268,5.0,821.3112,1,2,3,4,5,6 +1240.0,76.5596,2017.1275,100,1510.6196417692881,1510.6196417692881,482.73616489586817,482.73616489586817,34074.2552,5.0,820.3457,1,2,3,4,5,6 +1240.5,76.6325,2019.0462499999999,100,1510.1079666982025,1510.1079666982025,483.19582594975174,483.19582594975174,34085.1605,5.0,819.71295,1,2,3,4,5,6 +1241.0,76.7054,2020.965,100,1509.5972642082568,1509.5972642082568,483.65548700363536,483.65548700363536,34096.0658,5.0,819.0802,1,2,3,4,5,6 +1241.5,76.74185,2021.9098,100,1509.6522676219035,1509.6522676219035,483.8853175305772,483.8853175305772,34101.44275,5.0,818.7688,1,2,3,4,5,6 +1242.0,76.7783,2022.8546,100,1509.7072188105233,1509.7072188105233,484.11514805751904,484.11514805751904,34106.8197,5.0,818.4574,1,2,3,4,5,6 +1242.5,76.78835000000001,2023.1069,100,1509.8929368191916,1509.8929368191916,484.1785169682397,484.1785169682397,34108.260500000004,5.0,818.37435,1,2,3,4,5,6 +1243.0,76.7984,2023.3592,100,1510.0786062209631,1510.0786062209631,484.24188587896015,484.24188587896015,34109.7013,5.0,818.2913,1,2,3,4,5,6 +1243.5,76.7907,2023.112,100,1510.5546183326885,1510.5546183326885,484.1933345742289,484.1933345742289,34108.300950000004,5.0,818.37295,1,2,3,4,5,6 +1244.0,76.783,2022.8648,100,1511.0307259158928,1511.0307259158928,484.1447832694978,484.1447832694978,34106.9006,5.0,818.4546,1,2,3,4,5,6 +1244.5,76.77475,2022.62425,100,1510.850674394902,1510.850674394902,484.09276401442867,484.09276401442867,34105.535149999996,5.0,818.534,1,2,3,4,5,6 +1245.0,76.7665,2022.3837,100,1510.6705841740866,1510.6705841740866,484.0407447593595,484.0407447593595,34104.1697,5.0,818.6134,1,2,3,4,5,6 +1245.5,76.7734,2022.5803,100,1510.2678763608228,1510.2678763608228,484.08425177269004,484.08425177269004,34105.2812,5.0,818.5483999999999,1,2,3,4,5,6 +1246.0,76.7803,2022.7769,100,1509.865240927686,1509.865240927686,484.12775878602054,484.12775878602054,34106.3927,5.0,818.4834,1,2,3,4,5,6 +1246.5,76.8087,2023.48625,100,1508.7906025098716,1508.7906025098716,484.3068311307435,484.3068311307435,34110.408599999995,5.0,818.2490499999999,1,2,3,4,5,6 +1247.0,76.8371,2024.1956,100,1507.7167584929678,1507.7167584929678,484.4859034754663,484.4859034754663,34114.4245,5.0,818.0147,1,2,3,4,5,6 +1247.5,76.897,2025.76665,100,1505.9846554742057,1505.9846554742057,484.86359479408947,484.86359479408947,34123.32595,5.0,817.4958999999999,1,2,3,4,5,6 +1248.0,76.9569,2027.3377,100,1504.255248847082,1504.255248847082,485.24128611271266,485.24128611271266,34132.2274,5.0,816.9771,1,2,3,4,5,6 +1248.5,77.05645000000001,2029.9403,100,1501.611355506255,1501.611355506255,485.86898512388035,485.86898512388035,34146.98025,5.0,816.11785,1,2,3,4,5,6 +1249.0,77.156,2032.5429,100,1498.9742846959407,1498.9742846959407,486.49668413504776,486.49668413504776,34161.7331,5.0,815.2586,1,2,3,4,5,6 +1249.5,77.2971,2036.3135,100,1495.745500219284,1495.745500219284,487.3863710308362,487.3863710308362,34183.11515,5.0,814.01395,1,2,3,4,5,6 +1250.0,77.4382,2040.0841,100,1492.5284820669904,1492.5284820669904,488.2760579266247,488.2760579266247,34204.4972,5.0,812.7693,1,2,3,4,5,6 +1250.5,77.6233,2044.85975,100,1488.2774095149266,1488.2774095149266,489.4431808494486,489.4431808494486,34231.58515,5.0,811.193,1,2,3,4,5,6 +1251.0,77.8084,2049.6354,100,1484.0465628903817,1484.0465628903817,490.61030377227246,490.61030377227246,34258.6731,5.0,809.6167,1,2,3,4,5,6 +1251.5,78.03645,2055.7613,100,1479.3363626228513,1479.3363626228513,492.0482420896683,492.0482420896683,34293.42355,5.0,807.59485,1,2,3,4,5,6 +1252.0,78.2645,2061.8872,100,1474.6536118674492,1474.6536118674492,493.48618040706424,493.48618040706424,34328.174,5.0,805.573,1,2,3,4,5,6 +1252.5,78.51535,2068.4745000000003,100,1470.0546310880613,1470.0546310880613,495.06788102937844,495.06788102937844,34365.55765,5.0,803.3992499999999,1,2,3,4,5,6 +1253.0,78.7662,2075.0618,100,1465.4849434402067,1465.4849434402067,496.6495816516927,496.6495816516927,34402.9413,5.0,801.2255,1,2,3,4,5,6 +1253.5,79.03275,2082.08885,100,1460.3703005779255,1460.3703005779255,498.3302764927444,498.3302764927444,34442.81865,5.0,798.9066,1,2,3,4,5,6 +1254.0,79.2993,2089.1159,100,1455.2900415766596,1455.2900415766596,500.0109713337964,500.0109713337964,34482.696,5.0,796.5877,1,2,3,4,5,6 +1254.5,79.58715000000001,2096.7039,100,1449.8166610187698,1449.8166610187698,501.8259704333904,501.8259704333904,34525.757750000004,5.0,794.0837,1,2,3,4,5,6 +1255.0,79.875,2104.2919,100,1444.3827299154927,1444.3827299154927,503.6409695329844,503.6409695329844,34568.8195,5.0,791.5797,1,2,3,4,5,6 +1255.5,80.17835,2112.28655,100,1438.8461802968009,1438.8461802968009,505.5537017784658,505.5537017784658,34614.19255,5.0,788.9416,1,2,3,4,5,6 +1256.0,80.4817,2120.2812,100,1433.351367180365,1433.351367180365,507.4664340239473,507.4664340239473,34659.5656,5.0,786.3035,1,2,3,4,5,6 +1256.5,80.7985,2128.6451500000003,100,1427.4449332227703,1427.4449332227703,509.463973418602,509.463973418602,34707.03455,5.0,783.54355,1,2,3,4,5,6 +1257.0,81.1153,2137.0091,100,1421.5846350318623,1421.5846350318623,511.4615128132568,511.4615128132568,34754.5035,5.0,780.7836,1,2,3,4,5,6 +1257.5,81.4423,2145.6261000000004,100,1415.760065899416,1415.760065899416,513.5233669232697,513.5233669232697,34803.41145,5.0,777.94025,1,2,3,4,5,6 +1258.0,81.7693,2154.2431,100,1409.9820823218492,1409.9820823218492,515.5852210332828,515.5852210332828,34852.3194,5.0,775.0969,1,2,3,4,5,6 +1258.5,82.10079999999999,2162.9697,100,1404.0356636597944,1404.0356636597944,517.6754492824242,517.6754492824242,34902.3805,5.0,772.21735,1,2,3,4,5,6 +1259.0,82.4323,2171.6963,100,1398.1370718274268,1398.1370718274268,519.7656775315659,519.7656775315659,34952.4416,5.0,769.3378,1,2,3,4,5,6 +1259.5,82.77275,2180.6279999999997,100,1391.878445937824,1391.878445937824,521.9123387907522,521.9123387907522,35019.744699999996,5.0,766.3829499999999,1,2,3,4,5,6 +1260.0,83.1132,2189.5597,100,1385.6710934725174,1385.6710934725174,524.0590000499384,524.0590000499384,35087.0478,5.0,763.4281,1,2,3,4,5,6 +1260.5,83.268,2159.52685,100,880.4107055771724,880.4107055771724,525.035070435963,525.035070435963,23393.93465,2.5,476.95835,1,2,3,4,5,6 +1261.0,83.4228,2129.494,100,377.02544793509685,377.02544793509685,526.0111408219874,526.0111408219874,11700.8215,0.0,190.4886,1,2,3,4,5,6 +1261.5,83.2984,1999.09465,100,131.16673248225655,131.16673248225655,525.2267535091875,525.2267535091875,5851.5272,0.0,53.1755,1,2,3,4,5,6 +1262.0,83.174,1868.6953,100,-115.42742491644024,-115.42742491644024,524.4423661963873,524.4423661963873,2.2329,0.0,-84.1376,1,2,3,4,5,6 +1262.5,83.1344,1757.2231000000002,100,260.2022224855174,260.2022224855174,524.1926737720555,524.1926737720555,8331.89405,3.0,200.19594999999998,1,2,3,4,5,6 +1263.0,83.0948,1645.7509,100,636.189893110038,636.189893110038,523.9429813477237,523.9429813477237,16661.5552,6.0,484.5295,1,2,3,4,5,6 +1263.5,83.3298,1626.59835,100,868.598458702649,868.598458702649,525.4247419466627,525.4247419466627,22311.7459,6.0,673.57795,1,2,3,4,5,6 +1264.0,83.5648,1607.4458,100,1099.6998707350463,1099.6998707350463,526.9065025456017,526.9065025456017,27961.9366,6.0,862.6264,1,2,3,4,5,6 +1264.5,83.75795,1611.2402,100,763.8952117858663,763.8952117858663,528.1243836506444,528.1243836506444,20561.86825,6.0,627.08285,1,2,3,4,5,6 +1265.0,83.9511,1615.0346,100,429.6357540282379,429.6357540282379,529.3422647556873,529.3422647556873,13161.7999,6.0,391.5393,1,2,3,4,5,6 +1265.5,83.97555,1615.2696999999998,100,378.80120363605835,378.80120363605835,529.4964309116195,529.4964309116195,12016.833200000001,6.0,355.8018,1,2,3,4,5,6 +1266.0,84.0,1615.5048,100,327.99624621428575,327.99624621428575,529.6505970675516,529.6505970675516,10871.8665,6.0,320.0643,1,2,3,4,5,6 +1266.5,84.0,1615.5048,100,312.0375220714285,312.0375220714285,529.6505970675516,529.6505970675516,10533.4804,6.0,308.9507,1,2,3,4,5,6 +1267.0,84.0,1615.5048,100,296.0787979285714,296.0787979285714,529.6505970675516,529.6505970675516,10195.0943,6.0,297.8371,1,2,3,4,5,6 +1267.5,84.0,1615.5048,100,258.56217707142855,258.56217707142855,529.6505970675516,529.6505970675516,9407.7008,6.0,271.75805,1,2,3,4,5,6 +1268.0,84.0,1615.5048,100,221.04555621428568,221.04555621428568,529.6505970675516,529.6505970675516,8620.3073,6.0,245.679,1,2,3,4,5,6 +1268.5,84.0,1615.5048,100,176.67247435714282,176.67247435714282,529.6505970675516,529.6505970675516,7651.255950000001,6.0,215.55825,1,2,3,4,5,6 +1269.0,84.0,1615.5048,100,132.29939249999998,132.29939249999998,529.6505970675516,529.6505970675516,6682.2046,6.0,185.4375,1,2,3,4,5,6 +1269.5,84.0,1615.5048,100,98.72870914285714,98.72870914285714,529.6505970675516,529.6505970675516,5983.5707,6.0,163.3415,1,2,3,4,5,6 +1270.0,84.0,1615.5048,100,65.15802578571429,65.15802578571429,529.6505970675516,529.6505970675516,5284.9368,6.0,141.2455,1,2,3,4,5,6 +1270.5,84.0,1615.5048,100,54.464760642857144,54.464760642857144,529.6505970675516,529.6505970675516,5064.30385,6.0,134.2375,1,2,3,4,5,6 +1271.0,84.0,1615.5048,100,43.7714955,43.7714955,529.6505970675516,529.6505970675516,4843.6709,6.0,127.2295,1,2,3,4,5,6 +1271.5,84.0,1615.5048,100,63.40287278571428,63.40287278571428,529.6505970675516,529.6505970675516,5248.9109,6.0,140.1012,1,2,3,4,5,6 +1272.0,84.0,1615.5048,100,83.03425007142857,83.03425007142857,529.6505970675516,529.6505970675516,5654.1509,6.0,152.9729,1,2,3,4,5,6 +1272.5,84.0,1615.5048,100,131.1025332857143,131.1025332857143,529.6505970675516,529.6505970675516,6675.24915,6.0,184.96605,1,2,3,4,5,6 +1273.0,84.0,1615.5048,100,179.1708165,179.1708165,529.6505970675516,529.6505970675516,7696.3474,6.0,216.9592,1,2,3,4,5,6 +1273.5,84.0,1615.5048,100,237.43044160714282,237.43044160714282,529.6505970675516,529.6505970675516,8947.2713,6.0,257.26295000000005,1,2,3,4,5,6 +1274.0,84.0,1615.5048,100,295.69006671428565,295.69006671428565,529.6505970675516,529.6505970675516,10198.1952,6.0,297.5667,1,2,3,4,5,6 +1274.5,84.0,1615.5048,100,343.81517142857143,343.81517142857143,529.6505970675516,529.6505970675516,11262.70505,6.0,331.0799,1,2,3,4,5,6 +1275.0,84.0,1615.5048,100,391.9402761428571,391.9402761428571,529.6505970675516,529.6505970675516,12327.2149,6.0,364.5931,1,2,3,4,5,6 +1275.5,84.0,1615.5048,100,422.86875975,422.86875975,529.6505970675516,529.6505970675516,12994.54175,6.0,386.13059999999996,1,2,3,4,5,6 +1276.0,84.0,1615.5048,100,453.79724335714286,453.79724335714286,529.6505970675516,529.6505970675516,13661.8686,6.0,407.6681,1,2,3,4,5,6 +1276.5,84.0,1615.5048,100,471.67797728571423,471.67797728571423,529.6505970675516,529.6505970675516,14056.195899999999,6.0,420.1196,1,2,3,4,5,6 +1277.0,84.0,1615.5048,100,489.55871121428567,489.55871121428567,529.6505970675516,529.6505970675516,14450.5232,6.0,432.5711,1,2,3,4,5,6 +1277.5,84.0,1615.5048,100,496.61585132142847,496.61585132142847,529.6505970675516,529.6505970675516,14608.69985,6.0,437.4863,1,2,3,4,5,6 +1278.0,84.0,1615.5048,100,503.6729914285714,503.6729914285714,529.6505970675516,529.6505970675516,14766.8765,6.0,442.4015,1,2,3,4,5,6 +1278.5,84.0,1615.5048,100,507.9134086071428,507.9134086071428,529.6505970675516,529.6505970675516,14861.984250000001,6.0,445.3569,1,2,3,4,5,6 +1279.0,84.0,1615.5048,100,512.1538257857143,512.1538257857143,529.6505970675516,529.6505970675516,14957.092,6.0,448.3123,1,2,3,4,5,6 +1279.5,84.0,1615.5048,100,534.2817413571429,534.2817413571429,529.6505970675516,529.6505970675516,15455.204099999999,6.0,463.7347,1,2,3,4,5,6 +1280.0,84.0,1615.5048,100,556.4096569285714,556.4096569285714,529.6505970675516,529.6505970675516,15953.3162,6.0,479.1571,1,2,3,4,5,6 +1280.5,84.0,1615.5048,100,597.5660105357142,597.5660105357142,529.6505970675516,529.6505970675516,16884.3607,6.0,507.84175,1,2,3,4,5,6 +1281.0,84.0,1615.5048,100,638.7223641428571,638.7223641428571,529.6505970675516,529.6505970675516,17815.4052,6.0,536.5264,1,2,3,4,5,6 +1281.5,84.0,1615.5048,100,676.8392184642858,676.8392184642858,529.6505970675516,529.6505970675516,18653.74345,6.0,563.09275,1,2,3,4,5,6 +1282.0,84.0,1615.5048,100,714.9560727857141,714.9560727857141,529.6505970675516,529.6505970675516,19492.0817,6.0,589.6591,1,2,3,4,5,6 +1282.5,84.0,1615.5048,100,746.7607799999997,746.7607799999997,529.6505970675516,529.6505970675516,20205.61495,6.0,611.81705,1,2,3,4,5,6 +1283.0,84.0,1615.5048,100,778.5654872142857,778.5654872142857,529.6505970675516,529.6505970675516,20919.1482,6.0,633.975,1,2,3,4,5,6 +1283.5,84.0,1615.5048,100,823.2402641785714,823.2402641785714,529.6505970675516,529.6505970675516,21855.30505,6.0,665.0853999999999,1,2,3,4,5,6 +1284.0,84.0,1615.5048,100,867.915041142857,867.915041142857,529.6505970675516,529.6505970675516,22791.4619,6.0,696.1958,1,2,3,4,5,6 +1284.5,84.0,1615.5048,100,916.5903222857143,916.5903222857143,529.6505970675516,529.6505970675516,23851.0448,6.0,730.09185,1,2,3,4,5,6 +1285.0,84.0,1615.5048,100,965.2656034285714,965.2656034285714,529.6505970675516,529.6505970675516,24910.6277,6.0,763.9879,1,2,3,4,5,6 +1285.5,84.0,1615.5048,100,984.7901021785714,984.7901021785714,529.6505970675516,529.6505970675516,25347.11285,6.0,777.5867499999999,1,2,3,4,5,6 +1286.0,84.0,1615.5048,100,1004.3146009285713,1004.3146009285713,529.6505970675516,529.6505970675516,25783.598,6.0,791.1856,1,2,3,4,5,6 +1286.5,84.0,1615.5048,100,1051.6081275,1051.6081275,529.6505970675516,529.6505970675516,26826.5138,6.0,824.1317,1,2,3,4,5,6 +1287.0,84.0,1615.5048,100,1098.9016540714285,1098.9016540714285,529.6505970675516,529.6505970675516,27869.4296,6.0,857.0778,1,2,3,4,5,6 +1287.5,84.0,1615.5048,100,1105.78742775,1105.78742775,529.6505970675516,529.6505970675516,28019.83255,6.0,861.87505,1,2,3,4,5,6 +1288.0,84.0,1615.5048,100,1112.6732014285712,1112.6732014285712,529.6505970675516,529.6505970675516,28170.2355,6.0,866.6723,1,2,3,4,5,6 +1288.5,84.0,1615.5048,100,1129.4648566071428,1129.4648566071428,529.6505970675516,529.6505970675516,28564.12645,6.0,878.3703499999999,1,2,3,4,5,6 +1289.0,84.0,1615.5048,100,1146.256511785714,1146.256511785714,529.6505970675516,529.6505970675516,28958.0174,6.0,890.0684,1,2,3,4,5,6 +1289.5,83.99885,1615.4938,100,1176.66355504867,1176.66355504867,529.6433458986633,529.6433458986633,29636.11375,6.0,911.2303999999999,1,2,3,4,5,6 +1290.0,83.9977,1615.4828,100,1207.0714309082273,1207.0714309082273,529.6360947297748,529.6360947297748,30314.2101,6.0,932.3924,1,2,3,4,5,6 +1290.5,83.985,1615.25095,100,1220.1723361671727,1220.1723361671727,529.5560166037895,529.5560166037895,30590.942750000002,6.0,941.3666,1,2,3,4,5,6 +1291.0,83.9723,1615.0191,100,1233.277204197098,1233.277204197098,529.4759384778044,529.4759384778044,30867.6754,6.0,950.3408,1,2,3,4,5,6 +1291.5,83.9434,1614.4687,100,1234.3904318862471,1234.3904318862471,529.293713450956,529.293713450956,30879.49615,6.0,951.0343499999999,1,2,3,4,5,6 +1292.0,83.9145,1613.9183,100,1235.5044263625477,1235.5044263625477,529.1114884241078,529.1114884241078,30891.3169,6.0,951.7279,1,2,3,4,5,6 +1292.5,83.8663,1612.9601499999999,100,1236.1869480947655,1236.1869480947655,528.807569867219,528.807569867219,30882.15335,6.0,952.03365,1,2,3,4,5,6 +1293.0,83.8181,1612.002,100,1236.870254801767,1236.870254801767,528.5036513103304,528.5036513103304,30872.9898,6.0,952.3394,1,2,3,4,5,6 +1293.5,83.757,1610.8312999999998,100,1237.3578068340557,1237.3578068340557,528.1183935546062,528.1183935546062,30861.249,6.0,952.6964499999999,1,2,3,4,5,6 +1294.0,83.6959,1609.6606,100,1237.846070715531,1237.846070715531,527.733135798882,527.733135798882,30849.5082,6.0,953.0535,1,2,3,4,5,6 +1294.5,83.6313,1608.4342,100,1238.468404209907,1238.468404209907,527.3258092682801,527.3258092682801,30837.2082,6.0,953.42755,1,2,3,4,5,6 +1295.0,83.5667,1607.2078,100,1239.0916998756682,1239.0916998756682,526.9184827376781,526.9184827376781,30824.9082,6.0,953.8016,1,2,3,4,5,6 +1295.5,83.4881,1605.70525,100,1239.9397266676328,1239.9397266676328,526.422881107565,526.422881107565,30809.83925,6.0,954.2599,1,2,3,4,5,6 +1296.0,83.4095,1604.2027,100,1240.7893517165314,1240.7893517165314,525.9272794774516,525.9272794774516,30794.7703,6.0,954.7182,1,2,3,4,5,6 +1296.5,83.31174999999999,1602.3097,100,1241.7036391745464,1241.7036391745464,525.3109301219355,525.3109301219355,30774.0845,6.0,955.244,1,2,3,4,5,6 +1297.0,83.214,1600.4167,100,1242.6200746268655,1242.6200746268655,524.6945807664196,524.6945807664196,30753.3987,6.0,955.7698,1,2,3,4,5,6 +1297.5,83.10679999999999,1598.32735,100,1242.7415523158154,1242.7415523158154,524.0186457187333,524.0186457187333,30715.2206,6.0,955.8849,1,2,3,4,5,6 +1298.0,82.9996,1596.238,100,1242.863343799247,1242.863343799247,523.3427106710471,523.3427106710471,30677.0425,6.0,956.0,1,2,3,4,5,6 +1298.5,82.8999,1594.31535,100,1242.6801643669053,1242.6801643669053,522.714065855242,522.714065855242,30638.41565,6.0,956.0,1,2,3,4,5,6 +1299.0,82.8002,1592.3927,100,1242.496543800619,1242.496543800619,522.0854210394367,522.0854210394367,30599.7888,6.0,956.0,1,2,3,4,5,6 +1299.5,82.7133,1590.73305,100,1242.3794473198386,1242.3794473198386,521.5374848860419,521.5374848860419,30566.4464,6.0,956.0,1,2,3,4,5,6 +1300.0,82.6264,1589.0734,100,1242.2621045331757,1242.2621045331757,520.989548732647,520.989548732647,30533.104,6.0,956.0,1,2,3,4,5,6 +1300.5,82.5473,1587.54995,100,1242.1868402237262,1242.1868402237262,520.4907944204084,520.4907944204084,30502.49785,6.0,956.0,1,2,3,4,5,6 +1301.0,82.4682,1586.0265,100,1242.1114315336097,1242.1114315336097,519.9920401081697,519.9920401081697,30471.8917,6.0,956.0,1,2,3,4,5,6 +1301.5,82.39865,1584.67525,100,1241.9434157234373,1241.9434157234373,519.5535020245264,519.5535020245264,30444.745450000002,6.0,956.0,1,2,3,4,5,6 +1302.0,82.3291,1583.324,100,1241.7751160403798,1241.7751160403798,519.1149639408828,519.1149639408828,30417.5992,6.0,956.0,1,2,3,4,5,6 +1302.5,82.2753,1582.2959500000002,100,1241.5843258912455,1241.5843258912455,518.7757353441897,518.7757353441897,30396.9454,6.0,956.0,1,2,3,4,5,6 +1303.0,82.2215,1581.2679,100,1241.3932860626478,1241.3932860626478,518.4365067474964,518.4365067474964,30376.2916,6.0,956.0,1,2,3,4,5,6 +1303.5,82.1795,1580.48,100,1241.340449856716,1241.340449856716,518.1716814489627,518.1716814489627,30360.46245,6.0,956.0,1,2,3,4,5,6 +1304.0,82.1375,1579.6921,100,1241.2875596164968,1241.2875596164968,517.9068561504288,517.9068561504288,30344.6333,6.0,956.0,1,2,3,4,5,6 +1304.5,82.09595,1578.89475,100,1241.3274790412925,1241.3274790412925,517.644868265808,517.644868265808,30328.614650000003,6.0,956.0,1,2,3,4,5,6 +1305.0,82.0544,1578.0974,100,1241.367438894197,1241.367438894197,517.382880381187,517.382880381187,30312.596,6.0,956.0,1,2,3,4,5,6 +1305.5,82.01225,1577.26945,100,1241.3088999509218,1241.3088999509218,517.1171092780156,517.1171092780156,30295.9621,6.0,956.0,1,2,3,4,5,6 +1306.0,81.9701,1576.4415,100,1241.2503008048056,1241.2503008048056,516.8513381748443,516.8513381748443,30279.3282,6.0,956.0,1,2,3,4,5,6 +1306.5,81.93520000000001,1575.7728,100,1241.1285102739723,1241.1285102739723,516.6312809624912,516.6312809624912,30265.894549999997,6.0,956.0,1,2,3,4,5,6 +1307.0,81.9003,1575.1041,100,1241.0066159464618,1241.0066159464618,516.411223750138,516.411223750138,30252.4609,6.0,956.0,1,2,3,4,5,6 +1307.5,81.86905,1574.53105,100,1241.0620341142344,1241.0620341142344,516.2141811173005,516.2141811173005,30240.947849999997,6.0,956.0,1,2,3,4,5,6 +1308.0,81.8378,1573.958,100,1241.1174946051824,1241.1174946051824,516.0171384844629,516.0171384844629,30229.4348,6.0,956.0,1,2,3,4,5,6 +1308.5,81.7945,1573.12975,100,1241.31879766977,1241.31879766977,515.744116212403,515.744116212403,30212.79535,6.0,956.0,1,2,3,4,5,6 +1309.0,81.7512,1572.3015,100,1241.5203139770426,1241.5203139770426,515.4710939403432,515.4710939403432,30196.1559,6.0,956.0,1,2,3,4,5,6 +1309.5,81.69335,1571.1595499999999,100,1241.5745613688264,1241.5745613688264,515.1063286184342,515.1063286184342,30173.213750000003,6.0,956.0,1,2,3,4,5,6 +1310.0,81.6355,1570.0176,100,1241.6288856441133,1241.6288856441133,514.7415632965251,514.7415632965251,30150.2716,6.0,956.0,1,2,3,4,5,6 +1310.5,81.58144999999999,1568.95125,100,1241.4243939277867,1241.4243939277867,514.400758358769,514.400758358769,30128.84895,6.0,956.0,1,2,3,4,5,6 +1311.0,81.5274,1567.8849,100,1241.2196310688187,1241.2196310688187,514.0599534210131,514.0599534210131,30107.4263,6.0,956.0,1,2,3,4,5,6 +1311.5,81.49645000000001,1567.2869,100,1240.9045387621177,1240.9045387621177,513.8648023974508,513.8648023974508,30095.4124,6.0,956.0,1,2,3,4,5,6 +1312.0,81.4655,1566.6889,100,1240.5892070385623,1240.5892070385623,513.6696513738884,513.6696513738884,30083.3985,6.0,956.0,1,2,3,4,5,6 +1312.5,81.46225000000001,1566.6363000000001,100,1240.3173773741821,1240.3173773741821,513.6491589400733,513.6491589400733,30082.03295,6.0,955.99065,1,2,3,4,5,6 +1313.0,81.459,1566.5837,100,1240.045526019224,1240.045526019224,513.6286665062582,513.6286665062582,30080.6674,6.0,955.9813,1,2,3,4,5,6 +1313.5,81.4783,1566.9594,100,1239.8052588112416,1239.8052588112416,513.7503600362987,513.7503600362987,30087.072699999997,6.0,955.9466500000001,1,2,3,4,5,6 +1314.0,81.4976,1567.3351,100,1239.565105401877,1239.565105401877,513.8720535663392,513.8720535663392,30093.478,6.0,955.912,1,2,3,4,5,6 +1314.5,81.53460000000001,1568.05045,100,1239.3589452943904,1239.3589452943904,514.1053520436191,514.1053520436191,30106.683299999997,6.0,955.87665,1,2,3,4,5,6 +1315.0,81.5716,1568.7658,100,1239.1529722109162,1239.1529722109162,514.3386505208988,514.3386505208988,30119.8886,6.0,955.8413,1,2,3,4,5,6 +1315.5,81.6234,1569.7645,100,1238.9884656605825,1238.9884656605825,514.6652683890904,514.6652683890904,30138.993349999997,6.0,955.8122000000001,1,2,3,4,5,6 +1316.0,81.6752,1570.7632,100,1238.8241677767546,1238.8241677767546,514.9918862572821,514.9918862572821,30158.0981,6.0,955.7831,1,2,3,4,5,6 +1316.5,81.7413,1572.02585,100,1238.6352424294696,1238.6352424294696,515.4086708342601,515.4086708342601,30182.5633,6.0,955.7558,1,2,3,4,5,6 +1317.0,81.8074,1573.2885,100,1238.446622383794,1238.446622383794,515.8254554112384,515.8254554112384,30207.0285,6.0,955.7285,1,2,3,4,5,6 +1317.5,81.89355,1574.9346,100,1238.147570669485,1238.147570669485,516.3686625414451,516.3686625414451,30238.7926,6.0,955.6889000000001,1,2,3,4,5,6 +1318.0,81.9797,1576.5807,100,1237.849147484073,1237.849147484073,516.9118696716517,516.9118696716517,30270.5567,6.0,955.6493,1,2,3,4,5,6 +1318.5,82.09155,1578.73885,100,1237.5344596246505,1237.5344596246505,517.6171246631044,517.6171246631044,30312.3114,6.0,955.6007,1,2,3,4,5,6 +1319.0,82.2034,1580.897,100,1237.2206281248705,1237.2206281248705,518.3223796545568,518.3223796545568,30354.0661,6.0,955.5521,1,2,3,4,5,6 +1319.5,82.33715000000001,1583.484,100,1237.037808972013,1237.037808972013,519.165722123102,519.165722123102,30404.8787,6.0,955.51695,1,2,3,4,5,6 +1320.0,82.4709,1586.071,100,1236.8555828055714,1236.8555828055714,520.009064591647,520.009064591647,30455.6913,6.0,955.4818,1,2,3,4,5,6 +1320.5,82.6154,1588.8642,100,1236.8372047100179,1236.8372047100179,520.920189725888,520.920189725888,30511.4458,6.0,955.4708499999999,1,2,3,4,5,6 +1321.0,82.7599,1591.6574,100,1236.8188907913134,1236.8188907913134,521.8313148601293,521.8313148601293,30567.2003,6.0,955.4599,1,2,3,4,5,6 +1321.5,82.90405,1594.439,100,1236.918722848884,1236.918722848884,522.7402331168827,522.7402331168827,30623.18775,6.0,955.46305,1,2,3,4,5,6 +1322.0,83.0482,1597.2206,100,1237.0182083416619,1237.0182083416619,523.6491513736362,523.6491513736362,30679.1752,6.0,955.4662,1,2,3,4,5,6 +1322.5,83.1857,1599.86095,100,1236.7189726479432,1236.7189726479432,524.5161389581217,524.5161389581217,30722.849150000002,6.0,955.18215,1,2,3,4,5,6 +1323.0,83.3232,1602.5013,100,1236.4207245521056,1236.4207245521056,525.3831265426073,525.3831265426073,30766.5231,6.0,954.8981,1,2,3,4,5,6 +1323.5,83.4581,1605.07505,100,1235.356763393847,1235.356763393847,526.2337201800408,526.2337201800408,30794.15325,6.0,954.1682000000001,1,2,3,4,5,6 +1324.0,83.593,1607.6488,100,1234.296236215951,1234.296236215951,527.0843138174744,527.0843138174744,30821.7834,6.0,953.4383,1,2,3,4,5,6 +1324.5,83.7256,1610.30605,100,1204.014015593797,1204.014015593797,527.9204051171309,527.9204051171309,30197.8284,6.0,932.2783,1,2,3,4,5,6 +1325.0,83.8582,1612.9633,100,1173.8275619319281,1173.8275619319281,528.7564964167875,528.7564964167875,29573.8734,6.0,911.1183,1,2,3,4,5,6 +1325.5,83.92585,1614.2029,100,1010.0315120788172,1010.0315120788172,529.1830543083545,529.1830543083545,25961.8403,6.0,796.2363,1,2,3,4,5,6 +1326.0,83.9935,1615.4425,100,846.4993112800395,846.4993112800395,529.6096121999213,529.6096121999213,22349.8072,6.0,681.3543,1,2,3,4,5,6 +1326.5,83.99674999999999,1615.47365,100,847.1204820662706,847.1204820662706,529.6301046337364,529.6301046337364,22354.13655,6.0,681.75115,1,2,3,4,5,6 +1327.0,84.0,1615.5048,100,847.7416047857141,847.7416047857141,529.6505970675516,529.6505970675516,22358.4659,6.0,682.148,1,2,3,4,5,6 +1327.5,84.0,1615.5048,100,890.6445430714284,890.6445430714284,529.6505970675516,529.6505970675516,23283.17965,6.0,712.02435,1,2,3,4,5,6 +1328.0,84.0,1615.5048,100,933.5474813571428,933.5474813571428,529.6505970675516,529.6505970675516,24207.8934,6.0,741.9007,1,2,3,4,5,6 +1328.5,84.0,1615.5048,100,983.4164649642856,983.4164649642856,529.6505970675516,529.6505970675516,25331.976000000002,6.0,776.6329499999999,1,2,3,4,5,6 +1329.0,84.0,1615.5048,100,1033.2854485714286,1033.2854485714286,529.6505970675516,529.6505970675516,26456.0586,6.0,811.3652,1,2,3,4,5,6 +1329.5,84.0,1615.5048,100,1056.7491203571428,1056.7491203571428,529.6505970675516,529.6505970675516,26982.233650000002,6.0,827.7116,1,2,3,4,5,6 +1330.0,84.0,1615.5048,100,1080.212792142857,1080.212792142857,529.6505970675516,529.6505970675516,27508.4087,6.0,844.058,1,2,3,4,5,6 +1330.5,84.0,1615.5048,100,1079.6517925714286,1079.6517925714286,529.6505970675516,529.6505970675516,27496.70375,6.0,843.66705,1,2,3,4,5,6 +1331.0,84.0,1615.5048,100,1079.0907929999998,1079.0907929999998,529.6505970675516,529.6505970675516,27484.9988,6.0,843.2761,1,2,3,4,5,6 +1331.5,84.0,1615.5048,100,1064.1814627499998,1064.1814627499998,529.6505970675516,529.6505970675516,27153.17335,6.0,832.88925,1,2,3,4,5,6 +1332.0,84.0,1615.5048,100,1049.2721324999998,1049.2721324999998,529.6505970675516,529.6505970675516,26821.3479,6.0,822.5024,1,2,3,4,5,6 +1332.5,84.0,1615.5048,100,1015.261308,1015.261308,529.6505970675516,529.6505970675516,26046.857,6.0,798.81165,1,2,3,4,5,6 +1333.0,84.0,1615.5048,100,981.2504835,981.2504835,529.6505970675516,529.6505970675516,25272.3661,6.0,775.1209,1,2,3,4,5,6 +1333.5,84.0,1615.5048,100,935.6796404999998,935.6796404999998,529.6505970675516,529.6505970675516,24263.435449999997,6.0,743.3860999999999,1,2,3,4,5,6 +1334.0,84.0,1615.5048,100,890.1087974999999,890.1087974999999,529.6505970675516,529.6505970675516,23254.5048,6.0,711.6513,1,2,3,4,5,6 +1334.5,84.0,1615.5048,100,852.9168709285713,852.9168709285713,529.6505970675516,529.6505970675516,22485.662,6.0,685.75175,1,2,3,4,5,6 +1335.0,84.0,1615.5048,100,815.7249443571428,815.7249443571428,529.6505970675516,529.6505970675516,21716.8192,6.0,659.8522,1,2,3,4,5,6 +1335.5,84.0,1615.5048,100,794.3339044285714,794.3339044285714,529.6505970675516,529.6505970675516,21259.7086,6.0,644.95605,1,2,3,4,5,6 +1336.0,84.0,1615.5048,100,772.9428644999998,772.9428644999998,529.6505970675516,529.6505970675516,20802.598,6.0,630.0599,1,2,3,4,5,6 +1336.5,84.0,1615.5048,100,768.0309615,768.0309615,529.6505970675516,529.6505970675516,20691.292350000003,6.0,626.6393,1,2,3,4,5,6 +1337.0,84.0,1615.5048,100,763.1190584999999,763.1190584999999,529.6505970675516,529.6505970675516,20579.9867,6.0,623.2187,1,2,3,4,5,6 +1337.5,84.0,1615.5048,100,748.9551722142857,748.9551722142857,529.6505970675516,529.6505970675516,20264.02215,6.0,613.3477,1,2,3,4,5,6 +1338.0,84.0,1615.5048,100,734.7912859285714,734.7912859285714,529.6505970675516,529.6505970675516,19948.0576,6.0,603.4767,1,2,3,4,5,6 +1338.5,84.0,1615.5048,100,640.1681556428571,640.1681556428571,529.6505970675516,529.6505970675516,17829.439449999998,6.0,537.5319000000001,1,2,3,4,5,6 +1339.0,84.0,1615.5048,100,545.5450253571428,545.5450253571428,529.6505970675516,529.6505970675516,15710.8213,6.0,471.5871,1,2,3,4,5,6 +1339.5,84.0,1615.5048,100,491.7828670714285,491.7828670714285,529.6505970675516,529.6505970675516,14523.62025,6.0,434.1344,1,2,3,4,5,6 +1340.0,84.0,1615.5048,100,438.02070878571425,438.02070878571425,529.6505970675516,529.6505970675516,13336.4192,6.0,396.6817,1,2,3,4,5,6 +1340.5,84.0,1615.5048,100,411.84989839285714,411.84989839285714,529.6505970675516,529.6505970675516,12764.80005,6.0,378.45735,1,2,3,4,5,6 +1341.0,84.0,1615.5048,100,385.6790879999999,385.6790879999999,529.6505970675516,529.6505970675516,12193.1809,6.0,360.233,1,2,3,4,5,6 +1341.5,84.0,1615.5048,100,401.4944055,401.4944055,529.6505970675516,529.6505970675516,12543.1292,6.0,371.24635,1,2,3,4,5,6 +1342.0,84.0,1615.5048,100,417.30972299999996,417.30972299999996,529.6505970675516,529.6505970675516,12893.0775,6.0,382.2597,1,2,3,4,5,6 +1342.5,84.0,1615.5048,100,457.5343843928571,457.5343843928571,529.6505970675516,529.6505970675516,13763.77725,6.0,410.2735,1,2,3,4,5,6 +1343.0,84.0,1615.5048,100,497.7590457857142,497.7590457857142,529.6505970675516,529.6505970675516,14634.477,6.0,438.2873,1,2,3,4,5,6 +1343.5,84.0,1615.5048,100,533.7189379285714,533.7189379285714,529.6505970675516,529.6505970675516,15444.05445,6.0,463.34645,1,2,3,4,5,6 +1344.0,84.0,1615.5048,100,569.6788300714285,569.6788300714285,529.6505970675516,529.6505970675516,16253.6319,6.0,488.4056,1,2,3,4,5,6 +1344.5,84.0,1615.5048,100,583.3263622499999,583.3263622499999,529.6505970675516,529.6505970675516,16563.980199999998,6.0,497.9175,1,2,3,4,5,6 +1345.0,84.0,1615.5048,100,596.9738944285713,596.9738944285713,529.6505970675516,529.6505970675516,16874.3285,6.0,507.4294,1,2,3,4,5,6 +1345.5,84.0,1615.5048,100,626.5440736071429,626.5440736071429,529.6505970675516,529.6505970675516,17538.93435,6.0,528.0388,1,2,3,4,5,6 +1346.0,84.0,1615.5048,100,656.1142527857141,656.1142527857141,529.6505970675516,529.6505970675516,18203.5402,6.0,548.6482,1,2,3,4,5,6 +1346.5,84.0,1615.5048,100,667.2291695357143,667.2291695357143,529.6505970675516,529.6505970675516,18447.339350000002,6.0,556.3947000000001,1,2,3,4,5,6 +1347.0,84.0,1615.5048,100,678.3440862857143,678.3440862857143,529.6505970675516,529.6505970675516,18691.1385,6.0,564.1412,1,2,3,4,5,6 +1347.5,84.0,1615.5048,100,664.3087248214285,664.3087248214285,529.6505970675516,529.6505970675516,18388.84025,6.0,554.35905,1,2,3,4,5,6 +1348.0,84.0,1615.5048,100,650.2733633571428,650.2733633571428,529.6505970675516,529.6505970675516,18086.542,6.0,544.5769,1,2,3,4,5,6 +1348.5,84.0,1615.5048,100,628.0796069999999,628.0796069999999,529.6505970675516,529.6505970675516,17581.93485,6.0,529.1087,1,2,3,4,5,6 +1349.0,84.0,1615.5048,100,605.885850642857,605.885850642857,529.6505970675516,529.6505970675516,17077.3277,6.0,513.6405,1,2,3,4,5,6 +1349.5,84.0,1615.5048,100,572.4590248928571,572.4590248928571,529.6505970675516,529.6505970675516,16319.7275,6.0,490.34389999999996,1,2,3,4,5,6 +1350.0,84.0,1615.5048,100,539.032199142857,539.032199142857,529.6505970675516,529.6505970675516,15562.1273,6.0,467.0473,1,2,3,4,5,6 +1350.5,84.0,1615.5048,100,495.21335239285713,495.21335239285713,529.6505970675516,529.6505970675516,14587.40935,6.0,436.5209,1,2,3,4,5,6 +1351.0,84.0,1615.5048,100,451.39450564285704,451.39450564285704,529.6505970675516,529.6505970675516,13612.6914,6.0,405.9945,1,2,3,4,5,6 +1351.5,84.0,1615.5048,100,412.9741523571428,412.9741523571428,529.6505970675516,529.6505970675516,12775.5178,6.0,379.2402,1,2,3,4,5,6 +1352.0,84.0,1615.5048,100,374.5537990714285,374.5537990714285,529.6505970675516,529.6505970675516,11938.3442,6.0,352.4859,1,2,3,4,5,6 +1352.5,84.0,1615.5048,100,345.34845,345.34845,529.6505970675516,529.6505970675516,11275.53805,6.0,332.14785,1,2,3,4,5,6 +1353.0,84.0,1615.5048,100,316.1431009285714,316.1431009285714,529.6505970675516,529.6505970675516,10612.7319,6.0,311.8098,1,2,3,4,5,6 +1353.5,84.0,1615.5048,100,291.2413040357143,291.2413040357143,529.6505970675516,529.6505970675516,10104.0831,6.0,294.46855,1,2,3,4,5,6 +1354.0,84.0,1615.5048,100,266.3395071428571,266.3395071428571,529.6505970675516,529.6505970675516,9595.4343,6.0,277.1273,1,2,3,4,5,6 +1354.5,84.0,1615.5048,100,239.16079157142858,239.16079157142858,529.6505970675516,529.6505970675516,9007.80465,6.0,258.22595,1,2,3,4,5,6 +1355.0,84.0,1615.5048,100,211.98207599999998,211.98207599999998,529.6505970675516,529.6505970675516,8420.175,6.0,239.3246,1,2,3,4,5,6 +1355.5,84.0,1615.5048,100,184.33706335714282,184.33706335714282,529.6505970675516,529.6505970675516,7808.9109499999995,6.0,220.48825,1,2,3,4,5,6 +1356.0,84.0,1615.5048,100,156.6920507142857,156.6920507142857,529.6505970675516,529.6505970675516,7197.6469,6.0,201.6519,1,2,3,4,5,6 +1356.5,84.0,1615.5048,100,144.16065514285714,144.16065514285714,529.6505970675516,529.6505970675516,6928.4211,6.0,193.27405,1,2,3,4,5,6 +1357.0,84.0,1615.5048,100,131.62925957142858,131.62925957142858,529.6505970675516,529.6505970675516,6659.1953,6.0,184.8962,1,2,3,4,5,6 +1357.5,84.0,1615.5048,100,136.12176578571427,136.12176578571427,529.6505970675516,529.6505970675516,6754.448,6.0,187.89965,1,2,3,4,5,6 +1358.0,84.0,1615.5048,100,140.614272,140.614272,529.6505970675516,529.6505970675516,6849.7007,6.0,190.9031,1,2,3,4,5,6 +1358.5,84.0,1615.5048,100,150.5174477142857,150.5174477142857,529.6505970675516,529.6505970675516,7063.8151,6.0,197.5236,1,2,3,4,5,6 +1359.0,84.0,1615.5048,100,160.42062342857142,160.42062342857142,529.6505970675516,529.6505970675516,7277.9295,6.0,204.1441,1,2,3,4,5,6 +1359.5,84.0,1615.5048,100,167.9521779642857,167.9521779642857,529.6505970675516,529.6505970675516,7441.412200000001,6.0,209.1793,1,2,3,4,5,6 +1360.0,84.0,1615.5048,100,175.48373249999997,175.48373249999997,529.6505970675516,529.6505970675516,7604.8949,6.0,214.2145,1,2,3,4,5,6 +1360.5,84.0,1615.5048,100,180.5385911785714,180.5385911785714,529.6505970675516,529.6505970675516,7714.7454,6.0,217.5978,1,2,3,4,5,6 +1361.0,84.0,1615.5048,100,185.59344985714284,185.59344985714284,529.6505970675516,529.6505970675516,7824.5959,6.0,220.9811,1,2,3,4,5,6 +1361.5,84.0,1615.5048,100,187.56371282142857,187.56371282142857,529.6505970675516,529.6505970675516,7868.0869999999995,6.0,222.3206,1,2,3,4,5,6 +1362.0,84.0,1615.5048,100,189.53397578571426,189.53397578571426,529.6505970675516,529.6505970675516,7911.5781,6.0,223.6601,1,2,3,4,5,6 +1362.5,84.0,1615.5048,100,181.2520166785714,181.2520166785714,529.6505970675516,529.6505970675516,7730.95525,6.0,218.09705,1,2,3,4,5,6 +1363.0,84.0,1615.5048,100,172.97005757142858,172.97005757142858,529.6505970675516,529.6505970675516,7550.3324,6.0,212.534,1,2,3,4,5,6 +1363.5,84.0,1615.5048,100,153.37565935714287,153.37565935714287,529.6505970675516,529.6505970675516,7129.13655,6.0,199.45184999999998,1,2,3,4,5,6 +1364.0,84.0,1615.5048,100,133.78126114285715,133.78126114285715,529.6505970675516,529.6505970675516,6707.9407,6.0,186.3697,1,2,3,4,5,6 +1364.5,84.0,1615.5048,100,122.35653192857141,122.35653192857141,529.6505970675516,529.6505970675516,6468.66545,6.0,178.80700000000002,1,2,3,4,5,6 +1365.0,84.0,1615.5048,100,110.9318027142857,110.9318027142857,529.6505970675516,529.6505970675516,6229.3902,6.0,171.2443,1,2,3,4,5,6 +1365.5,84.0,1615.5048,100,139.37682599999997,139.37682599999997,529.6505970675516,529.6505970675516,6839.632799999999,6.0,190.2844,1,2,3,4,5,6 +1366.0,84.0,1615.5048,100,167.82184928571428,167.82184928571428,529.6505970675516,529.6505970675516,7449.8754,6.0,209.3245,1,2,3,4,5,6 +1366.5,84.0,1615.5048,100,231.81187757142854,231.81187757142854,529.6505970675516,529.6505970675516,8824.7175,6.0,253.48455,1,2,3,4,5,6 +1367.0,84.0,1615.5048,100,295.8019058571428,295.8019058571428,529.6505970675516,529.6505970675516,10199.5596,6.0,297.6446,1,2,3,4,5,6 +1367.5,84.0,1615.5048,100,356.4895226785714,356.4895226785714,529.6505970675516,529.6505970675516,11538.27995,6.0,339.90595,1,2,3,4,5,6 +1368.0,84.0,1615.5048,100,417.17713949999995,417.17713949999995,529.6505970675516,529.6505970675516,12877.0003,6.0,382.1673,1,2,3,4,5,6 +1368.5,84.0,1615.5048,100,458.04397403571426,458.04397403571426,529.6505970675516,529.6505970675516,13768.6343,6.0,410.62800000000004,1,2,3,4,5,6 +1369.0,84.0,1615.5048,100,498.9108085714285,498.9108085714285,529.6505970675516,529.6505970675516,14660.2683,6.0,439.0887,1,2,3,4,5,6 +1369.5,84.0,1615.5048,100,529.7306097857143,529.7306097857143,529.6505970675516,529.6505970675516,15353.5496,6.0,460.5661,1,2,3,4,5,6 +1370.0,84.0,1615.5048,100,560.5504109999999,560.5504109999999,529.6505970675516,529.6505970675516,16046.8309,6.0,482.0435,1,2,3,4,5,6 +1370.5,84.0,1615.5048,100,591.8563517142857,591.8563517142857,529.6505970675516,529.6505970675516,16758.855450000003,6.0,503.8626,1,2,3,4,5,6 +1371.0,84.0,1615.5048,100,623.1622924285715,623.1622924285715,529.6505970675516,529.6505970675516,17470.88,6.0,525.6817,1,2,3,4,5,6 +1371.5,84.0,1615.5048,100,654.62471775,654.62471775,529.6505970675516,529.6505970675516,18163.4727,6.0,547.60995,1,2,3,4,5,6 +1372.0,84.0,1615.5048,100,686.0871430714284,686.0871430714284,529.6505970675516,529.6505970675516,18856.0654,6.0,569.5382,1,2,3,4,5,6 +1372.5,84.0,1615.5048,100,702.4941257142856,702.4941257142856,529.6505970675516,529.6505970675516,19216.7424,6.0,580.97315,1,2,3,4,5,6 +1373.0,84.0,1615.5048,100,718.9011083571427,718.9011083571427,529.6505970675516,529.6505970675516,19577.4194,6.0,592.4081,1,2,3,4,5,6 +1373.5,84.0,1615.5048,100,713.2645057499999,713.2645057499999,529.6505970675516,529.6505970675516,19449.59035,6.0,588.4797,1,2,3,4,5,6 +1374.0,84.0,1615.5048,100,707.627903142857,707.627903142857,529.6505970675516,529.6505970675516,19321.7613,6.0,584.5513,1,2,3,4,5,6 +1374.5,84.0,1615.5048,100,702.8941310357143,702.8941310357143,529.6505970675516,529.6505970675516,19214.4038,6.0,581.25205,1,2,3,4,5,6 +1375.0,84.0,1615.5048,100,698.1603589285713,698.1603589285713,529.6505970675516,529.6505970675516,19107.0463,6.0,577.9528,1,2,3,4,5,6 +1375.5,84.0,1615.5048,100,723.2168365714284,723.2168365714284,529.6505970675516,529.6505970675516,19673.82295,6.0,595.41345,1,2,3,4,5,6 +1376.0,84.0,1615.5048,100,748.2733142142856,748.2733142142856,529.6505970675516,529.6505970675516,20240.5996,6.0,612.8741,1,2,3,4,5,6 +1376.5,84.0,1615.5048,100,802.3948910357141,802.3948910357141,529.6505970675516,529.6505970675516,21396.69335,6.0,650.5661,1,2,3,4,5,6 +1377.0,84.0,1615.5048,100,856.5164678571427,856.5164678571427,529.6505970675516,529.6505970675516,22552.7871,6.0,688.2581,1,2,3,4,5,6 +1377.5,84.0,1615.5048,100,907.3753180714285,907.3753180714285,529.6505970675516,529.6505970675516,23652.444450000003,6.0,723.6749,1,2,3,4,5,6 +1378.0,84.0,1615.5048,100,958.2341682857142,958.2341682857142,529.6505970675516,529.6505970675516,24752.1018,6.0,759.0917,1,2,3,4,5,6 +1378.5,84.0,1615.5048,100,978.4793079642856,978.4793079642856,529.6505970675516,529.6505970675516,25209.226450000002,6.0,773.1898,1,2,3,4,5,6 +1379.0,84.0,1615.5048,100,998.7244476428571,998.7244476428571,529.6505970675516,529.6505970675516,25666.3511,6.0,787.2879,1,2,3,4,5,6 +1379.5,84.0,1615.5048,100,999.3337003928569,999.3337003928569,529.6505970675516,529.6505970675516,25680.2657,6.0,787.7121500000001,1,2,3,4,5,6 +1380.0,84.0,1615.5048,100,999.942953142857,999.942953142857,529.6505970675516,529.6505970675516,25694.1803,6.0,788.1364,1,2,3,4,5,6 +1380.5,84.0,1615.5048,100,1006.2600608571428,1006.2600608571428,529.6505970675516,529.6505970675516,25838.5298,6.0,792.53745,1,2,3,4,5,6 +1381.0,84.0,1615.5048,100,1012.5771685714285,1012.5771685714285,529.6505970675516,529.6505970675516,25982.8793,6.0,796.9385,1,2,3,4,5,6 +1381.5,83.9945,1615.43095,100,1087.5742910071494,1087.5742910071494,529.6159175641722,529.6159175641722,27661.94855,6.0,849.09705,1,2,3,4,5,6 +1382.0,83.989,1615.3571,100,1162.581235780876,1162.581235780876,529.5812380607928,529.5812380607928,29341.0178,6.0,901.2556,1,2,3,4,5,6 +1382.5,83.96105,1614.83675,100,1197.3291721697142,1197.3291721697142,529.4050031299828,529.4050031299828,30078.264000000003,6.0,925.22145,1,2,3,4,5,6 +1383.0,83.9331,1614.3164,100,1232.100250914121,1232.100250914121,529.2287681991728,529.2287681991728,30815.5102,6.0,949.1873,1,2,3,4,5,6 +1383.5,83.87174999999999,1613.1143499999998,100,1234.6441652523054,1234.6441652523054,528.8419341023858,528.8419341023858,30842.7365,6.0,950.7447999999999,1,2,3,4,5,6 +1384.0,83.8104,1611.9123,100,1237.1918039288682,1237.1918039288682,528.4551000055991,528.4551000055991,30869.9628,6.0,952.3023,1,2,3,4,5,6 +1384.5,83.7257,1610.2663499999999,100,1238.0669611839617,1238.0669611839617,527.921035653556,527.921035653556,30854.51915,6.0,952.83655,1,2,3,4,5,6 +1385.0,83.641,1608.6204,100,1238.9438909147427,1238.9438909147427,527.386971301513,527.386971301513,30839.0755,6.0,953.3708,1,2,3,4,5,6 +1385.5,83.53935000000001,1606.68665,100,1239.9925353501073,1239.9925353501073,526.7460310254187,526.7460310254187,30819.68185,6.0,953.9606,1,2,3,4,5,6 +1386.0,83.4377,1604.7529,100,1241.043734858463,1241.043734858463,526.1050907493244,526.1050907493244,30800.2882,6.0,954.5504,1,2,3,4,5,6 +1386.5,83.31325000000001,1602.35975,100,1242.1591534599838,1242.1591534599838,525.3203881683119,525.3203881683119,30772.53775,6.0,955.16665,1,2,3,4,5,6 +1387.0,83.1888,1599.9666,100,1243.277909382032,1243.277909382032,524.5356855872992,524.5356855872992,30744.7873,6.0,955.7829,1,2,3,4,5,6 +1387.5,83.03960000000001,1597.0904500000001,100,1243.6446034783403,1243.6446034783403,523.5949252410793,523.5949252410793,30690.586450000003,6.0,955.8914500000001,1,2,3,4,5,6 +1388.0,82.8904,1594.2143,100,1244.01261764933,1244.01261764933,522.6541648948593,522.6541648948593,30636.3856,6.0,956.0,1,2,3,4,5,6 +1388.5,82.7244,1590.99405,100,1244.0499116584708,1244.0499116584708,521.6074744292258,521.6074744292258,30571.690150000002,6.0,956.0,1,2,3,4,5,6 +1389.0,82.5584,1587.7738,100,1244.0873556415822,1244.0873556415822,520.5607839635924,520.5607839635924,30506.9947,6.0,956.0,1,2,3,4,5,6 +1389.5,82.39545000000001,1584.60975,100,1243.8641957171176,1243.8641957171176,519.5333248589238,519.5333248589238,30443.4294,6.0,956.0,1,2,3,4,5,6 +1390.0,82.2325,1581.4457,100,1243.6401513756728,1243.6401513756728,518.5058657542552,518.5058657542552,30379.8641,6.0,956.0,1,2,3,4,5,6 +1390.5,82.09505,1578.78575,100,1243.2324832252373,1243.2324832252373,517.6391934379822,517.6391934379822,30326.4248,6.0,956.0,1,2,3,4,5,6 +1391.0,81.9576,1576.1258,100,1242.8234476851446,1242.8234476851446,516.7725211217091,516.7725211217091,30272.9855,6.0,956.0,1,2,3,4,5,6 +1391.5,81.85974999999999,1574.2381,100,1242.3418696612193,1242.3418696612193,516.1555412297679,516.1555412297679,30235.06175,6.0,956.0,1,2,3,4,5,6 +1392.0,81.7619,1572.3504,100,1241.8591389632581,1241.8591389632581,515.5385613378268,515.5385613378268,30197.138,6.0,956.0,1,2,3,4,5,6 +1392.5,81.70939999999999,1571.3403,100,1241.365915659643,1241.365915659643,515.2075297146595,515.2075297146595,30176.84535,6.0,956.0,1,2,3,4,5,6 +1393.0,81.6569,1570.3302,100,1240.8720581359323,1240.8720581359323,514.8764980914922,514.8764980914922,30156.5527,6.0,956.0,1,2,3,4,5,6 +1393.5,81.6501,1570.20455,100,1240.392224222628,1240.392224222628,514.8336216145868,514.8336216145868,30153.5455,6.0,955.9853499999999,1,2,3,4,5,6 +1394.0,81.6433,1570.0789,100,1239.9123103794188,1239.9123103794188,514.7907451376814,514.7907451376814,30150.5383,6.0,955.9707,1,2,3,4,5,6 +1394.5,81.67725,1570.74595,100,1239.4632497176385,1239.4632497176385,515.0048122539962,515.0048122539962,30161.86965,6.0,955.90795,1,2,3,4,5,6 +1395.0,81.7112,1571.413,100,1239.0145622142372,1239.0145622142372,515.218879370311,515.218879370311,30173.201,6.0,955.8452,1,2,3,4,5,6 +1395.5,81.7753,1572.66025,100,1238.7164313551891,1238.7164313551891,515.6230532187876,515.6230532187876,30196.3881,6.0,955.7885,1,2,3,4,5,6 +1396.0,81.8394,1573.9075,100,1238.4187675129585,1238.4187675129585,516.027227067264,516.027227067264,30219.5752,6.0,955.7318,1,2,3,4,5,6 +1396.5,81.9231,1575.52315,100,1238.232259948659,1238.232259948659,516.5549860550564,516.5549860550564,30250.86925,6.0,955.6965,1,2,3,4,5,6 +1397.0,82.0068,1577.1388,100,1238.0461331011575,1238.0461331011575,517.0827450428487,517.0827450428487,30282.1633,6.0,955.6612,1,2,3,4,5,6 +1397.5,82.1028,1578.99575,100,1237.9526930019438,1237.9526930019438,517.6880600109259,517.6880600109259,30318.78535,6.0,955.6405,1,2,3,4,5,6 +1398.0,82.1988,1580.8527,100,1237.859471160163,1237.859471160163,518.2933749790031,518.2933749790031,30355.4074,6.0,955.6198,1,2,3,4,5,6 +1398.5,82.3065,1582.90265,100,1237.697752984272,1237.697752984272,518.9724627088148,518.9724627088148,30396.0261,6.0,955.60265,1,2,3,4,5,6 +1399.0,82.4142,1584.9526,100,1237.5364574794148,1237.5364574794148,519.6515504386263,519.6515504386263,30436.6448,6.0,955.5855,1,2,3,4,5,6 +1399.5,82.53675,1587.3249,100,1237.3769266417687,1237.3769266417687,520.4242728275624,520.4242728275624,30483.431299999997,6.0,955.5590500000001,1,2,3,4,5,6 +1400.0,82.6593,1589.6972,100,1237.2178688423444,1237.2178688423444,521.1969952164984,521.1969952164984,30530.2178,6.0,955.5326,1,2,3,4,5,6 +1400.5,82.7899,1592.2375000000002,100,1237.2510507199552,1237.2510507199552,522.0204757876535,522.0204757876535,30580.9064,6.0,955.5221,1,2,3,4,5,6 +1401.0,82.9205,1594.7778,100,1237.2841280744808,1237.2841280744808,522.8439563588084,522.8439563588084,30631.595,6.0,955.5116,1,2,3,4,5,6 +1401.5,83.05095,1597.25765,100,1237.1984649784258,1237.1984649784258,523.6664911253259,523.6664911253259,30679.12815,6.0,955.4422500000001,1,2,3,4,5,6 +1402.0,83.1814,1599.7375,100,1237.1130705662563,1237.1130705662563,524.4890258918433,524.4890258918433,30726.6613,6.0,955.3729,1,2,3,4,5,6 +1402.5,83.32435,1602.4511499999999,100,1235.9735886328547,1235.9735886328547,525.3903777114957,525.3903777114957,30761.022100000002,6.0,954.76185,1,2,3,4,5,6 +1403.0,83.4673,1605.1648,100,1234.8380097595107,1234.8380097595107,526.2917295311482,526.2917295311482,30795.3829,6.0,954.1508,1,2,3,4,5,6 +1403.5,83.6449,1608.5742,100,1232.908124464253,1232.908124464253,527.4115622220911,527.4115622220911,30829.218650000003,6.0,953.1001,1,2,3,4,5,6 +1404.0,83.8225,1611.9836,100,1230.9864171075783,1230.9864171075783,528.531394913034,528.531394913034,30863.0544,6.0,952.0494,1,2,3,4,5,6 +1404.5,84.042,1616.2168000000001,100,1228.7386256157636,1228.7386256157636,529.9154223660854,529.9154223660854,30904.732949999998,6.0,950.7347500000001,1,2,3,4,5,6 +1405.0,84.2615,1620.45,100,1226.5025450531975,1226.5025450531975,531.2994498191368,531.2994498191368,30946.4115,6.0,949.4201,1,2,3,4,5,6 +1405.5,84.493,1625.13065,100,1172.3015715029649,1172.3015715029649,532.7591416431981,532.7591416431981,29829.3994,6.0,911.594,1,2,3,4,5,6 +1406.0,84.7245,1629.8113,100,1118.396793867181,1118.396793867181,534.2188334672593,534.2188334672593,28712.3873,6.0,873.7679,1,2,3,4,5,6 +1406.5,84.84925000000001,1632.1493500000001,100,867.1481762773388,867.1481762773388,535.0054276575471,535.0054276575471,23106.499499999998,6.0,697.5371500000001,1,2,3,4,5,6 +1407.0,84.974,1634.4874,100,616.6372729305434,616.6372729305434,535.7920218478349,535.7920218478349,17500.6117,6.0,521.3064,1,2,3,4,5,6 +1407.5,84.987,1634.6122,100,583.3398540717993,583.3398540717993,535.8739915830953,535.8739915830953,16750.63375,6.0,497.9426,1,2,3,4,5,6 +1408.0,85.0,1634.737,100,550.0526203058822,550.0526203058822,535.9559613183559,535.9559613183559,16000.6558,6.0,474.5788,1,2,3,4,5,6 +1408.5,85.0,1634.737,100,557.602526435294,557.602526435294,535.9559613183559,535.9559613183559,16171.96805,6.0,479.84065,1,2,3,4,5,6 +1409.0,85.0,1634.737,100,565.1524325647058,565.1524325647058,535.9559613183559,535.9559613183559,16343.2803,6.0,485.1025,1,2,3,4,5,6 +1409.5,85.0,1634.737,100,569.4156048705881,569.4156048705881,535.9559613183559,535.9559613183559,16440.1975,6.0,488.07385,1,2,3,4,5,6 +1410.0,85.0,1634.737,100,573.6787771764705,573.6787771764705,535.9559613183559,535.9559613183559,16537.1147,6.0,491.0452,1,2,3,4,5,6 +1410.5,85.0,1634.737,100,561.0127077529411,561.0127077529411,535.9559613183559,535.9559613183559,16250.19385,6.0,482.2174,1,2,3,4,5,6 +1411.0,85.0,1634.737,100,548.3466383294116,548.3466383294116,535.9559613183559,535.9559613183559,15963.273,6.0,473.3896,1,2,3,4,5,6 +1411.5,85.0,1634.737,100,530.6669071411765,530.6669071411765,535.9559613183559,535.9559613183559,15566.294,6.0,461.06755,1,2,3,4,5,6 +1412.0,85.0,1634.737,100,512.9871759529411,512.9871759529411,535.9559613183559,535.9559613183559,15169.315,6.0,448.7455,1,2,3,4,5,6 +1412.5,85.0,1634.737,100,504.0561731294117,504.0561731294117,535.9559613183559,535.9559613183559,14969.0463,6.0,442.5223,1,2,3,4,5,6 +1413.0,85.0,1634.737,100,495.12517030588225,495.12517030588225,535.9559613183559,535.9559613183559,14768.7776,6.0,436.2991,1,2,3,4,5,6 +1413.5,85.0,1634.737,100,506.74572412941166,506.74572412941166,535.9559613183559,535.9559613183559,15029.37215,6.0,444.3969,1,2,3,4,5,6 +1414.0,85.0,1634.737,100,518.3662779529411,518.3662779529411,535.9559613183559,535.9559613183559,15289.9667,6.0,452.4947,1,2,3,4,5,6 +1414.5,85.0,1634.737,100,540.6808609058822,540.6808609058822,535.9559613183559,535.9559613183559,15792.43435,6.0,468.04705,1,2,3,4,5,6 +1415.0,85.0,1634.737,100,562.9954438588235,562.9954438588235,535.9559613183559,535.9559613183559,16294.902,6.0,483.5994,1,2,3,4,5,6 +1415.5,85.0,1634.737,100,575.2916164588235,575.2916164588235,535.9559613183559,535.9559613183559,16574.4301,6.0,492.1694,1,2,3,4,5,6 +1416.0,85.0,1634.737,100,587.5877890588234,587.5877890588234,535.9559613183559,535.9559613183559,16853.9582,6.0,500.7394,1,2,3,4,5,6 +1416.5,85.0,1634.737,100,592.7253439764704,592.7253439764704,535.9559613183559,535.9559613183559,16970.989999999998,6.0,504.32015,1,2,3,4,5,6 +1417.0,85.0,1634.737,100,597.8628988941176,597.8628988941176,535.9559613183559,535.9559613183559,17088.0218,6.0,507.9009,1,2,3,4,5,6 +1417.5,85.0,1634.737,100,612.120861635294,612.120861635294,535.9559613183559,535.9559613183559,17412.81185,6.0,517.83835,1,2,3,4,5,6 +1418.0,85.0,1634.737,100,626.3788243764704,626.3788243764704,535.9559613183559,535.9559613183559,17737.6019,6.0,527.7758,1,2,3,4,5,6 +1418.5,85.0,1634.737,100,659.6664188823528,659.6664188823528,535.9559613183559,535.9559613183559,18481.4369,6.0,550.97585,1,2,3,4,5,6 +1419.0,85.0,1634.737,100,692.9540133882351,692.9540133882351,535.9559613183559,535.9559613183559,19225.2719,6.0,574.1759,1,2,3,4,5,6 +1419.5,85.0,1634.737,100,743.9574374470587,743.9574374470587,535.9559613183559,535.9559613183559,20359.836049999998,6.0,609.70955,1,2,3,4,5,6 +1420.0,85.0,1634.737,100,794.9608615058823,794.9608615058823,535.9559613183559,535.9559613183559,21494.4002,6.0,645.2432,1,2,3,4,5,6 +1420.5,85.0,1634.737,100,854.0262536823527,854.0262536823527,535.9559613183559,535.9559613183559,22771.90815,6.0,686.3754,1,2,3,4,5,6 +1421.0,85.0,1634.737,100,913.0916458588233,913.0916458588233,535.9559613183559,535.9559613183559,24049.4161,6.0,727.5076,1,2,3,4,5,6 +1421.5,85.0,1634.737,100,948.5750013882353,948.5750013882353,535.9559613183559,535.9559613183559,24838.2957,6.0,752.2171000000001,1,2,3,4,5,6 +1422.0,85.0,1634.737,100,984.0583569176468,984.0583569176468,535.9559613183559,535.9559613183559,25627.1753,6.0,776.9266,1,2,3,4,5,6 +1422.5,85.0,1634.737,100,1017.742142117647,1017.742142117647,535.9559613183559,535.9559613183559,26390.747799999997,6.0,800.3913,1,2,3,4,5,6 +1423.0,85.0,1634.737,100,1051.4259273176467,1051.4259273176467,535.9559613183559,535.9559613183559,27154.3203,6.0,823.856,1,2,3,4,5,6 +1423.5,85.0,1634.737,100,1074.8212329176467,1074.8212329176467,535.9559613183559,535.9559613183559,27674.851349999997,6.0,840.1542,1,2,3,4,5,6 +1424.0,85.0,1634.737,100,1098.2165385176468,1098.2165385176468,535.9559613183559,535.9559613183559,28195.3824,6.0,856.4524,1,2,3,4,5,6 +1424.5,85.0,1634.737,100,1095.308169035294,1095.308169035294,535.9559613183559,535.9559613183559,28139.9196,6.0,854.4264499999999,1,2,3,4,5,6 +1425.0,85.0,1634.737,100,1092.399799552941,1092.399799552941,535.9559613183559,535.9559613183559,28084.4568,6.0,852.4005,1,2,3,4,5,6 +1425.5,85.0,1634.737,100,1091.2156840588234,1091.2156840588234,535.9559613183559,535.9559613183559,28061.86825,6.0,851.5754,1,2,3,4,5,6 +1426.0,85.0,1634.737,100,1090.0315685647056,1090.0315685647056,535.9559613183559,535.9559613183559,28039.2797,6.0,850.7503,1,2,3,4,5,6 +1426.5,85.0,1634.737,100,1093.7586133058821,1093.7586133058821,535.9559613183559,535.9559613183559,28110.965949999998,6.0,853.3469,1,2,3,4,5,6 +1427.0,85.0,1634.737,100,1097.4856580470587,1097.4856580470587,535.9559613183559,535.9559613183559,28182.6522,6.0,855.9435,1,2,3,4,5,6 +1427.5,85.0,1634.737,100,1107.8293993411762,1107.8293993411762,535.9559613183559,535.9559613183559,28410.6629,6.0,863.1496,1,2,3,4,5,6 +1428.0,85.0,1634.737,100,1118.173140635294,1118.173140635294,535.9559613183559,535.9559613183559,28638.6736,6.0,870.3557,1,2,3,4,5,6 +1428.5,85.0,1634.737,100,1131.5406770470586,1131.5406770470586,535.9559613183559,535.9559613183559,28952.243349999997,6.0,879.6683,1,2,3,4,5,6 +1429.0,85.0,1634.737,100,1144.9082134588234,1144.9082134588234,535.9559613183559,535.9559613183559,29265.8131,6.0,888.9809,1,2,3,4,5,6 +1429.5,85.0,1634.737,100,1152.0797552470585,1152.0797552470585,535.9559613183559,535.9559613183559,29434.0447,6.0,893.9771499999999,1,2,3,4,5,6 +1430.0,85.0,1634.737,100,1159.2512970352939,1159.2512970352939,535.9559613183559,535.9559613183559,29602.2763,6.0,898.9734,1,2,3,4,5,6 +1430.5,85.0,1634.737,100,1155.025560070588,1155.025560070588,535.9559613183559,535.9559613183559,29503.1501,6.0,896.0295,1,2,3,4,5,6 +1431.0,85.0,1634.737,100,1150.799823105882,1150.799823105882,535.9559613183559,535.9559613183559,29404.0239,6.0,893.0856,1,2,3,4,5,6 +1431.5,85.0,1634.737,100,1134.501634270588,1134.501634270588,535.9559613183559,535.9559613183559,29026.949249999998,6.0,881.7312999999999,1,2,3,4,5,6 +1432.0,85.0,1634.737,100,1118.203445435294,1118.203445435294,535.9559613183559,535.9559613183559,28649.8746,6.0,870.377,1,2,3,4,5,6 +1432.5,85.0,1634.737,100,1090.5061952117646,1090.5061952117646,535.9559613183559,535.9559613183559,28034.95505,6.0,851.0812,1,2,3,4,5,6 +1433.0,85.0,1634.737,100,1062.808944988235,1062.808944988235,535.9559613183559,535.9559613183559,27420.0355,6.0,831.7854,1,2,3,4,5,6 +1433.5,85.0,1634.737,100,1037.101115752941,1037.101115752941,535.9559613183559,535.9559613183559,26835.838750000003,6.0,813.87565,1,2,3,4,5,6 +1434.0,85.0,1634.737,100,1011.3932865176469,1011.3932865176469,535.9559613183559,535.9559613183559,26251.642,6.0,795.9659,1,2,3,4,5,6 +1434.5,85.0,1634.737,100,1009.6708151647057,1009.6708151647057,535.9559613183559,535.9559613183559,26212.28065,6.0,794.7658,1,2,3,4,5,6 +1435.0,85.0,1634.737,100,1007.9483438117645,1007.9483438117645,535.9559613183559,535.9559613183559,26172.9193,6.0,793.5657,1,2,3,4,5,6 +1435.5,85.0,1634.737,100,1035.0867378705882,1035.0867378705882,535.9559613183559,535.9559613183559,26787.4863,6.0,812.4720500000001,1,2,3,4,5,6 +1436.0,85.0,1634.737,100,1062.2251319294116,1062.2251319294116,535.9559613183559,535.9559613183559,27402.0533,6.0,831.3784,1,2,3,4,5,6 +1436.5,85.0,1634.737,100,1097.8105433294115,1097.8105433294115,535.9559613183559,535.9559613183559,28201.5731,6.0,856.16975,1,2,3,4,5,6 +1437.0,85.0,1634.737,100,1133.3959547294114,1133.3959547294114,535.9559613183559,535.9559613183559,29001.0929,6.0,880.9611,1,2,3,4,5,6 +1437.5,85.0,1634.737,100,1157.910309635294,1157.910309635294,535.9559613183559,535.9559613183559,29573.48745,6.0,898.03945,1,2,3,4,5,6 +1438.0,85.0,1634.737,100,1182.4246645411765,1182.4246645411765,535.9559613183559,535.9559613183559,30145.882,6.0,915.1178,1,2,3,4,5,6 +1438.5,85.0,1634.737,100,1193.7764860941174,1193.7764860941174,535.9559613183559,535.9559613183559,30403.134,6.0,923.0261,1,2,3,4,5,6 +1439.0,85.0,1634.737,100,1205.1283076470586,1205.1283076470586,535.9559613183559,535.9559613183559,30660.386,6.0,930.9344,1,2,3,4,5,6 +1439.5,85.0,1634.737,100,1206.6466672588238,1206.6466672588238,535.9559613183559,535.9559613183559,30691.661650000002,6.0,931.9923,1,2,3,4,5,6 +1440.0,85.0,1634.737,100,1208.1650268705882,1208.1650268705882,535.9559613183559,535.9559613183559,30722.9373,6.0,933.0502,1,2,3,4,5,6 +1440.5,85.0,1634.737,100,1204.993718682353,1204.993718682353,535.9559613183559,535.9559613183559,30659.451950000002,6.0,930.8408,1,2,3,4,5,6 +1441.0,85.0,1634.737,100,1201.8224104941175,1201.8224104941175,535.9559613183559,535.9559613183559,30595.9666,6.0,928.6314,1,2,3,4,5,6 +1441.5,85.0,1634.737,100,1198.3944028235292,1198.3944028235292,535.9559613183559,535.9559613183559,30518.021950000002,6.0,926.2432,1,2,3,4,5,6 +1442.0,85.0,1634.737,100,1194.966395152941,1194.966395152941,535.9559613183559,535.9559613183559,30440.0773,6.0,923.855,1,2,3,4,5,6 +1442.5,85.0,1634.737,100,1185.0442471058823,1185.0442471058823,535.9559613183559,535.9559613183559,30207.324650000002,6.0,916.94255,1,2,3,4,5,6 +1443.0,85.0,1634.737,100,1175.1220990588233,1175.1220990588233,535.9559613183559,535.9559613183559,29974.572,6.0,910.0301,1,2,3,4,5,6 +1443.5,85.0,1634.737,100,1152.312389152941,1152.312389152941,535.9559613183559,535.9559613183559,29442.4155,6.0,894.1393,1,2,3,4,5,6 +1444.0,85.0,1634.737,100,1129.5026792470587,1129.5026792470587,535.9559613183559,535.9559613183559,28910.259,6.0,878.2485,1,2,3,4,5,6 +1444.5,85.0,1634.737,100,1092.1439913882352,1092.1439913882352,535.9559613183559,535.9559613183559,28071.64995,6.0,852.22195,1,2,3,4,5,6 +1445.0,85.0,1634.737,100,1054.7853035294115,1054.7853035294115,535.9559613183559,535.9559613183559,27233.0409,6.0,826.1954,1,2,3,4,5,6 +1445.5,85.0,1634.737,100,1012.6709903647057,1012.6709903647057,535.9559613183559,535.9559613183559,26279.01045,6.0,796.8605,1,2,3,4,5,6 +1446.0,85.0,1634.737,100,970.5566771999999,970.5566771999999,535.9559613183559,535.9559613183559,25324.98,6.0,767.5256,1,2,3,4,5,6 +1446.5,85.0,1634.737,100,943.898703352941,943.898703352941,535.9559613183559,535.9559613183559,24732.48285,6.0,748.96135,1,2,3,4,5,6 +1447.0,85.0,1634.737,100,917.2407295058822,917.2407295058822,535.9559613183559,535.9559613183559,24139.9857,6.0,730.3971,1,2,3,4,5,6 +1447.5,85.0,1634.737,100,912.7774563882351,912.7774563882351,535.9559613183559,535.9559613183559,24041.555650000002,6.0,727.28885,1,2,3,4,5,6 +1448.0,85.0,1634.737,100,908.314183270588,908.314183270588,535.9559613183559,535.9559613183559,23943.1256,6.0,724.1806,1,2,3,4,5,6 +1448.5,85.0,1634.737,100,916.2134859176468,916.2134859176468,535.9559613183559,535.9559613183559,24117.329299999998,6.0,729.68165,1,2,3,4,5,6 +1449.0,85.0,1634.737,100,924.1127885647056,924.1127885647056,535.9559613183559,535.9559613183559,24291.533,6.0,735.1827,1,2,3,4,5,6 +1449.5,85.0,1634.737,100,932.9773882235293,932.9773882235293,535.9559613183559,535.9559613183559,24487.014900000002,6.0,741.3557,1,2,3,4,5,6 +1450.0,85.0,1634.737,100,941.8419878823528,941.8419878823528,535.9559613183559,535.9559613183559,24682.4968,6.0,747.5287,1,2,3,4,5,6 +1450.5,85.0,1634.737,100,946.9167049058822,946.9167049058822,535.9559613183559,535.9559613183559,24794.3999,6.0,751.0624,1,2,3,4,5,6 +1451.0,85.0,1634.737,100,951.9914219294116,951.9914219294116,535.9559613183559,535.9559613183559,24906.303,6.0,754.5961,1,2,3,4,5,6 +1451.5,85.0,1634.737,100,949.3620348705882,949.3620348705882,535.9559613183559,535.9559613183559,24848.3266,6.0,752.7653,1,2,3,4,5,6 +1452.0,85.0,1634.737,100,946.7326478117647,946.7326478117647,535.9559613183559,535.9559613183559,24790.3502,6.0,750.9345,1,2,3,4,5,6 +1452.5,85.0,1634.737,100,933.3517416352939,933.3517416352939,535.9559613183559,535.9559613183559,24495.27035,6.0,741.6164,1,2,3,4,5,6 +1453.0,85.0,1634.737,100,919.9708354588233,919.9708354588233,535.9559613183559,535.9559613183559,24200.1905,6.0,732.2983,1,2,3,4,5,6 +1453.5,85.0,1634.737,100,906.0502364470586,906.0502364470586,535.9559613183559,535.9559613183559,23893.21065,6.0,722.6043999999999,1,2,3,4,5,6 +1454.0,85.0,1634.737,100,892.129637435294,892.129637435294,535.9559613183559,535.9559613183559,23586.2308,6.0,712.9105,1,2,3,4,5,6 +1454.5,85.0,1634.737,100,870.1537551882352,870.1537551882352,535.9559613183559,535.9559613183559,23112.3523,6.0,697.6069,1,2,3,4,5,6 +1455.0,85.0,1634.737,100,848.1778729411764,848.1778729411764,535.9559613183559,535.9559613183559,22638.4738,6.0,682.3033,1,2,3,4,5,6 +1455.5,85.0,1634.737,100,830.2713014117646,830.2713014117646,535.9559613183559,535.9559613183559,22275.023849999998,6.0,669.8339000000001,1,2,3,4,5,6 +1456.0,85.0,1634.737,100,812.3647298823528,812.3647298823528,535.9559613183559,535.9559613183559,21911.5739,6.0,657.3645,1,2,3,4,5,6 +1456.5,85.0,1634.737,100,795.9181366588233,795.9181366588233,535.9559613183559,535.9559613183559,21542.6671,6.0,645.9114999999999,1,2,3,4,5,6 +1457.0,85.0,1634.737,100,779.471543435294,779.471543435294,535.9559613183559,535.9559613183559,21173.7603,6.0,634.4585,1,2,3,4,5,6 +1457.5,85.0,1634.737,100,767.2221650117646,767.2221650117646,535.9559613183559,535.9559613183559,20896.1886,6.0,625.9282499999999,1,2,3,4,5,6 +1458.0,85.0,1634.737,100,754.9727865882352,754.9727865882352,535.9559613183559,535.9559613183559,20618.6169,6.0,617.398,1,2,3,4,5,6 +1458.5,85.0,1634.737,100,754.4304197999999,754.4304197999999,535.9559613183559,535.9559613183559,20606.3286,6.0,617.0204,1,2,3,4,5,6 +1459.0,85.0,1634.737,100,753.8880530117646,753.8880530117646,535.9559613183559,535.9559613183559,20594.0403,6.0,616.6428,1,2,3,4,5,6 +1459.5,85.0,1634.737,100,774.6165362117647,774.6165362117647,535.9559613183559,535.9559613183559,21056.6388,6.0,631.0775,1,2,3,4,5,6 +1460.0,85.0,1634.737,100,795.3450194117646,795.3450194117646,535.9559613183559,535.9559613183559,21519.2373,6.0,645.5122,1,2,3,4,5,6 +1460.5,85.0,1634.737,100,821.1660459882352,821.1660459882352,535.9559613183559,535.9559613183559,22060.7656,6.0,663.49315,1,2,3,4,5,6 +1461.0,85.0,1634.737,100,846.9870725647057,846.9870725647057,535.9559613183559,535.9559613183559,22602.2939,6.0,681.4741,1,2,3,4,5,6 +1461.5,85.0,1634.737,100,843.1700047411764,843.1700047411764,535.9559613183559,535.9559613183559,22525.721149999998,6.0,678.8162500000001,1,2,3,4,5,6 +1462.0,85.0,1634.737,100,839.3529369176468,839.3529369176468,535.9559613183559,535.9559613183559,22449.1484,6.0,676.1584,1,2,3,4,5,6 +1462.5,85.0,1634.737,100,818.1088264588234,818.1088264588234,535.9559613183559,535.9559613183559,22005.94545,6.0,661.3643999999999,1,2,3,4,5,6 +1463.0,85.0,1634.737,100,796.8647159999998,796.8647159999998,535.9559613183559,535.9559613183559,21562.7425,6.0,646.5704,1,2,3,4,5,6 +1463.5,85.0,1634.737,100,776.2997895882353,776.2997895882353,535.9559613183559,535.9559613183559,21099.2661,6.0,632.2481,1,2,3,4,5,6 +1464.0,85.0,1634.737,100,755.7348631764704,755.7348631764704,535.9559613183559,535.9559613183559,20635.7897,6.0,617.9258,1,2,3,4,5,6 +1464.5,85.0,1634.737,100,722.8710902117646,722.8710902117646,535.9559613183559,535.9559613183559,19895.44135,6.0,595.0242000000001,1,2,3,4,5,6 +1465.0,85.0,1634.737,100,690.0073172470587,690.0073172470587,535.9559613183559,535.9559613183559,19155.093,6.0,572.1226,1,2,3,4,5,6 +1465.5,85.0,1634.737,100,637.4561200941175,637.4561200941175,535.9559613183559,535.9559613183559,17975.266600000003,6.0,535.49595,1,2,3,4,5,6 +1466.0,85.0,1634.737,100,584.9049229411763,584.9049229411763,535.9559613183559,535.9559613183559,16795.4402,6.0,498.8693,1,2,3,4,5,6 +1466.5,85.0,1634.737,100,528.6347029058822,528.6347029058822,535.9559613183559,535.9559613183559,15530.018100000001,6.0,459.66134999999997,1,2,3,4,5,6 +1467.0,85.0,1634.737,100,472.3644828705882,472.3644828705882,535.9559613183559,535.9559613183559,14264.596,6.0,420.4534,1,2,3,4,5,6 +1467.5,85.0,1634.737,100,439.2056837647057,439.2056837647057,535.9559613183559,535.9559613183559,13536.9856,6.0,397.36085,1,2,3,4,5,6 +1468.0,85.0,1634.737,100,406.04688465882344,406.04688465882344,535.9559613183559,535.9559613183559,12809.3752,6.0,374.2683,1,2,3,4,5,6 +1468.5,85.0,1634.737,100,404.15149768235284,404.15149768235284,535.9559613183559,535.9559613183559,12769.90645,6.0,372.9486,1,2,3,4,5,6 +1469.0,85.0,1634.737,100,402.2561107058823,402.2561107058823,535.9559613183559,535.9559613183559,12730.4377,6.0,371.6289,1,2,3,4,5,6 +1469.5,85.0,1634.737,100,409.721787317647,409.721787317647,535.9559613183559,535.9559613183559,12899.409950000001,6.0,376.82775,1,2,3,4,5,6 +1470.0,85.0,1634.737,100,417.18746392941176,417.18746392941176,535.9559613183559,535.9559613183559,13068.3822,6.0,382.0266,1,2,3,4,5,6 +1470.5,85.0,1634.737,100,414.9288650117647,414.9288650117647,535.9559613183559,535.9559613183559,13017.4163,6.0,380.4536,1,2,3,4,5,6 +1471.0,85.0,1634.737,100,412.6702660941176,412.6702660941176,535.9559613183559,535.9559613183559,12966.4504,6.0,378.8806,1,2,3,4,5,6 +1471.5,85.0,1634.737,100,397.5958563882353,397.5958563882353,535.9559613183559,535.9559613183559,12622.4227,6.0,368.38355,1,2,3,4,5,6 +1472.0,85.0,1634.737,100,382.5214466823529,382.5214466823529,535.9559613183559,535.9559613183559,12278.395,6.0,357.8865,1,2,3,4,5,6 +1472.5,85.0,1634.737,100,363.07200430588233,363.07200430588233,535.9559613183559,535.9559613183559,11832.870350000001,6.0,344.3423,1,2,3,4,5,6 +1473.0,85.0,1634.737,100,343.6225619294117,343.6225619294117,535.9559613183559,535.9559613183559,11387.3457,6.0,330.7981,1,2,3,4,5,6 +1473.5,85.0,1634.737,100,329.9702495294117,329.9702495294117,535.9559613183559,535.9559613183559,11074.610799999999,6.0,321.2908,1,2,3,4,5,6 +1474.0,85.0,1634.737,100,316.3179371294117,316.3179371294117,535.9559613183559,535.9559613183559,10761.8759,6.0,311.7835,1,2,3,4,5,6 +1474.5,85.0,1634.737,100,313.9657498588235,313.9657498588235,535.9559613183559,535.9559613183559,10707.99765,6.0,310.1456,1,2,3,4,5,6 +1475.0,85.0,1634.737,100,311.61356258823525,311.61356258823525,535.9559613183559,535.9559613183559,10654.1194,6.0,308.5077,1,2,3,4,5,6 +1475.5,85.0,1634.737,100,337.58967843529405,337.58967843529405,535.9559613183559,535.9559613183559,11249.1448,6.0,326.59680000000003,1,2,3,4,5,6 +1476.0,85.0,1634.737,100,363.5657942823529,363.5657942823529,535.9559613183559,535.9559613183559,11844.1702,6.0,344.6859,1,2,3,4,5,6 +1476.5,85.0,1634.737,100,418.8194665411764,418.8194665411764,535.9559613183559,535.9559613183559,13076.59755,6.0,383.1651,1,2,3,4,5,6 +1477.0,85.0,1634.737,100,474.0731387999999,474.0731387999999,535.9559613183559,535.9559613183559,14309.0249,6.0,421.6443,1,2,3,4,5,6 +1477.5,85.0,1634.737,100,528.3049153764706,528.3049153764706,535.9559613183559,535.9559613183559,15524.982750000001,6.0,459.4315,1,2,3,4,5,6 +1478.0,85.0,1634.737,100,582.5366919529412,582.5366919529412,535.9559613183559,535.9559613183559,16740.9406,6.0,497.2187,1,2,3,4,5,6 +1478.5,85.0,1634.737,100,621.3700648588234,621.3700648588234,535.9559613183559,535.9559613183559,17620.4366,6.0,524.2843,1,2,3,4,5,6 +1479.0,85.0,1634.737,100,660.2034377647058,660.2034377647058,535.9559613183559,535.9559613183559,18499.9326,6.0,551.3499,1,2,3,4,5,6 +1479.5,85.0,1634.737,100,688.1342132117645,688.1342132117645,535.9559613183559,535.9559613183559,19119.353,6.0,570.8168000000001,1,2,3,4,5,6 +1480.0,85.0,1634.737,100,716.0649886588235,716.0649886588235,535.9559613183559,535.9559613183559,19738.7734,6.0,590.2837,1,2,3,4,5,6 +1480.5,85.0,1634.737,100,752.2088105647057,752.2088105647057,535.9559613183559,535.9559613183559,20548.6262,6.0,615.46315,1,2,3,4,5,6 +1481.0,85.0,1634.737,100,788.3526324705881,788.3526324705881,535.9559613183559,535.9559613183559,21358.479,6.0,640.6426,1,2,3,4,5,6 +1481.5,85.0,1634.737,100,840.1020893999998,840.1020893999998,535.9559613183559,535.9559613183559,22474.19375,6.0,676.67965,1,2,3,4,5,6 +1482.0,85.0,1634.737,100,891.8515463294116,891.8515463294116,535.9559613183559,535.9559613183559,23589.9085,6.0,712.7167,1,2,3,4,5,6 +1482.5,85.0,1634.737,100,961.0338394588233,961.0338394588233,535.9559613183559,535.9559613183559,25129.5975,6.0,760.8993499999999,1,2,3,4,5,6 +1483.0,85.0,1634.737,100,1030.216132588235,1030.216132588235,535.9559613183559,535.9559613183559,26669.2865,6.0,809.082,1,2,3,4,5,6 +1483.5,85.0,1634.737,100,1095.9289717764705,1095.9289717764705,535.9559613183559,535.9559613183559,28163.8235,6.0,854.86055,1,2,3,4,5,6 +1484.0,85.0,1634.737,100,1161.6418109647057,1161.6418109647057,535.9559613183559,535.9559613183559,29658.3605,6.0,900.6391,1,2,3,4,5,6 +1484.5,84.9707,1634.28725,100,1186.7011546803783,1186.7011546803783,535.7712141458072,535.7712141458072,30198.27425,6.0,917.6297500000001,1,2,3,4,5,6 +1485.0,84.9414,1633.8375,100,1211.7777865210608,1211.7777865210608,535.5864669732587,535.5864669732587,30738.188,6.0,934.6204,1,2,3,4,5,6 +1485.5,84.85045,1632.0362,100,1220.8403404578291,1220.8403404578291,535.0129940946481,535.0129940946481,30890.886749999998,6.0,940.51345,1,2,3,4,5,6 +1486.0,84.7595,1630.2349,100,1229.922343288953,1229.922343288953,534.4395212160374,534.4395212160374,31043.5855,6.0,946.4065,1,2,3,4,5,6 +1486.5,84.61305,1627.406,100,1231.8590561030485,1231.8590561030485,533.5161006215071,533.5161006215071,31021.346550000002,6.0,947.45525,1,2,3,4,5,6 +1487.0,84.4666,1624.5771,100,1233.8024847454496,1233.8024847454496,532.5926800269768,532.5926800269768,30999.1076,6.0,948.504,1,2,3,4,5,6 +1487.5,84.2817,1620.99595,100,1235.6260587173729,1235.6260587173729,531.4268181770032,531.4268181770032,30963.1914,6.0,949.59625,1,2,3,4,5,6 +1488.0,84.0968,1617.4148,100,1237.4576515158722,1237.4576515158722,530.2609563270295,530.2609563270295,30927.2752,6.0,950.6885,1,2,3,4,5,6 +1488.5,83.89144999999999,1613.4414000000002,100,1239.2309534165877,1239.2309534165877,528.9661497781268,528.9661497781268,30887.425649999997,6.0,951.9004,1,2,3,4,5,6 +1489.0,83.6861,1609.468,100,1241.012958018118,1241.012958018118,527.671343229224,527.671343229224,30847.5761,6.0,953.1123,1,2,3,4,5,6 +1489.5,83.47784999999999,1605.4568,100,1242.5351539120857,1242.5351539120857,526.3582511239941,526.3582511239941,30804.17425,6.0,954.2395,1,2,3,4,5,6 +1490.0,83.2696,1601.4456,100,1244.064963564134,1244.064963564134,525.0451590187641,525.0451590187641,30760.7724,6.0,955.3667,1,2,3,4,5,6 +1490.5,83.07249999999999,1597.62595,100,1244.2642532005177,1244.2642532005177,523.8023717249307,523.8023717249307,30694.480300000003,6.0,955.68335,1,2,3,4,5,6 +1491.0,82.8754,1593.8063,100,1244.4644907656555,1244.4644907656555,522.5595844310972,522.5595844310972,30628.1882,6.0,956.0,1,2,3,4,5,6 +1491.5,82.6994,1590.4328,100,1244.1859658957621,1244.1859658957621,521.4498403229557,521.4498403229557,30560.4148,6.0,956.0,1,2,3,4,5,6 +1492.0,82.5234,1587.0593,100,1243.9062529900611,1243.9062529900611,520.340096214814,520.340096214814,30492.6414,6.0,956.0,1,2,3,4,5,6 +1492.5,82.3657,1584.04585,100,1243.756518235139,1243.756518235139,519.3457402724624,519.3457402724624,30432.101150000002,6.0,956.0,1,2,3,4,5,6 +1493.0,82.208,1581.0324,100,1243.606209006423,1243.606209006423,518.3513843301105,518.3513843301105,30371.5609,6.0,956.0,1,2,3,4,5,6 +1493.5,82.053,1578.0758,100,1243.6627811780188,1243.6627811780188,517.3740528712359,517.3740528712359,30312.16235,6.0,956.0,1,2,3,4,5,6 +1494.0,81.898,1575.1192,100,1243.7195674863858,1243.7195674863858,516.3967214123611,516.3967214123611,30252.7638,6.0,956.0,1,2,3,4,5,6 +1494.5,81.72755000000001,1571.85475,100,1243.9333640002665,1243.9333640002665,515.3219720758117,515.3219720758117,30187.18085,6.0,956.0,1,2,3,4,5,6 +1495.0,81.5571,1568.5903,100,1244.148054160827,1244.148054160827,514.247222739262,514.247222739262,30121.5979,6.0,956.0,1,2,3,4,5,6 +1495.5,81.3627,1564.83915,100,1244.3397779940933,1244.3397779940933,513.0214599289058,513.0214599289058,30046.23715,6.0,956.0,1,2,3,4,5,6 +1496.0,81.1683,1561.088,100,1244.5324201935978,1244.5324201935978,511.7956971185494,511.7956971185494,29970.8764,6.0,956.0,1,2,3,4,5,6 +1496.5,80.95985,1557.0439000000001,100,1244.4937537680712,1244.4937537680712,510.4813439404693,510.4813439404693,29889.63035,6.0,956.0,1,2,3,4,5,6 +1497.0,80.7514,1552.9998,100,1244.454887717117,1244.454887717117,509.16699076238916,509.16699076238916,29808.3843,6.0,956.0,1,2,3,4,5,6 +1497.5,80.55430000000001,1549.1721,100,1244.1012886090498,1244.1012886090498,507.92420346855573,507.92420346855573,29731.4847,6.0,956.0,1,2,3,4,5,6 +1498.0,80.3572,1545.3444,100,1243.745954886432,1243.745954886432,506.68141617472213,506.68141617472213,29654.5851,6.0,956.0,1,2,3,4,5,6 +1498.5,80.19925,1542.2889,100,1243.1588262608439,1243.1588262608439,505.6854838913076,505.6854838913076,29593.20005,6.0,956.0,1,2,3,4,5,6 +1499.0,80.0413,1539.2334,100,1242.5693804073646,1242.5693804073646,504.6895516078931,504.6895516078931,29531.815,6.0,956.0,1,2,3,4,5,6 +1499.5,79.9355,1537.21565,100,1242.0156074460033,1242.0156074460033,504.0224440701581,504.0224440701581,29491.2781,6.0,956.0,1,2,3,4,5,6 +1500.0,79.8297,1535.1979,100,1241.4603666304645,1241.4603666304645,503.35533653242294,503.35533653242294,29450.7412,6.0,956.0,1,2,3,4,5,6 +1500.5,79.76490000000001,1533.9822,100,1241.1652905601336,1241.1652905601336,502.94674892897086,502.94674892897086,29426.317900000002,6.0,956.0,1,2,3,4,5,6 +1501.0,79.7001,1532.7665,100,1240.869734667836,1240.869734667836,502.53816132551873,502.53816132551873,29401.8946,6.0,956.0,1,2,3,4,5,6 +1501.5,79.6539,1531.8982,100,1240.793346540471,1240.793346540471,502.2468534971315,502.2468534971315,29384.45065,6.0,956.0,1,2,3,4,5,6 +1502.0,79.6077,1531.0299,100,1240.716869750037,1240.716869750037,501.9555456687443,501.9555456687443,29367.0067,6.0,956.0,1,2,3,4,5,6 +1502.5,79.56395,1530.1963500000002,100,1240.743505255835,1240.743505255835,501.67968598277173,501.67968598277173,29350.26025,6.0,956.0,1,2,3,4,5,6 +1503.0,79.5202,1529.3628,100,1240.7701700699947,1240.7701700699947,501.403826296799,501.403826296799,29333.5138,6.0,956.0,1,2,3,4,5,6 +1503.5,79.47345,1528.4544500000002,100,1240.7803079896496,1240.7803079896496,501.1090505180739,501.1090505180739,29315.26485,6.0,956.0,1,2,3,4,5,6 +1504.0,79.4267,1527.5461,100,1240.7904578435212,1240.7904578435212,500.81427473934883,500.81427473934883,29297.0159,6.0,956.0,1,2,3,4,5,6 +1504.5,79.38245,1526.67995,100,1240.683760012446,1240.683760012446,500.5352623712508,500.5352623712508,29279.6151,6.0,956.0,1,2,3,4,5,6 +1505.0,79.3382,1525.8138,100,1240.5769431623103,1240.5769431623103,500.25625000315273,500.25625000315273,29262.2143,6.0,956.0,1,2,3,4,5,6 +1505.5,79.30615,1525.1929,100,1240.3971612037653,1240.3971612037653,500.0541630789144,500.0541630789144,29249.740850000002,6.0,956.0,1,2,3,4,5,6 +1506.0,79.2741,1524.572,100,1240.217233875881,1240.217233875881,499.8520761546762,499.8520761546762,29237.2674,6.0,956.0,1,2,3,4,5,6 +1506.5,79.2594,1524.2864,100,1240.0199775168621,1240.0199775168621,499.7593873001893,499.7593873001893,29231.5291,6.0,956.0,1,2,3,4,5,6 +1507.0,79.2447,1524.0008,100,1239.822647975196,1239.822647975196,499.66669844570237,499.66669844570237,29225.7908,6.0,956.0,1,2,3,4,5,6 +1507.5,79.25229999999999,1524.1339,100,1239.5096938006845,1239.5096938006845,499.71461921400856,499.71461921400856,29227.623249999997,6.0,955.9745,1,2,3,4,5,6 +1508.0,79.2599,1524.267,100,1239.1967996426945,1239.1967996426945,499.76253998231465,499.76253998231465,29229.4557,6.0,955.949,1,2,3,4,5,6 +1508.5,79.29825,1524.99675,100,1238.7264824885794,1238.7264824885794,500.00435070133307,500.00435070133307,29241.651299999998,6.0,955.87425,1,2,3,4,5,6 +1509.0,79.3366,1525.7265,100,1238.2566200215285,1238.2566200215285,500.24616142035137,500.24616142035137,29253.8469,6.0,955.7995,1,2,3,4,5,6 +1509.5,79.41125,1527.16475,100,1237.767593067733,1237.767593067733,500.7168568616739,500.7168568616739,29279.79255,6.0,955.7101,1,2,3,4,5,6 +1510.0,79.4859,1528.603,100,1237.2794846633178,1237.2794846633178,501.18755230299644,501.18755230299644,29305.7382,6.0,955.6207,1,2,3,4,5,6 +1510.5,79.5954,1530.7162,100,1236.8594768541905,1236.8594768541905,501.8779896884595,501.8779896884595,29345.49895,6.0,955.5390500000001,1,2,3,4,5,6 +1511.0,79.7049,1532.8294,100,1236.440623073362,1236.440623073362,502.56842707392246,502.56842707392246,29385.2597,6.0,955.4574,1,2,3,4,5,6 +1511.5,79.8406,1535.46695,100,1236.2141808804045,1236.2141808804045,503.4240650027566,503.4240650027566,29436.36635,6.0,955.40035,1,2,3,4,5,6 +1512.0,79.9763,1538.1045,100,1235.9885071202345,1235.9885071202345,504.27970293159075,504.27970293159075,29487.473,6.0,955.3433,1,2,3,4,5,6 +1512.5,80.12209999999999,1540.91775,100,1236.0101655473336,1236.0101655473336,505.199025039358,505.199025039358,29543.6185,6.0,955.332,1,2,3,4,5,6 +1513.0,80.2679,1543.731,100,1236.03174529295,1236.03174529295,506.11834714712535,506.11834714712535,29599.764,6.0,955.3207,1,2,3,4,5,6 +1513.5,80.41505000000001,1546.5545,100,1236.0503966483886,1236.0503966483886,507.04618149663116,507.04618149663116,29656.666250000002,6.0,955.3261,1,2,3,4,5,6 +1514.0,80.5622,1549.378,100,1236.0689798689707,1236.0689798689707,507.97401584613704,507.97401584613704,29713.5685,6.0,955.3315,1,2,3,4,5,6 +1514.5,80.70855,1552.2096,100,1236.170151006306,1236.170151006306,508.8968059042423,508.8968059042423,29770.7509,6.0,955.3404499999999,1,2,3,4,5,6 +1515.0,80.8549,1555.0412,100,1236.27095589754,1236.27095589754,509.81959596234736,509.81959596234736,29827.9333,6.0,955.3494,1,2,3,4,5,6 +1515.5,80.99754999999999,1557.7692,100,1236.360060742578,1236.360060742578,510.71905617272455,510.71905617272455,29883.36635,6.0,955.3684,1,2,3,4,5,6 +1516.0,81.1402,1560.4972,100,1236.448852282839,1236.448852282839,511.61851638310173,511.61851638310173,29938.7994,6.0,955.3874,1,2,3,4,5,6 +1516.5,81.2849,1563.26965,100,1236.3938341438568,1236.3938341438568,512.5309025901931,512.5309025901931,29994.5232,6.0,955.38815,1,2,3,4,5,6 +1517.0,81.4296,1566.0421,100,1236.339011538802,1236.339011538802,513.4432887972845,513.4432887972845,30050.247,6.0,955.3889,1,2,3,4,5,6 +1517.5,81.5842,1569.01785,100,1236.2392998276628,1236.2392998276628,514.4180981104589,514.4180981104589,30109.593549999998,6.0,955.37565,1,2,3,4,5,6 +1518.0,81.7388,1571.9936,100,1236.1399653041153,1236.1399653041153,515.3929074236332,515.3929074236332,30168.9401,6.0,955.3624,1,2,3,4,5,6 +1518.5,81.9014,1575.1331500000001,100,1236.134417848779,1236.134417848779,516.4181596508139,516.4181596508139,30231.81895,6.0,955.3565,1,2,3,4,5,6 +1519.0,82.064,1578.2727,100,1236.128892376682,1236.128892376682,517.4434118779945,517.4434118779945,30294.6978,6.0,955.3506,1,2,3,4,5,6 +1519.5,82.22685,1581.4157,100,1236.2311172080654,1236.2311172080654,518.4702404462382,518.4702404462382,30358.19455,6.0,955.36135,1,2,3,4,5,6 +1520.0,82.3897,1584.5587,100,1236.3329379279205,1236.3329379279205,519.4970690144817,519.4970690144817,30421.6913,6.0,955.3721,1,2,3,4,5,6 +1520.5,82.54675,1587.5693,100,1236.474883517522,1236.474883517522,520.4873264700705,520.4873264700705,30482.9198,6.0,955.3947000000001,1,2,3,4,5,6 +1521.0,82.7038,1590.5799,100,1236.616290013276,1236.616290013276,521.4775839256592,521.4775839256592,30544.1483,6.0,955.4173,1,2,3,4,5,6 +1521.5,82.8588,1593.5486,100,1236.618146895683,1236.618146895683,522.4549153845338,522.4549153845338,30604.12975,6.0,955.4276,1,2,3,4,5,6 +1522.0,83.0138,1596.5173,100,1236.6199968438984,1236.6199968438984,523.4322468434085,523.4322468434085,30664.1112,6.0,955.4379,1,2,3,4,5,6 +1522.5,83.1746,1599.6116,100,1236.0692366900473,1236.0692366900473,524.4461494149378,524.4461494149378,30714.668749999997,6.0,955.086,1,2,3,4,5,6 +1523.0,83.3354,1602.7059,100,1235.520601977071,1235.520601977071,525.4600519864672,525.4600519864672,30765.2263,6.0,954.7341,1,2,3,4,5,6 +1523.5,83.50255000000001,1605.9254,100,1234.2105774973336,1234.2105774973336,526.5139936209891,526.5139936209891,30800.0778,6.0,953.8299,1,2,3,4,5,6 +1524.0,83.6697,1609.1449,100,1232.9057871846078,1232.9057871846078,527.5679352555111,527.5679352555111,30834.9293,6.0,952.9257,1,2,3,4,5,6 +1524.5,83.84075,1612.43505,100,1231.4815880940953,1231.4815880940953,528.646467810611,528.646467810611,30868.168100000003,6.0,951.9295,1,2,3,4,5,6 +1525.0,84.0118,1615.7252,100,1230.0631884092475,1230.0631884092475,529.725000365711,529.725000365711,30901.4069,6.0,950.9333,1,2,3,4,5,6 +1525.5,84.18594999999999,1619.0719,100,1228.6012601627706,1228.6012601627706,530.8230795499886,530.8230795499886,30935.10235,6.0,949.91655,1,2,3,4,5,6 +1526.0,84.3601,1622.4186,100,1227.1453678219918,1227.1453678219918,531.9211587342662,531.9211587342662,30968.7978,6.0,948.8998,1,2,3,4,5,6 +1526.5,84.53915,1625.8588,100,1225.608748077074,1225.608748077074,533.0501342033727,533.0501342033727,31003.3803,6.0,947.85295,1,2,3,4,5,6 +1527.0,84.7182,1629.299,100,1224.0786235543246,1224.0786235543246,534.1791096724792,534.1791096724792,31037.9628,6.0,946.8061,1,2,3,4,5,6 +1527.5,84.8342,1631.7538,100,1059.1647127102042,1059.1647127102042,534.9105319255724,534.9105319255724,27393.93285,6.0,831.0711,1,2,3,4,5,6 +1528.0,84.9502,1634.2086,100,894.7011837052769,894.7011837052769,535.6419541786657,535.6419541786657,23749.9029,6.0,715.3361,1,2,3,4,5,6 +1528.5,84.9751,1634.4728,100,835.0941879797729,835.0941879797729,535.7989577485107,535.7989577485107,22417.081850000002,6.0,673.52205,1,2,3,4,5,6 +1529.0,85.0,1634.737,100,775.5221149411764,775.5221149411764,535.9559613183559,535.9559613183559,21084.2608,6.0,631.708,1,2,3,4,5,6 +1529.5,85.0,1634.737,100,787.6364587411763,787.6364587411763,535.9559613183559,535.9559613183559,21356.038,6.0,640.1442,1,2,3,4,5,6 +1530.0,85.0,1634.737,100,799.7508025411763,799.7508025411763,535.9559613183559,535.9559613183559,21627.8152,6.0,648.5804,1,2,3,4,5,6 +1530.5,85.0,1634.737,100,822.0787552588234,822.0787552588234,535.9559613183559,535.9559613183559,22091.3017,6.0,664.1289,1,2,3,4,5,6 +1531.0,85.0,1634.737,100,844.4067079764706,844.4067079764706,535.9559613183559,535.9559613183559,22554.7882,6.0,679.6774,1,2,3,4,5,6 +1531.5,85.0,1634.737,100,865.378966552941,865.378966552941,535.9559613183559,535.9559613183559,23006.788650000002,6.0,694.2817500000001,1,2,3,4,5,6 +1532.0,85.0,1634.737,100,886.3512251294117,886.3512251294117,535.9559613183559,535.9559613183559,23458.7891,6.0,708.8861,1,2,3,4,5,6 +1532.5,85.0,1634.737,100,899.495486470588,899.495486470588,535.9559613183559,535.9559613183559,23748.6564,6.0,718.0396000000001,1,2,3,4,5,6 +1533.0,85.0,1634.737,100,912.6397478117646,912.6397478117646,535.9559613183559,535.9559613183559,24038.5237,6.0,727.1931,1,2,3,4,5,6 +1533.5,85.0,1634.737,100,922.5298084235293,922.5298084235293,535.9559613183559,535.9559613183559,24256.614650000003,6.0,734.08005,1,2,3,4,5,6 +1534.0,85.0,1634.737,100,932.419869035294,932.419869035294,535.9559613183559,535.9559613183559,24474.7056,6.0,740.967,1,2,3,4,5,6 +1534.5,85.0,1634.737,100,942.0581324117645,942.0581324117645,535.9559613183559,535.9559613183559,24687.25975,6.0,747.6791000000001,1,2,3,4,5,6 +1535.0,85.0,1634.737,100,951.6963957882352,951.6963957882352,535.9559613183559,535.9559613183559,24899.8139,6.0,754.3912,1,2,3,4,5,6 +1535.5,85.0,1634.737,100,961.3703118705882,961.3703118705882,535.9559613183559,535.9559613183559,25115.4073,6.0,761.1277,1,2,3,4,5,6 +1536.0,85.0,1634.737,100,971.044227952941,971.044227952941,535.9559613183559,535.9559613183559,25331.0007,6.0,767.8642,1,2,3,4,5,6 +1536.5,85.0,1634.737,100,978.0918765882351,978.0918765882351,535.9559613183559,535.9559613183559,25491.441850000003,6.0,772.7720999999999,1,2,3,4,5,6 +1537.0,85.0,1634.737,100,985.1395252235292,985.1395252235292,535.9559613183559,535.9559613183559,25651.883,6.0,777.68,1,2,3,4,5,6 +1537.5,85.0,1634.737,100,990.6536618470586,990.6536618470586,535.9559613183559,535.9559613183559,25777.82845,6.0,781.5199,1,2,3,4,5,6 +1538.0,85.0,1634.737,100,996.1677984705881,996.1677984705881,535.9559613183559,535.9559613183559,25903.7739,6.0,785.3598,1,2,3,4,5,6 +1538.5,85.0,1634.737,100,994.0584952588233,994.0584952588233,535.9559613183559,535.9559613183559,25855.5932,6.0,783.89085,1,2,3,4,5,6 +1539.0,85.0,1634.737,100,991.9491920470587,991.9491920470587,535.9559613183559,535.9559613183559,25807.4125,6.0,782.4219,1,2,3,4,5,6 +1539.5,85.0,1634.737,100,993.1649493176469,993.1649493176469,535.9559613183559,535.9559613183559,25835.18105,6.0,783.2685,1,2,3,4,5,6 +1540.0,85.0,1634.737,100,994.3807065882352,994.3807065882352,535.9559613183559,535.9559613183559,25862.9496,6.0,784.1151,1,2,3,4,5,6 +1540.5,85.0,1634.737,100,1006.8404359764705,1006.8404359764705,535.9559613183559,535.9559613183559,26147.6232,6.0,792.79445,1,2,3,4,5,6 +1541.0,85.0,1634.737,100,1019.3001653647058,1019.3001653647058,535.9559613183559,535.9559613183559,26432.2968,6.0,801.4738,1,2,3,4,5,6 +1541.5,85.0,1634.737,100,1039.3026703411763,1039.3026703411763,535.9559613183559,535.9559613183559,26889.355450000003,6.0,815.40895,1,2,3,4,5,6 +1542.0,85.0,1634.737,100,1059.305175317647,1059.305175317647,535.9559613183559,535.9559613183559,27346.4141,6.0,829.3441,1,2,3,4,5,6 +1542.5,85.0,1634.737,100,1083.2918701764704,1083.2918701764704,535.9559613183559,535.9559613183559,27873.68865,6.0,846.0550000000001,1,2,3,4,5,6 +1543.0,85.0,1634.737,100,1107.278565035294,1107.278565035294,535.9559613183559,535.9559613183559,28400.9632,6.0,862.7659,1,2,3,4,5,6 +1543.5,85.0,1634.737,100,1131.8285726470585,1131.8285726470585,535.9559613183559,535.9559613183559,28967.93035,6.0,879.86915,1,2,3,4,5,6 +1544.0,85.0,1634.737,100,1156.3785802588234,1156.3785802588234,535.9559613183559,535.9559613183559,29534.8975,6.0,896.9724,1,2,3,4,5,6 +1544.5,84.99985000000001,1634.73535,100,1172.919049057145,1172.919049057145,535.9550155137182,535.9550155137182,29915.16765,6.0,908.4925499999999,1,2,3,4,5,6 +1545.0,84.9997,1634.7337,100,1189.4595762337983,1189.4595762337983,535.9540697090805,535.9540697090805,30295.4378,6.0,920.0127,1,2,3,4,5,6 +1545.5,84.99405,1634.64565,100,1206.2074526628628,1206.2074526628628,535.9184444010635,535.9184444010635,30659.940349999997,6.0,931.5951,1,2,3,4,5,6 +1546.0,84.9884,1634.5576,100,1222.9575558782142,1222.9575558782142,535.8828190930465,535.8828190930465,31024.4429,6.0,943.1775,1,2,3,4,5,6 +1546.5,84.9692,1634.1837500000001,100,1224.8682780113268,1224.8682780113268,535.761756099431,535.761756099431,31056.8239,6.0,944.39485,1,2,3,4,5,6 +1547.0,84.95,1633.8099,100,1226.7798638493234,1226.7798638493234,535.6406931058156,535.6406931058156,31089.2049,6.0,945.6122,1,2,3,4,5,6 +1547.5,84.91735,1633.1804499999998,100,1227.2073871240684,1227.2073871240684,535.4348229630268,535.4348229630268,31084.141799999998,6.0,945.84205,1,2,3,4,5,6 +1548.0,84.8847,1632.551,100,1227.6352392834046,1227.6352392834046,535.2289528202381,535.2289528202381,31079.0787,6.0,946.0719,1,2,3,4,5,6 +1548.5,84.83879999999999,1631.6675,100,1228.1779723899915,1228.1779723899915,534.9395366011261,534.9395366011261,31070.2177,6.0,946.3414,1,2,3,4,5,6 +1549.0,84.7929,1630.784,100,1228.721293079963,1228.721293079963,534.6501203820143,534.6501203820143,31061.3567,6.0,946.6109,1,2,3,4,5,6 +1549.5,84.73400000000001,1629.6467499999999,100,1229.3049275025376,1229.3049275025376,534.2787344276419,534.2787344276419,31049.9513,6.0,946.95775,1,2,3,4,5,6 +1550.0,84.6751,1628.5095,100,1229.8893738773265,1229.8893738773265,533.9073484732695,533.9073484732695,31038.5459,6.0,947.3046,1,2,3,4,5,6 +1550.5,84.60755,1627.2074499999999,100,1230.5193952076381,1230.5193952076381,533.4814211181277,533.4814211181277,31025.487399999998,6.0,947.70175,1,2,3,4,5,6 +1551.0,84.54,1625.9054,100,1231.1504233498933,1231.1504233498933,533.055493762986,533.055493762986,31012.4289,6.0,948.0989,1,2,3,4,5,6 +1551.5,84.46595,1624.4787000000001,100,1231.8135677394262,1231.8135677394262,532.5885815402139,532.5885815402139,30998.12055,6.0,948.534,1,2,3,4,5,6 +1552.0,84.3919,1623.052,100,1232.4778758861926,1232.4778758861926,532.1216693174418,532.1216693174418,30983.8122,6.0,948.9691,1,2,3,4,5,6 +1552.5,84.31335000000001,1621.5393,100,1233.1565998622991,1233.1565998622991,531.6263829555412,531.6263829555412,30968.6408,6.0,949.4304999999999,1,2,3,4,5,6 +1553.0,84.2348,1620.0266,100,1233.8365896755258,1233.8365896755258,531.1310965936405,531.1310965936405,30953.4694,6.0,949.8919,1,2,3,4,5,6 +1553.5,84.15385,1618.4672999999998,100,1234.5138941593282,1234.5138941593282,530.6206773575379,530.6206773575379,30937.8313,6.0,950.3675000000001,1,2,3,4,5,6 +1554.0,84.0729,1616.908,100,1235.192502934953,1235.192502934953,530.1102581214352,530.1102581214352,30922.1932,6.0,950.8431,1,2,3,4,5,6 +1554.5,83.99115,1615.33435,100,1235.8634446843505,1235.8634446843505,529.5947945939321,529.5947945939321,30906.41095,6.0,951.32305,1,2,3,4,5,6 +1555.0,83.9094,1613.7607,100,1236.53569378401,1236.53569378401,529.0793310664288,529.0793310664288,30890.6287,6.0,951.803,1,2,3,4,5,6 +1555.5,83.82785000000001,1612.19175,100,1237.1977163556026,1237.1977163556026,528.5651286117757,528.5651286117757,30874.89325,6.0,952.2815,1,2,3,4,5,6 +1556.0,83.7463,1610.6228,100,1237.8610282484121,1237.8610282484121,528.0509261571226,528.0509261571226,30859.1578,6.0,952.76,1,2,3,4,5,6 +1556.5,83.66560000000001,1609.071,100,1238.5103338409092,1238.5103338409092,527.5420832620828,527.5420832620828,30843.5946,6.0,953.2333,1,2,3,4,5,6 +1557.0,83.5849,1607.5192,100,1239.160893223537,1239.160893223537,527.0332403670427,527.0332403670427,30828.0314,6.0,953.7066,1,2,3,4,5,6 +1557.5,83.50555,1605.99155,100,1239.7953882945503,1239.7953882945503,526.5329097137414,526.5329097137414,30812.7104,6.0,954.17255,1,2,3,4,5,6 +1558.0,83.4262,1604.4639,100,1240.4310903529108,1240.4310903529108,526.0325790604402,526.0325790604402,30797.3894,6.0,954.6385,1,2,3,4,5,6 +1558.5,83.34925,1602.9822,100,1241.0249951499266,1241.0249951499266,525.5473812813407,525.5473812813407,30782.529150000002,6.0,955.09045,1,2,3,4,5,6 +1559.0,83.2723,1601.5005,100,1241.6199975742234,1241.6199975742234,525.0621835022414,525.0621835022414,30767.6689,6.0,955.5424,1,2,3,4,5,6 +1559.5,83.19845000000001,1600.08185,100,1241.9011830268473,1241.9011830268473,524.5965323523195,524.5965323523195,30746.6158,6.0,955.7681500000001,1,2,3,4,5,6 +1560.0,83.1246,1598.6632,100,1242.182868104027,1242.182868104027,524.1308812023976,524.1308812023976,30725.5627,6.0,955.9939,1,2,3,4,5,6 +1560.5,83.05355,1597.2947,100,1242.1394704139677,1242.1394704139677,523.6828850723781,523.6828850723781,30698.1698,6.0,955.99695,1,2,3,4,5,6 +1561.0,82.9825,1595.9262,100,1242.095998409303,1242.095998409303,523.2348889423585,523.2348889423585,30670.7769,6.0,956.0,1,2,3,4,5,6 +1561.5,82.91544999999999,1594.6340500000001,100,1242.0258839094524,1242.0258839094524,522.8121142693419,522.8121142693419,30644.8177,6.0,956.0,1,2,3,4,5,6 +1562.0,82.8484,1593.3419,100,1241.9556559209352,1241.9556559209352,522.3893395963254,522.3893395963254,30618.8585,6.0,956.0,1,2,3,4,5,6 +1562.5,82.7878,1592.173,100,1241.8599393630466,1241.8599393630466,522.0072345227268,522.0072345227268,30595.3758,6.0,956.0,1,2,3,4,5,6 +1563.0,82.7272,1591.0041,100,1241.7640825750177,1241.7640825750177,521.625129449128,521.625129449128,30571.8931,6.0,956.0,1,2,3,4,5,6 +1563.5,82.67555,1590.0082000000002,100,1241.6440925642462,1241.6440925642462,521.2994573855741,521.2994573855741,30551.88535,6.0,956.0,1,2,3,4,5,6 +1564.0,82.6239,1589.0123,100,1241.5239525367358,1241.5239525367358,520.97378532202,520.97378532202,30531.8776,6.0,956.0,1,2,3,4,5,6 +1564.5,82.58365,1588.23605,100,1241.3855018638678,1241.3855018638678,520.7199944109251,520.7199944109251,30516.28285,6.0,956.0,1,2,3,4,5,6 +1565.0,82.5434,1587.4598,100,1241.246916167737,1241.246916167737,520.4662034998303,520.4662034998303,30500.6881,6.0,956.0,1,2,3,4,5,6 +1565.5,82.5151,1586.9192,100,1241.122646182335,1241.122646182335,520.2877616915324,520.2877616915324,30489.8272,6.0,956.0,1,2,3,4,5,6 +1566.0,82.4868,1586.3786,100,1240.9982909265482,1240.9982909265482,520.1093198832347,520.1093198832347,30478.9663,6.0,956.0,1,2,3,4,5,6 +1566.5,82.4685,1586.03125,100,1240.9140096036672,1240.9140096036672,519.993931717445,519.993931717445,30471.9879,6.0,956.0,1,2,3,4,5,6 +1567.0,82.4502,1585.6839,100,1240.8296908679424,1240.8296908679424,519.8785435516552,519.8785435516552,30465.0095,6.0,956.0,1,2,3,4,5,6 +1567.5,82.43835,1585.4585,100,1240.7792179246674,1240.7792179246674,519.8038249852833,519.8038249852833,30460.48115,6.0,956.0,1,2,3,4,5,6 +1568.0,82.4265,1585.2331,100,1240.728730468963,1240.728730468963,519.7291064189113,519.7291064189113,30455.9528,6.0,956.0,1,2,3,4,5,6 +1568.5,82.41895,1585.08845,100,1240.687497292795,1240.687497292795,519.6815009188176,519.6815009188176,30453.0469,6.0,956.0,1,2,3,4,5,6 +1569.0,82.4114,1584.9438,100,1240.6462565615923,1240.6462565615923,519.633895418724,519.633895418724,30450.141,6.0,956.0,1,2,3,4,5,6 +1569.5,82.40809999999999,1584.8786,100,1240.59710748094,1240.59710748094,519.6130877166963,519.6130877166963,30448.826950000002,6.0,955.9999,1,2,3,4,5,6 +1570.0,82.4048,1584.8134,100,1240.5479544638179,1240.5479544638179,519.5922800146687,519.5922800146687,30447.5129,6.0,955.9998,1,2,3,4,5,6 +1570.5,82.4071,1584.8548500000002,100,1240.4701204629216,1240.4701204629216,519.6067823524456,519.6067823524456,30448.156300000002,6.0,955.99405,1,2,3,4,5,6 +1571.0,82.4094,1584.8963,100,1240.3922908066313,1240.3922908066313,519.6212846902225,519.6212846902225,30448.7997,6.0,955.9883,1,2,3,4,5,6 +1571.5,82.41805,1585.0663,100,1240.3163434223457,1240.3163434223457,519.6758260909918,519.6758260909918,30451.8187,6.0,955.9762499999999,1,2,3,4,5,6 +1572.0,82.4267,1585.2363,100,1240.2404119781581,1240.2404119781581,519.7303674917613,519.7303674917613,30454.8377,6.0,955.9642,1,2,3,4,5,6 +1572.5,82.43865,1585.4751,100,1240.2370813932546,1240.2370813932546,519.8057165945585,519.8057165945585,30459.4508,6.0,955.95865,1,2,3,4,5,6 +1573.0,82.4506,1585.7139,100,1240.2337517737897,1240.2337517737897,519.8810656973556,519.8810656973556,30464.0639,6.0,955.9531,1,2,3,4,5,6 +1573.5,82.45975,1585.89685,100,1240.3152593962511,1240.3152593962511,519.9387597802504,519.9387597802504,30467.960850000003,6.0,955.9598,1,2,3,4,5,6 +1574.0,82.4689,1586.0798,100,1240.3967489320216,1240.3967489320216,519.9964538631453,519.9964538631453,30471.8578,6.0,955.9665,1,2,3,4,5,6 +1574.5,82.4691,1586.0889,100,1240.5411875356954,1240.5411875356954,519.9977149359954,519.9977149359954,30472.5147,6.0,955.9809,1,2,3,4,5,6 +1575.0,82.4693,1586.098,100,1240.6856254387994,1240.6856254387994,519.9989760088457,519.9989760088457,30473.1716,6.0,955.9953,1,2,3,4,5,6 +1575.5,82.45645,1585.8532500000001,100,1240.8371677291468,1240.8371677291468,519.9179520782228,519.9179520782228,30468.3329,6.0,955.99765,1,2,3,4,5,6 +1576.0,82.4436,1585.6085,100,1240.988757259508,1240.988757259508,519.8369281476,519.8369281476,30463.4942,6.0,956.0,1,2,3,4,5,6 +1576.5,82.41515000000001,1585.0655000000002,100,1241.1574564021298,1241.1574564021298,519.6575405346646,519.6575405346646,30452.5854,6.0,956.0,1,2,3,4,5,6 +1577.0,82.3867,1584.5225,100,1241.3262720560479,1241.3262720560479,519.4781529217292,519.4781529217292,30441.6766,6.0,956.0,1,2,3,4,5,6 +1577.5,82.3399,1583.62595,100,1241.5252896469392,1241.5252896469392,519.1830618747915,519.1830618747915,30423.6646,6.0,956.0,1,2,3,4,5,6 +1578.0,82.2931,1582.7294,100,1241.7245336000224,1241.7245336000224,518.8879708278539,518.8879708278539,30405.6526,6.0,956.0,1,2,3,4,5,6 +1578.5,82.22515,1581.4238,100,1241.937548925116,1241.937548925116,518.4595213270118,518.4595213270118,30379.4228,6.0,956.0,1,2,3,4,5,6 +1579.0,82.1572,1580.1182,100,1242.1509166086475,1242.1509166086475,518.0310718261698,518.0310718261698,30353.193,6.0,956.0,1,2,3,4,5,6 +1579.5,82.06645,1578.3753499999998,100,1242.373297151272,1242.373297151272,517.4588600204091,517.4588600204091,30318.1795,6.0,956.0,1,2,3,4,5,6 +1580.0,81.9757,1576.6325,100,1242.596170060152,1242.596170060152,516.8866482146487,516.8866482146487,30283.166,6.0,956.0,1,2,3,4,5,6 +1580.5,81.86015,1574.413,100,1242.8401994743476,1242.8401994743476,516.1580633754683,516.1580633754683,30238.57605,6.0,956.0,1,2,3,4,5,6 +1581.0,81.7446,1572.1935,100,1243.0849187836257,1243.0849187836257,515.4294785362879,515.4294785362879,30193.9861,6.0,956.0,1,2,3,4,5,6 +1581.5,81.60355000000001,1569.4737,100,1243.3001393566822,1243.3001393566822,514.540106908712,514.540106908712,30139.3456,6.0,956.0,1,2,3,4,5,6 +1582.0,81.4625,1566.7539,100,1243.5161052263313,1243.5161052263313,513.650735281136,513.650735281136,30084.7051,6.0,956.0,1,2,3,4,5,6 +1582.5,81.30305000000001,1563.66555,100,1243.5847126891301,1243.5847126891301,512.6453449513454,512.6453449513454,30022.6597,6.0,956.0,1,2,3,4,5,6 +1583.0,81.1436,1560.5772,100,1243.6535897840372,1243.6535897840372,511.6399546215545,511.6399546215545,29960.6143,6.0,956.0,1,2,3,4,5,6 +1583.5,80.97980000000001,1557.4135,100,1243.5668824200602,1243.5668824200602,510.6071359572729,510.6071359572729,29897.055050000003,6.0,956.0,1,2,3,4,5,6 +1584.0,80.816,1554.2498,100,1243.4798235745398,1243.4798235745398,509.57431729299105,509.57431729299105,29833.4958,6.0,956.0,1,2,3,4,5,6 +1584.5,80.65700000000001,1551.1982,100,1243.3818187386091,1243.3818187386091,508.5717643771133,508.5717643771133,29772.189,6.0,956.0,1,2,3,4,5,6 +1585.0,80.498,1548.1466,100,1243.2834267435217,1243.2834267435217,507.56921146123534,507.56921146123534,29710.8822,6.0,956.0,1,2,3,4,5,6 +1585.5,80.3416,1545.1477,100,1243.261816879425,1243.261816879425,506.5830524924096,506.5830524924096,29650.634,6.0,956.0,1,2,3,4,5,6 +1586.0,80.1852,1542.1488,100,1243.2401227159128,1243.2401227159128,505.59689352358373,505.59689352358373,29590.3858,6.0,956.0,1,2,3,4,5,6 +1586.5,80.02525,1539.0754499999998,100,1243.263553540914,1243.263553540914,504.5883505116676,504.5883505116676,29528.6417,6.0,956.0,1,2,3,4,5,6 +1587.0,79.8653,1536.0021,100,1243.2870782179493,1243.2870782179493,503.57980749975155,503.57980749975155,29466.8976,6.0,956.0,1,2,3,4,5,6 +1587.5,79.70005,1532.8175999999999,100,1243.286435366101,1243.286435366101,502.53784605730624,502.53784605730624,29402.921000000002,6.0,956.0,1,2,3,4,5,6 +1588.0,79.5348,1529.6331,100,1243.2857898429368,1243.2857898429368,501.49588461486076,501.49588461486076,29338.9444,6.0,956.0,1,2,3,4,5,6 +1588.5,79.3688,1526.42915,100,1243.2004799241013,1243.2004799241013,500.4491941492273,500.4491941492273,29274.5769,6.0,956.0,1,2,3,4,5,6 +1589.0,79.2028,1523.2252,100,1243.114812405622,1243.114812405622,499.40250368359375,499.40250368359375,29210.2094,6.0,956.0,1,2,3,4,5,6 +1589.5,79.0437,1520.1592500000002,100,1242.9571782950443,1242.9571782950443,498.39932023129086,498.39932023129086,29148.61455,6.0,956.0,1,2,3,4,5,6 +1590.0,78.8846,1517.0933,100,1242.7989083293824,1242.7989083293824,497.39613677898797,497.39613677898797,29087.0197,6.0,956.0,1,2,3,4,5,6 +1590.5,78.73675,1514.2537499999999,100,1242.6404593026762,1242.6404593026762,496.46388867450645,496.46388867450645,29029.9729,6.0,956.0,1,2,3,4,5,6 +1591.0,78.5889,1511.4142,100,1242.48141409283,1242.48141409283,495.53164057002505,495.53164057002505,28972.9261,6.0,956.0,1,2,3,4,5,6 +1591.5,78.44975,1508.7487999999998,100,1242.3964596955377,1242.3964596955377,494.65424913452557,494.65424913452557,28919.37745,6.0,956.0,1,2,3,4,5,6 +1592.0,78.3106,1506.0834,100,1242.3112033875364,1242.3112033875364,493.77685769902627,493.77685769902627,28865.8288,6.0,956.0,1,2,3,4,5,6 +1592.5,78.17175,1503.42545,100,1242.3318466453675,1242.3318466453675,492.9013578728022,492.9013578728022,28812.430650000002,6.0,956.0,1,2,3,4,5,6 +1593.0,78.0329,1500.7675,100,1242.3525633675026,1242.3525633675026,492.025858046578,492.025858046578,28759.0325,6.0,956.0,1,2,3,4,5,6 +1593.5,77.88470000000001,1497.92735,100,1242.4626760840063,1242.4626760840063,491.0914030646088,491.0914030646088,28701.97395,6.0,956.0,1,2,3,4,5,6 +1594.0,77.7365,1495.0872,100,1242.5732086471603,1242.5732086471603,490.15694808263964,490.15694808263964,28644.9154,6.0,956.0,1,2,3,4,5,6 +1594.5,77.57095000000001,1491.90995,100,1242.7467519606244,1242.7467519606244,489.11309503091906,489.11309503091906,28581.0845,6.0,956.0,1,2,3,4,5,6 +1595.0,77.4054,1488.7327,100,1242.9210376020278,1242.9210376020278,488.06924197919835,488.06924197919835,28517.2536,6.0,956.0,1,2,3,4,5,6 +1595.5,77.21719999999999,1485.1141,100,1243.1187734338985,1243.1187734338985,486.88257242719686,486.88257242719686,28444.5556,6.0,956.0,1,2,3,4,5,6 +1596.0,77.029,1481.4955,100,1243.3174754962417,1243.3174754962417,485.69590287519566,485.69590287519566,28371.8576,6.0,956.0,1,2,3,4,5,6 +1596.5,76.81684999999999,1477.4125,100,1243.494074737509,1243.494074737509,484.3582198493874,484.3582198493874,28289.829850000002,6.0,956.0,1,2,3,4,5,6 +1597.0,76.6047,1473.3295,100,1243.671652131005,1243.671652131005,483.02053682357945,483.02053682357945,28207.8021,6.0,956.0,1,2,3,4,5,6 +1597.5,76.3698,1468.8139,100,1243.829885334255,1243.829885334255,481.53940676106555,481.53940676106555,28117.0831,6.0,956.0,1,2,3,4,5,6 +1598.0,76.1349,1464.2983,100,1243.989094935437,1243.989094935437,480.0582766985516,480.0582766985516,28026.3641,6.0,956.0,1,2,3,4,5,6 +1598.5,75.87559999999999,1459.31905,100,1244.1924175360723,1244.1924175360723,478.4232957483181,478.4232957483181,27926.33015,6.0,956.0,1,2,3,4,5,6 +1599.0,75.6163,1454.3398,100,1244.3971345860616,1244.3971345860616,476.7883147980845,476.7883147980845,27826.2962,6.0,956.0,1,2,3,4,5,6 +1599.5,75.1169,1490.5034,100,751.6940415139601,751.6940415139601,473.639415891233,473.639415891233,19301.81085,3.0,651.6342999999999,1,2,3,4,5,6 +1600.0,74.6175,1526.667,100,252.39582197205743,252.39582197205743,470.49051698438143,470.49051698438143,10777.3255,0.0,347.2686,1,2,3,4,5,6 +1600.5,73.8005,1650.7761,100,68.12528320268834,68.12528320268834,465.33903439147434,465.33903439147434,7988.0218,0.0,233.68405,1,2,3,4,5,6 +1601.0,72.9835,1774.8852,100,-120.27081902073756,-120.27081902073756,460.1875517985673,460.1875517985673,5198.7181,0.0,120.0995,1,2,3,4,5,6 +1601.5,72.3409,1845.0399499999999,100,523.8064423721573,523.8064423721573,456.13572473100055,456.13572473100055,15236.2194,2.5,378.59979999999996,1,2,3,4,5,6 +1602.0,71.6983,1915.1947,100,1179.4288602937586,1179.4288602937586,452.0838976634338,452.0838976634338,25273.7207,5.0,637.1001,1,2,3,4,5,6 +1602.5,71.40205,1894.27205,100,1399.4738945730546,1399.4738945730546,450.21593350413303,450.21593350413303,29289.880900000004,5.0,753.2907,1,2,3,4,5,6 +1603.0,71.1058,1873.3494,100,1621.3524878983153,1621.3524878983153,448.3479693448322,448.3479693448322,33306.0411,5.0,869.4813,1,2,3,4,5,6 +1603.5,70.87935,1867.4521,100,1626.1412786940057,1626.1412786940057,446.92011961023775,446.92011961023775,33273.55385,5.0,871.6224500000001,1,2,3,4,5,6 +1604.0,70.6529,1861.5548,100,1630.960766649352,1630.960766649352,445.49226987564305,445.49226987564305,33241.0666,5.0,873.7636,1,2,3,4,5,6 +1604.5,70.3878,1854.5616,100,1636.8397117114043,1636.8397117114043,443.8207178127548,443.8207178127548,33190.7437,5.0,876.17625,1,2,3,4,5,6 +1605.0,70.1227,1847.5684,100,1642.7631076669898,1642.7631076669898,442.14916574986654,442.14916574986654,33140.4208,5.0,878.5889,1,2,3,4,5,6 +1605.5,69.818,1839.46115,100,1648.7556315133631,1648.7556315133631,440.22792126264665,440.22792126264665,33079.09625,5.0,881.3859,1,2,3,4,5,6 +1606.0,69.5133,1831.3539,100,1654.8006898248252,1654.8006898248252,438.3066767754266,438.3066767754266,33017.7717,5.0,884.1829,1,2,3,4,5,6 +1606.5,69.19905,1823.06715,100,1660.3639938265046,1660.3639938265046,436.32521605961136,436.32521605961136,32948.22915,5.0,887.0418500000001,1,2,3,4,5,6 +1607.0,68.8848,1814.7804,100,1665.9780570169328,1665.9780570169328,434.34375534379615,434.34375534379615,32878.6866,5.0,889.9008,1,2,3,4,5,6 +1607.5,68.55330000000001,1806.2687,100,1672.6549164810447,1672.6549164810447,432.25352709465466,432.25352709465466,32803.43365,5.0,892.75785,1,2,3,4,5,6 +1608.0,68.2218,1797.757,100,1679.3966636764198,1679.3966636764198,430.16329884551305,430.16329884551305,32728.1807,5.0,895.6149,1,2,3,4,5,6 +1608.5,67.81705,1786.90855,100,1687.949571943929,1687.949571943929,427.611202665,427.611202665,32621.091800000002,5.0,898.9583,1,2,3,4,5,6 +1609.0,67.4123,1776.0601,100,1696.6051851961736,1696.6051851961736,425.05910648448696,425.05910648448696,32514.0029,5.0,902.3017,1,2,3,4,5,6 +1609.5,66.9499,1763.86005,100,1704.1185127236934,1704.1185127236934,422.1435060549151,422.1435060549151,32392.1114,5.0,906.0227,1,2,3,4,5,6 +1610.0,66.4875,1751.66,100,1711.736345989848,1711.736345989848,419.22790562534334,419.22790562534334,32270.2199,5.0,909.7437,1,2,3,4,5,6 +1610.5,66.01955,1739.3314500000001,100,1719.195746699273,1719.195746699273,416.27731042417946,416.27731042417946,32147.043850000002,5.0,913.5038999999999,1,2,3,4,5,6 +1611.0,65.5516,1727.0029,100,1726.7616475265288,1726.7616475265288,413.32671522301564,413.32671522301564,32023.8678,5.0,917.2641,1,2,3,4,5,6 +1611.5,65.08265,1714.6388,100,1734.181867917179,1734.181867917179,410.369814657601,410.369814657601,31900.336900000002,5.0,921.0351499999999,1,2,3,4,5,6 +1612.0,64.6137,1702.2747,100,1741.7097964982659,1741.7097964982659,407.4129140921864,407.4129140921864,31776.806,5.0,924.8062,1,2,3,4,5,6 +1612.5,64.1458,1689.9493499999999,100,1749.0681788207492,1749.0681788207492,404.4626341592351,404.4626341592351,31653.66255,5.0,928.56545,1,2,3,4,5,6 +1613.0,63.6779,1677.624,100,1756.5346987259315,1756.5346987259315,401.51235422628383,401.51235422628383,31530.5191,5.0,932.3247,1,2,3,4,5,6 +1613.5,63.2118,1665.34575,100,1763.8643631410591,1763.8643631410591,398.57342394898404,398.57342394898404,31407.668250000002,5.0,936.0695499999999,1,2,3,4,5,6 +1614.0,62.7457,1653.0675,100,1771.3029228775838,1771.3029228775838,395.63449367168414,395.63449367168414,31284.8174,5.0,939.8144,1,2,3,4,5,6 +1614.5,62.28215,1640.84665,100,1778.5403546923158,1778.5403546923158,392.7116420732239,392.7116420732239,31162.264649999997,5.0,943.54175,1,2,3,4,5,6 +1615.0,61.8186,1628.6258,100,1785.8863270277873,1785.8863270277873,389.78879047476374,389.78879047476374,31039.7119,5.0,947.2691,1,2,3,4,5,6 +1615.5,61.36085,1616.5601000000001,100,1792.433587882176,1792.433587882176,386.90250998895806,386.90250998895806,30910.52665,5.0,950.7012500000001,1,2,3,4,5,6 +1616.0,60.9031,1604.4944,100,1799.079267656326,1799.079267656326,384.01622950315243,384.01622950315243,30781.3414,5.0,954.1334,1,2,3,4,5,6 +1616.5,60.454350000000005,1592.6733,100,1800.5740010272214,1800.5740010272214,381.1866972956041,381.1866972956041,30574.64095,5.0,955.0667000000001,1,2,3,4,5,6 +1617.0,60.0056,1580.8522,100,1802.0910910315035,1802.0910910315035,378.3571650880557,378.3571650880557,30367.9405,5.0,956.0,1,2,3,4,5,6 +1617.5,59.56715,1569.29815,100,1801.6670034910187,1801.6670034910187,375.59257813229056,375.59257813229056,30135.81905,5.0,956.0,1,2,3,4,5,6 +1618.0,59.1287,1557.7441,100,1801.236626578971,1801.236626578971,372.8279911765255,372.8279911765255,29903.6976,5.0,956.0,1,2,3,4,5,6 +1618.5,58.7008,1546.4723,100,1800.821418651875,1800.821418651875,370.12992581360635,370.12992581360635,29677.24615,5.0,956.0,1,2,3,4,5,6 +1619.0,58.2729,1535.2005,100,1800.400112951303,1800.400112951303,367.4318604506872,367.4318604506872,29450.7947,5.0,956.0,1,2,3,4,5,6 +1619.5,57.8557,1524.20595,100,1799.9598546210661,1799.9598546210661,364.80126248525164,364.80126248525164,29229.913249999998,5.0,956.0,1,2,3,4,5,6 +1620.0,57.4385,1513.2114,100,1799.5132007277352,1799.5132007277352,362.17066451981617,362.17066451981617,29009.0318,5.0,956.0,1,2,3,4,5,6 +1620.5,57.03425,1502.5511999999999,100,1798.9875975400746,1798.9875975400746,359.62172102142864,359.62172102142864,28794.8671,5.0,956.0,1,2,3,4,5,6 +1621.0,56.63,1491.891,100,1798.4544903761255,1798.4544903761255,357.0727775230411,357.0727775230411,28580.7024,5.0,956.0,1,2,3,4,5,6 +1621.5,56.2432,1481.69695,100,1797.8327503235944,1797.8327503235944,354.63386263083004,354.63386263083004,28375.903749999998,5.0,956.0,1,2,3,4,5,6 +1622.0,55.8564,1471.5029,100,1797.2023992953357,1797.2023992953357,352.19494773861896,352.19494773861896,28171.1051,5.0,956.0,1,2,3,4,5,6 +1622.5,55.2201,1506.0704,100,1171.745290627869,1171.745290627869,348.1828444658322,348.1828444658322,20720.56805,2.5,693.5907,1,2,3,4,5,6 +1623.0,54.5838,1540.6379,100,531.7058935068648,531.7058935068648,344.1707411930455,344.1707411930455,13270.031,0.0,431.1814,1,2,3,4,5,6 +1623.5,53.5532,1698.85005,100,191.77746091736813,191.77746091736813,337.6724327961667,337.6724327961667,9889.51345,0.0,290.33455,1,2,3,4,5,6 +1624.0,52.5226,1857.0622,100,-161.491143050801,-161.491143050801,331.1741243992879,331.1741243992879,6508.9959,0.0,149.4877,1,2,3,4,5,6 +1624.5,51.731700000000004,1954.7564000000002,100,684.830531956228,684.830531956228,326.18721181332694,326.18721181332694,15321.28,2.0,355.79134999999997,1,2,3,4,5,6 +1625.0,50.9408,2052.4506,100,1557.4319596472767,1557.4319596472767,321.2002992273659,321.2002992273659,24133.5641,4.0,562.095,1,2,3,4,5,6 +1625.5,50.67285,2008.8912500000001,100,1909.360404299344,1909.360404299344,319.51077687636285,319.51077687636285,28964.290800000002,4.0,700.0275,1,2,3,4,5,6 +1626.0,50.4049,1965.3319,100,2265.030517985355,2265.030517985355,317.8212545253599,317.8212545253599,33795.0175,4.0,837.96,1,2,3,4,5,6 +1626.5,50.287099999999995,1960.7431499999998,100,2269.4551084870673,2269.4551084870673,317.07848261661513,317.07848261661513,33771.0768,4.0,839.54335,1,2,3,4,5,6 +1627.0,50.1693,1956.1544,100,2273.900477303849,2273.900477303849,316.3357107078704,316.3357107078704,33747.1361,4.0,841.1267,1,2,3,4,5,6 +1627.5,50.055499999999995,1951.70455,100,2278.09464708174,2278.09464708174,315.6181602561289,315.6181602561289,33723.911,4.0,842.6619000000001,1,2,3,4,5,6 +1628.0,49.9417,1947.2547,100,2282.3079310075545,2282.3079310075545,314.9006098043874,314.9006098043874,33700.6859,4.0,844.1971,1,2,3,4,5,6 +1628.5,49.83495,1943.0812,100,2286.038359705388,2286.038359705388,314.22751217061403,314.22751217061403,33678.903,4.0,845.6369500000001,1,2,3,4,5,6 +1629.0,49.7282,1938.9077,100,2289.7848043967,2289.7848043967,313.55441453684074,313.55441453684074,33657.1201,4.0,847.0768,1,2,3,4,5,6 +1629.5,49.63465,1935.24495,100,2292.6832705176726,2292.6832705176726,312.964547711178,312.964547711178,33638.0031,4.0,848.34045,1,2,3,4,5,6 +1630.0,49.5411,1931.5822,100,2295.592683166099,2295.592683166099,312.3746808855152,312.3746808855152,33618.8861,4.0,849.6041,1,2,3,4,5,6 +1630.5,49.46665,1928.6662000000001,100,2297.568937152607,2297.568937152607,311.9052465170429,311.9052465170429,33603.66625,4.0,850.61015,1,2,3,4,5,6 +1631.0,49.3922,1925.7502,100,2299.551148845364,2299.551148845364,311.4358121485705,311.4358121485705,33588.4464,4.0,851.6162,1,2,3,4,5,6 +1631.5,49.34035,1923.7282500000001,100,2300.5442579957376,2300.5442579957376,311.1088790121663,311.1088790121663,33577.8932,4.0,852.31375,1,2,3,4,5,6 +1632.0,49.2885,1921.7063,100,2301.5394565872357,2301.5394565872357,310.7819458757622,310.7819458757622,33567.34,4.0,853.0113,1,2,3,4,5,6 +1632.5,49.198049999999995,1918.4223000000002,100,2153.789600197569,2153.789600197569,310.21162567927684,310.21162567927684,31487.517699999997,4.0,800.5756,1,2,3,4,5,6 +1633.0,49.1076,1915.1383,100,2005.4954706399824,2005.4954706399824,309.6413054827916,309.6413054827916,29407.6954,4.0,748.1399,1,2,3,4,5,6 +1633.5,49.037800000000004,1912.09255,100,2145.7830099229577,2145.7830099229577,309.2011910580855,309.2011910580855,31295.1746,4.0,798.6465000000001,1,2,3,4,5,6 +1634.0,48.968,1909.0468,100,2286.4704867260252,2286.4704867260252,308.7610766333794,308.7610766333794,33182.6538,4.0,849.1531,1,2,3,4,5,6 +1634.5,48.98350000000001,1909.7196,100,2296.640267845294,2296.640267845294,308.8588097792669,308.8588097792669,33345.1128,4.0,853.02505,1,2,3,4,5,6 +1635.0,48.999,1910.3924,100,2306.8036148900997,2306.8036148900997,308.95654292515434,308.95654292515434,33507.5718,4.0,856.897,1,2,3,4,5,6 +1635.5,49.0364,1911.8870499999998,100,2304.7205379473203,2304.7205379473203,309.1923635481344,309.1923635481344,33515.605599999995,4.0,856.38705,1,2,3,4,5,6 +1636.0,49.0738,1913.3817,100,2302.6406361031754,2302.6406361031754,309.4281841711144,309.4281841711144,33523.6394,4.0,855.8771,1,2,3,4,5,6 +1636.5,49.125299999999996,1915.39535,100,2300.106393487674,2300.106393487674,309.7529104300308,309.7529104300308,33534.1233,4.0,855.1818000000001,1,2,3,4,5,6 +1637.0,49.1768,1917.409,100,2297.5774588017116,2297.5774588017116,310.0776366889473,310.0776366889473,33544.6072,4.0,854.4865,1,2,3,4,5,6 +1637.5,49.239149999999995,1919.86035,100,2294.7750445529628,2294.7750445529628,310.4707761499849,310.4707761499849,33557.38525,4.0,853.64035,1,2,3,4,5,6 +1638.0,49.3015,1922.3117,100,2291.979718548117,2291.979718548117,310.86391561102255,310.86391561102255,33570.1633,4.0,852.7942,1,2,3,4,5,6 +1638.5,49.3698,1924.9809,100,2289.219410023942,2289.219410023942,311.2945719893525,311.2945719893525,33584.0982,4.0,851.8734,1,2,3,4,5,6 +1639.0,49.4381,1927.6501,100,2286.4667283734616,2286.4667283734616,311.72522836768235,311.72522836768235,33598.0331,4.0,850.9526,1,2,3,4,5,6 +1639.5,49.5061,1930.3176,100,2283.971156019157,2283.971156019157,312.15399313673714,312.15399313673714,33611.97225,4.0,850.0327,1,2,3,4,5,6 +1640.0,49.5741,1932.9851,100,2281.482429938214,2281.482429938214,312.58275790579177,312.58275790579177,33625.9114,4.0,849.1128,1,2,3,4,5,6 +1640.5,49.6387,1935.4920000000002,100,2279.130675440735,2279.130675440735,312.9900844363937,312.9900844363937,33639.015849999996,4.0,848.24845,1,2,3,4,5,6 +1641.0,49.7033,1937.9989,100,2276.7850341526614,2276.7850341526614,313.3974109669957,313.3974109669957,33652.1203,4.0,847.3841,1,2,3,4,5,6 +1641.5,49.76605,1940.4384,100,2274.3458264218284,2274.3458264218284,313.79307257373364,313.79307257373364,33664.864499999996,4.0,846.5427500000001,1,2,3,4,5,6 +1642.0,49.8288,1942.8779,100,2271.912762137559,2271.912762137559,314.1887341804716,314.1887341804716,33677.6087,4.0,845.7014,1,2,3,4,5,6 +1642.5,49.895700000000005,1945.46825,100,2268.968321839357,2268.968321839357,314.6105630488504,314.6105630488504,33691.1287,4.0,844.8077499999999,1,2,3,4,5,6 +1643.0,49.9626,1948.0586,100,2266.0317667615377,2266.0317667615377,315.03239191722923,315.03239191722923,33704.6487,4.0,843.9141,1,2,3,4,5,6 +1643.5,50.04075,1951.0819000000001,100,2262.3861059036885,2262.3861059036885,315.52515613342956,315.52515613342956,33720.4208,4.0,842.87085,1,2,3,4,5,6 +1644.0,50.1189,1954.1052,100,2258.7518143454868,2258.7518143454868,316.01792034962983,316.01792034962983,33736.1929,4.0,841.8276,1,2,3,4,5,6 +1644.5,50.21405,1957.8108499999998,100,2254.2197662606386,2254.2197662606386,316.61787575809393,316.61787575809393,33755.524600000004,4.0,840.5489,1,2,3,4,5,6 +1645.0,50.3092,1961.5165,100,2249.704861138719,2249.704861138719,317.21783116655786,317.21783116655786,33774.8563,4.0,839.2702,1,2,3,4,5,6 +1645.5,50.424949999999995,1966.02845,100,2244.2875184407726,2244.2875184407726,317.9476770785885,317.9476770785885,33798.40285,4.0,837.7135499999999,1,2,3,4,5,6 +1646.0,50.5407,1970.5404,100,2238.8949897013695,2238.8949897013695,318.67752299061914,318.67752299061914,33821.9494,4.0,836.1569,1,2,3,4,5,6 +1646.5,50.67715,1975.8684,100,2232.754562085674,2232.754562085674,319.5378899426413,319.5378899426413,33849.7659,4.0,834.31895,1,2,3,4,5,6 +1647.0,50.8136,1981.1964,100,2226.6471123085153,2226.6471123085153,320.3982568946636,320.3982568946636,33877.5824,4.0,832.481,1,2,3,4,5,6 +1647.5,50.96835,1987.238,100,2219.906638001819,2219.906638001819,321.37401201247553,321.37401201247553,33909.1333,4.0,830.39705,1,2,3,4,5,6 +1648.0,51.1231,1993.2796,100,2213.206970625803,2213.206970625803,322.3497671302875,322.3497671302875,33940.6842,4.0,828.3131,1,2,3,4,5,6 +1648.5,51.293099999999995,1999.91415,100,2206.154623194933,2206.154623194933,323.42167905292416,323.42167905292416,33977.2138,4.0,826.0732,1,2,3,4,5,6 +1649.0,51.4631,2006.5487,100,2199.1488683347875,2199.1488683347875,324.49359097556083,324.49359097556083,34013.7434,4.0,823.8333,1,2,3,4,5,6 +1649.5,51.644099999999995,2013.6261,100,2192.05019268416,2192.05019268416,325.63486190495644,325.63486190495644,34054.07245,4.0,821.4975999999999,1,2,3,4,5,6 +1650.0,51.8251,2020.7035,100,2185.0011015125883,2185.0011015125883,326.776132834352,326.776132834352,34094.4015,4.0,819.1619,1,2,3,4,5,6 +1650.5,52.01085,2027.97905,100,2178.0388734465987,2178.0388734465987,327.9473542439389,327.9473542439389,34135.6942,4.0,816.76115,1,2,3,4,5,6 +1651.0,52.1966,2035.2546,100,2171.1261977983245,2171.1261977983245,329.11857565352574,329.11857565352574,34176.9869,4.0,814.3604,1,2,3,4,5,6 +1651.5,52.3781,2042.3499499999998,100,2164.7665002166937,2164.7665002166937,330.26299926504674,330.26299926504674,34217.2629,4.0,812.0192,1,2,3,4,5,6 +1652.0,52.5596,2049.4453,100,2158.4507255382464,2158.4507255382464,331.40742287656775,331.40742287656775,34257.5389,4.0,809.678,1,2,3,4,5,6 +1652.5,52.725750000000005,2055.94355,100,2153.156305827798,2153.156305827798,332.4550591468388,332.4550591468388,34294.430949999994,4.0,807.534,1,2,3,4,5,6 +1653.0,52.8919,2062.4418,100,2147.8951489736614,2147.8951489736614,333.5026954171099,333.5026954171099,34331.323,4.0,805.39,1,2,3,4,5,6 +1653.5,53.035399999999996,2068.04065,100,2143.581303940387,2143.581303940387,334.4075151871003,334.4075151871003,34363.111699999994,4.0,803.5427999999999,1,2,3,4,5,6 +1654.0,53.1789,2073.6395,100,2139.290740199591,2139.290740199591,335.3123349570907,335.3123349570907,34394.9004,4.0,801.6956,1,2,3,4,5,6 +1654.5,53.2994,2078.31255,100,2135.7157326161273,2135.7157326161273,336.0721313493126,336.0721313493126,34421.43295,4.0,800.1539,1,2,3,4,5,6 +1655.0,53.4199,2082.9856,100,2132.1568534197927,2132.1568534197927,336.8319277415345,336.8319277415345,34447.9655,4.0,798.6122,1,2,3,4,5,6 +1655.5,53.52315,2086.9985500000003,100,2128.854143281926,2128.854143281926,337.48295660043004,337.48295660043004,34470.74705,4.0,797.2881,1,2,3,4,5,6 +1656.0,53.6264,2091.0115,100,2125.564150940582,2125.564150940582,338.1339854593255,338.1339854593255,34493.5286,4.0,795.964,1,2,3,4,5,6 +1656.5,53.72125,2094.6910500000004,100,2122.199796449264,2122.199796449264,338.73204925851434,338.73204925851434,34514.4137,4.0,794.7499,1,2,3,4,5,6 +1657.0,53.8161,2098.3706,100,2118.8473011979686,2118.8473011979686,339.33011305770316,339.33011305770316,34535.2988,4.0,793.5358,1,2,3,4,5,6 +1657.5,53.90975,2102.00605,100,2115.2852709389304,2115.2852709389304,339.92061041979093,339.92061041979093,34555.93075,4.0,792.33615,1,2,3,4,5,6 +1658.0,54.0034,2105.6415,100,2111.735594869953,2111.735594869953,340.51110778187876,340.51110778187876,34576.5627,4.0,791.1365,1,2,3,4,5,6 +1658.5,54.1002,2109.41475,100,2107.927015815099,2107.927015815099,341.1214670413566,341.1214670413566,34597.9752,4.0,789.8913,1,2,3,4,5,6 +1659.0,54.197,2113.188,100,2104.1320415890177,2104.1320415890177,341.73182630083454,341.73182630083454,34619.3877,4.0,788.6461,1,2,3,4,5,6 +1659.5,54.29865,2117.15575,100,2100.1302052260967,2100.1302052260967,342.3727665769287,342.3727665769287,34641.90385,4.0,787.3368,1,2,3,4,5,6 +1660.0,54.4003,2121.1235,100,2096.1433241728446,2096.1433241728446,343.01370685302294,343.01370685302294,34664.42,4.0,786.0275,1,2,3,4,5,6 +1660.5,54.505449999999996,2125.2288,100,2092.13982777869,2092.13982777869,343.676715903995,343.676715903995,34687.7176,4.0,784.6728,1,2,3,4,5,6 +1661.0,54.6106,2129.3341,100,2088.151748451766,2088.151748451766,344.33972495496704,344.33972495496704,34711.0152,4.0,783.3181,1,2,3,4,5,6 +1661.5,54.7167,2133.4762499999997,100,2084.190580956088,2084.190580956088,345.0087241019774,345.0087241019774,34734.523199999996,4.0,781.9512,1,2,3,4,5,6 +1662.0,54.8228,2137.6184,100,2080.244745762712,2080.244745762712,345.6777232489878,345.6777232489878,34758.0312,4.0,780.5843,1,2,3,4,5,6 +1662.5,54.9292,2141.7583,100,2076.2552293861913,2076.2552293861913,346.3486140052733,346.3486140052733,34781.5262,4.0,779.2182,1,2,3,4,5,6 +1663.0,55.0356,2145.8982,100,2072.2811388265054,2072.2811388265054,347.01950476155884,347.01950476155884,34805.0212,4.0,777.8521,1,2,3,4,5,6 +1663.5,55.144000000000005,2150.11695,100,2068.083876106194,2068.083876106194,347.70300624634604,347.70300624634604,34828.9629,4.0,776.4599499999999,1,2,3,4,5,6 +1664.0,55.2524,2154.3357,100,2063.9030826534236,2063.9030826534236,348.38650773113324,348.38650773113324,34852.9046,4.0,775.0678,1,2,3,4,5,6 +1664.5,55.366600000000005,2158.78195,100,2059.2950575075947,2059.2950575075947,349.10658032857503,349.10658032857503,34878.137,4.0,773.60055,1,2,3,4,5,6 +1665.0,55.4808,2163.2282,100,2054.706002400831,2054.706002400831,349.8266529260169,349.8266529260169,34903.3694,4.0,772.1333,1,2,3,4,5,6 +1665.5,55.60395,2168.0266,100,2049.6947648863083,2049.6947648863083,350.6031585335034,350.6031585335034,34930.59985,4.0,770.54985,1,2,3,4,5,6 +1666.0,55.7271,2172.825,100,2044.7056758022582,2044.7056758022582,351.3796641409899,351.3796641409899,34957.8303,4.0,768.9664,1,2,3,4,5,6 +1666.5,55.859300000000005,2177.9893,100,2039.4094783142646,2039.4094783142646,352.2132332949463,352.2132332949463,34992.506,4.0,767.26225,1,2,3,4,5,6 +1667.0,55.9915,2183.1536,100,2034.138290240483,2034.138290240483,353.04680244890255,353.04680244890255,35027.1817,4.0,765.5581,1,2,3,4,5,6 +1667.5,56.1306,2188.5834,100,2028.6917937274854,2028.6917937274854,353.9238786161895,353.9238786161895,35078.301999999996,4.0,763.761,1,2,3,4,5,6 +1668.0,56.2697,2194.0132,100,2023.2722249452193,2023.2722249452193,354.80095478347636,354.80095478347636,35129.4223,4.0,761.9639,1,2,3,4,5,6 +1668.5,56.4126,2199.5949,100,2016.156706693186,2016.156706693186,355.70199133491616,355.70199133491616,35156.64415,4.0,759.54545,1,2,3,4,5,6 +1669.0,56.5555,2205.1766,100,2009.0771463076092,2009.0771463076092,356.60302788635613,356.60302788635613,35183.866,4.0,757.127,1,2,3,4,5,6 +1669.5,56.699650000000005,2210.7963499999996,100,1999.9835008152606,1999.9835008152606,357.51194614310964,357.51194614310964,35180.82005,4.0,754.008,1,2,3,4,5,6 +1670.0,56.8438,2216.4161,100,1990.9359764125552,1990.9359764125552,358.42086439986304,358.42086439986304,35177.7741,4.0,750.889,1,2,3,4,5,6 +1670.5,56.98885,2222.0667,100,1981.7387401746132,1981.7387401746132,359.3354574844421,359.3354574844421,35174.711500000005,4.0,747.75295,1,2,3,4,5,6 +1671.0,57.1339,2227.7173,100,1972.5882033258715,1972.5882033258715,360.25005056902125,360.25005056902125,35171.6489,4.0,744.6169,1,2,3,4,5,6 +1671.5,57.28135,2233.4604499999996,100,1963.1590416426986,1963.1590416426986,361.17977652780235,361.17977652780235,35168.5361,4.0,741.42945,1,2,3,4,5,6 +1672.0,57.4288,2239.2036,100,1953.7782992157245,1953.7782992157245,362.10950248658344,362.10950248658344,35165.4233,4.0,738.242,1,2,3,4,5,6 +1672.5,57.580650000000006,2245.1228,100,1943.9805811327244,1943.9805811327244,363.06697204806807,363.06697204806807,35162.2151,4.0,734.95685,1,2,3,4,5,6 +1673.0,57.7325,2251.042,100,1934.234403637466,1934.234403637466,364.0244416095527,364.0244416095527,35159.0069,4.0,731.6717,1,2,3,4,5,6 +1673.5,57.887550000000005,2257.12075,100,1924.39174682639,1924.39174682639,365.0020883366399,365.0020883366399,35155.7122,4.0,728.298,1,2,3,4,5,6 +1674.0,58.0426,2263.1995,100,1914.6016756658046,1914.6016756658046,365.979735063727,365.979735063727,35152.4175,4.0,724.9243,1,2,3,4,5,6 +1674.5,58.20025,2269.2422500000002,100,1904.569091954072,1904.569091954072,366.97377573786633,366.97377573786633,35135.54335,4.0,721.57055,1,2,3,4,5,6 +1675.0,58.3579,2275.285,100,1894.5907129625978,1894.5907129625978,367.9678164120056,367.9678164120056,35118.6692,4.0,718.2168,1,2,3,4,5,6 +1675.5,58.5236,2281.8209500000003,100,1883.5686380707955,1883.5686380707955,369.0126152683639,369.0126152683639,35062.54915,4.0,714.58935,1,2,3,4,5,6 +1676.0,58.6893,2288.3569,100,1872.6088013658364,1872.6088013658364,370.05741412472213,370.05741412472213,35006.4291,4.0,710.9619,1,2,3,4,5,6 +1676.5,58.862700000000004,2295.12455,100,1861.527634970873,1861.527634970873,371.1507642858116,371.1507642858116,34947.76245,4.0,707.20585,1,2,3,4,5,6 +1677.0,59.0361,2301.8922,100,1850.5115634670992,1850.5115634670992,372.24411444690094,372.24411444690094,34889.0958,4.0,703.4498,1,2,3,4,5,6 +1677.5,59.2117,2308.74225,100,1839.3829080232451,1839.3829080232451,373.35133640934225,373.35133640934225,34829.714250000005,4.0,699.6479999999999,1,2,3,4,5,6 +1678.0,59.3873,2315.5923,100,1828.3200643571938,1828.3200643571938,374.4585583717835,374.4585583717835,34770.3327,4.0,695.8462,1,2,3,4,5,6 +1678.5,59.56345,2322.45985,100,1817.2096369501764,1817.2096369501764,375.5692482845626,375.5692482845626,34710.8,4.0,692.03475,1,2,3,4,5,6 +1679.0,59.7396,2329.3274,100,1806.1647306309376,1806.1647306309376,376.6799381973418,376.6799381973418,34651.2673,4.0,688.2233,1,2,3,4,5,6 +1679.5,59.90025,2334.58565,100,1758.2863906744965,1758.2863906744965,377.6928949642334,377.6928949642334,33919.37465,4.0,669.24705,1,2,3,4,5,6 +1680.0,60.0609,2339.8439,100,1710.6641792580535,1710.6641792580535,378.70585173112505,378.70585173112505,33187.482,4.0,650.2708,1,2,3,4,5,6 +1680.5,59.823449999999994,2261.0247499999996,100,798.9935192303353,798.9935192303353,377.20864298977165,377.20864298977165,16593.8243,2.0,276.38865,1,2,3,4,5,6 +1681.0,59.586,2182.2056,100,-119.94314953176924,-119.94314953176924,375.7114342484182,375.7114342484182,0.1666,0.0,-97.4935,1,2,3,4,5,6 +1681.5,58.98435,2035.6742,100,-90.3194205920723,-90.3194205920723,371.9178118469219,371.9178118469219,352.24795,0.0,-79.4205,1,2,3,4,5,6 +1682.0,58.3827,1889.1428,100,-60.0851300813426,-60.0851300813426,368.12418944542554,368.12418944542554,704.3293,0.0,-61.3475,1,2,3,4,5,6 +1682.5,58.18745,1736.54035,100,845.3282210167313,845.3282210167313,366.89306707545603,366.89306707545603,13551.645449999998,2.5,384.26294999999993,1,2,3,4,5,6 +1683.0,57.9922,1583.9379,100,1756.8383215673834,1756.8383215673834,365.66194470548646,365.66194470548646,26398.9616,5.0,829.8734,1,2,3,4,5,6 +1683.5,58.1845,1560.9293499999999,100,1756.9773497065373,1756.9773497065373,366.8744662509161,366.8744662509161,27805.69055,5.0,888.29685,1,2,3,4,5,6 +1684.0,58.3768,1537.9208,100,1757.1154618958217,1757.1154618958217,368.0869877963458,368.0869877963458,29212.4195,5.0,946.7203,1,2,3,4,5,6 +1684.5,58.57145,1543.0711000000001,100,1764.6715109153008,1764.6715109153008,369.3143269477648,369.3143269477648,29431.749,5.0,950.4309,1,2,3,4,5,6 +1685.0,58.7661,1548.2214,100,1772.1775043775237,1772.1775043775237,370.5416660991839,370.5416660991839,29651.0785,5.0,954.1415,1,2,3,4,5,6 +1685.5,58.9644,1553.44315,100,1772.8687552658894,1772.8687552658894,371.7920198301183,371.7920198301183,29766.26075,5.0,954.45305,1,2,3,4,5,6 +1686.0,59.1627,1558.6649,100,1773.5553723207356,1773.5553723207356,373.04237356105284,373.04237356105284,29881.443,5.0,954.7646,1,2,3,4,5,6 +1686.5,59.3642,1563.9673,100,1773.6357398229914,1773.6357398229914,374.31290445758987,374.31290445758987,29989.30485,5.0,954.8051,1,2,3,4,5,6 +1687.0,59.5657,1569.2697,100,1773.7155635877698,1773.7155635877698,375.5834353541269,375.5834353541269,30097.1667,5.0,954.8456,1,2,3,4,5,6 +1687.5,59.773399999999995,1574.73595,100,1773.679940157328,1773.679940157328,376.8930595090189,376.8930595090189,30207.42635,5.0,954.8589999999999,1,2,3,4,5,6 +1688.0,59.9811,1580.2022,100,1773.6445634374832,1773.6445634374832,378.2026836639109,378.2026836639109,30317.686,5.0,954.8724,1,2,3,4,5,6 +1688.5,60.19755,1585.90485,100,1773.5618071997944,1773.5618071997944,379.5674797559975,379.5674797559975,30432.5034,5.0,954.88,1,2,3,4,5,6 +1689.0,60.414,1591.6075,100,1773.4796439566987,1773.4796439566987,380.9322758480841,380.9322758480841,30547.3208,5.0,954.8876,1,2,3,4,5,6 +1689.5,60.64005,1597.5678,100,1772.5619725577403,1772.5619725577403,382.35760343697837,382.35760343697837,30653.4805,5.0,954.47585,1,2,3,4,5,6 +1690.0,60.8661,1603.5281,100,1771.6511174200416,1771.6511174200416,383.78293102587264,383.78293102587264,30759.6402,5.0,954.0641,1,2,3,4,5,6 +1690.5,61.0998,1609.6874,100,1768.1495114550294,1768.1495114550294,385.2564946512856,385.2564946512856,30826.915,5.0,952.3523,1,2,3,4,5,6 +1691.0,61.3335,1615.8467,100,1764.6745899386142,1764.6745899386142,386.7300582766985,386.7300582766985,30894.1898,5.0,950.6405,1,2,3,4,5,6 +1691.5,61.572649999999996,1622.14865,100,1760.8166845506896,1760.8166845506896,388.2379861372783,388.2379861372783,30958.1809,5.0,948.7423,1,2,3,4,5,6 +1692.0,61.8118,1628.4506,100,1756.9886316528562,1756.9886316528562,389.74591399785817,389.74591399785817,31022.172,5.0,946.8441,1,2,3,4,5,6 +1692.5,62.055049999999994,1634.8625,100,1753.080967028469,1753.080967028469,391.2796938518663,391.2796938518663,31087.0667,5.0,944.9063,1,2,3,4,5,6 +1693.0,62.2983,1641.2744,100,1749.2038181459202,1749.2038181459202,392.81347370587446,392.81347370587446,31151.9614,5.0,942.9685,1,2,3,4,5,6 +1693.5,62.54405,1647.75275,100,1745.289486513905,1745.289486513905,394.36301697050953,394.36301697050953,31217.542950000003,5.0,941.01135,1,2,3,4,5,6 +1694.0,62.7898,1654.2311,100,1741.4057951132193,1741.4057951132193,395.91256023514467,395.91256023514467,31283.1245,5.0,939.0542,1,2,3,4,5,6 +1694.5,63.036649999999995,1660.73445,100,1737.495022879547,1737.495022879547,397.4690394004557,397.4690394004557,31348.6789,5.0,937.08995,1,2,3,4,5,6 +1695.0,63.2835,1667.2378,100,1733.6147601507507,1733.6147601507507,399.0255185657666,399.0255185657666,31414.2333,5.0,935.1257,1,2,3,4,5,6 +1695.5,63.5305,1673.7461,100,1729.7074996261636,1729.7074996261636,400.58294353571534,400.58294353571534,31479.6892,5.0,933.1594500000001,1,2,3,4,5,6 +1696.0,63.7775,1680.2544,100,1725.8305034847713,1725.8305034847713,402.14036850566396,402.14036850566396,31545.1451,5.0,931.1932,1,2,3,4,5,6 +1696.5,64.02425,1686.75655,100,1721.9315704283924,1721.9315704283924,403.6962171345499,403.6962171345499,31610.5181,5.0,929.22795,1,2,3,4,5,6 +1697.0,64.271,1693.2587,100,1718.062575033841,1718.062575033841,405.25206576343584,405.25206576343584,31675.8911,5.0,927.2627,1,2,3,4,5,6 +1697.5,64.51715,1699.74285,100,1714.1768783339005,1714.1768783339005,406.8041311737713,406.8041311737713,31741.2293,5.0,925.30205,1,2,3,4,5,6 +1698.0,64.7633,1706.227,100,1710.320718863924,1710.320718863924,408.3561965841067,408.3561965841067,31806.5675,5.0,923.3414,1,2,3,4,5,6 +1698.5,65.0084,1712.68525,100,1706.4513988653775,1706.4513988653775,409.90164136197876,409.90164136197876,31871.6898,5.0,921.3876,1,2,3,4,5,6 +1699.0,65.2535,1719.1435,100,1702.6111461300923,1702.6111461300923,411.44708613985097,411.44708613985097,31936.8121,5.0,919.4338,1,2,3,4,5,6 +1699.5,65.49755,1725.5729999999999,100,1698.7551516965136,1698.7551516965136,412.9859102852597,412.9859102852597,32001.603199999998,5.0,917.48755,1,2,3,4,5,6 +1700.0,65.7416,1732.0025,100,1694.927786181048,1694.927786181048,414.52473443066845,414.52473443066845,32066.3943,5.0,915.5413,1,2,3,4,5,6 +1700.5,65.98445000000001,1738.4001,100,1691.0894480138877,1691.0894480138877,416.05599213897636,416.05599213897636,32130.8208,5.0,913.60355,1,2,3,4,5,6 +1701.0,66.2273,1744.7977,100,1687.2792595802637,1687.2792595802637,417.58724984728406,417.58724984728406,32195.2473,5.0,911.6658,1,2,3,4,5,6 +1701.5,66.46865,1751.1569,100,1683.462525581609,1683.462525581609,419.1090495092156,419.1090495092156,32259.1534,5.0,909.73615,1,2,3,4,5,6 +1702.0,66.71,1757.5161,100,1679.6734086943486,1679.6734086943486,420.63084917114725,420.63084917114725,32323.0595,5.0,907.8065,1,2,3,4,5,6 +1702.5,66.9495,1763.82725,100,1675.8866276969952,1675.8866276969952,422.1409839092149,422.1409839092149,32386.3791,5.0,905.8886,1,2,3,4,5,6 +1703.0,67.189,1770.1384,100,1672.1268432035008,1672.1268432035008,423.65111864728243,423.65111864728243,32449.6987,5.0,903.9707,1,2,3,4,5,6 +1703.5,67.42625,1776.3894500000001,100,1668.3831474685305,1668.3831474685305,425.1470663157857,425.1470663157857,32512.40015,5.0,902.07075,1,2,3,4,5,6 +1704.0,67.6635,1782.6405,100,1664.665704936931,1664.665704936931,426.6430139842889,426.6430139842889,32575.1016,5.0,900.1708,1,2,3,4,5,6 +1704.5,67.89805,1788.8198,100,1660.9610666727542,1660.9610666727542,428.1219371693151,428.1219371693151,32636.910750000003,5.0,898.288,1,2,3,4,5,6 +1705.0,68.1326,1794.9991,100,1657.2819352263086,1657.2819352263086,429.60086035434125,429.60086035434125,32698.7199,5.0,896.4052,1,2,3,4,5,6 +1705.5,68.36415,1801.0999000000002,100,1653.3664876108312,1653.3664876108312,431.060867446615,431.060867446615,32754.9539,5.0,894.4186,1,2,3,4,5,6 +1706.0,68.5957,1807.2007,100,1649.477473777511,1649.477473777511,432.52087453888873,432.52087453888873,32811.1879,5.0,892.432,1,2,3,4,5,6 +1706.5,68.82445,1813.225,100,1645.3783052534384,1645.3783052534384,433.96322661126004,433.96322661126004,32862.610799999995,5.0,890.36085,1,2,3,4,5,6 +1707.0,69.0532,1819.2493,100,1641.3062950594615,1641.3062950594615,435.40557868363163,435.40557868363163,32914.0337,5.0,888.2897,1,2,3,4,5,6 +1707.5,69.2797,1825.21525,100,1637.2213943911418,1637.2213943911418,436.83374368643877,436.83374368643877,32964.64,5.0,886.2356500000001,1,2,3,4,5,6 +1708.0,69.5062,1831.1812,100,1633.1631166716056,1633.1631166716056,438.26190868924607,438.26190868924607,33015.2463,5.0,884.1816,1,2,3,4,5,6 +1708.5,69.73150000000001,1837.1147999999998,100,1629.0772086073005,1629.0772086073005,439.68250725495216,439.68250725495216,33060.558000000005,5.0,882.1382,1,2,3,4,5,6 +1709.0,69.9568,1843.0484,100,1625.017618358758,1625.017618358758,441.10310582065836,441.10310582065836,33105.8697,5.0,880.0948,1,2,3,4,5,6 +1709.5,70.18185,1848.97665,100,1620.913761250238,1620.913761250238,442.52212804530177,442.52212804530177,33148.65225,5.0,878.0527999999999,1,2,3,4,5,6 +1710.0,70.4069,1854.9049,100,1616.836139440879,1616.836139440879,443.9411502699452,443.9411502699452,33191.4348,5.0,876.0108,1,2,3,4,5,6 +1710.5,70.6328,1860.8545,100,1612.6943010187904,1612.6943010187904,445.3655320542019,445.3655320542019,33233.25505,5.0,873.9611,1,2,3,4,5,6 +1711.0,70.8587,1866.8041,100,1608.5788712465796,1608.5788712465796,446.7899138384586,446.7899138384586,33275.0753,5.0,871.9114,1,2,3,4,5,6 +1711.5,71.08645,1872.8015,100,1604.3801655027082,1604.3801655027082,448.22596054657924,448.22596054657924,33308.50125,5.0,869.8449,1,2,3,4,5,6 +1712.0,71.3142,1878.7989,100,1600.2082778464876,1600.2082778464876,449.6620072546999,449.6620072546999,33341.9272,5.0,867.7784,1,2,3,4,5,6 +1712.5,71.54480000000001,1884.8731,100,1595.9316002281087,1595.9316002281087,451.1160242509354,451.1160242509354,33373.7264,5.0,865.68515,1,2,3,4,5,6 +1713.0,71.7754,1890.9473,100,1591.682402828824,1591.682402828824,452.5700412471708,452.5700412471708,33405.5256,5.0,863.5919,1,2,3,4,5,6 +1713.5,72.0103,1897.13355,100,1587.2956639119682,1587.2956639119682,454.05117130968466,454.05117130968466,33437.900349999996,5.0,861.4598000000001,1,2,3,4,5,6 +1714.0,72.2452,1903.3198,100,1582.937451318565,1582.937451318565,455.53230137219856,455.53230137219856,33470.2751,5.0,859.3277,1,2,3,4,5,6 +1714.5,72.48564999999999,1909.65335,100,1578.423906649109,1578.423906649109,457.0484262063044,457.0484262063044,33503.41115,5.0,857.14455,1,2,3,4,5,6 +1715.0,72.7261,1915.9869,100,1573.940207710849,1573.940207710849,458.5645510404104,458.5645510404104,33536.5472,5.0,854.9614,1,2,3,4,5,6 +1715.5,72.97305,1922.4915500000002,100,1569.2933099137285,1569.2933099137285,460.12166074214633,460.12166074214633,33570.57065,5.0,852.7191,1,2,3,4,5,6 +1716.0,73.22,1928.9962,100,1564.6777574160064,1564.6777574160064,461.67877044388257,461.67877044388257,33604.5941,5.0,850.4768,1,2,3,4,5,6 +1716.5,73.47375,1935.68165,100,1559.899868075333,1559.899868075333,463.278756622524,463.278756622524,33639.5563,5.0,848.172,1,2,3,4,5,6 +1717.0,73.7275,1942.3671,100,1555.1548671255641,1555.1548671255641,464.87874280116563,464.87874280116563,33674.5185,5.0,845.8672,1,2,3,4,5,6 +1717.5,73.98845,1949.2408,100,1550.2336844061474,1550.2336844061474,466.52412760241293,466.52412760241293,33710.457599999994,5.0,843.4973,1,2,3,4,5,6 +1718.0,74.2494,1956.1145,100,1545.347092744184,1545.347092744184,468.1695124036603,468.1695124036603,33746.3967,5.0,841.1274,1,2,3,4,5,6 +1718.5,74.5184,1963.1983,100,1540.2520620276337,1540.2520620276337,469.86565538712665,469.86565538712665,33783.42555,5.0,838.6849,1,2,3,4,5,6 +1719.0,74.7874,1970.2821,100,1535.1936835616693,1535.1936835616693,471.561798370593,471.561798370593,33820.4544,5.0,836.2424,1,2,3,4,5,6 +1719.5,75.06565,1977.6111999999998,100,1529.8987325627631,1529.8987325627631,473.31626597337925,473.31626597337925,33858.75695,5.0,833.71505,1,2,3,4,5,6 +1720.0,75.3439,1984.9403,100,1524.6428907715156,1524.6428907715156,475.07073357616554,475.07073357616554,33897.0595,5.0,831.1877,1,2,3,4,5,6 +1720.5,75.63245,1992.5430000000001,100,1519.177733367093,1519.177733367093,476.8901464307351,476.8901464307351,33937.43805,5.0,828.58245,1,2,3,4,5,6 +1721.0,75.921,2000.1457,100,1513.7541183862168,1513.7541183862168,478.70955928530464,478.70955928530464,33977.8166,5.0,825.9772,1,2,3,4,5,6 +1721.5,76.2199,2008.02185,100,1508.2795683410764,1508.2795683410764,480.59423265987,480.59423265987,34022.4582,5.0,823.36205,1,2,3,4,5,6 +1722.0,76.5188,2015.898,100,1502.8477879945842,1502.8477879945842,482.4789060344354,482.4789060344354,34067.0998,5.0,820.7469,1,2,3,4,5,6 +1722.5,76.8275,2024.0302,100,1497.2411320946276,1497.2411320946276,484.42537197865863,484.42537197865863,34113.253450000004,5.0,818.06345,1,2,3,4,5,6 +1723.0,77.1362,2032.1624,100,1491.6793520033395,1491.6793520033395,486.3718379228818,486.3718379228818,34159.4071,5.0,815.38,1,2,3,4,5,6 +1723.5,77.45394999999999,2040.5385999999999,100,1485.9300623015354,1485.9300623015354,488.3753674135749,488.3753674135749,34206.94684999999,5.0,812.616,1,2,3,4,5,6 +1724.0,77.7717,2048.9148,100,1480.2277520743405,1480.2277520743405,490.3788969042679,490.3788969042679,34254.4866,5.0,809.852,1,2,3,4,5,6 +1724.5,78.0952,2057.4511,100,1474.4928667062766,1474.4928667062766,492.4186822394031,492.4186822394031,34302.936799999996,5.0,807.0352499999999,1,2,3,4,5,6 +1725.0,78.4187,2065.9874,100,1468.8052974864413,1468.8052974864413,494.45846757453825,494.45846757453825,34351.387,5.0,804.2185,1,2,3,4,5,6 +1725.5,78.74045000000001,2074.4776,100,1463.278764726389,1463.278764726389,496.48721852223446,496.48721852223446,34399.5782,5.0,801.41705,1,2,3,4,5,6 +1726.0,79.0622,2082.9678,100,1457.7972133080027,1457.7972133080027,498.5159694699308,498.5159694699308,34447.7694,5.0,798.6156,1,2,3,4,5,6 +1726.5,79.375,2091.21355,100,1452.5353122519687,1452.5353122519687,500.4882874075822,500.4882874075822,34494.5751,5.0,795.8948499999999,1,2,3,4,5,6 +1727.0,79.6878,2099.4593,100,1447.3147204716408,1447.3147204716408,502.4606053452338,502.4606053452338,34541.3808,5.0,793.1741,1,2,3,4,5,6 +1727.5,79.9884,2107.379,100,1442.2871887798733,1442.2871887798733,504.3559978390255,504.3559978390255,34586.3352,5.0,790.5609,1,2,3,4,5,6 +1728.0,80.289,2115.2987,100,1437.297302992938,1437.297302992938,506.2513903328172,506.2513903328172,34631.2896,5.0,787.9477,1,2,3,4,5,6 +1728.5,80.57730000000001,2122.8882,100,1432.4673825630791,1432.4673825630791,508.06922684632417,508.06922684632417,34674.36895,5.0,785.44345,1,2,3,4,5,6 +1729.0,80.8656,2130.4777,100,1427.671901154508,1427.671901154508,509.887063359831,509.887063359831,34717.4483,5.0,782.9392,1,2,3,4,5,6 +1729.5,81.14410000000001,2137.81115,100,1422.9296851896809,1422.9296851896809,511.64310730368004,511.64310730368004,34759.073,5.0,780.5194,1,2,3,4,5,6 +1730.0,81.4226,2145.1446,100,1418.2199100249807,1418.2199100249807,513.399151247529,513.399151247529,34800.6977,5.0,778.0996,1,2,3,4,5,6 +1730.5,81.6962,2152.3415,100,1413.4512905741024,1413.4512905741024,515.124298906549,515.124298906549,34841.545849999995,5.0,775.7248500000001,1,2,3,4,5,6 +1731.0,81.9698,2159.5384,100,1408.7145046590326,1408.7145046590326,516.849446565569,516.849446565569,34882.394,5.0,773.3501,1,2,3,4,5,6 +1731.5,82.24100000000001,2166.6860500000003,100,1403.9981582179205,1403.9981582179205,518.5594613503871,518.5594613503871,34923.51065,5.0,770.99155,1,2,3,4,5,6 +1732.0,82.5122,2173.8337,100,1399.3128150261412,1399.3128150261412,520.2694761352052,520.2694761352052,34964.6273,5.0,768.633,1,2,3,4,5,6 +1732.5,82.77850000000001,2180.8647499999997,100,1394.7681830668585,1394.7681830668585,521.9485946351945,521.9485946351945,35018.29925,5.0,766.3129,1,2,3,4,5,6 +1733.0,83.0448,2187.8958,100,1390.252697676435,1390.252697676435,523.6277131351834,523.6277131351834,35071.9712,5.0,763.9928,1,2,3,4,5,6 +1733.5,83.30225,2194.67395,100,1385.3003109279762,1385.3003109279762,525.251029161553,525.251029161553,35122.314,5.0,761.4449,1,2,3,4,5,6 +1734.0,83.5597,2201.4521,100,1380.3784410906214,1380.3784410906214,526.8743451879226,526.8743451879226,35172.6568,5.0,758.897,1,2,3,4,5,6 +1734.5,83.7722,2203.22795,100,1282.4586182767077,1282.4586182767077,528.2142350912184,528.2142350912184,33018.04605,5.0,703.67635,1,2,3,4,5,6 +1735.0,83.9847,2205.0038,100,1185.0343133927965,1185.0343133927965,529.5541249945143,529.5541249945143,30863.4353,5.0,648.4557,1,2,3,4,5,6 +1735.5,83.89,2120.72845,100,534.2119595660985,534.2119595660985,528.9570069999631,528.9570069999631,15441.28565,2.5,279.2341,1,2,3,4,5,6 +1736.0,83.7953,2036.4531,100,-118.08142848107234,-118.08142848107234,528.3598890054119,528.3598890054119,19.136,0.0,-89.9875,1,2,3,4,5,6 +1736.5,83.47149999999999,1898.51885,100,-51.565702137855446,-51.565702137855446,526.3182120610015,526.3182120610015,1423.59205,0.0,-37.8867,1,2,3,4,5,6 +1737.0,83.1477,1760.5846,100,15.46808525070447,15.46808525070447,524.2765351165912,524.2765351165912,2828.0481,0.0,14.2141,1,2,3,4,5,6 +1737.5,83.09620000000001,1684.2998499999999,100,559.161893131094,559.161893131094,523.9518088576748,523.9518088576748,15039.8073,3.0,427.63364999999993,1,2,3,4,5,6 +1738.0,83.0447,1608.0151,100,1103.5300422061853,1103.5300422061853,523.6270825987584,523.6270825987584,27251.5665,6.0,841.0532,1,2,3,4,5,6 +1738.5,83.2516,1606.54385,100,1164.1410683878746,1164.1410683878746,524.9316624622498,524.9316624622498,28920.324500000002,6.0,894.50305,1,2,3,4,5,6 +1739.0,83.4585,1605.0726,100,1224.4515758370924,1224.4515758370924,526.2362423257412,526.2362423257412,30589.0825,6.0,947.9529,1,2,3,4,5,6 +1739.5,83.69415000000001,1609.6032500000001,100,1226.5973815374189,1226.5973815374189,527.7221014114433,527.7221014114433,30730.2848,6.0,949.4742,1,2,3,4,5,6 +1740.0,83.9298,1614.1339,100,1228.7311376650487,1228.7311376650487,529.2079604971451,529.2079604971451,30871.4871,6.0,950.9955,1,2,3,4,5,6 +1740.5,84.1712,1618.79425,100,1226.9479625572642,1226.9479625572642,530.7300754272892,530.7300754272892,30923.4182,6.0,949.73145,1,2,3,4,5,6 +1741.0,84.4126,1623.4546,100,1225.1749863645948,1225.1749863645948,532.2521903574334,532.2521903574334,30975.3493,6.0,948.4674,1,2,3,4,5,6 +1741.5,84.62015,1627.6615000000002,100,1157.7258260118895,1157.7258260118895,533.5608687076879,533.5608687076879,29532.98345,6.0,901.01495,1,2,3,4,5,6 +1742.0,84.8277,1631.8684,100,1090.606724666589,1090.606724666589,534.8695470579422,534.8695470579422,28090.6176,6.0,853.5625,1,2,3,4,5,6 +1742.5,84.91385,1633.3027000000002,100,904.6960951835304,904.6960951835304,535.4127541881489,535.4127541881489,23948.59175,6.0,723.00245,1,2,3,4,5,6 +1743.0,85.0,1634.737,100,719.1623174823528,719.1623174823528,535.9559613183559,535.9559613183559,19806.5659,6.0,592.4424,1,2,3,4,5,6 +1743.5,85.0,1634.737,100,728.8941692117646,728.8941692117646,535.9559613183559,535.9559613183559,20027.27475,6.0,599.22515,1,2,3,4,5,6 +1744.0,85.0,1634.737,100,738.6260209411763,738.6260209411763,535.9559613183559,535.9559613183559,20247.9836,6.0,606.0079,1,2,3,4,5,6 +1744.5,85.0,1634.737,100,749.7527847882352,749.7527847882352,535.9559613183559,535.9559613183559,20500.22915,6.0,613.7598,1,2,3,4,5,6 +1745.0,85.0,1634.737,100,760.879548635294,760.879548635294,535.9559613183559,535.9559613183559,20752.4747,6.0,621.5117,1,2,3,4,5,6 +1745.5,85.0,1634.737,100,778.2009701294116,778.2009701294116,535.9559613183559,535.9559613183559,21143.6957,6.0,633.5735999999999,1,2,3,4,5,6 +1746.0,85.0,1634.737,100,795.5223916235292,795.5223916235292,535.9559613183559,535.9559613183559,21534.9167,6.0,645.6355,1,2,3,4,5,6 +1746.5,85.0,1634.737,100,811.9636369411763,811.9636369411763,535.9559613183559,535.9559613183559,21884.1432,6.0,657.0849499999999,1,2,3,4,5,6 +1747.0,85.0,1634.737,100,828.4048822588234,828.4048822588234,535.9559613183559,535.9559613183559,22233.3697,6.0,668.5344,1,2,3,4,5,6 +1747.5,85.0,1634.737,100,825.5629159411764,825.5629159411764,535.9559613183559,535.9559613183559,22173.9479,6.0,666.5553,1,2,3,4,5,6 +1748.0,85.0,1634.737,100,822.7209496235292,822.7209496235292,535.9559613183559,535.9559613183559,22114.5261,6.0,664.5762,1,2,3,4,5,6 +1748.5,85.0,1634.737,100,791.3113613999999,791.3113613999999,535.9559613183559,535.9559613183559,21422.3612,6.0,642.70165,1,2,3,4,5,6 +1749.0,85.0,1634.737,100,759.9017731764704,759.9017731764704,535.9559613183559,535.9559613183559,20730.1963,6.0,620.8271,1,2,3,4,5,6 +1749.5,85.0,1634.737,100,714.7605452823528,714.7605452823528,535.9559613183559,535.9559613183559,19718.3424,6.0,589.37,1,2,3,4,5,6 +1750.0,85.0,1634.737,100,669.6193173882352,669.6193173882352,535.9559613183559,535.9559613183559,18706.4885,6.0,557.9129,1,2,3,4,5,6 +1750.5,85.0,1634.737,100,637.5332190705882,637.5332190705882,535.9559613183559,535.9559613183559,17983.63345,6.0,535.5498,1,2,3,4,5,6 +1751.0,85.0,1634.737,100,605.447120752941,605.447120752941,535.9559613183559,535.9559613183559,17260.7784,6.0,513.1867,1,2,3,4,5,6 +1751.5,85.0,1634.737,100,593.4352784823528,593.4352784823528,535.9559613183559,535.9559613183559,16987.156349999997,6.0,504.81485,1,2,3,4,5,6 +1752.0,85.0,1634.737,100,581.4234362117645,581.4234362117645,535.9559613183559,535.9559613183559,16713.5343,6.0,496.443,1,2,3,4,5,6 +1752.5,85.0,1634.737,100,567.6374261647057,567.6374261647057,535.9559613183559,535.9559613183559,16400.5536,6.0,486.8345,1,2,3,4,5,6 +1753.0,85.0,1634.737,100,553.851416117647,553.851416117647,535.9559613183559,535.9559613183559,16087.5729,6.0,477.226,1,2,3,4,5,6 +1753.5,85.0,1634.737,100,532.2218107764704,532.2218107764704,535.9559613183559,535.9559613183559,15601.6032,6.0,462.1517,1,2,3,4,5,6 +1754.0,85.0,1634.737,100,510.59220543529403,510.59220543529403,535.9559613183559,535.9559613183559,15115.6335,6.0,447.0774,1,2,3,4,5,6 +1754.5,85.0,1634.737,100,493.12104257647053,493.12104257647053,535.9559613183559,535.9559613183559,14723.99265,6.0,434.90745000000004,1,2,3,4,5,6 +1755.0,85.0,1634.737,100,475.649879717647,475.649879717647,535.9559613183559,535.9559613183559,14332.3518,6.0,422.7375,1,2,3,4,5,6 +1755.5,85.0,1634.737,100,453.7644662117647,453.7644662117647,535.9559613183559,535.9559613183559,13849.5866,6.0,407.49735,1,2,3,4,5,6 +1756.0,85.0,1634.737,100,431.87905270588226,431.87905270588226,535.9559613183559,535.9559613183559,13366.8214,6.0,392.2572,1,2,3,4,5,6 +1756.5,85.0,1634.737,100,390.04283064705874,390.04283064705874,535.9559613183559,535.9559613183559,12431.606950000001,6.0,363.1237,1,2,3,4,5,6 +1757.0,85.0,1634.737,100,348.2066085882352,348.2066085882352,535.9559613183559,535.9559613183559,11496.3925,6.0,333.9902,1,2,3,4,5,6 +1757.5,85.0,1634.737,100,301.9463313882352,301.9463313882352,535.9559613183559,535.9559613183559,10478.423200000001,6.0,301.77545,1,2,3,4,5,6 +1758.0,85.0,1634.737,100,255.68605418823523,255.68605418823523,535.9559613183559,535.9559613183559,9460.4539,6.0,269.5607,1,2,3,4,5,6 +1758.5,85.0,1634.737,100,219.1179650823529,219.1179650823529,535.9559613183559,535.9559613183559,8653.6501,6.0,244.28334999999998,1,2,3,4,5,6 +1759.0,85.0,1634.737,100,182.54987597647053,182.54987597647053,535.9559613183559,535.9559613183559,7846.8463,6.0,219.006,1,2,3,4,5,6 +1759.5,85.0,1634.737,100,140.43066056470585,140.43066056470585,535.9559613183559,535.9559613183559,6949.4054,6.0,190.9418,1,2,3,4,5,6 +1760.0,85.0,1634.737,100,98.31144515294116,98.31144515294116,535.9559613183559,535.9559613183559,6051.9645,6.0,162.8776,1,2,3,4,5,6 +1760.5,85.0,1634.737,100,40.01436878823529,40.01436878823529,535.9559613183559,535.9559613183559,4953.5563999999995,6.0,124.6425,1,2,3,4,5,6 +1761.0,85.0,1634.737,100,-18.28270757647059,-18.28270757647059,535.9559613183559,535.9559613183559,3855.1483,6.0,86.4074,1,2,3,4,5,6 +1761.5,85.0,1634.737,100,-75.70896659999998,-75.70896659999998,535.9559613183559,535.9559613183559,3028.5815000000002,6.0,48.89615,1,2,3,4,5,6 +1762.0,85.0,1634.737,100,-133.13522562352938,-133.13522562352938,535.9559613183559,535.9559613183559,2202.0147,6.0,11.3849,1,2,3,4,5,6 +1762.5,85.0,1634.737,100,-157.85101831764703,-157.85101831764703,535.9559613183559,535.9559613183559,1836.11175,6.0,-4.5592500000000005,1,2,3,4,5,6 +1763.0,85.0,1634.737,100,-182.56681101176466,-182.56681101176466,535.9559613183559,535.9559613183559,1470.2088,6.0,-20.5034,1,2,3,4,5,6 +1763.5,85.0,1634.737,100,-177.42034291764705,-177.42034291764705,535.9559613183559,535.9559613183559,1555.5131000000001,6.0,-17.198,1,2,3,4,5,6 +1764.0,85.0,1634.737,100,-172.27387482352938,-172.27387482352938,535.9559613183559,535.9559613183559,1640.8174,6.0,-13.8926,1,2,3,4,5,6 +1764.5,85.0,1634.737,100,-170.927539517647,-170.927539517647,535.9559613183559,535.9559613183559,1663.13105,6.0,-13.02795,1,2,3,4,5,6 +1765.0,85.0,1634.737,100,-169.58120421176469,-169.58120421176469,535.9559613183559,535.9559613183559,1685.4447,6.0,-12.1633,1,2,3,4,5,6 +1765.5,85.0,1634.737,100,-180.54797654117644,-180.54797654117644,535.9559613183559,535.9559613183559,1503.6787,6.0,-19.20645,1,2,3,4,5,6 +1766.0,85.0,1634.737,100,-191.51474887058822,-191.51474887058822,535.9559613183559,535.9559613183559,1321.9127,6.0,-26.2496,1,2,3,4,5,6 +1766.5,85.0,1634.737,100,-203.93793423529405,-203.93793423529405,535.9559613183559,535.9559613183559,1116.00265,6.0,-34.22825,1,2,3,4,5,6 +1767.0,85.0,1634.737,100,-216.36111959999997,-216.36111959999997,535.9559613183559,535.9559613183559,910.0926,6.0,-42.2069,1,2,3,4,5,6 +1767.5,85.0,1634.737,100,-223.78133901176466,-223.78133901176466,535.9559613183559,535.9559613183559,787.10635,6.0,-46.9724,1,2,3,4,5,6 +1768.0,85.0,1634.737,100,-231.20155842352938,-231.20155842352938,535.9559613183559,535.9559613183559,664.1201,6.0,-51.7379,1,2,3,4,5,6 +1768.5,85.0,1634.737,100,-223.59416230588232,-223.59416230588232,535.9559613183559,535.9559613183559,790.2122999999999,6.0,-46.852050000000006,1,2,3,4,5,6 +1769.0,85.0,1634.737,100,-215.98676618823526,-215.98676618823526,535.9559613183559,535.9559613183559,916.3045,6.0,-41.9662,1,2,3,4,5,6 +1769.5,85.0,1634.737,100,-190.0815100941176,-190.0815100941176,535.9559613183559,535.9559613183559,1341.1838,6.0,-25.3294,1,2,3,4,5,6 +1770.0,85.0,1634.737,100,-164.17625399999997,-164.17625399999997,535.9559613183559,535.9559613183559,1766.0631,6.0,-8.6926,1,2,3,4,5,6 +1770.5,85.0,1634.737,100,-157.43922956470587,-157.43922956470587,535.9559613183559,535.9559613183559,1869.424,6.0,-4.36585,1,2,3,4,5,6 +1771.0,85.0,1634.737,100,-150.70220512941177,-150.70220512941177,535.9559613183559,535.9559613183559,1972.7849,6.0,-0.0391,1,2,3,4,5,6 +1771.5,85.0,1634.737,100,-162.7947116470588,-162.7947116470588,535.9559613183559,535.9559613183559,1784.29425,6.0,-7.805250000000001,1,2,3,4,5,6 +1772.0,85.0,1634.737,100,-174.88721816470587,-174.88721816470587,535.9559613183559,535.9559613183559,1595.8036,6.0,-15.5714,1,2,3,4,5,6 +1772.5,85.0,1634.737,100,-199.57849962352938,-199.57849962352938,535.9559613183559,535.9559613183559,1187.4065,6.0,-31.428800000000003,1,2,3,4,5,6 +1773.0,85.0,1634.737,100,-224.2697810823529,-224.2697810823529,535.9559613183559,535.9559613183559,779.0094,6.0,-47.2862,1,2,3,4,5,6 +1773.5,85.0047,1634.7971499999999,100,-246.8247416084052,-246.8247416084052,535.9855965303345,535.9855965303345,406.90610000000004,6.0,-61.706900000000005,1,2,3,4,5,6 +1774.0,85.0094,1634.8573,100,-269.3772080969869,-269.3772080969869,536.0152317423134,536.0152317423134,34.8028,6.0,-76.1276,1,2,3,4,5,6 +1774.5,85.02865,1635.245,100,-270.6701234583872,-270.6701234583872,536.1366100041414,536.1366100041414,17.4014,6.0,-76.81725,1,2,3,4,5,6 +1775.0,85.0479,1635.6327,100,-271.9624535350079,-271.9624535350079,536.2579882659693,536.2579882659693,0.0,6.0,-77.5069,1,2,3,4,5,6 +1775.5,85.0754,1636.19315,100,-271.9591437947985,-271.9591437947985,536.4313857828664,536.4313857828664,0.0,6.0,-77.52905,1,2,3,4,5,6 +1776.0,85.1029,1636.7536,100,-271.95583619359627,-271.95583619359627,536.6047832997635,536.6047832997635,0.0,6.0,-77.5512,1,2,3,4,5,6 +1776.5,85.11805000000001,1637.05735,100,-271.7334203614862,-271.7334203614862,536.7003095681632,536.7003095681632,0.0,6.0,-77.56325,1,2,3,4,5,6 +1777.0,85.1332,1637.3611,100,-271.5110836900293,-271.5110836900293,536.7958358365629,536.7958358365629,0.0,6.0,-77.5753,1,2,3,4,5,6 +1777.5,85.1234,1637.17875,100,-271.1836616488532,-271.1836616488532,536.7340432669051,536.7340432669051,0.0,6.0,-77.56805,1,2,3,4,5,6 +1778.0,85.1136,1636.9964,100,-270.85616420877506,-270.85616420877506,536.6722506972471,536.6722506972471,0.0,6.0,-77.5608,1,2,3,4,5,6 +1778.5,85.07915,1636.28575,100,-258.95537558849617,-258.95537558849617,536.4550308988069,536.4550308988069,182.54645,6.0,-70.04560000000001,1,2,3,4,5,6 +1779.0,85.0447,1635.5751,100,-247.0449453993018,-247.0449453993018,536.2378111003667,536.2378111003667,365.0929,6.0,-62.5304,1,2,3,4,5,6 +1779.5,85.02235,1635.15605,100,-174.40372327981993,-174.40372327981993,536.0968862093613,536.0968862093613,1494.9193,6.0,-15.40435,1,2,3,4,5,6 +1780.0,85.0,1634.737,100,-101.7243004235294,-101.7243004235294,535.9559613183559,535.9559613183559,2624.7457,6.0,31.7217,1,2,3,4,5,6 +1780.5,85.0,1634.737,100,-101.97921727058824,-101.97921727058824,535.9559613183559,535.9559613183559,2621.206,6.0,31.5548,1,2,3,4,5,6 +1781.0,85.0,1634.737,100,-102.23413411764705,-102.23413411764705,535.9559613183559,535.9559613183559,2617.6663,6.0,31.3879,1,2,3,4,5,6 +1781.5,85.0,1634.737,100,-111.40891231764705,-111.40891231764705,535.9559613183559,535.9559613183559,2490.2228999999998,6.0,25.41235,1,2,3,4,5,6 +1782.0,85.0,1634.737,100,-120.58369051764704,-120.58369051764704,535.9559613183559,535.9559613183559,2362.7795,6.0,19.4368,1,2,3,4,5,6 +1782.5,85.0,1634.737,100,-151.74504677647056,-151.74504677647056,535.9559613183559,535.9559613183559,1913.6824000000001,6.0,-0.6422500000000007,1,2,3,4,5,6 +1783.0,85.0,1634.737,100,-182.9064030352941,-182.9064030352941,535.9559613183559,535.9559613183559,1464.5853,6.0,-20.7213,1,2,3,4,5,6 +1783.5,85.0,1634.737,100,-195.1495422352941,-195.1495422352941,535.9559613183559,535.9559613183559,1261.6633,6.0,-28.58415,1,2,3,4,5,6 +1784.0,85.0,1634.737,100,-207.3926814352941,-207.3926814352941,535.9559613183559,535.9559613183559,1058.7413,6.0,-36.447,1,2,3,4,5,6 +1784.5,85.0,1634.737,100,-212.55742154117644,-212.55742154117644,535.9559613183559,535.9559613183559,973.1377,6.0,-39.764,1,2,3,4,5,6 +1785.0,85.0,1634.737,100,-217.72216164705878,-217.72216164705878,535.9559613183559,535.9559613183559,887.5341,6.0,-43.081,1,2,3,4,5,6 +1785.5,85.0,1634.737,100,-208.08166997647052,-208.08166997647052,535.9559613183559,535.9559613183559,1047.1706,6.0,-36.889450000000004,1,2,3,4,5,6 +1786.0,85.0,1634.737,100,-198.44117830588232,-198.44117830588232,535.9559613183559,535.9559613183559,1206.8071,6.0,-30.6979,1,2,3,4,5,6 +1786.5,85.0,1634.737,100,-164.32287575294112,-164.32287575294112,535.9559613183559,535.9559613183559,1721.8638,6.0,-8.72925,1,2,3,4,5,6 +1787.0,85.0,1634.737,100,-130.20457319999997,-130.20457319999997,535.9559613183559,535.9559613183559,2236.9205,6.0,13.2394,1,2,3,4,5,6 +1787.5,85.0,1634.737,100,-92.58205531764705,-92.58205531764705,535.9559613183559,535.9559613183559,2755.89405,6.0,37.8049,1,2,3,4,5,6 +1788.0,85.0,1634.737,100,-54.95953743529411,-54.95953743529411,535.9559613183559,535.9559613183559,3274.8676,6.0,62.3704,1,2,3,4,5,6 +1788.5,85.0,1634.737,100,-38.552162188235286,-38.552162188235286,535.9559613183559,535.9559613183559,3502.9613,6.0,73.12344999999999,1,2,3,4,5,6 +1789.0,85.0,1634.737,100,-22.144786941176466,-22.144786941176466,535.9559613183559,535.9559613183559,3731.055,6.0,83.8765,1,2,3,4,5,6 +1789.5,85.0,1634.737,100,-15.877041247058823,-15.877041247058823,535.9559613183559,535.9559613183559,3822.2203,6.0,87.98419999999999,1,2,3,4,5,6 +1790.0,85.0,1634.737,100,-9.609295552941177,-9.609295552941177,535.9559613183559,535.9559613183559,3913.3856,6.0,92.0919,1,2,3,4,5,6 +1790.5,85.0,1634.737,100,12.15489875294117,12.15489875294117,535.9559613183559,535.9559613183559,4318.2243,6.0,106.35565,1,2,3,4,5,6 +1791.0,85.0,1634.737,100,33.91909305882352,33.91909305882352,535.9559613183559,535.9559613183559,4723.063,6.0,120.6194,1,2,3,4,5,6 +1791.5,85.0,1634.737,100,67.04669604705882,67.04669604705882,535.9559613183559,535.9559613183559,5406.0874,6.0,142.33845,1,2,3,4,5,6 +1792.0,85.0,1634.737,100,100.1742990352941,100.1742990352941,535.9559613183559,535.9559613183559,6089.1118,6.0,164.0575,1,2,3,4,5,6 +1792.5,85.0,1634.737,100,123.80803210588233,123.80803210588233,535.9559613183559,535.9559613183559,6583.97635,6.0,179.68605000000002,1,2,3,4,5,6 +1793.0,85.0,1634.737,100,147.44176517647057,147.44176517647057,535.9559613183559,535.9559613183559,7078.8409,6.0,195.3146,1,2,3,4,5,6 +1793.5,85.0,1634.737,100,163.25151194117643,163.25151194117643,535.9559613183559,535.9559613183559,7422.025100000001,6.0,205.9092,1,2,3,4,5,6 +1794.0,85.0,1634.737,100,179.06125870588232,179.06125870588232,535.9559613183559,535.9559613183559,7765.2093,6.0,216.5038,1,2,3,4,5,6 +1794.5,85.0,1634.737,100,201.65036749411763,201.65036749411763,535.9559613183559,535.9559613183559,8270.326700000001,6.0,232.0826,1,2,3,4,5,6 +1795.0,85.0,1634.737,100,224.2394762823529,224.2394762823529,535.9559613183559,535.9559613183559,8775.4441,6.0,247.6614,1,2,3,4,5,6 +1795.5,85.0,1634.737,100,263.0951321294117,263.0951321294117,535.9559613183559,535.9559613183559,9622.884,6.0,274.71999999999997,1,2,3,4,5,6 +1796.0,85.0,1634.737,100,301.95078797647056,301.95078797647056,535.9559613183559,535.9559613183559,10470.3239,6.0,301.7786,1,2,3,4,5,6 +1796.5,85.0,1634.737,100,353.9582813647058,353.9582813647058,535.9559613183559,535.9559613183559,11636.3486,6.0,337.99535000000003,1,2,3,4,5,6 +1797.0,85.0,1634.737,100,405.9657747529412,405.9657747529412,535.9559613183559,535.9559613183559,12802.3733,6.0,374.2121,1,2,3,4,5,6 +1797.5,85.0,1634.737,100,462.09427528235284,462.09427528235284,535.9559613183559,535.9559613183559,14045.3681,6.0,413.3058,1,2,3,4,5,6 +1798.0,85.0,1634.737,100,518.2227758117646,518.2227758117646,535.9559613183559,535.9559613183559,15288.3629,6.0,452.3995,1,2,3,4,5,6 +1798.5,85.0,1634.737,100,573.9996515294117,573.9996515294117,535.9559613183559,535.9559613183559,16549.02895,6.0,491.27139999999997,1,2,3,4,5,6 +1799.0,85.0,1634.737,100,629.7765272470588,629.7765272470588,535.9559613183559,535.9559613183559,17809.695,6.0,530.1433,1,2,3,4,5,6 +1799.5,84.85965,1632.74945,100,352.83489206000735,352.83489206000735,535.0710034457554,535.0710034457554,12227.0209,6.0,340.44655,1,2,3,4,5,6 +1800.0,84.7193,1630.7619,100,74.97566764597913,74.97566764597913,534.1860455731551,534.1860455731551,6644.3468,6.0,150.7498,1,2,3,4,5,6 +1800.5,84.34965,1622.98315,100,-91.81341619082,-91.81341619082,531.8552676778452,531.8552676778452,3322.17335,6.0,37.025549999999996,1,2,3,4,5,6 +1801.0,83.98,1615.2044,100,-260.0707921171707,-260.0707921171707,529.5244897825356,529.5244897825356,-0.0001,6.0,-76.6987,1,2,3,4,5,6 +1801.5,83.53395,1606.2518,100,-190.4317927501333,-190.4317927501333,526.7119820584644,526.7119820584644,1382.9292,6.0,-28.7598,1,2,3,4,5,6 +1802.0,83.0879,1597.2992,100,-120.0450918364768,-120.0450918364768,523.8994743343932,523.8994743343932,2765.8585,6.0,19.1791,1,2,3,4,5,6 +1802.5,82.8775,1593.3618999999999,100,449.47473099454015,449.47473099454015,522.5728256960239,522.5728256960239,14296.2756,6.0,411.60630000000003,1,2,3,4,5,6 +1803.0,82.6671,1589.4246,100,1021.8935782433399,1021.8935782433399,521.2461770576547,521.2461770576547,25826.6927,6.0,804.0335,1,2,3,4,5,6 +1803.5,82.7095,1590.4628,100,1123.9384918419287,1123.9384918419287,521.5135245018888,521.5135245018888,28056.51285,6.0,875.3981,1,2,3,4,5,6 +1804.0,82.7519,1591.501,100,1225.8788349270528,1225.8788349270528,521.7808719461229,521.7808719461229,30286.333,6.0,946.7627,1,2,3,4,5,6 +1804.5,82.82525000000001,1592.90075,100,1231.923447861612,1231.923447861612,522.2433704139195,522.2433704139195,30449.190450000002,6.0,950.9862,1,2,3,4,5,6 +1805.0,82.8986,1594.3005,100,1237.9573640568115,1237.9573640568115,522.7058688817159,522.7058688817159,30612.0479,6.0,955.2097,1,2,3,4,5,6 +1805.5,82.9779,1595.8289,100,1238.2228129779137,1238.2228129779137,523.2058842668047,523.2058842668047,30650.5184,6.0,955.4451,1,2,3,4,5,6 +1806.0,83.0572,1597.3573,100,1238.4877550170245,1238.4877550170245,523.7058996518934,523.7058996518934,30688.9889,6.0,955.6805,1,2,3,4,5,6 +1806.5,83.13855,1598.9508,100,1238.4642120171688,1238.4642120171688,524.2188410336963,524.2188410336963,30718.3508,6.0,955.6001,1,2,3,4,5,6 +1807.0,83.2199,1600.5443,100,1238.4407150453198,1238.4407150453198,524.7317824154992,524.7317824154992,30747.7127,6.0,955.5197,1,2,3,4,5,6 +1807.5,83.2828,1601.78315,100,1238.4087005720266,1238.4087005720266,525.1283898268749,525.1283898268749,30763.4553,6.0,955.24245,1,2,3,4,5,6 +1808.0,83.3457,1603.022,100,1238.3767344206121,1238.3767344206121,525.5249972382504,525.5249972382504,30779.1979,6.0,954.9652,1,2,3,4,5,6 +1808.5,83.3711,1603.50595,100,1238.6664575854222,1238.6664575854222,525.6851534902208,525.6851534902208,30785.3159,6.0,954.8559,1,2,3,4,5,6 +1809.0,83.3965,1603.9899,100,1238.9560042687644,1238.9560042687644,525.8453097421913,525.8453097421913,30791.4339,6.0,954.7466,1,2,3,4,5,6 +1809.5,83.3884,1603.79855,100,1239.2812278566325,1239.2812278566325,525.7942362917597,525.7942362917597,30790.11595,6.0,954.8232,1,2,3,4,5,6 +1810.0,83.3803,1603.6072,100,1239.6065146323533,1239.6065146323533,525.7431628413283,525.7431628413283,30788.798,6.0,954.8998,1,2,3,4,5,6 +1810.5,83.36240000000001,1603.2357,100,1239.7022842072686,1239.7022842072686,525.6302968212389,525.6302968212389,30785.07205,6.0,955.0131,1,2,3,4,5,6 +1811.0,83.3445,1602.8642,100,1239.798094919281,1239.798094919281,525.5174308011494,525.5174308011494,30781.3461,6.0,955.1264,1,2,3,4,5,6 +1811.5,83.33565,1602.6964,100,1239.724751543907,1239.724751543907,525.4616283275299,525.4616283275299,30779.6561,6.0,955.1773499999999,1,2,3,4,5,6 +1812.0,83.3268,1602.5286,100,1239.651392589179,1239.651392589179,525.4058258539102,525.4058258539102,30777.9661,6.0,955.2283,1,2,3,4,5,6 +1812.5,83.3288,1602.5798,100,1239.558904988431,1239.558904988431,525.4184365824119,525.4184365824119,30778.379050000003,6.0,955.20965,1,2,3,4,5,6 +1813.0,83.3308,1602.631,100,1239.4664218272235,1239.4664218272235,525.4310473109134,525.4310473109134,30778.792,6.0,955.191,1,2,3,4,5,6 +1813.5,83.33625,1602.7400499999999,100,1239.426728164514,1239.426728164514,525.4654115460804,525.4654115460804,30779.838900000002,6.0,955.15635,1,2,3,4,5,6 +1814.0,83.3417,1602.8491,100,1239.3870396932148,1239.3870396932148,525.4997757812473,525.4997757812473,30780.8858,6.0,955.1217,1,2,3,4,5,6 +1814.5,83.3455,1602.92445,100,1239.385981582689,1239.385981582689,525.5237361654002,525.5237361654002,30781.6944,6.0,955.1003000000001,1,2,3,4,5,6 +1815.0,83.3493,1602.9998,100,1239.3849235686444,1239.3849235686444,525.5476965495533,525.5476965495533,30782.503,6.0,955.0789,1,2,3,4,5,6 +1815.5,83.34835,1602.9893000000002,100,1239.4708594471279,1239.4708594471279,525.5417064535151,525.5417064535151,30782.48415,6.0,955.0847,1,2,3,4,5,6 +1816.0,83.3474,1602.9788,100,1239.5567972846184,1239.5567972846184,525.5357163574768,525.5357163574768,30782.4653,6.0,955.0905,1,2,3,4,5,6 +1816.5,83.3372,1602.7836000000002,100,1239.7603308006508,1239.7603308006508,525.4714016421186,525.4714016421186,30780.52275,6.0,955.1505,1,2,3,4,5,6 +1817.0,83.327,1602.5884,100,1239.9639141454752,1239.9639141454752,525.4070869267604,525.4070869267604,30778.5802,6.0,955.2105,1,2,3,4,5,6 +1817.5,83.30715000000001,1602.19785,100,1240.2034364517333,1240.2034364517333,525.2819254463819,525.2819254463819,30774.66315,6.0,955.32965,1,2,3,4,5,6 +1818.0,83.2873,1601.8073,100,1240.443072929486,1240.443072929486,525.1567639660035,525.1567639660035,30770.7461,6.0,955.4488,1,2,3,4,5,6 +1818.5,83.26230000000001,1601.3242,100,1240.674030827878,1240.674030827878,524.9991298597333,524.9991298597333,30765.90135,6.0,955.5961500000001,1,2,3,4,5,6 +1819.0,83.2373,1600.8411,100,1240.905127460886,1240.905127460886,524.8414957534633,524.8414957534633,30761.0566,6.0,955.7435,1,2,3,4,5,6 +1819.5,83.20835,1600.2916500000001,100,1241.1256271996742,1241.1256271996742,524.6589554584024,524.6589554584024,30753.879849999998,6.0,955.8605500000001,1,2,3,4,5,6 +1820.0,83.1794,1599.7422,100,1241.3462804252013,1241.3462804252013,524.4764151633417,524.4764151633417,30746.7031,6.0,955.9776,1,2,3,4,5,6 +1820.5,83.1414,1599.02185,100,1241.4949250193044,1241.4949250193044,524.2368113218112,524.2368113218112,30732.5999,6.0,955.9888000000001,1,2,3,4,5,6 +1821.0,83.1034,1598.3015,100,1241.6437055523602,1241.6437055523602,523.9972074802805,523.9972074802805,30718.4967,6.0,956.0,1,2,3,4,5,6 +1821.5,83.04995,1597.2734500000001,100,1241.8179246345123,1241.8179246345123,523.660185761075,523.660185761075,30697.8439,6.0,956.0,1,2,3,4,5,6 +1822.0,82.9965,1596.2454,100,1241.9923681119083,1241.9923681119083,523.3231640418696,523.3231640418696,30677.1911,6.0,956.0,1,2,3,4,5,6 +1822.5,82.93029999999999,1594.94685,100,1242.0336969720354,1242.0336969720354,522.9057489284663,522.9057489284663,30651.103150000003,6.0,956.0,1,2,3,4,5,6 +1823.0,82.8641,1593.6483,100,1242.0750918672863,1242.0750918672863,522.4883338150631,522.4883338150631,30625.0152,6.0,956.0,1,2,3,4,5,6 +1823.5,82.8024,1592.43295,100,1241.868798802933,1241.868798802933,522.0992928407886,522.0992928407886,30600.598100000003,6.0,956.0,1,2,3,4,5,6 +1824.0,82.7407,1591.2176,100,1241.6621980718076,1241.6621980718076,521.7102518665139,521.7102518665139,30576.181,6.0,956.0,1,2,3,4,5,6 +1824.5,82.7021,1590.4749,100,1241.3471706159817,1241.3471706159817,521.4668648064329,521.4668648064329,30561.2607,6.0,956.0,1,2,3,4,5,6 +1825.0,82.6635,1589.7322,100,1241.0318489538913,1241.0318489538913,521.2234777463518,521.2234777463518,30546.3404,6.0,956.0,1,2,3,4,5,6 +1825.5,82.6488,1589.4771999999998,100,1240.8629937276767,1240.8629937276767,521.1307888918649,521.1307888918649,30541.21755,6.0,956.0,1,2,3,4,5,6 +1826.0,82.6341,1589.2222,100,1240.6940784252502,1240.6940784252502,521.0381000373783,521.0381000373783,30536.0947,6.0,956.0,1,2,3,4,5,6 +1826.5,82.6248,1589.0737,100,1240.7929233958814,1240.7929233958814,520.9794601498456,520.9794601498456,30533.111,6.0,956.0,1,2,3,4,5,6 +1827.0,82.6155,1588.9252,100,1240.891790620404,1240.891790620404,520.9208202623133,520.9208202623133,30530.1273,6.0,956.0,1,2,3,4,5,6 +1827.5,82.58785,1588.41345,100,1241.2031157246495,1241.2031157246495,520.7464769407785,520.7464769407785,30519.8466,6.0,956.0,1,2,3,4,5,6 +1828.0,82.5602,1587.9017,100,1241.5146493588923,1241.5146493588923,520.5721336192437,520.5721336192437,30509.5659,6.0,956.0,1,2,3,4,5,6 +1828.5,82.49735,1586.7019,100,1241.9296779593526,1241.9296779593526,520.1758414760807,520.1758414760807,30485.46165,6.0,956.0,1,2,3,4,5,6 +1829.0,82.4345,1585.5021,100,1242.3453394149292,1242.3453394149292,519.7795493329177,519.7795493329177,30461.3574,6.0,956.0,1,2,3,4,5,6 +1829.5,82.32955,1583.4807999999998,100,1242.7635558435577,1242.7635558435577,519.1178013547958,519.1178013547958,30420.74885,6.0,956.0,1,2,3,4,5,6 +1830.0,82.2246,1581.4595,100,1243.182839880036,1243.182839880036,518.4560533766738,518.4560533766738,30380.1403,6.0,956.0,1,2,3,4,5,6 +1830.5,82.0809,1578.67535,100,1243.4851103606318,1243.4851103606318,517.5499725338333,517.5499725338333,30324.207049999997,6.0,956.0,1,2,3,4,5,6 +1831.0,81.9372,1575.8912,100,1243.7884410743834,1243.7884410743834,516.6438916909929,516.6438916909929,30268.2738,6.0,956.0,1,2,3,4,5,6 +1831.5,81.7702,1572.64965,100,1243.8525075027333,1243.8525075027333,515.5908958611084,515.5908958611084,30203.1509,6.0,956.0,1,2,3,4,5,6 +1832.0,81.6032,1569.4081,100,1243.9168361534842,1243.9168361534842,514.5379000312242,514.5379000312242,30138.028,6.0,956.0,1,2,3,4,5,6 +1832.5,81.43215000000001,1566.1122,100,1243.8265215028707,1243.8265215028707,513.4593674761242,513.4593674761242,30071.8131,6.0,956.0,1,2,3,4,5,6 +1833.0,81.2611,1562.8163,100,1243.735826637838,1243.735826637838,512.380834921024,512.380834921024,30005.5982,6.0,956.0,1,2,3,4,5,6 +1833.5,81.09155,1559.5727499999998,100,1243.7207780958681,1243.7207780958681,511.31176041230026,511.31176041230026,29940.43475,6.0,956.0,1,2,3,4,5,6 +1834.0,80.922,1556.3292,100,1243.7056664936606,1243.7056664936606,510.2426859035763,510.2426859035763,29875.2713,6.0,956.0,1,2,3,4,5,6 +1834.5,80.7441,1552.922,100,1243.8327106748359,1243.8327106748359,509.12096160335824,509.12096160335824,29806.82065,6.0,956.0,1,2,3,4,5,6 +1835.0,80.5662,1549.5148,100,1243.9603159141182,1243.9603159141182,507.99923730314015,507.99923730314015,29738.37,6.0,956.0,1,2,3,4,5,6 +1835.5,80.3697,1545.7361,100,1244.1331974363472,1244.1331974363472,506.7602332278571,506.7602332278571,29662.45535,6.0,956.0,1,2,3,4,5,6 +1836.0,80.1732,1541.9574,100,1244.306926404335,1244.306926404335,505.52122915257405,505.52122915257405,29586.5407,6.0,956.0,1,2,3,4,5,6 +1836.5,79.95755,1537.8020000000001,100,1244.4176093689716,1244.4176093689716,504.16147735188815,504.16147735188815,29503.0583,6.0,956.0,1,2,3,4,5,6 +1837.0,79.7419,1533.6466,100,1244.528890984539,1244.528890984539,502.8017255512023,502.8017255512023,29419.5759,6.0,956.0,1,2,3,4,5,6 +1837.5,79.5098,1529.19225,100,1244.6410100641683,1244.6410100641683,501.3382505085906,501.3382505085906,29330.08805,6.0,956.0,1,2,3,4,5,6 +1838.0,79.2777,1524.7379,100,1244.753785642116,1244.753785642116,499.874775465979,499.874775465979,29240.6002,6.0,956.0,1,2,3,4,5,6 +1838.5,79.02385,1519.87075,100,1244.9811970057142,1244.9811970057142,498.27415875091236,498.27415875091236,29142.8185,6.0,956.0,1,2,3,4,5,6 +1839.0,78.77,1515.0036,100,1245.2100741145107,1245.2100741145107,496.6735420358456,496.6735420358456,29045.0368,6.0,956.0,1,2,3,4,5,6 +1839.5,78.4863,1509.5405500000002,100,1245.45799924318,1245.45799924318,494.8847101978925,494.8847101978925,28935.2838,6.0,956.0,1,2,3,4,5,6 +1840.0,78.2026,1504.0775,100,1245.707723195904,1245.707723195904,493.0958783599394,493.0958783599394,28825.5308,6.0,956.0,1,2,3,4,5,6 +1840.5,77.8918,1498.08455,100,1245.8325075296757,1245.8325075296757,491.13617115078955,491.13617115078955,28705.131800000003,6.0,956.0,1,2,3,4,5,6 +1841.0,77.581,1492.0916,100,1245.9582916693519,1245.9582916693519,489.1764639416396,489.1764639416396,28584.7328,6.0,956.0,1,2,3,4,5,6 +1841.5,77.2535,1485.78685,100,1245.9788500974066,1245.9788500974066,487.1114571495012,487.1114571495012,28458.069750000002,6.0,956.0,1,2,3,4,5,6 +1842.0,76.926,1479.4821,100,1245.9995835738243,1245.9995835738243,485.0464503573628,485.0464503573628,28331.4067,6.0,956.0,1,2,3,4,5,6 +1842.5,76.5874,1472.97265,100,1246.0096685486121,1246.0096685486121,482.91145402204063,482.91145402204063,28200.63135,6.0,956.0,1,2,3,4,5,6 +1843.0,76.2488,1466.4632,100,1246.0198430926125,1246.0198430926125,480.77645768671823,480.77645768671823,28069.856,6.0,956.0,1,2,3,4,5,6 +1843.5,75.87065000000001,1463.57315,100,1174.1451628264683,1174.1451628264683,478.39208419527665,478.39208419527665,26689.786099999998,6.0,911.3262500000001,1,2,3,4,5,6 +1844.0,75.4925,1460.6831,100,1101.550426651654,1101.550426651654,476.0077107038351,476.0077107038351,25309.7162,6.0,866.6525,1,2,3,4,5,6 +1844.5,74.827,1535.4221,100,496.99758600505163,496.99758600505163,471.81149079492474,471.81149079492474,15014.47365,3.0,494.77320000000003,1,2,3,4,5,6 +1845.0,74.1615,1610.1611,100,-118.40535652596026,-118.40535652596026,467.6152708860146,467.6152708860146,4719.2311,0.0,122.8939,1,2,3,4,5,6 +1845.5,73.29285,1737.90575,100,-33.57059512626402,-33.57059512626402,462.1381162295536,462.1381162295536,6385.235549999999,0.0,154.3927,1,2,3,4,5,6 +1846.0,72.4242,1865.6504,100,53.29916881373906,53.29916881373906,456.66096157309255,456.66096157309255,8051.24,0.0,185.8915,1,2,3,4,5,6 +1846.5,71.95765,1884.4193500000001,100,850.462540591584,850.462540591584,453.71919388187985,453.71919388187985,20595.117599999998,2.5,518.40985,1,2,3,4,5,6 +1847.0,71.4911,1903.1883,100,1658.0304682121268,1658.0304682121268,450.7774261906672,450.7774261906672,33138.9952,5.0,850.9282,1,2,3,4,5,6 +1847.5,71.37395000000001,1890.2268,100,1636.664256651061,1636.664256651061,450.03875276868547,450.03875276868547,33237.068400000004,5.0,859.6328,1,2,3,4,5,6 +1848.0,71.2568,1877.2653,100,1615.2277906950635,1615.2277906950635,449.3000793467037,449.3000793467037,33335.1416,5.0,868.3374,1,2,3,4,5,6 +1848.5,71.13755,1874.1453999999999,100,1617.3752515232816,1617.3752515232816,448.5481646597953,448.5481646597953,33318.8968,5.0,869.4168,1,2,3,4,5,6 +1849.0,71.0183,1871.0255,100,1619.5299241463117,1619.5299241463117,447.79624997288687,447.79624997288687,33302.652,5.0,870.4962,1,2,3,4,5,6 +1849.5,70.89625,1867.8172,100,1621.888937271012,1621.888937271012,447.02668026607626,447.02668026607626,33282.847850000006,5.0,871.6030499999999,1,2,3,4,5,6 +1850.0,70.7742,1864.6089,100,1624.2560866247873,1624.2560866247873,446.2571105592655,446.2571105592655,33263.0437,5.0,872.7099,1,2,3,4,5,6 +1850.5,70.6456,1861.2122,100,1626.7071600071345,1626.7071600071345,445.4462407166122,445.4462407166122,33238.601200000005,5.0,873.88175,1,2,3,4,5,6 +1851.0,70.517,1857.8155,100,1629.1671733057283,1629.1671733057283,444.63537087395866,444.63537087395866,33214.1587,5.0,875.0536,1,2,3,4,5,6 +1851.5,70.3862,1854.3553,100,1631.5068812068273,1631.5068812068273,443.81062922995363,443.81062922995363,33189.25895,5.0,876.2474,1,2,3,4,5,6 +1852.0,70.2554,1850.8951,100,1633.8553011441118,1633.8553011441118,442.9858875859483,442.9858875859483,33164.3592,5.0,877.4412,1,2,3,4,5,6 +1852.5,70.13104999999999,1847.6016,100,1635.8859107342612,1635.8859107342612,442.2018155413608,442.2018155413608,33140.659499999994,5.0,878.57745,1,2,3,4,5,6 +1853.0,70.0067,1844.3081,100,1637.9237340997358,1637.9237340997358,441.4177434967734,441.4177434967734,33116.9598,5.0,879.7137,1,2,3,4,5,6 +1853.5,69.898,1841.4319500000001,100,1639.4905254370651,1639.4905254370651,440.73235040271095,440.73235040271095,33096.26315,5.0,880.70595,1,2,3,4,5,6 +1854.0,69.7893,1838.5558,100,1641.062197471532,1641.062197471532,440.0469573086486,440.0469573086486,33075.5665,5.0,881.6982,1,2,3,4,5,6 +1854.5,69.70155,1836.2508,100,1642.227114318118,1642.227114318118,439.4936615956404,439.4936615956404,33058.3251,5.0,882.4934499999999,1,2,3,4,5,6 +1855.0,69.6138,1833.9458,100,1643.3949679804866,1643.3949679804866,438.94036588263236,438.94036588263236,33041.0837,5.0,883.2887,1,2,3,4,5,6 +1855.5,69.5419,1832.08105,100,1644.500886702837,1644.500886702837,438.48701019299955,438.48701019299955,33025.4166,5.0,883.9320499999999,1,2,3,4,5,6 +1856.0,69.47,1830.2163,100,1645.6090946307763,1645.6090946307763,438.03365450336673,438.03365450336673,33009.7495,5.0,884.5754,1,2,3,4,5,6 +1856.5,69.40205,1828.4383,100,1646.8949653216293,1646.8949653216293,437.6052050025247,437.6052050025247,32994.65285,5.0,885.1887999999999,1,2,3,4,5,6 +1857.0,69.3341,1826.6603,100,1648.1833564148085,1648.1833564148085,437.17675550168263,437.17675550168263,32979.5562,5.0,885.8022,1,2,3,4,5,6 +1857.5,69.26605,1824.8351499999999,100,1649.3634501895226,1649.3634501895226,436.7476754644153,436.7476754644153,32964.059349999996,5.0,886.4318499999999,1,2,3,4,5,6 +1858.0,69.198,1823.01,100,1650.5458649960983,1650.5458649960983,436.31859542714795,436.31859542714795,32948.5625,5.0,887.0615,1,2,3,4,5,6 +1858.5,69.14429999999999,1821.5463,100,1650.9873310164396,1650.9873310164396,435.97999736687973,435.97999736687973,32936.13435,5.0,887.5665,1,2,3,4,5,6 +1859.0,69.0906,1820.0826,100,1651.4294832871622,1651.4294832871622,435.6413993066117,435.6413993066117,32923.7062,5.0,888.0715,1,2,3,4,5,6 +1859.5,69.07239999999999,1819.6030999999998,100,1650.8642947689675,1650.8642947689675,435.52664167724697,435.52664167724697,32919.622950000004,5.0,888.2366,1,2,3,4,5,6 +1860.0,69.0542,1819.1236,100,1650.2988083273722,1650.2988083273722,435.4118840478823,435.4118840478823,32915.5397,5.0,888.4017,1,2,3,4,5,6 +1860.5,69.0667,1819.51445,100,1649.7527699890106,1649.7527699890106,435.4907011010175,435.4907011010175,32918.76855,5.0,888.26445,1,2,3,4,5,6 +1861.0,69.0792,1819.9053,100,1649.2069292638014,1649.2069292638014,435.56951815415255,435.56951815415255,32921.9974,5.0,888.1272,1,2,3,4,5,6 +1861.5,69.13315,1821.10015,100,1646.8371895682467,1646.8371895682467,435.90969255548333,435.90969255548333,32931.92205,5.0,887.7091,1,2,3,4,5,6 +1862.0,69.1871,1822.295,100,1644.4711455748254,1644.4711455748254,436.2498669568143,436.2498669568143,32941.8467,5.0,887.291,1,2,3,4,5,6 +1862.5,69.30765,1825.64525,100,1640.96097742457,1640.96097742457,437.00997861724875,437.00997861724875,32969.8925,5.0,886.1245,1,2,3,4,5,6 +1863.0,69.4282,1828.9955,100,1637.4629988678953,1637.4629988678953,437.77009027768327,437.77009027768327,32997.9383,5.0,884.958,1,2,3,4,5,6 +1863.5,69.60050000000001,1833.53915,100,1633.5829859986636,1633.5829859986636,438.85650453809683,438.85650453809683,33034.2001,5.0,883.38725,1,2,3,4,5,6 +1864.0,69.7728,1838.0828,100,1629.7221360759493,1629.7221360759493,439.94291879851033,439.94291879851033,33070.4619,5.0,881.8165,1,2,3,4,5,6 +1864.5,69.98085,1843.5675999999999,100,1625.2332224315649,1625.2332224315649,441.2547498308902,441.2547498308902,33109.873900000006,5.0,879.92275,1,2,3,4,5,6 +1865.0,70.1889,1849.0524,100,1620.7709203592017,1620.7709203592017,442.56658086326996,442.56658086326996,33149.2859,5.0,878.029,1,2,3,4,5,6 +1865.5,70.43039999999999,1855.4202500000001,100,1615.7200861275812,1615.7200861275812,444.0893263298391,444.0893263298391,33194.8151,5.0,875.83205,1,2,3,4,5,6 +1866.0,70.6719,1861.7881,100,1610.703771315049,1610.703771315049,445.6120717964083,445.6120717964083,33240.3443,5.0,873.6351,1,2,3,4,5,6 +1866.5,70.93764999999999,1868.81845,100,1605.53369492787,1605.53369492787,447.2877223460595,447.2877223460595,33283.267,5.0,871.2115,1,2,3,4,5,6 +1867.0,71.2034,1875.8488,100,1600.4022107371275,1600.4022107371275,448.9633728957108,448.9633728957108,33326.1897,5.0,868.7879,1,2,3,4,5,6 +1867.5,71.5052,1883.75635,100,1593.7639862835151,1593.7639862835151,450.86633182660347,450.86633182660347,33367.509600000005,5.0,866.06095,1,2,3,4,5,6 +1868.0,71.807,1891.6639,100,1587.1815618533012,1587.1815618533012,452.7692907574962,452.7692907574962,33408.8295,5.0,863.334,1,2,3,4,5,6 +1868.5,72.15055000000001,1900.75225,100,1580.3480959050207,1580.3480959050207,454.93549864586,454.93549864586,33456.36555,5.0,860.201,1,2,3,4,5,6 +1869.0,72.4941,1909.8406,100,1573.5793976337384,1573.5793976337384,457.10170653422375,457.10170653422375,33503.9016,5.0,857.068,1,2,3,4,5,6 +1869.5,72.85935,1919.4654500000001,100,1566.5888138859323,1566.5888138859323,459.40474082683,459.40474082683,33554.29545,5.0,853.7513,1,2,3,4,5,6 +1870.0,73.2246,1929.0903,100,1559.6679692890093,1559.6679692890093,461.70777511943623,461.70777511943623,33604.6893,5.0,850.4346,1,2,3,4,5,6 +1870.5,73.60665,1939.151,100,1552.3101059075505,1552.3101059075505,464.11673953145595,464.11673953145595,33657.347299999994,5.0,846.9673,1,2,3,4,5,6 +1871.0,73.9887,1949.2117,100,1545.0282290403804,1545.0282290403804,466.52570394347566,466.52570394347566,33710.0053,5.0,843.5,1,2,3,4,5,6 +1871.5,74.38704999999999,1959.7305000000001,100,1537.4403990613955,1537.4403990613955,469.0374457927835,469.0374457927835,33765.03745,5.0,839.8742500000001,1,2,3,4,5,6 +1872.0,74.7854,1970.2493,100,1529.9334033648277,1529.9334033648277,471.5491876420914,471.5491876420914,33820.0696,5.0,836.2485,1,2,3,4,5,6 +1872.5,75.1895,1980.91365,100,1522.5930638586503,1522.5930638586503,474.09718533584135,474.09718533584135,33876.01195,5.0,832.5762,1,2,3,4,5,6 +1873.0,75.5936,1991.578,100,1515.3312027208656,1515.3312027208656,476.64518302959124,476.64518302959124,33931.9543,5.0,828.9039,1,2,3,4,5,6 +1873.5,75.99645,2002.17255,100,1508.1135532120252,1508.1135532120252,479.1852990180278,479.1852990180278,33990.5274,5.0,825.34095,1,2,3,4,5,6 +1874.0,76.3993,2012.7671,100,1500.9720203719148,1500.9720203719148,481.7254150064642,481.7254150064642,34049.1005,5.0,821.778,1,2,3,4,5,6 +1874.5,76.81115,2023.5677500000002,100,1493.3772546694067,1493.3772546694067,484.3222792731579,484.3222792731579,34110.471300000005,5.0,818.2139500000001,1,2,3,4,5,6 +1875.0,77.223,2034.3684,100,1485.8634986208772,1485.8634986208772,486.9191435398516,486.9191435398516,34171.8421,5.0,814.6499,1,2,3,4,5,6 +1875.5,77.66884999999999,2046.0617000000002,100,1477.0141056292196,1477.0141056292196,489.7303901910727,489.7303901910727,34238.202300000004,5.0,810.7912,1,2,3,4,5,6 +1876.0,78.1147,2057.755,100,1468.2657308035493,1468.2657308035493,492.54163684229377,492.54163684229377,34304.5625,5.0,806.9325,1,2,3,4,5,6 +1876.5,78.6229,2071.1220000000003,100,1457.8154472806268,1457.8154472806268,495.7460229545524,495.7460229545524,34380.41765,5.0,802.52145,1,2,3,4,5,6 +1877.0,79.1311,2084.489,100,1447.4993925018102,1447.4993925018102,498.9504090668112,498.9504090668112,34456.2728,5.0,798.1104,1,2,3,4,5,6 +1877.5,79.71415,2099.8770999999997,100,1435.7101986159296,1435.7101986159296,502.6267516932425,502.6267516932425,34543.606100000005,5.0,793.03255,1,2,3,4,5,6 +1878.0,80.2972,2115.2652,100,1424.0922109363712,1424.0922109363712,506.30309431967396,506.30309431967396,34630.9394,5.0,787.9547,1,2,3,4,5,6 +1878.5,80.9396,2132.26295,100,1411.8693820330222,1411.8693820330222,510.3536603143904,510.3536603143904,34727.42315,5.0,782.3461500000001,1,2,3,4,5,6 +1879.0,81.582,2149.2607,100,1399.8390452305655,1399.8390452305655,514.4042263091071,514.4042263091071,34823.9069,5.0,776.7376,1,2,3,4,5,6 +1879.5,82.24465000000001,2166.79495,100,1388.0252547247753,1388.0252547247753,518.5824759299026,518.5824759299026,34933.80135,5.0,770.8693499999999,1,2,3,4,5,6 +1880.0,82.9073,2184.3292,100,1376.400311480412,1376.400311480412,522.760725550698,522.760725550698,35043.6958,5.0,765.0011,1,2,3,4,5,6 +1880.5,83.34955,2164.0406000000003,100,895.38169249864,895.38169249864,525.549272890616,525.549272890616,23955.36505,2.5,491.14734999999996,1,2,3,4,5,6 +1881.0,83.7918,2143.752,100,419.44067023264813,419.44067023264813,528.3378202305341,528.3378202305341,12867.0343,0.0,217.2936,1,2,3,4,5,6 +1881.5,83.87795,2014.7083,100,151.65460864267664,151.65460864267664,528.881027360741,528.881027360741,6434.846399999999,0.0,66.33345,1,2,3,4,5,6 +1882.0,83.9641,1885.6646,100,-115.58193787583028,-115.58193787583028,529.4242344909477,529.4242344909477,2.6585,0.0,-84.6267,1,2,3,4,5,6 +1882.5,84.04235,1773.97135,100,239.77948417672755,239.77948417672755,529.9176292435732,529.9176292435732,8036.454699999999,3.0,186.96325,1,2,3,4,5,6 +1883.0,84.1206,1662.2781,100,594.4797832397772,594.4797832397772,530.4110239961985,530.4110239961985,16070.2509,6.0,458.5532,1,2,3,4,5,6 +1883.5,84.3924,1645.6367500000001,100,772.1857482190339,772.1857482190339,532.1248219995671,532.1248219995671,20510.63195,6.0,607.9781,1,2,3,4,5,6 +1884.0,84.6642,1628.9954,100,948.7507237061238,948.7507237061238,533.8386200029357,533.8386200029357,24951.013,6.0,757.403,1,2,3,4,5,6 +1884.5,84.8321,1631.8662,100,553.6999656497952,553.6999656497952,534.8972906606458,534.8972906606458,16152.6989,6.0,480.62685,1,2,3,4,5,6 +1885.0,85.0,1634.737,100,160.20989047058822,160.20989047058822,535.9559613183559,535.9559613183559,7354.3848,6.0,203.8507,1,2,3,4,5,6 +1885.5,85.0,1634.737,100,158.55248530588233,158.55248530588233,535.9559613183559,535.9559613183559,7318.4127,6.0,202.7428,1,2,3,4,5,6 +1886.0,85.0,1634.737,100,156.89508014117644,156.89508014117644,535.9559613183559,535.9559613183559,7282.4406,6.0,201.6349,1,2,3,4,5,6 +1886.5,85.0,1634.737,100,180.24047195294116,180.24047195294116,535.9559613183559,535.9559613183559,7798.30255,6.0,217.5231,1,2,3,4,5,6 +1887.0,85.0,1634.737,100,203.58586376470586,203.58586376470586,535.9559613183559,535.9559613183559,8314.1645,6.0,233.4113,1,2,3,4,5,6 +1887.5,85.0,1634.737,100,249.51679909411763,249.51679909411763,535.9559613183559,535.9559613183559,9319.6813,6.0,265.3307,1,2,3,4,5,6 +1888.0,85.0,1634.737,100,295.44773442352937,295.44773442352937,535.9559613183559,535.9559613183559,10325.1981,6.0,297.2501,1,2,3,4,5,6 +1888.5,85.0,1634.737,100,337.4078496352941,337.4078496352941,535.9559613183559,535.9559613183559,11265.6309,6.0,326.47024999999996,1,2,3,4,5,6 +1889.0,85.0,1634.737,100,379.36796484705883,379.36796484705883,535.9559613183559,535.9559613183559,12206.0637,6.0,355.6904,1,2,3,4,5,6 +1889.5,85.0,1634.737,100,409.17763789411754,409.17763789411754,535.9559613183559,535.9559613183559,12867.45365,6.0,376.4488,1,2,3,4,5,6 +1890.0,85.0,1634.737,100,438.9873109411764,438.9873109411764,535.9559613183559,535.9559613183559,13528.8436,6.0,397.2072,1,2,3,4,5,6 +1890.5,85.0,1634.737,100,470.39511652941167,470.39511652941167,535.9559613183559,535.9559613183559,14223.7388,6.0,419.0815,1,2,3,4,5,6 +1891.0,85.0,1634.737,100,501.802922117647,501.802922117647,535.9559613183559,535.9559613183559,14918.634,6.0,440.9558,1,2,3,4,5,6 +1891.5,85.0,1634.737,100,539.283274835294,539.283274835294,535.9559613183559,535.9559613183559,15763.48155,6.0,467.0756,1,2,3,4,5,6 +1892.0,85.0,1634.737,100,576.7636275529411,576.7636275529411,535.9559613183559,535.9559613183559,16608.3291,6.0,493.1954,1,2,3,4,5,6 +1892.5,85.0,1634.737,100,605.1739318941176,605.1739318941176,535.9559613183559,535.9559613183559,17255.03,6.0,512.99645,1,2,3,4,5,6 +1893.0,85.0,1634.737,100,633.584236235294,633.584236235294,535.9559613183559,535.9559613183559,17901.7309,6.0,532.7975,1,2,3,4,5,6 +1893.5,85.0,1634.737,100,634.3476498,634.3476498,535.9559613183559,535.9559613183559,17919.114849999998,6.0,533.3294000000001,1,2,3,4,5,6 +1894.0,85.0,1634.737,100,635.1110633647058,635.1110633647058,535.9559613183559,535.9559613183559,17936.4988,6.0,533.8613,1,2,3,4,5,6 +1894.5,85.0,1634.737,100,617.9251221529412,617.9251221529412,535.9559613183559,535.9559613183559,17545.01585,6.0,521.8833,1,2,3,4,5,6 +1895.0,85.0,1634.737,100,600.7391809411764,600.7391809411764,535.9559613183559,535.9559613183559,17153.5329,6.0,509.9053,1,2,3,4,5,6 +1895.5,85.0,1634.737,100,590.1440880705882,590.1440880705882,535.9559613183559,535.9559613183559,16912.19105,6.0,502.52115000000003,1,2,3,4,5,6 +1896.0,85.0,1634.737,100,579.5489951999999,579.5489951999999,535.9559613183559,535.9559613183559,16670.8492,6.0,495.137,1,2,3,4,5,6 +1896.5,85.0,1634.737,100,587.2343816117645,587.2343816117645,535.9559613183559,535.9559613183559,16845.91115,6.0,500.49325,1,2,3,4,5,6 +1897.0,85.0,1634.737,100,594.9197680235293,594.9197680235293,535.9559613183559,535.9559613183559,17020.9731,6.0,505.8495,1,2,3,4,5,6 +1897.5,85.0,1634.737,100,609.0422504823529,609.0422504823529,535.9559613183559,535.9559613183559,17342.67635,6.0,515.69245,1,2,3,4,5,6 +1898.0,85.0,1634.737,100,623.1647329411763,623.1647329411763,535.9559613183559,535.9559613183559,17664.3796,6.0,525.5354,1,2,3,4,5,6 +1898.5,85.0,1634.737,100,611.974239882353,611.974239882353,535.9559613183559,535.9559613183559,17409.46975,6.0,517.7361,1,2,3,4,5,6 +1899.0,85.0,1634.737,100,600.7837468235293,600.7837468235293,535.9559613183559,535.9559613183559,17154.5599,6.0,509.9368,1,2,3,4,5,6 +1899.5,85.0,1634.737,100,566.066033152941,566.066033152941,535.9559613183559,535.9559613183559,16367.955399999999,6.0,485.7395,1,2,3,4,5,6 +1900.0,85.0,1634.737,100,531.3483194823528,531.3483194823528,535.9559613183559,535.9559613183559,15581.3509,6.0,461.5422,1,2,3,4,5,6 +1900.5,85.0,1634.737,100,505.6779255882352,505.6779255882352,535.9559613183559,535.9559613183559,15005.71925,6.0,443.65840000000003,1,2,3,4,5,6 +1901.0,85.0,1634.737,100,480.00753169411763,480.00753169411763,535.9559613183559,535.9559613183559,14430.0876,6.0,425.7746,1,2,3,4,5,6 +1901.5,85.0,1634.737,100,472.8275223882353,472.8275223882353,535.9559613183559,535.9559613183559,14269.14645,6.0,420.77345,1,2,3,4,5,6 +1902.0,85.0,1634.737,100,465.64751308235293,465.64751308235293,535.9559613183559,535.9559613183559,14108.2053,6.0,415.7723,1,2,3,4,5,6 +1902.5,85.0,1634.737,100,487.7169836823528,487.7169836823528,535.9559613183559,535.9559613183559,14602.8903,6.0,431.1443,1,2,3,4,5,6 +1903.0,85.0,1634.737,100,509.78645428235285,509.78645428235285,535.9559613183559,535.9559613183559,15097.5753,6.0,446.5163,1,2,3,4,5,6 +1903.5,85.0,1634.737,100,540.8626897058823,540.8626897058823,535.9559613183559,535.9559613183559,15799.69125,6.0,468.17445,1,2,3,4,5,6 +1904.0,85.0,1634.737,100,571.9389251294117,571.9389251294117,535.9559613183559,535.9559613183559,16501.8072,6.0,489.8326,1,2,3,4,5,6 +1904.5,85.0,1634.737,100,612.4305945176469,612.4305945176469,535.9559613183559,535.9559613183559,17422.0189,6.0,518.0539,1,2,3,4,5,6 +1905.0,85.0,1634.737,100,652.9222639058823,652.9222639058823,535.9559613183559,535.9559613183559,18342.2306,6.0,546.2752,1,2,3,4,5,6 +1905.5,85.0,1634.737,100,667.5510147882352,667.5510147882352,535.9559613183559,535.9559613183559,18664.5088,6.0,556.4711500000001,1,2,3,4,5,6 +1906.0,85.0,1634.737,100,682.1797656705882,682.1797656705882,535.9559613183559,535.9559613183559,18986.787,6.0,566.6671,1,2,3,4,5,6 +1906.5,85.0,1634.737,100,686.9425215176469,686.9425215176469,535.9559613183559,535.9559613183559,19088.70595,6.0,569.98635,1,2,3,4,5,6 +1907.0,85.0,1634.737,100,691.7052773647058,691.7052773647058,535.9559613183559,535.9559613183559,19190.6249,6.0,573.3056,1,2,3,4,5,6 +1907.5,85.0,1634.737,100,681.1124127882351,681.1124127882351,535.9559613183559,535.9559613183559,18965.3007,6.0,565.92295,1,2,3,4,5,6 +1908.0,85.0,1634.737,100,670.5195482117647,670.5195482117647,535.9559613183559,535.9559613183559,18739.9765,6.0,558.5403,1,2,3,4,5,6 +1908.5,85.0,1634.737,100,661.6148392588234,661.6148392588234,535.9559613183559,535.9559613183559,18538.69265,6.0,552.3340000000001,1,2,3,4,5,6 +1909.0,85.0,1634.737,100,652.7101303058822,652.7101303058822,535.9559613183559,535.9559613183559,18337.4088,6.0,546.1277,1,2,3,4,5,6 +1909.5,85.0,1634.737,100,633.3734396117646,633.3734396117646,535.9559613183559,535.9559613183559,17896.932050000003,6.0,532.6507,1,2,3,4,5,6 +1910.0,85.0,1634.737,100,614.0367489176471,614.0367489176471,535.9559613183559,535.9559613183559,17456.4553,6.0,519.1737,1,2,3,4,5,6 +1910.5,85.0,1634.737,100,580.7825788235293,580.7825788235293,535.9559613183559,535.9559613183559,16701.138,6.0,495.99670000000003,1,2,3,4,5,6 +1911.0,85.0,1634.737,100,547.5284087294117,547.5284087294117,535.9559613183559,535.9559613183559,15945.8207,6.0,472.8197,1,2,3,4,5,6 +1911.5,85.0,1634.737,100,525.3221208705882,525.3221208705882,535.9559613183559,535.9559613183559,15446.942200000001,6.0,457.345,1,2,3,4,5,6 +1912.0,85.0,1634.737,100,503.11583301176466,503.11583301176466,535.9559613183559,535.9559613183559,14948.0637,6.0,441.8703,1,2,3,4,5,6 +1912.5,85.0,1634.737,100,501.242283317647,501.242283317647,535.9559613183559,535.9559613183559,14906.02085,6.0,440.56385,1,2,3,4,5,6 +1913.0,85.0,1634.737,100,499.36873362352935,499.36873362352935,535.9559613183559,535.9559613183559,14863.978,6.0,439.2574,1,2,3,4,5,6 +1913.5,85.0,1634.737,100,526.3734300352941,526.3734300352941,535.9559613183559,535.9559613183559,15470.669750000001,6.0,458.07705,1,2,3,4,5,6 +1914.0,85.0,1634.737,100,553.3781264470588,553.3781264470588,535.9559613183559,535.9559613183559,16077.3615,6.0,476.8967,1,2,3,4,5,6 +1914.5,85.0,1634.737,100,561.0011206235293,561.0011206235293,535.9559613183559,535.9559613183559,16249.795399999999,6.0,482.20965,1,2,3,4,5,6 +1915.0,85.0,1634.737,100,568.6241147999999,568.6241147999999,535.9559613183559,535.9559613183559,16422.2293,6.0,487.5226,1,2,3,4,5,6 +1915.5,85.0,1634.737,100,544.4248406823529,544.4248406823529,535.9559613183559,535.9559613183559,15876.990999999998,6.0,470.65790000000004,1,2,3,4,5,6 +1916.0,85.0,1634.737,100,520.2255665647058,520.2255665647058,535.9559613183559,535.9559613183559,15331.7527,6.0,453.7932,1,2,3,4,5,6 +1916.5,85.0,1634.737,100,474.0071812941176,474.0071812941176,535.9559613183559,535.9559613183559,14309.79375,6.0,421.6011,1,2,3,4,5,6 +1917.0,85.0,1634.737,100,427.78879602352936,427.78879602352936,535.9559613183559,535.9559613183559,13287.8348,6.0,389.409,1,2,3,4,5,6 +1917.5,85.0,1634.737,100,376.1721454235293,376.1721454235293,535.9559613183559,535.9559613183559,12125.92265,6.0,353.46439999999996,1,2,3,4,5,6 +1918.0,85.0,1634.737,100,324.5554948235294,324.5554948235294,535.9559613183559,535.9559613183559,10964.0105,6.0,317.5198,1,2,3,4,5,6 +1918.5,85.0,1634.737,100,283.1729534470588,283.1729534470588,535.9559613183559,535.9559613183559,10066.398949999999,6.0,288.7019,1,2,3,4,5,6 +1919.0,85.0,1634.737,100,241.79041207058822,241.79041207058822,535.9559613183559,535.9559613183559,9168.7874,6.0,259.884,1,2,3,4,5,6 +1919.5,85.0,1634.737,100,222.8436728470588,222.8436728470588,535.9559613183559,535.9559613183559,8742.84155,6.0,246.68970000000002,1,2,3,4,5,6 +1920.0,85.0,1634.737,100,203.89693362352938,203.89693362352938,535.9559613183559,535.9559613183559,8316.8957,6.0,233.4954,1,2,3,4,5,6 +1920.5,85.0,1634.737,100,210.02919903529408,210.02919903529408,535.9559613183559,535.9559613183559,8455.55065,6.0,237.7659,1,2,3,4,5,6 +1921.0,85.0,1634.737,100,216.16146444705876,216.16146444705876,535.9559613183559,535.9559613183559,8594.2056,6.0,242.0364,1,2,3,4,5,6 +1921.5,85.0,1634.737,100,230.0985528352941,230.0985528352941,535.9559613183559,535.9559613183559,8909.3208,6.0,251.74174999999997,1,2,3,4,5,6 +1922.0,85.0,1634.737,100,244.03564122352938,244.03564122352938,535.9559613183559,535.9559613183559,9224.436,6.0,261.4471,1,2,3,4,5,6 +1922.5,85.0,1634.737,100,251.3217173294117,251.3217173294117,535.9559613183559,535.9559613183559,9388.3489,6.0,266.52099999999996,1,2,3,4,5,6 +1923.0,85.0,1634.737,100,258.60779343529407,258.60779343529407,535.9559613183559,535.9559613183559,9552.2618,6.0,271.5949,1,2,3,4,5,6 +1923.5,85.0,1634.737,100,267.3320105647058,267.3320105647058,535.9559613183559,535.9559613183559,9731.5968,6.0,277.67055,1,2,3,4,5,6 +1924.0,85.0,1634.737,100,276.0562276941176,276.0562276941176,535.9559613183559,535.9559613183559,9910.9318,6.0,283.7462,1,2,3,4,5,6 +1924.5,85.0,1634.737,100,279.41649522352935,279.41649522352935,535.9559613183559,535.9559613183559,9976.3248,6.0,286.08625,1,2,3,4,5,6 +1925.0,85.0,1634.737,100,282.7767627529411,282.7767627529411,535.9559613183559,535.9559613183559,10041.7178,6.0,288.4263,1,2,3,4,5,6 +1925.5,85.0,1634.737,100,273.971435717647,273.971435717647,535.9559613183559,535.9559613183559,9867.837,6.0,282.29425000000003,1,2,3,4,5,6 +1926.0,85.0,1634.737,100,265.1661086823529,265.1661086823529,535.9559613183559,535.9559613183559,9693.9562,6.0,276.1622,1,2,3,4,5,6 +1926.5,85.0,1634.737,100,267.7117118823529,267.7117118823529,535.9559613183559,535.9559613183559,9742.9451,6.0,277.93510000000003,1,2,3,4,5,6 +1927.0,85.0,1634.737,100,270.25731508235293,270.25731508235293,535.9559613183559,535.9559613183559,9791.934,6.0,279.708,1,2,3,4,5,6 +1927.5,85.0,1634.737,100,296.09037444705876,296.09037444705876,535.9559613183559,535.9559613183559,10342.7866,6.0,297.69745,1,2,3,4,5,6 +1928.0,85.0,1634.737,100,321.92343381176465,321.92343381176465,535.9559613183559,535.9559613183559,10893.6392,6.0,315.6869,1,2,3,4,5,6 +1928.5,85.0,1634.737,100,361.91373702352934,361.91373702352934,535.9559613183559,535.9559613183559,11803.5119,6.0,343.53515,1,2,3,4,5,6 +1929.0,85.0,1634.737,100,401.9040402352941,401.9040402352941,535.9559613183559,535.9559613183559,12713.3846,6.0,371.3834,1,2,3,4,5,6 +1929.5,85.0,1634.737,100,433.0252871999999,433.0252871999999,535.9559613183559,535.9559613183559,13393.9774,6.0,393.05525,1,2,3,4,5,6 +1930.0,85.0,1634.737,100,464.14653416470577,464.14653416470577,535.9559613183559,535.9559613183559,14074.5702,6.0,414.7271,1,2,3,4,5,6 +1930.5,85.0,1634.737,100,468.0059395764705,468.0059395764705,535.9559613183559,535.9559613183559,14161.04975,6.0,417.4144,1,2,3,4,5,6 +1931.0,85.0,1634.737,100,471.86534498823517,471.86534498823517,535.9559613183559,535.9559613183559,14247.5293,6.0,420.1017,1,2,3,4,5,6 +1931.5,85.0,1634.737,100,462.53815147058816,462.53815147058816,535.9559613183559,535.9559613183559,14038.51425,6.0,413.6067,1,2,3,4,5,6 +1932.0,85.0,1634.737,100,453.21095795294104,453.21095795294104,535.9559613183559,535.9559613183559,13829.4992,6.0,407.1117,1,2,3,4,5,6 +1932.5,85.0,1634.737,100,459.96981967058815,459.96981967058815,535.9559613183559,535.9559613183559,13980.9637,6.0,411.81835,1,2,3,4,5,6 +1933.0,85.0,1634.737,100,466.72868138823526,466.72868138823526,535.9559613183559,535.9559613183559,14132.4282,6.0,416.525,1,2,3,4,5,6 +1933.5,85.0,1634.737,100,490.23540169411757,490.23540169411757,535.9559613183559,535.9559613183559,14659.353350000001,6.0,432.8988,1,2,3,4,5,6 +1934.0,85.0,1634.737,100,513.7421219999999,513.7421219999999,535.9559613183559,535.9559613183559,15186.2785,6.0,449.2726,1,2,3,4,5,6 +1934.5,85.0,1634.737,100,523.7030423647059,523.7030423647059,535.9559613183559,535.9559613183559,15409.6771,6.0,456.21455000000003,1,2,3,4,5,6 +1935.0,85.0,1634.737,100,533.6639627294118,533.6639627294118,535.9559613183559,535.9559613183559,15633.0757,6.0,463.1565,1,2,3,4,5,6 +1935.5,85.0,1634.737,100,523.1103161294117,523.1103161294117,535.9559613183559,535.9559613183559,15396.37195,6.0,455.80115,1,2,3,4,5,6 +1936.0,85.0,1634.737,100,512.5566695294117,512.5566695294117,535.9559613183559,535.9559613183559,15159.6682,6.0,448.4458,1,2,3,4,5,6 +1936.5,85.0,1634.737,100,504.8481088588234,504.8481088588234,535.9559613183559,535.9559613183559,14986.803899999999,6.0,443.07415000000003,1,2,3,4,5,6 +1937.0,85.0,1634.737,100,497.13954818823515,497.13954818823515,535.9559613183559,535.9559613183559,14813.9396,6.0,437.7025,1,2,3,4,5,6 +1937.5,85.0,1634.737,100,513.6587837999998,513.6587837999998,535.9559613183559,535.9559613183559,15184.8459,6.0,449.21465,1,2,3,4,5,6 +1938.0,85.0,1634.737,100,530.1780194117646,530.1780194117646,535.9559613183559,535.9559613183559,15555.7522,6.0,460.7268,1,2,3,4,5,6 +1938.5,84.8809,1633.1,100,285.7606480492078,285.7606480492078,535.2049924360849,535.2049924360849,10769.9741,6.0,294.56635,1,2,3,4,5,6 +1939.0,84.7618,1631.463,100,40.65640809893137,40.65640809893137,534.4540235538142,534.4540235538142,5984.196,6.0,128.4059,1,2,3,4,5,6 +1939.5,84.45044999999999,1624.83005,100,-110.04629783500266,-110.04629783500266,532.4908483943262,532.4908483943262,2992.09795,6.0,25.794399999999996,1,2,3,4,5,6 +1940.0,84.1391,1618.1971,100,-261.86433035295124,-261.86433035295124,530.5276732348385,530.5276732348385,-0.0001,6.0,-76.8171,1,2,3,4,5,6 +1940.5,83.7578,1610.83825,100,-261.5716477151978,-261.5716477151978,528.1234378460069,528.1234378460069,-0.0001,6.0,-76.52595,1,2,3,4,5,6 +1941.0,83.3765,1603.4794,100,-261.27628806678143,-261.27628806678143,525.7192024571751,525.7192024571751,-0.0001,6.0,-76.2348,1,2,3,4,5,6 +1941.5,83.01095,1596.42895,100,-261.21345259872345,-261.21345259872345,523.4142765552937,523.4142765552937,-5e-05,6.0,-75.95590000000001,1,2,3,4,5,6 +1942.0,82.6454,1589.3785,100,-261.15006127382776,-261.15006127382776,521.1093506534122,521.1093506534122,0.0,6.0,-75.677,1,2,3,4,5,6 +1942.5,82.31129999999999,1582.94435,100,-261.260178007151,-261.260178007151,519.0027284572185,519.0027284572185,0.0,6.0,-75.42245,1,2,3,4,5,6 +1943.0,81.9772,1576.5102,100,-261.3711923071293,-261.3711923071293,516.8961062610249,516.8961062610249,0.0,6.0,-75.1679,1,2,3,4,5,6 +1943.5,81.67994999999999,1570.80395,100,-261.5038150855871,-261.5038150855871,515.0218367374733,515.0218367374733,-5e-05,6.0,-74.94215,1,2,3,4,5,6 +1944.0,81.3827,1565.0977,100,-261.6374066724255,-261.6374066724255,513.1475672139218,513.1475672139218,-0.0001,6.0,-74.7164,1,2,3,4,5,6 +1944.5,81.11775,1560.0059999999999,100,-261.71444241241903,-261.71444241241903,511.47696095567125,511.47696095567125,-0.0001,6.0,-74.51495,1,2,3,4,5,6 +1945.0,80.8528,1554.9143,100,-261.791983035838,-261.791983035838,509.8063546974207,509.8063546974207,-0.0001,6.0,-74.3135,1,2,3,4,5,6 +1945.5,80.6165,1550.36455,100,-261.8991402628494,-261.8991402628494,508.3163971249557,508.3163971249557,-5e-05,6.0,-74.13355,1,2,3,4,5,6 +1946.0,80.3802,1545.8148,100,-262.0069275269283,-262.0069275269283,506.8264395524906,506.8264395524906,0.0,6.0,-73.9536,1,2,3,4,5,6 +1946.5,80.1728,1541.8315,100,-262.14418570886886,-262.14418570886886,505.5187070068738,505.5187070068738,5e-05,6.0,-73.79599999999999,1,2,3,4,5,6 +1947.0,79.9654,1537.8482,100,-262.28215588241915,-262.28215588241915,504.210974461257,504.210974461257,0.0001,6.0,-73.6384,1,2,3,4,5,6 +1947.5,79.78375,1534.3614499999999,100,-262.37365682861486,-262.37365682861486,503.06560504509844,503.06560504509844,0.0001,6.0,-73.50045,1,2,3,4,5,6 +1948.0,79.6021,1530.8747,100,-262.465575380549,-262.465575380549,501.9202356289398,501.9202356289398,0.0001,6.0,-73.3625,1,2,3,4,5,6 +1948.5,79.44284999999999,1527.8078,100,-262.57018943806776,-262.57018943806776,500.91610637199926,500.91610637199926,5e-05,6.0,-73.24115,1,2,3,4,5,6 +1949.0,79.2836,1524.7409,100,-262.67522375371453,-262.67522375371453,499.91197711505873,499.91197711505873,0.0,6.0,-73.1198,1,2,3,4,5,6 +1949.5,79.1487,1522.14195,100,-262.85059743242783,-262.85059743242783,499.06138347762527,499.06138347762527,0.0,6.0,-73.017,1,2,3,4,5,6 +1950.0,79.0138,1519.543,100,-263.026569940947,-263.026569940947,498.2107898401918,498.2107898401918,0.0,6.0,-72.9142,1,2,3,4,5,6 +1950.5,78.90605,1517.471,100,-263.24172217466213,-263.24172217466213,497.5313868421676,497.5313868421676,5e-05,6.0,-72.83224999999999,1,2,3,4,5,6 +1951.0,78.7983,1515.399,100,-263.45746281328405,-263.45746281328405,496.85198384414343,496.85198384414343,0.0001,6.0,-72.7503,1,2,3,4,5,6 +1951.5,78.71770000000001,1513.8526499999998,100,-263.681984839496,-263.681984839496,496.3437714855287,496.3437714855287,5e-05,6.0,-72.6891,1,2,3,4,5,6 +1952.0,78.6371,1512.3063,100,-263.9069671185738,-263.9069671185738,495.8355591269139,495.8355591269139,0.0,6.0,-72.6279,1,2,3,4,5,6 +1952.5,78.57905,1511.20595,100,-264.06962844422276,-264.06962844422276,495.4695327321546,495.4695327321546,0.0,6.0,-72.58435,1,2,3,4,5,6 +1953.0,78.521,1510.1056,100,-264.2325302785242,-264.2325302785242,495.1035063373955,495.1035063373955,0.0,6.0,-72.5408,1,2,3,4,5,6 +1953.5,78.48385,1509.3211000000001,100,-243.96715737059284,-243.96715737059284,494.8692620554781,494.8692620554781,307.5836,6.0,-59.19635,1,2,3,4,5,6 +1954.0,78.4467,1508.5366,100,-223.68259031928685,-223.68259031928685,494.6350177735608,494.6350177735608,615.1672,6.0,-45.8519,1,2,3,4,5,6 +1954.5,78.44195,1508.78085,100,-176.38662746145394,-176.38662746145394,494.6050672933695,494.6050672933695,1338.2602500000003,6.0,-14.738599999999998,1,2,3,4,5,6 +1955.0,78.4372,1509.0251,100,-129.0849363057325,-129.0849363057325,494.575116813178,494.575116813178,2061.3533,6.0,16.3747,1,2,3,4,5,6 +1955.5,78.43015,1508.618,100,-196.81177667006887,-196.81177667006887,494.53066399520986,494.53066399520986,1030.67665,6.0,-28.045600000000004,1,2,3,4,5,6 +1956.0,78.4231,1508.2109,100,-264.5507939114878,-264.5507939114878,494.4862111772418,494.4862111772418,0.0,6.0,-72.4659,1,2,3,4,5,6 +1956.5,78.40020000000001,1507.77305,100,-264.6995767102634,-264.6995767102634,494.3418183358985,494.3418183358985,0.0,6.0,-72.44855000000001,1,2,3,4,5,6 +1957.0,78.3773,1507.3352,100,-264.84844645069427,-264.84844645069427,494.1974254945549,494.1974254945549,0.0,6.0,-72.4312,1,2,3,4,5,6 +1957.5,78.3655,1507.1236,100,-264.9207134389496,-264.9207134389496,494.1230221963954,494.1230221963954,0.0,6.0,-72.42285000000001,1,2,3,4,5,6 +1958.0,78.3537,1506.912,100,-264.99300219389767,-264.99300219389767,494.04861889823593,494.04861889823593,0.0,6.0,-72.4145,1,2,3,4,5,6 +1958.5,78.3432,1506.71985,100,-264.93664805624485,-264.93664805624485,493.98241257360246,493.98241257360246,0.0,6.0,-72.40690000000001,1,2,3,4,5,6 +1959.0,78.3327,1506.5277,100,-264.8802788107649,-264.8802788107649,493.916206248969,493.916206248969,0.0,6.0,-72.3993,1,2,3,4,5,6 +1959.5,78.3183,1506.2402000000002,100,-264.8264408701415,-264.8264408701415,493.8254090037574,493.8254090037574,0.0,6.0,-72.38794999999999,1,2,3,4,5,6 +1960.0,78.3039,1505.9527,100,-264.77258312804344,-264.77258312804344,493.7346117585459,493.7346117585459,0.0,6.0,-72.3766,1,2,3,4,5,6 +1960.5,78.2904,1505.68565,100,-264.81920687593885,-264.81920687593885,493.64948934116,493.64948934116,0.0,6.0,-72.366,1,2,3,4,5,6 +1961.0,78.2769,1505.4186,100,-264.86584670573313,-264.86584670573313,493.5643669237742,493.5643669237742,0.0,6.0,-72.3554,1,2,3,4,5,6 +1961.5,78.2706,1505.2934,100,-264.9592780047681,-264.9592780047681,493.52464312899406,493.52464312899406,0.0,6.0,-72.35045,1,2,3,4,5,6 +1962.0,78.2643,1505.1682,100,-265.0527243455828,-265.0527243455828,493.4849193342141,493.4849193342141,0.0,6.0,-72.3455,1,2,3,4,5,6 +1962.5,78.26945,1505.2590500000001,100,-265.2124217047648,-265.2124217047648,493.5173919601057,493.5173919601057,0.0,6.0,-72.34909999999999,1,2,3,4,5,6 +1963.0,78.2746,1505.3499,100,-265.3720980496866,-265.3720980496866,493.54986458599734,493.54986458599734,0.0,6.0,-72.3527,1,2,3,4,5,6 +1963.5,78.2962,1505.76515,100,-265.60127376552117,-265.60127376552117,493.6860604538147,493.6860604538147,0.0,6.0,-72.36914999999999,1,2,3,4,5,6 +1964.0,78.3178,1506.1804,100,-265.83032306831905,-265.83032306831905,493.8222563216321,493.8222563216321,0.0,6.0,-72.3856,1,2,3,4,5,6 +1964.5,78.35650000000001,1506.9313,100,-266.0374413864835,-266.0374413864835,494.0662739181382,494.0662739181382,0.0,6.0,-72.4153,1,2,3,4,5,6 +1965.0,78.3952,1507.6822,100,-266.2443552156255,-266.2443552156255,494.31029151464435,494.31029151464435,0.0,6.0,-72.445,1,2,3,4,5,6 +1965.5,78.43299999999999,1508.4960999999998,100,-295.44939006540625,-295.44939006540625,494.5486342833246,494.5486342833246,0.0,6.0,-72.4772,1,2,3,4,5,6 +1966.0,78.4708,1509.31,100,-324.62628832635835,-324.62628832635835,494.78697705200517,494.78697705200517,0.0,6.0,-72.5094,1,2,3,4,5,6 +1966.5,78.4854,1509.51885,100,-353.89800598582667,-353.89800598582667,494.87903537006684,494.87903537006684,0.0,6.0,-72.51765,1,2,3,4,5,6 +1967.0,78.5,1509.7277,100,-383.1588353121019,-383.1588353121019,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +1967.5,78.5,1509.7277,100,-363.56494838216565,-363.56494838216565,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +1968.0,78.5,1509.7277,100,-343.9710614522293,-343.9710614522293,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +1968.5,78.4995,1509.72305,100,-316.2041309689871,-316.2041309689871,494.9679410060032,494.9679410060032,0.0,6.0,-72.5257,1,2,3,4,5,6 +1969.0,78.499,1509.7184,100,-288.4368467623792,-288.4368467623792,494.96478832387766,494.96478832387766,0.0,6.0,-72.5255,1,2,3,4,5,6 +1969.5,78.48845,1509.5441,100,-276.6453530678718,-276.6453530678718,494.89826673103175,494.89826673103175,0.0,6.0,-72.51859999999999,1,2,3,4,5,6 +1970.0,78.4779,1509.3698,100,-264.85068904748977,-264.85068904748977,494.8317451381859,494.8317451381859,0.0,6.0,-72.5117,1,2,3,4,5,6 +1970.5,78.4477,1508.76645,100,-264.59531573264735,-264.59531573264735,494.6413231378116,494.6413231378116,0.0,6.0,-72.48785000000001,1,2,3,4,5,6 +1971.0,78.4175,1508.1631,100,-264.3397457200242,-264.3397457200242,494.4509011374373,494.4509011374373,0.0,6.0,-72.464,1,2,3,4,5,6 +1971.5,78.37774999999999,1507.37645,100,-264.3114148339293,-264.3114148339293,494.20026290846766,494.20026290846766,0.0,6.0,-72.43289999999999,1,2,3,4,5,6 +1972.0,78.338,1506.5898,100,-264.2830551967117,-264.2830551967117,493.9496246794983,493.9496246794983,0.0,6.0,-72.4018,1,2,3,4,5,6 +1972.5,78.30365,1505.93325,100,-264.36270726843514,-264.36270726843514,493.73303541748317,493.73303541748317,0.0,6.0,-72.3758,1,2,3,4,5,6 +1973.0,78.2693,1505.2767,100,-264.44242925387096,-264.44242925387096,493.5164461554681,493.5164461554681,0.0,6.0,-72.3498,1,2,3,4,5,6 +1973.5,78.23949999999999,1504.7204,100,-264.41194124451204,-264.41194124451204,493.3285463007941,493.3285463007941,0.0,6.0,-72.3278,1,2,3,4,5,6 +1974.0,78.2097,1504.1641,100,-264.38143000164945,-264.38143000164945,493.14064644612006,493.14064644612006,0.0,6.0,-72.3058,1,2,3,4,5,6 +1974.5,78.1737,1503.4775,100,-264.22067399905603,-264.22067399905603,492.91365333309113,492.91365333309113,0.0,6.0,-72.27865,1,2,3,4,5,6 +1975.0,78.1377,1502.7909,100,-264.0597698678103,-264.0597698678103,492.68666022006215,492.68666022006215,0.0,6.0,-72.2515,1,2,3,4,5,6 +1975.5,78.0909,1501.8814,100,-263.9065944687537,-263.9065944687537,492.39156917312465,492.39156917312465,5e-05,6.0,-72.21549999999999,1,2,3,4,5,6 +1976.0,78.0441,1500.9719,100,-263.75323536308315,-263.75323536308315,492.096478126187,492.096478126187,0.0001,6.0,-72.1795,1,2,3,4,5,6 +1976.5,77.99255,1499.9684,100,-263.70900074430193,-263.70900074430193,491.77143659905795,491.77143659905795,0.0001,6.0,-72.13980000000001,1,2,3,4,5,6 +1977.0,77.941,1498.9649,100,-263.6647076121682,-263.6647076121682,491.44639507192903,491.44639507192903,0.0001,6.0,-72.1001,1,2,3,4,5,6 +1977.5,77.89269999999999,1498.0345499999999,100,-263.69154509986174,-263.69154509986174,491.1418459786152,491.1418459786152,0.00015000000000000001,6.0,-72.0633,1,2,3,4,5,6 +1978.0,77.8444,1497.1042,100,-263.71841589118804,-263.71841589118804,490.8372968853013,490.8372968853013,0.0002,6.0,-72.0265,1,2,3,4,5,6 +1978.5,77.8023,1496.29415,100,-263.7501074646893,-263.7501074646893,490.5718410503425,490.5718410503425,0.0002,6.0,-71.99445,1,2,3,4,5,6 +1979.0,77.7602,1495.4841,100,-263.7818333543381,-263.7818333543381,490.30638521538356,490.30638521538356,0.0002,6.0,-71.9624,1,2,3,4,5,6 +1979.5,77.72735,1494.8371499999998,100,-263.8884422021335,-263.8884422021335,490.09925399974475,490.09925399974475,0.0002,6.0,-71.9368,1,2,3,4,5,6 +1980.0,77.6945,1494.1902,100,-263.99514120047104,-263.99514120047104,489.8921227841059,489.8921227841059,0.0002,6.0,-71.9112,1,2,3,4,5,6 +1980.5,77.68225000000001,1493.9325,100,-264.30253555992516,-264.30253555992516,489.81488207203347,489.81488207203347,0.0002,6.0,-71.901,1,2,3,4,5,6 +1981.0,77.67,1493.6748,100,-264.6100268829664,-264.6100268829664,489.7376413599611,489.7376413599611,0.0002,6.0,-71.8908,1,2,3,4,5,6 +1981.5,77.69275,1494.1082999999999,100,-265.08837861962667,-265.08837861962667,489.88108839666694,489.88108839666694,0.0002,6.0,-71.90795,1,2,3,4,5,6 +1982.0,77.7155,1494.5418,100,-265.56645029627293,-265.56645029627293,490.02453543337276,490.02453543337276,0.0002,6.0,-71.9251,1,2,3,4,5,6 +1982.5,77.7741,1495.6981999999998,100,-265.96641889780784,-265.96641889780784,490.3940297784698,490.3940297784698,0.0002,6.0,-71.97085,1,2,3,4,5,6 +1983.0,77.8327,1496.8546,100,-266.3657852290875,-266.3657852290875,490.7635241235669,490.7635241235669,0.0002,6.0,-72.0166,1,2,3,4,5,6 +1983.5,77.90639999999999,1498.31125,100,-266.4352042065864,-266.4352042065864,491.22822946885117,491.22822946885117,0.00015000000000000001,6.0,-72.07425,1,2,3,4,5,6 +1984.0,77.9801,1499.7679,100,-266.50449196654023,-266.50449196654023,491.6929348141354,491.6929348141354,0.0001,6.0,-72.1319,1,2,3,4,5,6 +1984.5,78.04135,1500.96285,100,-266.28610595536855,-266.28610595536855,492.07913837449723,492.07913837449723,5e-05,6.0,-72.17914999999999,1,2,3,4,5,6 +1985.0,78.1026,1502.1578,100,-266.06806247167185,-266.06806247167185,492.46534193485905,492.46534193485905,0.0,6.0,-72.2264,1,2,3,4,5,6 +1985.5,78.13579999999999,1502.7975999999999,100,-265.74654161088773,-265.74654161088773,492.67468002798563,492.67468002798563,0.0,6.0,-72.2517,1,2,3,4,5,6 +1986.0,78.169,1503.4374,100,-265.4252938632962,-265.4252938632962,492.88401812111243,492.88401812111243,0.0,6.0,-72.277,1,2,3,4,5,6 +1986.5,78.1736,1503.5095999999999,100,-265.13589026218574,-265.13589026218574,492.9130227966661,492.9130227966661,0.0,6.0,-72.2799,1,2,3,4,5,6 +1987.0,78.1782,1503.5818,100,-264.8465207180518,-264.8465207180518,492.9420274722198,492.9420274722198,0.0,6.0,-72.2828,1,2,3,4,5,6 +1987.5,78.166,1503.3225499999999,100,-264.7448938285188,-264.7448938285188,492.86510202835996,492.86510202835996,0.0,6.0,-72.27250000000001,1,2,3,4,5,6 +1988.0,78.1538,1503.0633,100,-264.643235210572,-264.643235210572,492.7881765845002,492.7881765845002,0.0,6.0,-72.2622,1,2,3,4,5,6 +1988.5,78.1404,1502.8028,100,-264.6895874349249,-264.6895874349249,492.70368470353935,492.70368470353935,0.0,6.0,-72.2519,1,2,3,4,5,6 +1989.0,78.127,1502.5423,100,-264.7359555595377,-264.7359555595377,492.6191928225786,492.6191928225786,0.0,6.0,-72.2416,1,2,3,4,5,6 +1989.5,78.11625000000001,1502.34755,100,-264.72922843838506,-264.72922843838506,492.5514101568825,492.5514101568825,0.0,6.0,-72.2339,1,2,3,4,5,6 +1990.0,78.1055,1502.1528,100,-264.7224994654665,-264.7224994654665,492.4836274911864,492.4836274911864,0.0,6.0,-72.2262,1,2,3,4,5,6 +1990.5,78.0887,1501.8454000000002,100,-264.57667913539353,-264.57667913539353,492.37769737177285,492.37769737177285,0.0,6.0,-72.21405,1,2,3,4,5,6 +1991.0,78.0719,1501.538,100,-264.4307960482581,-264.4307960482581,492.2717672523594,492.2717672523594,0.0,6.0,-72.2019,1,2,3,4,5,6 +1991.5,78.03635,1500.8687,100,-264.1182578887916,-264.1182578887916,492.04761155324326,492.04761155324326,5e-05,6.0,-72.1754,1,2,3,4,5,6 +1992.0,78.0008,1500.1994,100,-263.8054348416939,-263.8054348416939,491.82345585412713,491.82345585412713,0.0001,6.0,-72.1489,1,2,3,4,5,6 +1992.5,77.9393,1499.0043,100,-263.45466038314436,-263.45466038314436,491.4356759527027,491.4356759527027,0.00015000000000000001,6.0,-72.10165,1,2,3,4,5,6 +1993.0,77.8778,1497.8092,100,-263.10333191230364,-263.10333191230364,491.04789605127826,491.04789605127826,0.0002,6.0,-72.0544,1,2,3,4,5,6 +1993.5,77.80035,1496.2874499999998,100,-262.966479238204,-262.966479238204,490.5595455900534,490.5595455900534,0.00025,6.0,-71.9942,1,2,3,4,5,6 +1994.0,77.7229,1494.7657,100,-262.829353819788,-262.829353819788,490.0711951288286,490.0711951288286,0.0003,6.0,-71.934,1,2,3,4,5,6 +1994.5,77.65029999999999,1493.35345,100,-262.9316637540358,-262.9316637540358,489.6134256842202,489.6134256842202,0.00025,6.0,-71.87809999999999,1,2,3,4,5,6 +1995.0,77.5777,1491.9412,100,-263.03416517891105,-263.03416517891105,489.15565623961174,489.15565623961174,0.0002,6.0,-71.8222,1,2,3,4,5,6 +1995.5,77.52175,1490.87095,100,-263.190777401181,-263.190777401181,488.80287110977935,488.80287110977935,0.0002,6.0,-71.77985,1,2,3,4,5,6 +1996.0,77.4658,1489.8007,100,-263.347615851124,-263.347615851124,488.4500859799469,488.4500859799469,0.0002,6.0,-71.7375,1,2,3,4,5,6 +1996.5,77.4245,1489.016,100,-263.4381865946826,-263.4381865946826,488.1896744363887,488.1896744363887,0.0002,6.0,-71.7065,1,2,3,4,5,6 +1997.0,77.3832,1488.2313,100,-263.5288540148249,-263.5288540148249,487.9292628928305,487.9292628928305,0.0002,6.0,-71.6755,1,2,3,4,5,6 +1997.5,77.35055,1487.60545,100,-263.57005907521017,-263.57005907521017,487.72339275004174,487.72339275004174,0.00015000000000000001,6.0,-71.6507,1,2,3,4,5,6 +1998.0,77.3179,1486.9796,100,-263.6112989359515,-263.6112989359515,487.51752260725294,487.51752260725294,0.0001,6.0,-71.6259,1,2,3,4,5,6 +1998.5,77.2924,1486.48255,100,-263.6776843260139,-263.6776843260139,487.3567358188575,487.3567358188575,0.0001,6.0,-71.60625,1,2,3,4,5,6 +1999.0,77.2669,1485.9855,100,-263.74411353373824,-263.74411353373824,487.195949030462,487.195949030462,0.0001,6.0,-71.5866,1,2,3,4,5,6 +1999.5,77.2526,1485.70265,100,-263.89149526358983,-263.89149526358983,487.10578232167546,487.10578232167546,0.0001,6.0,-71.5754,1,2,3,4,5,6 +2000.0,77.2383,1485.4198,100,-264.0389315663343,-264.0389315663343,487.0156156128889,487.0156156128889,0.0001,6.0,-71.5642,1,2,3,4,5,6 +2000.5,77.2421,1485.48315,100,-264.2819406774285,-264.2819406774285,487.039575997042,487.039575997042,0.0001,6.0,-71.5667,1,2,3,4,5,6 +2001.0,77.2459,1485.5465,100,-264.52492587956124,-264.52492587956124,487.0635363811952,487.0635363811952,0.0001,6.0,-71.5692,1,2,3,4,5,6 +2001.5,77.27475000000001,1486.09515,100,-264.86784820397344,-264.86784820397344,487.2454461398309,487.2454461398309,0.0001,6.0,-71.59094999999999,1,2,3,4,5,6 +2002.0,77.3036,1486.6438,100,-265.21051456853235,-265.21051456853235,487.4273558984665,487.4273558984665,0.0001,6.0,-71.6127,1,2,3,4,5,6 +2002.5,77.3622,1487.7714,100,-265.60749610274786,-265.60749610274786,487.79685024356354,487.79685024356354,0.00015000000000000001,6.0,-71.65729999999999,1,2,3,4,5,6 +2003.0,77.4208,1488.899,100,-266.0038766843019,-266.0038766843019,488.1663445886607,488.1663445886607,0.0002,6.0,-71.7019,1,2,3,4,5,6 +2003.5,77.51015000000001,1490.6168499999999,100,-266.4234826277591,-266.4234826277591,488.72972888447015,488.72972888447015,0.0002,6.0,-71.76984999999999,1,2,3,4,5,6 +2004.0,77.5995,1492.3347,100,-266.84212228171566,-266.84212228171566,489.29311318027953,489.29311318027953,0.0002,6.0,-71.8378,1,2,3,4,5,6 +2004.5,77.71915000000001,1494.63775,100,-267.28379217991954,-267.28379217991954,490.0475500128882,490.0475500128882,0.00015000000000000001,6.0,-71.9289,1,2,3,4,5,6 +2005.0,77.8388,1496.9408,100,-267.72410425135024,-267.72410425135024,490.8019868454969,490.8019868454969,0.0001,6.0,-72.02,1,2,3,4,5,6 +2005.5,77.98475,1499.7709,100,-268.1080876453409,-268.1080876453409,491.72225475790174,491.72225475790174,5e-05,6.0,-72.132,1,2,3,4,5,6 +2006.0,78.1307,1502.601,100,-268.4906364591639,-268.4906364591639,492.6425226703066,492.6425226703066,0.0,6.0,-72.244,1,2,3,4,5,6 +2006.5,78.26230000000001,1505.3912,100,-368.5694586793386,-368.5694586793386,493.4723086057125,493.4723086057125,0.0,6.0,-72.35435,1,2,3,4,5,6 +2007.0,78.3939,1508.1814,100,-468.31227585309574,-468.31227585309574,494.3020945411182,494.3020945411182,0.0,6.0,-72.4647,1,2,3,4,5,6 +2007.5,78.44695,1508.95455,100,-664.0809554864784,-664.0809554864784,494.63659411462345,494.63659411462345,0.0,6.0,-72.49529999999999,1,2,3,4,5,6 +2008.0,78.5,1509.7277,100,-859.5850356687899,-859.5850356687899,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2008.5,78.5,1509.7277,100,-920.1685774012739,-920.1685774012739,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2009.0,78.5,1509.7277,100,-980.7521191337581,-980.7521191337581,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2009.5,78.5,1509.7277,100,-1007.6056463694268,-1007.6056463694268,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2010.0,78.5,1509.7277,100,-1034.4591736050957,-1034.4591736050957,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2010.5,78.5,1509.7277,100,-1014.4010634649682,-1014.4010634649682,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2011.0,78.5,1509.7277,100,-994.3429533248409,-994.3429533248409,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2011.5,78.5,1509.7277,100,-952.4393289171976,-952.4393289171976,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2012.0,78.5,1509.7277,100,-910.5357045095542,-910.5357045095542,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2012.5,78.5,1509.7277,100,-888.8870749299365,-888.8870749299365,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2013.0,78.5,1509.7277,100,-867.2384453503186,-867.2384453503186,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2013.5,78.5,1509.7277,100,-882.6152359872613,-882.6152359872613,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2014.0,78.5,1509.7277,100,-897.992026624204,-897.992026624204,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2014.5,78.5,1509.7277,100,-929.3710063184715,-929.3710063184715,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2015.0,78.5,1509.7277,100,-960.749986012739,-960.749986012739,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2015.5,78.5,1509.7277,100,-979.2494257070064,-979.2494257070064,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2016.0,78.5,1509.7277,100,-997.7488654012741,-997.7488654012741,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2016.5,78.5,1509.7277,100,-995.2564403694269,-995.2564403694269,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2017.0,78.5,1509.7277,100,-992.7640153375797,-992.7640153375797,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2017.5,78.5,1509.7277,100,-982.1230735414015,-982.1230735414015,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2018.0,78.5,1509.7277,100,-971.4821317452229,-971.4821317452229,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2018.5,78.5,1509.7277,100,-974.9034857579618,-974.9034857579618,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2019.0,78.5,1509.7277,100,-978.3248397707007,-978.3248397707007,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2019.5,78.5,1509.7277,100,-1005.4987871847135,-1005.4987871847135,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2020.0,78.5,1509.7277,100,-1032.6727345987263,-1032.6727345987263,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2020.5,78.5,1509.7277,100,-1064.3972276178345,-1064.3972276178345,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2021.0,78.5,1509.7277,100,-1096.1217206369429,-1096.1217206369429,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2021.5,78.5,1509.7277,100,-1115.3020532101912,-1115.3020532101912,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2022.0,78.5,1509.7277,100,-1134.4823857834397,-1134.4823857834397,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2022.5,78.5,1509.7277,100,-1155.446262,-1155.446262,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2023.0,78.5,1509.7277,100,-1176.4101382165607,-1176.4101382165607,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2023.5,78.5,1509.7277,100,-1218.5989558853503,-1218.5989558853503,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2024.0,78.5,1509.7277,100,-1260.7877735541401,-1260.7877735541401,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2024.5,78.5,1509.7277,100,-1315.355233414013,-1315.355233414013,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2025.0,78.5,1509.7277,100,-1369.9226932738852,-1369.9226932738852,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2025.5,78.5,1509.7277,100,-1414.4287665095544,-1414.4287665095544,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2026.0,78.5,1509.7277,100,-1458.9348397452231,-1458.9348397452231,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2026.5,78.5,1509.7277,100,-1489.8008576178345,-1489.8008576178345,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2027.0,78.5,1509.7277,100,-1520.6668754904458,-1520.6668754904458,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2027.5,78.5,1509.7277,100,-1543.573057757962,-1543.573057757962,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2028.0,78.5,1509.7277,100,-1566.479240025478,-1566.479240025478,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2028.5,78.5,1509.7277,100,-1588.0641716178345,-1588.0641716178345,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2029.0,78.5,1509.7277,100,-1609.6491032101912,-1609.6491032101912,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2029.5,78.5,1509.7277,100,-1621.6875402420385,-1621.6875402420385,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2030.0,78.5,1509.7277,100,-1633.7259772738857,-1633.7259772738857,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2030.5,78.5,1509.7277,100,-1624.4786702292995,-1624.4786702292995,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2031.0,78.5,1509.7277,100,-1615.2313631847135,-1615.2313631847135,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2031.5,78.5,1509.7277,100,-1607.1658468280255,-1607.1658468280255,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2032.0,78.5,1509.7277,100,-1599.1003304713379,-1599.1003304713379,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2032.5,78.5,1509.7277,100,-1601.0489098089174,-1601.0489098089174,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2033.0,78.5,1509.7277,100,-1602.997489146497,-1602.997489146497,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2033.5,78.5,1509.7277,100,-1615.8596569681529,-1615.8596569681529,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2034.0,78.5,1509.7277,100,-1628.721824789809,-1628.721824789809,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2034.5,78.5,1509.7277,100,-1647.946070369427,-1647.946070369427,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2035.0,78.5,1509.7277,100,-1667.1703159490448,-1667.1703159490448,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2035.5,78.5,1509.7277,100,-1683.0682719363056,-1683.0682719363056,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2036.0,78.5,1509.7277,100,-1698.9662279235672,-1698.9662279235672,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2036.5,78.5,1509.7277,100,-1706.3494037197454,-1706.3494037197454,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2037.0,78.5,1509.7277,100,-1713.7325795159238,-1713.7325795159238,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2037.5,78.5,1509.7277,100,-1715.956218343949,-1715.956218343949,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2038.0,78.5,1509.7277,100,-1718.1798571719746,-1718.1798571719746,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2038.5,78.5,1509.7277,100,-1718.8530290828025,-1718.8530290828025,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2039.0,78.5,1509.7277,100,-1719.5262009936307,-1719.5262009936307,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2039.5,78.5,1509.7277,100,-1717.6451801273884,-1717.6451801273884,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2040.0,78.5,1509.7277,100,-1715.7641592611465,-1715.7641592611465,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2040.5,78.5,1509.7277,100,-1707.594892394905,-1707.594892394905,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2041.0,78.5,1509.7277,100,-1699.4256255286627,-1699.4256255286627,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2041.5,78.5,1509.7277,100,-1685.5867552356692,-1685.5867552356692,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2042.0,78.5,1509.7277,100,-1671.7478849426752,-1671.7478849426752,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2042.5,78.5,1509.7277,100,-1663.480658292994,-1663.480658292994,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2043.0,78.5,1509.7277,100,-1655.213431643312,-1655.213431643312,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2043.5,78.5,1509.7277,100,-1656.9525797197452,-1656.9525797197452,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2044.0,78.5,1509.7277,100,-1658.6917277961784,-1658.6917277961784,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2044.5,78.5,1509.7277,100,-1661.3265081783438,-1661.3265081783438,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2045.0,78.5,1509.7277,100,-1663.9612885605097,-1663.9612885605097,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2045.5,78.5,1509.7277,100,-1658.5802563184716,-1658.5802563184716,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2046.0,78.5,1509.7277,100,-1653.1992240764332,-1653.1992240764332,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2046.5,78.5,1509.7277,100,-1629.1479257197452,-1629.1479257197452,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2047.0,78.5,1509.7277,100,-1605.0966273630575,-1605.0966273630575,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2047.5,78.5,1509.7277,100,-1555.9150253503187,-1555.9150253503187,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2048.0,78.5,1509.7277,100,-1506.7334233375796,-1506.7334233375796,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2048.5,78.5,1509.7277,100,-1436.578776458599,-1436.578776458599,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2049.0,78.5,1509.7277,100,-1366.424129579618,-1366.424129579618,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2049.5,78.5,1509.7277,100,-1291.538942025478,-1291.538942025478,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2050.0,78.5,1509.7277,100,-1216.6537544713376,-1216.6537544713376,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2050.5,78.5,1509.7277,100,-1156.3177662802548,-1156.3177662802548,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2051.0,78.5,1509.7277,100,-1095.9817780891722,-1095.9817780891722,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2051.5,78.5,1509.7277,100,-1061.6210570063695,-1061.6210570063695,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2052.0,78.5,1509.7277,100,-1027.260335923567,-1027.260335923567,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2052.5,78.5,1509.7277,100,-1026.426953923567,-1026.426953923567,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2053.0,78.5,1509.7277,100,-1025.593571923567,-1025.593571923567,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2053.5,78.5,1509.7277,100,-1047.2793586624205,-1047.2793586624205,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2054.0,78.5,1509.7277,100,-1068.965145401274,-1068.965145401274,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2054.5,78.5,1509.7277,100,-1086.7503955414013,-1086.7503955414013,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2055.0,78.5,1509.7277,100,-1104.5356456815289,-1104.5356456815289,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2055.5,78.5,1509.7277,100,-1109.453419834395,-1109.453419834395,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2056.0,78.5,1509.7277,100,-1114.3711939872612,-1114.3711939872612,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2056.5,78.5,1509.7277,100,-1110.5917800764332,-1110.5917800764332,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2057.0,78.5,1509.7277,100,-1106.8123661656052,-1106.8123661656052,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2057.5,78.5,1509.7277,100,-1085.5777735031847,-1085.5777735031847,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2058.0,78.5,1509.7277,100,-1064.3431808407645,-1064.3431808407645,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2058.5,78.5,1509.7277,100,-1016.5827195286624,-1016.5827195286624,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2059.0,78.5,1509.7277,100,-968.8222582165606,-968.8222582165606,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2059.5,78.5,1509.7277,100,-906.4011260636943,-906.4011260636943,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2060.0,78.5,1509.7277,100,-843.9799939108281,-843.9799939108281,494.9710936881286,494.9710936881286,0.0,6.0,-72.5259,1,2,3,4,5,6 +2060.5,78.63345000000001,1511.1107499999998,100,-461.2559712946589,-461.2559712946589,495.8125445473985,495.8125445473985,3835.28505,6.0,69.82285,1,2,3,4,5,6 +2061.0,78.7669,1512.4938,100,-79.8288010572969,-79.8288010572969,496.6539954066683,496.6539954066683,7670.5701,6.0,212.1716,1,2,3,4,5,6 +2061.5,79.26005,1523.09465,100,510.1505513811812,510.1505513811812,499.76348578695234,499.76348578695234,17191.01215,6.0,537.93655,1,2,3,4,5,6 +2062.0,79.7532,1533.6955,100,1092.8336870495477,1092.8336870495477,502.87297616723646,502.87297616723646,26711.4542,6.0,863.7015,1,2,3,4,5,6 +2062.5,80.43805,1547.0389,100,1153.4813371159541,1153.4813371159541,507.19120487439966,507.19120487439966,28178.96505,6.0,905.0032,1,2,3,4,5,6 +2063.0,81.1229,1560.3823,100,1213.104996591591,1213.104996591591,511.5094335815629,511.5094335815629,29646.4759,6.0,946.3049,1,2,3,4,5,6 +2063.5,81.7325,1572.1064999999999,100,1219.0630222371763,1219.0630222371763,515.3531836288531,515.3531836288531,29990.78935,6.0,949.7477,1,2,3,4,5,6 +2064.0,82.3421,1583.8307,100,1224.9328302532972,1224.9328302532972,519.1969336761433,519.1969336761433,30335.1028,6.0,953.1905,1,2,3,4,5,6 +2064.5,82.87299999999999,1594.0258,100,1225.6781900015685,1225.6781900015685,522.5444515568953,522.5444515568953,30536.567199999998,6.0,953.08875,1,2,3,4,5,6 +2065.0,83.4039,1604.2209,100,1226.4140607093912,1226.4140607093912,525.8919694376473,525.8919694376473,30738.0316,6.0,952.987,1,2,3,4,5,6 +2065.5,83.86335,1613.05665,100,1218.0703217913426,1218.0703217913426,528.7889690426792,528.7889690426792,30710.24675,6.0,946.68265,1,2,3,4,5,6 +2066.0,84.3228,1621.8924,100,1209.817508004952,1209.817508004952,531.6859686477112,531.6859686477112,30682.4619,6.0,940.3783,1,2,3,4,5,6 +2066.5,84.5986,1627.7116999999998,100,893.9463928008264,893.9463928008264,533.424988108083,533.424988108083,23676.646699999998,6.0,718.8136999999999,1,2,3,4,5,6 +2067.0,84.8744,1633.531,100,580.1281287172575,580.1281287172575,535.1640075684547,535.1640075684547,16670.8315,6.0,497.2491,1,2,3,4,5,6 +2067.5,84.93719999999999,1634.134,100,417.2956709780873,417.2956709780873,535.5599844434053,535.5599844434053,13058.3071,6.0,383.06915000000004,1,2,3,4,5,6 +2068.0,85.0,1634.737,100,254.7038221411764,254.7038221411764,535.9559613183559,535.9559613183559,9445.7827,6.0,268.8892,1,2,3,4,5,6 +2068.5,85.0,1634.737,100,196.3390056352941,196.3390056352941,535.9559613183559,535.9559613183559,8167.48175,6.0,229.0087,1,2,3,4,5,6 +2069.0,85.0,1634.737,100,137.97418912941174,137.97418912941174,535.9559613183559,535.9559613183559,6889.1808,6.0,189.1282,1,2,3,4,5,6 +2069.5,85.0,1634.737,100,94.75865301176468,94.75865301176468,535.9559613183559,535.9559613183559,5992.4881000000005,6.0,160.6489,1,2,3,4,5,6 +2070.0,85.0,1634.737,100,51.54311689411764,51.54311689411764,535.9559613183559,535.9559613183559,5095.7954,6.0,132.1696,1,2,3,4,5,6 +2070.5,85.0,1634.737,100,2.123118635294117,2.123118635294117,535.9559613183559,535.9559613183559,4238.59405,6.0,99.78095,1,2,3,4,5,6 +2071.0,85.0,1634.737,100,-47.2968796235294,-47.2968796235294,535.9559613183559,535.9559613183559,3381.3927,6.0,67.3923,1,2,3,4,5,6 +2071.5,85.0,1634.737,100,-51.82120799999999,-51.82120799999999,535.9559613183559,535.9559613183559,3318.49615,6.0,64.4272,1,2,3,4,5,6 +2072.0,85.0,1634.737,100,-56.345536376470584,-56.345536376470584,535.9559613183559,535.9559613183559,3255.5996,6.0,61.4621,1,2,3,4,5,6 +2072.5,85.0,1634.737,100,-41.78407997647058,-41.78407997647058,535.9559613183559,535.9559613183559,3458.0313,6.0,71.00534999999999,1,2,3,4,5,6 +2073.0,85.0,1634.737,100,-27.222623576470582,-27.222623576470582,535.9559613183559,535.9559613183559,3660.463,6.0,80.5486,1,2,3,4,5,6 +2073.5,85.0,1634.737,100,-21.83906498823529,-21.83906498823529,535.9559613183559,535.9559613183559,3735.30765,6.0,84.077,1,2,3,4,5,6 +2074.0,85.0,1634.737,100,-16.455506399999997,-16.455506399999997,535.9559613183559,535.9559613183559,3810.1523,6.0,87.6054,1,2,3,4,5,6 +2074.5,85.0,1634.737,100,-22.24104924705882,-22.24104924705882,535.9559613183559,535.9559613183559,3729.7202,6.0,83.81354999999999,1,2,3,4,5,6 +2075.0,85.0,1634.737,100,-28.026592094117643,-28.026592094117643,535.9559613183559,535.9559613183559,3649.2881,6.0,80.0217,1,2,3,4,5,6 +2075.5,85.0,1634.737,100,-33.65392605882352,-33.65392605882352,535.9559613183559,535.9559613183559,3571.0584,6.0,76.33375,1,2,3,4,5,6 +2076.0,85.0,1634.737,100,-39.2812600235294,-39.2812600235294,535.9559613183559,535.9559613183559,3492.8287,6.0,72.6458,1,2,3,4,5,6 +2076.5,85.0,1634.737,100,-31.895801999999996,-31.895801999999996,535.9559613183559,535.9559613183559,3595.92405,6.0,77.48605,1,2,3,4,5,6 +2077.0,85.0,1634.737,100,-24.51034397647058,-24.51034397647058,535.9559613183559,535.9559613183559,3699.0194,6.0,82.3263,1,2,3,4,5,6 +2077.5,85.0,1634.737,100,-6.335040176470587,-6.335040176470587,535.9559613183559,535.9559613183559,3989.88505,6.0,94.2379,1,2,3,4,5,6 +2078.0,85.0,1634.737,100,11.840263623529411,11.840263623529411,535.9559613183559,535.9559613183559,4280.7507,6.0,106.1495,1,2,3,4,5,6 +2078.5,85.0,1634.737,100,28.600600658823527,28.600600658823527,535.9559613183559,535.9559613183559,4619.191,6.0,117.13385,1,2,3,4,5,6 +2079.0,85.0,1634.737,100,45.36093769411764,45.36093769411764,535.9559613183559,535.9559613183559,4957.6313,6.0,128.1182,1,2,3,4,5,6 +2079.5,85.0,1634.737,100,61.71706217647058,61.71706217647058,535.9559613183559,535.9559613183559,5295.111800000001,6.0,138.8376,1,2,3,4,5,6 +2080.0,85.0,1634.737,100,78.07318665882352,78.07318665882352,535.9559613183559,535.9559613183559,5632.5923,6.0,149.557,1,2,3,4,5,6 +2080.5,85.0,1634.737,100,99.64218239999997,99.64218239999997,535.9559613183559,535.9559613183559,6078.7098000000005,6.0,163.72095,1,2,3,4,5,6 +2081.0,85.0,1634.737,100,121.21117814117646,121.21117814117646,535.9559613183559,535.9559613183559,6524.8273,6.0,177.8849,1,2,3,4,5,6 +2081.5,85.0,1634.737,100,144.89259670588234,144.89259670588234,535.9559613183559,535.9559613183559,7030.5827,6.0,193.66985,1,2,3,4,5,6 +2082.0,85.0,1634.737,100,168.57401527058823,168.57401527058823,535.9559613183559,535.9559613183559,7536.3381,6.0,209.4548,1,2,3,4,5,6 +2082.5,85.0,1634.737,100,191.7888290470588,191.7888290470588,535.9559613183559,535.9559613183559,8052.17685,6.0,225.34230000000002,1,2,3,4,5,6 +2083.0,85.0,1634.737,100,215.0036428235294,215.0036428235294,535.9559613183559,535.9559613183559,8568.0156,6.0,241.2298,1,2,3,4,5,6 +2083.5,85.0,1634.737,100,252.1969912588235,252.1969912588235,535.9559613183559,535.9559613183559,9382.58885,6.0,267.13075000000003,1,2,3,4,5,6 +2084.0,85.0,1634.737,100,289.3903396941176,289.3903396941176,535.9559613183559,535.9559613183559,10197.1621,6.0,293.0317,1,2,3,4,5,6 +2084.5,85.0,1634.737,100,344.3342790705882,344.3342790705882,535.9559613183559,535.9559613183559,11422.17035,6.0,331.29325,1,2,3,4,5,6 +2085.0,85.0,1634.737,100,399.27821844705875,399.27821844705875,535.9559613183559,535.9559613183559,12647.1786,6.0,369.5548,1,2,3,4,5,6 +2085.5,85.0,1634.737,100,456.8622406941176,456.8622406941176,535.9559613183559,535.9559613183559,13924.92625,6.0,409.66110000000003,1,2,3,4,5,6 +2086.0,85.0,1634.737,100,514.4462629411764,514.4462629411764,535.9559613183559,535.9559613183559,15202.6739,6.0,449.7674,1,2,3,4,5,6 +2086.5,85.0,1634.737,100,564.0200134941175,564.0200134941175,535.9559613183559,535.9559613183559,16324.5117,6.0,484.31595000000004,1,2,3,4,5,6 +2087.0,85.0,1634.737,100,613.5937640470587,613.5937640470587,535.9559613183559,535.9559613183559,17446.3495,6.0,518.8645,1,2,3,4,5,6 +2087.5,85.0,1634.737,100,645.6820906588234,645.6820906588234,535.9559613183559,535.9559613183559,18170.0701,6.0,541.2292500000001,1,2,3,4,5,6 +2088.0,85.0,1634.737,100,677.770417270588,677.770417270588,535.9559613183559,535.9559613183559,18893.7907,6.0,563.594,1,2,3,4,5,6 +2088.5,85.0,1634.737,100,682.4235410470585,682.4235410470585,535.9559613183559,535.9559613183559,18992.8917,6.0,566.83675,1,2,3,4,5,6 +2089.0,85.0,1634.737,100,687.0766648235293,687.0766648235293,535.9559613183559,535.9559613183559,19091.9927,6.0,570.0795,1,2,3,4,5,6 +2089.5,85.0,1634.737,100,673.7251721294116,673.7251721294116,535.9559613183559,535.9559613183559,18801.979,6.0,560.774,1,2,3,4,5,6 +2090.0,85.0,1634.737,100,660.3736794352941,660.3736794352941,535.9559613183559,535.9559613183559,18511.9653,6.0,551.4685,1,2,3,4,5,6 +2090.5,85.0,1634.737,100,657.1734034235292,657.1734034235292,535.9559613183559,535.9559613183559,18439.06855,6.0,549.2381,1,2,3,4,5,6 +2091.0,85.0,1634.737,100,653.9731274117646,653.9731274117646,535.9559613183559,535.9559613183559,18366.1718,6.0,547.0077,1,2,3,4,5,6 +2091.5,85.0,1634.737,100,669.2070829764705,669.2070829764705,535.9559613183559,535.9559613183559,18701.826849999998,6.0,557.6251500000001,1,2,3,4,5,6 +2092.0,85.0,1634.737,100,684.4410385411763,684.4410385411763,535.9559613183559,535.9559613183559,19037.4819,6.0,568.2426,1,2,3,4,5,6 +2092.5,85.0,1634.737,100,705.4413736235292,705.4413736235292,535.9559613183559,535.9559613183559,19504.567600000002,6.0,582.8792000000001,1,2,3,4,5,6 +2093.0,85.0,1634.737,100,726.4417087058822,726.4417087058822,535.9559613183559,535.9559613183559,19971.6533,6.0,597.5158,1,2,3,4,5,6 +2093.5,85.0,1634.737,100,740.9095767529411,740.9095767529411,535.9559613183559,535.9559613183559,20299.7201,6.0,607.59785,1,2,3,4,5,6 +2094.0,85.0,1634.737,100,755.3774447999999,755.3774447999999,535.9559613183559,535.9559613183559,20627.7869,6.0,617.6799,1,2,3,4,5,6 +2094.5,85.0,1634.737,100,748.4617111764704,748.4617111764704,535.9559613183559,535.9559613183559,20470.9833,6.0,612.86105,1,2,3,4,5,6 +2095.0,85.0,1634.737,100,741.545977552941,741.545977552941,535.9559613183559,535.9559613183559,20314.1797,6.0,608.0422,1,2,3,4,5,6 +2095.5,85.0,1634.737,100,712.557653717647,712.557653717647,535.9559613183559,535.9559613183559,19667.36625,6.0,587.83875,1,2,3,4,5,6 +2096.0,85.0,1634.737,100,683.5693298823528,683.5693298823528,535.9559613183559,535.9559613183559,19020.5528,6.0,567.6353,1,2,3,4,5,6 +2096.5,85.0,1634.737,100,643.8758354470588,643.8758354470588,535.9559613183559,535.9559613183559,18126.4378,6.0,539.9702,1,2,3,4,5,6 +2097.0,85.0,1634.737,100,604.1823410117646,604.1823410117646,535.9559613183559,535.9559613183559,17232.3228,6.0,512.3051,1,2,3,4,5,6 +2097.5,85.0,1634.737,100,549.2419669058824,549.2419669058824,535.9559613183559,535.9559613183559,15992.352900000002,6.0,474.0194,1,2,3,4,5,6 +2098.0,85.0,1634.737,100,494.3015927999999,494.3015927999999,535.9559613183559,535.9559613183559,14752.383,6.0,435.7337,1,2,3,4,5,6 +2098.5,85.0,1634.737,100,435.7928284941176,435.7928284941176,535.9559613183559,535.9559613183559,13455.3985,6.0,394.98635,1,2,3,4,5,6 +2099.0,85.0,1634.737,100,377.2840641882353,377.2840641882353,535.9559613183559,535.9559613183559,12158.414,6.0,354.239,1,2,3,4,5,6 +2099.5,85.0,1634.737,100,332.86569490588226,332.86569490588226,535.9559613183559,535.9559613183559,11163.77305,6.0,323.30685,1,2,3,4,5,6 +2100.0,85.0,1634.737,100,288.44732562352937,288.44732562352937,535.9559613183559,535.9559613183559,10169.1321,6.0,292.3747,1,2,3,4,5,6 +2100.5,85.0,1634.737,100,261.8677877294117,261.8677877294117,535.9559613183559,535.9559613183559,9597.89335,6.0,273.86515,1,2,3,4,5,6 +2101.0,85.0,1634.737,100,235.28824983529407,235.28824983529407,535.9559613183559,535.9559613183559,9026.6546,6.0,255.3556,1,2,3,4,5,6 +2101.5,85.0,1634.737,100,227.3809253294117,227.3809253294117,535.9559613183559,535.9559613183559,8847.8812,6.0,249.8495,1,2,3,4,5,6 +2102.0,85.0,1634.737,100,219.47360082352938,219.47360082352938,535.9559613183559,535.9559613183559,8669.1078,6.0,244.3434,1,2,3,4,5,6 +2102.5,85.0,1634.737,100,204.5235299294117,204.5235299294117,535.9559613183559,535.9559613183559,8331.1865,6.0,233.93560000000002,1,2,3,4,5,6 +2103.0,85.0,1634.737,100,189.57345903529406,189.57345903529406,535.9559613183559,535.9559613183559,7993.2652,6.0,223.5278,1,2,3,4,5,6 +2103.5,85.0,1634.737,100,193.41904902352937,193.41904902352937,535.9559613183559,535.9559613183559,8080.1019,6.0,226.20235000000002,1,2,3,4,5,6 +2104.0,85.0,1634.737,100,197.26463901176467,197.26463901176467,535.9559613183559,535.9559613183559,8166.9386,6.0,228.8769,1,2,3,4,5,6 +2104.5,85.0,1634.737,100,186.73327535294112,186.73327535294112,535.9559613183559,535.9559613183559,7934.41685,6.0,221.71535,1,2,3,4,5,6 +2105.0,85.0,1634.737,100,176.20191169411763,176.20191169411763,535.9559613183559,535.9559613183559,7701.8951,6.0,214.5538,1,2,3,4,5,6 +2105.5,85.0,1634.737,100,154.49832698823528,154.49832698823528,535.9559613183559,535.9559613183559,7234.0085500000005,6.0,200.0446,1,2,3,4,5,6 +2106.0,85.0,1634.737,100,132.79474228235293,132.79474228235293,535.9559613183559,535.9559613183559,6766.122,6.0,185.5354,1,2,3,4,5,6 +2106.5,85.0,1634.737,100,120.37913311764703,120.37913311764703,535.9559613183559,535.9559613183559,6507.7195,6.0,177.3408,1,2,3,4,5,6 +2107.0,85.0,1634.737,100,107.96352395294116,107.96352395294116,535.9559613183559,535.9559613183559,6249.317,6.0,169.1462,1,2,3,4,5,6 +2107.5,85.0,1634.737,100,95.69899312941175,95.69899312941175,535.9559613183559,535.9559613183559,5996.2677,6.0,161.10854999999998,1,2,3,4,5,6 +2108.0,85.0,1634.737,100,83.43446230588233,83.43446230588233,535.9559613183559,535.9559613183559,5743.2184,6.0,153.0709,1,2,3,4,5,6 +2108.5,85.0,1634.737,100,62.3962462235294,62.3962462235294,535.9559613183559,535.9559613183559,5309.12965,6.0,139.28285,1,2,3,4,5,6 +2109.0,85.0,1634.737,100,41.358030141176464,41.358030141176464,535.9559613183559,535.9559613183559,4875.0409,6.0,125.4948,1,2,3,4,5,6 +2109.5,85.0,1634.737,100,28.580546011764703,28.580546011764703,535.9559613183559,535.9559613183559,4611.39945,6.0,117.12075,1,2,3,4,5,6 +2110.0,85.0,1634.737,100,15.803061882352939,15.803061882352939,535.9559613183559,535.9559613183559,4347.758,6.0,108.7467,1,2,3,4,5,6 +2110.5,85.0,1634.737,100,27.20346024705882,27.20346024705882,535.9559613183559,535.9559613183559,4582.9799,6.0,116.21809999999999,1,2,3,4,5,6 +2111.0,85.0,1634.737,100,38.6038586117647,38.6038586117647,535.9559613183559,535.9559613183559,4818.2018,6.0,123.6895,1,2,3,4,5,6 +2111.5,85.0,1634.737,100,73.35098576470587,73.35098576470587,535.9559613183559,535.9559613183559,5536.1947,6.0,146.4795,1,2,3,4,5,6 +2112.0,85.0,1634.737,100,108.09811291764704,108.09811291764704,535.9559613183559,535.9559613183559,6254.1876,6.0,169.2695,1,2,3,4,5,6 +2112.5,85.0,1634.737,100,159.85470038823524,159.85470038823524,535.9559613183559,535.9559613183559,7373.005950000001,6.0,204.1273,1,2,3,4,5,6 +2113.0,85.0,1634.737,100,211.6112878588235,211.6112878588235,535.9559613183559,535.9559613183559,8491.8243,6.0,238.9851,1,2,3,4,5,6 +2113.5,85.0,1634.737,100,265.5386794588235,265.5386794588235,535.9559613183559,535.9559613183559,9667.8206,6.0,276.4803,1,2,3,4,5,6 +2114.0,85.0,1634.737,100,319.4660710588235,319.4660710588235,535.9559613183559,535.9559613183559,10843.8169,6.0,313.9755,1,2,3,4,5,6 +2114.5,85.0,1634.737,100,361.6164825882352,361.6164825882352,535.9559613183559,535.9559613183559,11802.31415,6.0,343.32825,1,2,3,4,5,6 +2115.0,85.0,1634.737,100,403.766894117647,403.766894117647,535.9559613183559,535.9559613183559,12760.8114,6.0,372.681,1,2,3,4,5,6 +2115.5,85.0,1634.737,100,428.2803577058823,428.2803577058823,535.9559613183559,535.9559613183559,13290.48645,6.0,389.7513,1,2,3,4,5,6 +2116.0,85.0,1634.737,100,452.79382129411755,452.79382129411755,535.9559613183559,535.9559613183559,13820.1615,6.0,406.8216,1,2,3,4,5,6 +2116.5,85.0,1634.737,100,453.42531984705874,453.42531984705874,535.9559613183559,535.9559613183559,13834.3069,6.0,407.26115,1,2,3,4,5,6 +2117.0,85.0,1634.737,100,454.0568183999999,454.0568183999999,535.9559613183559,535.9559613183559,13848.4523,6.0,407.7007,1,2,3,4,5,6 +2117.5,85.0,1634.737,100,442.9572397411764,442.9572397411764,535.9559613183559,535.9559613183559,13605.91305,6.0,399.9715,1,2,3,4,5,6 +2118.0,85.0,1634.737,100,431.8576610823529,431.8576610823529,535.9559613183559,535.9559613183559,13363.3738,6.0,392.2423,1,2,3,4,5,6 +2118.5,85.0,1634.737,100,430.31790984705873,430.31790984705873,535.9559613183559,535.9559613183559,13332.05835,6.0,391.1701,1,2,3,4,5,6 +2119.0,85.0,1634.737,100,428.77815861176464,428.77815861176464,535.9559613183559,535.9559613183559,13300.7429,6.0,390.0979,1,2,3,4,5,6 +2119.5,85.0,1634.737,100,452.45957717647053,452.45957717647053,535.9559613183559,535.9559613183559,13822.061699999998,6.0,406.58905,1,2,3,4,5,6 +2120.0,85.0,1634.737,100,476.1409957411764,476.1409957411764,535.9559613183559,535.9559613183559,14343.3805,6.0,423.0802,1,2,3,4,5,6 +2120.5,85.0,1634.737,100,522.4730240117646,522.4730240117646,535.9559613183559,535.9559613183559,15386.013799999999,6.0,455.3642,1,2,3,4,5,6 +2121.0,85.0,1634.737,100,568.8050522823529,568.8050522823529,535.9559613183559,535.9559613183559,16428.6471,6.0,487.6482,1,2,3,4,5,6 +2121.5,85.0,1634.737,100,618.545479235294,618.545479235294,535.9559613183559,535.9559613183559,17551.58705,6.0,522.31585,1,2,3,4,5,6 +2122.0,85.0,1634.737,100,668.2859061882352,668.2859061882352,535.9559613183559,535.9559613183559,18674.527,6.0,556.9835,1,2,3,4,5,6 +2122.5,85.0,1634.737,100,707.4348055411764,707.4348055411764,535.9559613183559,535.9559613183559,19551.425649999997,6.0,584.26675,1,2,3,4,5,6 +2123.0,85.0,1634.737,100,746.5837048941174,746.5837048941174,535.9559613183559,535.9559613183559,20428.3243,6.0,611.55,1,2,3,4,5,6 +2123.5,85.0,1634.737,100,764.1604888941175,764.1604888941175,535.9559613183559,535.9559613183559,20826.70755,6.0,623.7929999999999,1,2,3,4,5,6 +2124.0,85.0,1634.737,100,781.7372728941175,781.7372728941175,535.9559613183559,535.9559613183559,21225.0908,6.0,636.036,1,2,3,4,5,6 +2124.5,85.0,1634.737,100,780.7372144941174,780.7372144941174,535.9559613183559,535.9559613183559,21202.4344,6.0,635.3397,1,2,3,4,5,6 +2125.0,85.0,1634.737,100,779.7371560941175,779.7371560941175,535.9559613183559,535.9559613183559,21179.778,6.0,634.6434,1,2,3,4,5,6 +2125.5,85.0,1634.737,100,776.3265291176469,776.3265291176469,535.9559613183559,535.9559613183559,21102.48735,6.0,632.2681500000001,1,2,3,4,5,6 +2126.0,85.0,1634.737,100,772.9159021411763,772.9159021411763,535.9559613183559,535.9559613183559,21025.1967,6.0,629.8929,1,2,3,4,5,6 +2126.5,85.0,1634.737,100,768.6206423999998,768.6206423999998,535.9559613183559,535.9559613183559,20927.8687,6.0,626.90185,1,2,3,4,5,6 +2127.0,85.0,1634.737,100,764.3253826588234,764.3253826588234,535.9559613183559,535.9559613183559,20830.5407,6.0,623.9108,1,2,3,4,5,6 +2127.5,85.0,1634.737,100,749.7928940823527,749.7928940823527,535.9559613183559,535.9559613183559,20501.095950000003,6.0,613.7864500000001,1,2,3,4,5,6 +2128.0,85.0,1634.737,100,735.2604055058822,735.2604055058822,535.9559613183559,535.9559613183559,20171.6512,6.0,603.6621,1,2,3,4,5,6 +2128.5,85.0,1634.737,100,707.5662748941176,707.5662748941176,535.9559613183559,535.9559613183559,19554.1003,6.0,584.36015,1,2,3,4,5,6 +2129.0,85.0,1634.737,100,679.8721442823528,679.8721442823528,535.9559613183559,535.9559613183559,18936.5494,6.0,565.0582,1,2,3,4,5,6 +2129.5,85.0,1634.737,100,644.6909454352939,644.6909454352939,535.9559613183559,535.9559613183559,18144.9421,6.0,540.5384,1,2,3,4,5,6 +2130.0,85.0,1634.737,100,609.5097465882352,609.5097465882352,535.9559613183559,535.9559613183559,17353.3348,6.0,516.0186,1,2,3,4,5,6 +2130.5,85.0,1634.737,100,575.7350469882351,575.7350469882351,535.9559613183559,535.9559613183559,16586.62265,6.0,492.47855,1,2,3,4,5,6 +2131.0,85.0,1634.737,100,541.9603473882352,541.9603473882352,535.9559613183559,535.9559613183559,15819.9105,6.0,468.9385,1,2,3,4,5,6 +2131.5,85.0,1634.737,100,515.4231470823529,515.4231470823529,535.9559613183559,535.9559613183559,15224.438849999999,6.0,450.44655,1,2,3,4,5,6 +2132.0,85.0,1634.737,100,488.8859467764705,488.8859467764705,535.9559613183559,535.9559613183559,14628.9672,6.0,431.9546,1,2,3,4,5,6 +2132.5,85.0,1634.737,100,467.6748150705882,467.6748150705882,535.9559613183559,535.9559613183559,14154.6136,6.0,417.1838,1,2,3,4,5,6 +2133.0,85.0,1634.737,100,446.4636833647058,446.4636833647058,535.9559613183559,535.9559613183559,13680.26,6.0,402.413,1,2,3,4,5,6 +2133.5,85.0,1634.737,100,424.46507251764695,424.46507251764695,535.9559613183559,535.9559613183559,13207.7553,6.0,387.0941,1,2,3,4,5,6 +2134.0,85.0,1634.737,100,402.46646167058816,402.46646167058816,535.9559613183559,535.9559613183559,12735.2506,6.0,371.7752,1,2,3,4,5,6 +2134.5,85.0,1634.737,100,381.52361657647054,381.52361657647054,535.9559613183559,535.9559613183559,12255.531449999999,6.0,357.19145000000003,1,2,3,4,5,6 +2135.0,85.0,1634.737,100,360.5807714823528,360.5807714823528,535.9559613183559,535.9559613183559,11775.8123,6.0,342.6077,1,2,3,4,5,6 +2135.5,85.0,1634.737,100,345.0736270588235,345.0736270588235,535.9559613183559,535.9559613183559,11420.5873,6.0,331.80870000000004,1,2,3,4,5,6 +2136.0,85.0,1634.737,100,329.5664826352941,329.5664826352941,535.9559613183559,535.9559613183559,11065.3623,6.0,321.0097,1,2,3,4,5,6 +2136.5,85.0,1634.737,100,322.8700131529411,322.8700131529411,535.9559613183559,535.9559613183559,10911.97055,6.0,316.3465,1,2,3,4,5,6 +2137.0,85.0,1634.737,100,316.1735436705882,316.1735436705882,535.9559613183559,535.9559613183559,10758.5788,6.0,311.6833,1,2,3,4,5,6 +2137.5,85.0,1634.737,100,320.8886140235293,320.8886140235293,535.9559613183559,535.9559613183559,10866.5825,6.0,314.96664999999996,1,2,3,4,5,6 +2138.0,85.0,1634.737,100,325.60368437647054,325.60368437647054,535.9559613183559,535.9559613183559,10974.5862,6.0,318.25,1,2,3,4,5,6 +2138.5,85.0,1634.737,100,341.5555963058823,341.5555963058823,535.9559613183559,535.9559613183559,11339.992849999999,6.0,329.35855000000004,1,2,3,4,5,6 +2139.0,85.0,1634.737,100,357.50750823529404,357.50750823529404,535.9559613183559,535.9559613183559,11705.3995,6.0,340.4671,1,2,3,4,5,6 +2139.5,85.0,1634.737,100,377.43291423529405,377.43291423529405,535.9559613183559,535.9559613183559,12161.5512,6.0,354.3426,1,2,3,4,5,6 +2140.0,85.0,1634.737,100,397.35832023529406,397.35832023529406,535.9559613183559,535.9559613183559,12617.7029,6.0,368.2181,1,2,3,4,5,6 +2140.5,85.0,1634.737,100,413.72157525882346,413.72157525882346,535.9559613183559,535.9559613183559,12973.41175,6.0,379.61289999999997,1,2,3,4,5,6 +2141.0,85.0,1634.737,100,430.08483028235287,430.08483028235287,535.9559613183559,535.9559613183559,13329.1206,6.0,391.0077,1,2,3,4,5,6 +2141.5,85.0,1634.737,100,443.9679939529411,443.9679939529411,535.9559613183559,535.9559613183559,13631.3063,6.0,400.67545,1,2,3,4,5,6 +2142.0,85.0,1634.737,100,457.85115762352933,457.85115762352933,535.9559613183559,535.9559613183559,13933.492,6.0,410.3432,1,2,3,4,5,6 +2142.5,85.0,1634.737,100,466.18408630588226,466.18408630588226,535.9559613183559,535.9559613183559,14120.22545,6.0,416.1458,1,2,3,4,5,6 +2143.0,85.0,1634.737,100,474.5170149882352,474.5170149882352,535.9559613183559,535.9559613183559,14306.9589,6.0,421.9484,1,2,3,4,5,6 +2143.5,85.0,1634.737,100,472.43979921176464,472.43979921176464,535.9559613183559,535.9559613183559,14260.40805,6.0,420.5019,1,2,3,4,5,6 +2144.0,85.0,1634.737,100,470.362583435294,470.362583435294,535.9559613183559,535.9559613183559,14213.8572,6.0,419.0554,1,2,3,4,5,6 +2144.5,85.0,1634.737,100,464.64210677647054,464.64210677647054,535.9559613183559,535.9559613183559,14085.663400000001,6.0,415.07185000000004,1,2,3,4,5,6 +2145.0,85.0,1634.737,100,458.921630117647,458.921630117647,535.9559613183559,535.9559613183559,13957.4696,6.0,411.0883,1,2,3,4,5,6 +2145.5,85.0,1634.737,100,458.7001376823529,458.7001376823529,535.9559613183559,535.9559613183559,13952.51285,6.0,410.9343,1,2,3,4,5,6 +2146.0,85.0,1634.737,100,458.4786452470587,458.4786452470587,535.9559613183559,535.9559613183559,13947.5561,6.0,410.7803,1,2,3,4,5,6 +2146.5,85.0,1634.737,100,464.11712068235283,464.11712068235283,535.9559613183559,535.9559613183559,14073.90425,6.0,414.70645,1,2,3,4,5,6 +2147.0,85.0,1634.737,100,469.755596117647,469.755596117647,535.9559613183559,535.9559613183559,14200.2524,6.0,418.6326,1,2,3,4,5,6 +2147.5,85.0,1634.737,100,478.6594137529411,478.6594137529411,535.9559613183559,535.9559613183559,14399.7819,6.0,424.83285,1,2,3,4,5,6 +2148.0,85.0,1634.737,100,487.56323138823524,487.56323138823524,535.9559613183559,535.9559613183559,14599.3114,6.0,431.0331,1,2,3,4,5,6 +2148.5,85.0,1634.737,100,496.68408487058815,496.68408487058815,535.9559613183559,535.9559613183559,14803.76705,6.0,437.3864,1,2,3,4,5,6 +2149.0,85.0,1634.737,100,505.8049383529411,505.8049383529411,535.9559613183559,535.9559613183559,15008.2227,6.0,443.7397,1,2,3,4,5,6 +2149.5,85.0,1634.737,100,513.5237491764705,513.5237491764705,535.9559613183559,535.9559613183559,15181.3491,6.0,449.1195,1,2,3,4,5,6 +2150.0,85.0,1634.737,100,521.2425599999999,521.2425599999999,535.9559613183559,535.9559613183559,15354.4755,6.0,454.4993,1,2,3,4,5,6 +2150.5,85.0,1634.737,100,528.1137277411764,528.1137277411764,535.9559613183559,535.9559613183559,15508.5902,6.0,459.2883,1,2,3,4,5,6 +2151.0,85.0,1634.737,100,534.9848954823528,534.9848954823528,535.9559613183559,535.9559613183559,15662.7049,6.0,464.0773,1,2,3,4,5,6 +2151.5,85.0,1634.737,100,542.2883522823528,542.2883522823528,535.9559613183559,535.9559613183559,15826.5581,6.0,469.16755,1,2,3,4,5,6 +2152.0,85.0,1634.737,100,549.5918090823529,549.5918090823529,535.9559613183559,535.9559613183559,15990.4113,6.0,474.2578,1,2,3,4,5,6 +2152.5,85.0,1634.737,100,557.8422908823528,557.8422908823528,535.9559613183559,535.9559613183559,16177.3598,6.0,480.00784999999996,1,2,3,4,5,6 +2153.0,85.0,1634.737,100,566.0927726823528,566.0927726823528,535.9559613183559,535.9559613183559,16364.3083,6.0,485.7579,1,2,3,4,5,6 +2153.5,85.0,1634.737,100,574.5549424235293,574.5549424235293,535.9559613183559,535.9559613183559,16557.0711,6.0,491.65575,1,2,3,4,5,6 +2154.0,85.0,1634.737,100,583.0171121647058,583.0171121647058,535.9559613183559,535.9559613183559,16749.8339,6.0,497.5536,1,2,3,4,5,6 +2154.5,85.0,1634.737,100,591.066601835294,591.066601835294,535.9559613183559,535.9559613183559,16933.203,6.0,503.16405,1,2,3,4,5,6 +2155.0,85.0,1634.737,100,599.1160915058822,599.1160915058822,535.9559613183559,535.9559613183559,17116.5721,6.0,508.7745,1,2,3,4,5,6 +2155.5,85.0,1634.737,100,603.7068230470587,603.7068230470587,535.9559613183559,535.9559613183559,17221.1456,6.0,511.97405,1,2,3,4,5,6 +2156.0,85.0,1634.737,100,608.2975545882352,608.2975545882352,535.9559613183559,535.9559613183559,17325.7191,6.0,515.1736,1,2,3,4,5,6 +2156.5,85.0,1634.737,100,613.7506359529411,613.7506359529411,535.9559613183559,535.9559613183559,17449.930549999997,6.0,518.97405,1,2,3,4,5,6 +2157.0,85.0,1634.737,100,619.203717317647,619.203717317647,535.9559613183559,535.9559613183559,17574.142,6.0,522.7745,1,2,3,4,5,6 +2157.5,85.0,1634.737,100,626.1007332705881,626.1007332705881,535.9559613183559,535.9559613183559,17731.25395,6.0,527.58155,1,2,3,4,5,6 +2158.0,85.0,1634.737,100,632.9977492235292,632.9977492235292,535.9559613183559,535.9559613183559,17888.3659,6.0,532.3886,1,2,3,4,5,6 +2158.5,85.0,1634.737,100,636.4288765058822,636.4288765058822,535.9559613183559,535.9559613183559,17966.5232,6.0,534.77995,1,2,3,4,5,6 +2159.0,85.0,1634.737,100,639.8600037882352,639.8600037882352,535.9559613183559,535.9559613183559,18044.6805,6.0,537.1713,1,2,3,4,5,6 +2159.5,85.0,1634.737,100,641.1194356235293,641.1194356235293,535.9559613183559,535.9559613183559,18073.37685,6.0,538.0492999999999,1,2,3,4,5,6 +2160.0,85.0,1634.737,100,642.3788674588234,642.3788674588234,535.9559613183559,535.9559613183559,18102.0732,6.0,538.9273,1,2,3,4,5,6 +2160.5,85.0,1634.737,100,642.4541837999999,642.4541837999999,535.9559613183559,535.9559613183559,18103.783799999997,6.0,538.9795999999999,1,2,3,4,5,6 +2161.0,85.0,1634.737,100,642.5295001411763,642.5295001411763,535.9559613183559,535.9559613183559,18105.4944,6.0,539.0319,1,2,3,4,5,6 +2161.5,85.0,1634.737,100,644.584878635294,644.584878635294,535.9559613183559,535.9559613183559,18152.31915,6.0,540.4646,1,2,3,4,5,6 +2162.0,85.0,1634.737,100,646.6402571294117,646.6402571294117,535.9559613183559,535.9559613183559,18199.1439,6.0,541.8973,1,2,3,4,5,6 +2162.5,85.0,1634.737,100,646.828325152941,646.828325152941,535.9559613183559,535.9559613183559,18203.425649999997,6.0,542.0283,1,2,3,4,5,6 +2163.0,85.0,1634.737,100,647.0163931764705,647.0163931764705,535.9559613183559,535.9559613183559,18207.7074,6.0,542.1593,1,2,3,4,5,6 +2163.5,85.0,1634.737,100,646.3608290470587,646.3608290470587,535.9559613183559,535.9559613183559,18192.7727,6.0,541.70235,1,2,3,4,5,6 +2164.0,85.0,1634.737,100,645.7052649176469,645.7052649176469,535.9559613183559,535.9559613183559,18177.838,6.0,541.2454,1,2,3,4,5,6 +2164.5,85.0,1634.737,100,642.5606962588233,642.5606962588233,535.9559613183559,535.9559613183559,18106.20895,6.0,539.0538,1,2,3,4,5,6 +2165.0,85.0,1634.737,100,639.4161275999998,639.4161275999998,535.9559613183559,535.9559613183559,18034.5799,6.0,536.8622,1,2,3,4,5,6 +2165.5,85.0,1634.737,100,632.690244635294,632.690244635294,535.9559613183559,535.9559613183559,17881.360549999998,6.0,532.17425,1,2,3,4,5,6 +2166.0,85.0,1634.737,100,625.9643616705882,625.9643616705882,535.9559613183559,535.9559613183559,17728.1412,6.0,527.4863,1,2,3,4,5,6 +2166.5,85.0,1634.737,100,615.8309713411763,615.8309713411763,535.9559613183559,535.9559613183559,17497.31905,6.0,520.42395,1,2,3,4,5,6 +2167.0,85.0,1634.737,100,605.6975810117646,605.6975810117646,535.9559613183559,535.9559613183559,17266.4969,6.0,513.3616,1,2,3,4,5,6 +2167.5,85.0,1634.737,100,592.5938746235294,592.5938746235294,535.9559613183559,535.9559613183559,16967.9986,6.0,504.22865,1,2,3,4,5,6 +2168.0,85.0,1634.737,100,579.490168235294,579.490168235294,535.9559613183559,535.9559613183559,16669.5003,6.0,495.0957,1,2,3,4,5,6 +2168.5,85.0,1634.737,100,566.5219421294117,566.5219421294117,535.9559613183559,535.9559613183559,16374.76075,6.0,486.05715,1,2,3,4,5,6 +2169.0,85.0,1634.737,100,553.5537160235293,553.5537160235293,535.9559613183559,535.9559613183559,16080.0212,6.0,477.0186,1,2,3,4,5,6 +2169.5,85.0,1634.737,100,545.3691917294117,545.3691917294117,535.9559613183559,535.9559613183559,15896.03135,6.0,471.3145,1,2,3,4,5,6 +2170.0,85.0,1634.737,100,537.184667435294,537.184667435294,535.9559613183559,535.9559613183559,15712.0415,6.0,465.6104,1,2,3,4,5,6 +2170.5,85.0,1634.737,100,535.0963101882352,535.0963101882352,535.9559613183559,535.9559613183559,15665.19915,6.0,464.1548,1,2,3,4,5,6 +2171.0,85.0,1634.737,100,533.0079529411764,533.0079529411764,535.9559613183559,535.9559613183559,15618.3568,6.0,462.6992,1,2,3,4,5,6 +2171.5,84.99334999999999,1634.6728,100,515.3484855462222,515.3484855462222,535.9140306460879,535.9140306460879,15265.89855,6.0,450.65790000000004,1,2,3,4,5,6 +2172.0,84.9867,1634.6086,100,497.68625453159143,497.68625453159143,535.8720999738201,535.8720999738201,14913.4403,6.0,438.6166,1,2,3,4,5,6 +2172.5,84.8135,1631.22615,100,117.8760192422197,117.8760192422197,534.7800108855809,534.7800108855809,7456.7201000000005,6.0,180.70895000000002,1,2,3,4,5,6 +2173.0,84.6403,1627.8437,100,-263.4886323890629,-263.4886323890629,533.6879217973415,533.6879217973415,-0.0001,6.0,-77.1987,1,2,3,4,5,6 +2173.5,84.1166,1618.5102499999998,100,-719.4393443149152,-719.4393443149152,530.3858025391954,530.3858025391954,-0.0001,6.0,-76.82945000000001,1,2,3,4,5,6 +2174.0,83.5929,1609.1768,100,-1181.103014825422,-1181.103014825422,527.0836832810492,527.0836832810492,-0.0001,6.0,-76.4602,1,2,3,4,5,6 +2174.5,82.78569999999999,1592.9093,100,-1412.5963303928095,-1412.5963303928095,521.9939932578001,521.9939932578001,-5e-05,6.0,-75.81665000000001,1,2,3,4,5,6 +2175.0,81.9785,1576.6418,100,-1648.6484364802966,-1648.6484364802966,516.904303234551,516.904303234551,0.0,6.0,-75.1731,1,2,3,4,5,6 +2175.5,81.07849999999999,1559.33355,100,-1657.104820390116,-1657.104820390116,511.2294754088271,511.2294754088271,0.0,6.0,-74.48835,1,2,3,4,5,6 +2176.0,80.1785,1542.0253,100,-1665.7510493461464,-1665.7510493461464,505.5546475831034,505.5546475831034,0.0,6.0,-73.8036,1,2,3,4,5,6 +2176.5,79.27850000000001,1524.71705,100,-1666.1141622760267,-1666.1141622760267,499.87981975737966,499.87981975737966,0.0,6.0,-73.1189,1,2,3,4,5,6 +2177.0,78.3785,1507.4088,100,-1666.4856142692192,-1666.4856142692192,494.20499193165585,494.20499193165585,0.0,6.0,-72.4342,1,2,3,4,5,6 +2177.5,77.4785,1490.1006499999999,100,-1661.361892718625,-1661.361892718625,488.53016410593216,488.53016410593216,5e-05,6.0,-71.74945,1,2,3,4,5,6 +2178.0,76.5785,1472.7925,100,-1656.1177365970866,-1656.1177365970866,482.85533628020835,482.85533628020835,0.0001,6.0,-71.0647,1,2,3,4,5,6 +2178.5,75.80345,1457.0714,100,-1357.1529906752269,-1357.1529906752269,477.9683637176225,477.9683637176225,0.015899999999999997,6.0,-70.4399,1,2,3,4,5,6 +2179.0,75.0284,1441.3503,100,-1052.0115802816,-1052.0115802816,473.08139115503684,473.08139115503684,0.0317,6.0,-69.8151,1,2,3,4,5,6 +2179.5,74.54140000000001,1432.807,100,-655.7152141226218,-655.7152141226218,470.0106787648952,470.0106787648952,0.01585,6.0,-69.45349999999999,1,2,3,4,5,6 +2180.0,74.0544,1424.2637,100,-254.20656266204307,-254.20656266204307,466.9399663747535,466.9399663747535,0.0,6.0,-69.0919,1,2,3,4,5,6 +2180.5,73.77085,1418.3419,100,-141.22564221504834,-141.22564221504834,465.152080341438,465.152080341438,1988.4966,6.0,8.4298,1,2,3,4,5,6 +2181.0,73.4873,1412.4201,100,-27.372850302024972,-27.372850302024972,463.3641943081225,463.3641943081225,3976.9932,6.0,85.9515,1,2,3,4,5,6 +2181.5,73.44810000000001,1411.89205,100,477.69924530382673,477.69924530382673,463.117024029491,463.117024029491,13097.74355,6.0,433.47185,1,2,3,4,5,6 +2182.0,73.4089,1411.364,100,983.3107530558283,983.3107530558283,462.8698537508594,462.8698537508594,22218.4939,6.0,780.9922,1,2,3,4,5,6 +2182.5,73.5392,1423.2191,100,929.9675471857189,929.9675471857189,463.6914427127391,463.6914427127391,21623.091350000002,6.0,757.0584,1,2,3,4,5,6 +2183.0,73.6695,1435.0742,100,876.8130386659337,876.8130386659337,464.513031674619,464.513031674619,21027.6888,6.0,733.1246,1,2,3,4,5,6 +2183.5,73.5419,1526.3465,100,379.7809524094429,379.7809524094429,463.7084671962163,463.7084671962163,12851.6827,3.0,427.06655,1,2,3,4,5,6 +2184.0,73.4143,1617.6188,100,-118.97889789863828,-118.97889789863828,462.9039027178137,462.9039027178137,4675.6766,0.0,121.0085,1,2,3,4,5,6 +2184.5,73.13705,1739.136,100,84.23501731338632,84.23501731338632,461.1557404792782,461.1557404792782,8307.86505,0.0,204.5029,1,2,3,4,5,6 +2185.0,72.8598,1860.6532,100,288.99549339965245,288.99549339965245,459.4075782407429,459.4075782407429,11940.0535,0.0,287.9973,1,2,3,4,5,6 +2185.5,72.9133,1894.01595,100,930.6318572743244,930.6318572743244,459.74491522816083,459.74491522816083,22658.1319,2.5,566.7072499999999,1,2,3,4,5,6 +2186.0,72.9668,1927.3787,100,1571.3273125311782,1571.3273125311782,460.0822522155789,460.0822522155789,33376.2103,5.0,845.4172,1,2,3,4,5,6 +2186.5,73.26375,1932.7143999999998,100,1564.2087430414085,1564.2087430414085,461.95463012985516,461.95463012985516,33513.92905,5.0,846.38275,1,2,3,4,5,6 +2187.0,73.5607,1938.0501,100,1557.147646066446,1557.147646066446,463.82700804413145,463.82700804413145,33651.6478,5.0,847.3483,1,2,3,4,5,6 +2187.5,73.83879999999999,1945.3544499999998,100,1552.2730756458664,1552.2730756458664,465.5805298422801,465.5805298422801,33689.9726,5.0,844.8332,1,2,3,4,5,6 +2188.0,74.1169,1952.6588,100,1547.435085763166,1547.435085763166,467.33405164042875,467.33405164042875,33728.2974,5.0,842.3181,1,2,3,4,5,6 +2188.5,74.38725,1959.78615,100,1542.5892700160312,1542.5892700160312,469.03870686563357,469.03870686563357,33765.57145,5.0,839.861,1,2,3,4,5,6 +2189.0,74.6576,1966.9135,100,1537.7785495917362,1537.7785495917362,470.7433620908386,470.7433620908386,33802.8455,5.0,837.4039,1,2,3,4,5,6 +2189.5,74.9199,1973.8384500000002,100,1533.2046786768274,1533.2046786768274,472.39725913382443,472.39725913382443,33839.04965,5.0,835.01625,1,2,3,4,5,6 +2190.0,75.1822,1980.7634,100,1528.662722931758,1528.662722931758,474.0511561768104,474.0511561768104,33875.2538,5.0,832.6286,1,2,3,4,5,6 +2190.5,75.42945,1987.2863499999999,100,1524.5132038348415,1524.5132038348415,475.6101574878218,475.6101574878218,33909.3481,5.0,830.3794,1,2,3,4,5,6 +2191.0,75.6767,1993.8093,100,1520.390799255253,1520.390799255253,477.1691587988331,477.1691587988331,33943.4424,5.0,828.1302,1,2,3,4,5,6 +2191.5,75.9044,1999.80305,100,1516.7172234547668,1516.7172234547668,478.60489023874123,478.60489023874123,33976.4343,5.0,826.1062,1,2,3,4,5,6 +2192.0,76.1321,2005.7968,100,1513.0656219124392,1513.0656219124392,480.04062167864936,480.04062167864936,34009.4262,5.0,824.0822,1,2,3,4,5,6 +2192.5,76.3434,2011.3501,100,1509.6106994317781,1509.6106994317781,481.3729451448443,481.3729451448443,34041.15795,5.0,822.24975,1,2,3,4,5,6 +2193.0,76.5547,2016.9034,100,1506.1748489380795,1506.1748489380795,482.7052686110392,482.7052686110392,34072.8897,5.0,820.4173,1,2,3,4,5,6 +2193.5,76.7555,2022.18215,100,1502.8312216974682,1502.8312216974682,483.97138575260067,483.97138575260067,34102.8538,5.0,818.6755,1,2,3,4,5,6 +2194.0,76.9563,2027.4609,100,1499.5050433297858,1499.5050433297858,485.2375028941621,485.2375028941621,34132.8179,5.0,816.9337,1,2,3,4,5,6 +2194.5,77.15254999999999,2032.6248500000002,100,1496.071816446767,1496.071816446767,486.4749306283824,486.4749306283824,34162.126749999996,5.0,815.22975,1,2,3,4,5,6 +2195.0,77.3488,2037.7888,100,1492.6560111856938,1492.6560111856938,487.7123583626028,487.7123583626028,34191.4356,5.0,813.5258,1,2,3,4,5,6 +2195.5,77.54435000000001,2042.94985,100,1489.253352668505,1489.253352668505,488.94537234184764,488.94537234184764,34220.72735,5.0,811.82275,1,2,3,4,5,6 +2196.0,77.7399,2048.1109,100,1485.8678125132653,1485.8678125132653,490.1783863210924,490.1783863210924,34250.0191,5.0,810.1197,1,2,3,4,5,6 +2196.5,77.9299,2053.13445,100,1482.7375450372706,1482.7375450372706,491.3764055287452,491.3764055287452,34278.532649999994,5.0,808.4621,1,2,3,4,5,6 +2197.0,78.1199,2058.158,100,1479.6225041762727,1479.6225041762727,492.57442473639793,492.57442473639793,34307.0462,5.0,806.8045,1,2,3,4,5,6 +2197.5,78.29455,2062.7748,100,1476.9789782558305,1476.9789782558305,493.6756566028008,493.6756566028008,34333.25485,5.0,805.2811999999999,1,2,3,4,5,6 +2198.0,78.4692,2067.3916,100,1474.3472198008901,1474.3472198008901,494.7768884692038,494.7768884692038,34359.4635,5.0,803.7579,1,2,3,4,5,6 +2198.5,78.61885000000001,2071.34575,100,1472.3050022481887,1472.3050022481887,495.7204862293367,495.7204862293367,34381.91365,5.0,802.4532999999999,1,2,3,4,5,6 +2199.0,78.7685,2075.2999,100,1470.2705445958727,1470.2705445958727,496.66408398946953,496.66408398946953,34404.3638,5.0,801.1487,1,2,3,4,5,6 +2199.5,78.8875,2078.43485,100,1468.8344244652194,1468.8344244652194,497.41442233531524,497.41442233531524,34422.1653,5.0,800.1144999999999,1,2,3,4,5,6 +2200.0,79.0065,2081.5698,100,1467.4026305177424,1467.4026305177424,498.1647606811609,498.1647606811609,34439.9668,5.0,799.0803,1,2,3,4,5,6 +2200.5,79.09425,2083.8735500000003,100,1466.4633498136718,1466.4633498136718,498.718056394169,498.718056394169,34453.05015,5.0,798.3203,1,2,3,4,5,6 +2201.0,79.182,2086.1773,100,1465.5261509433963,1465.5261509433963,499.27135210717705,499.27135210717705,34466.1335,5.0,797.5603,1,2,3,4,5,6 +2201.5,79.24225,2087.75925,100,1464.971179566456,1464.971179566456,499.65125030328795,499.65125030328795,34475.118700000006,5.0,797.03845,1,2,3,4,5,6 +2202.0,79.3025,2089.3412,100,1464.4170514674825,1464.4170514674825,500.0311484993989,500.0311484993989,34484.1039,5.0,796.5166,1,2,3,4,5,6 +2202.5,79.33664999999999,2090.25315,100,1464.3630099203835,1464.3630099203835,500.2464766885639,500.2464766885639,34489.2865,5.0,796.21585,1,2,3,4,5,6 +2203.0,79.3708,2091.1651,100,1464.3090148770077,1464.3090148770077,500.46180487772887,500.46180487772887,34494.4691,5.0,795.9151,1,2,3,4,5,6 +2203.5,79.37325,2091.2426,100,1464.9887612892255,1464.9887612892255,500.4772530201433,500.4772530201433,34494.91605,5.0,795.8897,1,2,3,4,5,6 +2204.0,79.3757,2091.3201,100,1465.6684657395147,1465.6684657395147,500.49270116255775,500.49270116255775,34495.363,5.0,795.8643,1,2,3,4,5,6 +2204.5,79.34105,2090.4012000000002,100,1467.0314077013097,1467.0314077013097,500.27422029126745,500.27422029126745,34490.14945,5.0,796.16755,1,2,3,4,5,6 +2205.0,79.3064,2089.4823,100,1468.3955406373257,1468.3955406373257,500.05573941997704,500.05573941997704,34484.9359,5.0,796.4708,1,2,3,4,5,6 +2205.5,79.23585,2087.61855,100,1470.301047253232,1470.301047253232,499.6108959720828,499.6108959720828,34474.3597,5.0,797.08585,1,2,3,4,5,6 +2206.0,79.1653,2085.7548,100,1472.2099501422974,1472.2099501422974,499.16605252418856,499.16605252418856,34463.7835,5.0,797.7009,1,2,3,4,5,6 +2206.5,79.062,2083.0323,100,1474.65047639827,1474.65047639827,498.5147083970805,498.5147083970805,34448.3339,5.0,798.59935,1,2,3,4,5,6 +2207.0,78.9587,2080.3098,100,1477.0973884321807,1477.0973884321807,497.86336426997235,497.86336426997235,34432.8843,5.0,799.4978,1,2,3,4,5,6 +2207.5,78.8218,2076.7179,100,1480.1919842606994,1480.1919842606994,497.0001599040374,497.0001599040374,34412.5013,5.0,800.6831,1,2,3,4,5,6 +2208.0,78.6849,2073.126,100,1483.2973483603587,1483.2973483603587,496.13695553810237,496.13695553810237,34392.1183,5.0,801.8684,1,2,3,4,5,6 +2208.5,78.50495000000001,2068.41745,100,1487.4467497781986,1487.4467497781986,495.0023052411701,495.0023052411701,34365.398700000005,5.0,803.42225,1,2,3,4,5,6 +2209.0,78.325,2063.7089,100,1491.6152175167572,1491.6152175167572,493.8676549442379,493.8676549442379,34338.6791,5.0,804.9761,1,2,3,4,5,6 +2209.5,78.0878,2057.46585,100,1497.0222620947193,1497.0222620947193,492.37202254394714,492.37202254394714,34303.251650000006,5.0,807.0363,1,2,3,4,5,6 +2210.0,77.8506,2051.2228,100,1502.4622557051584,1502.4622557051584,490.87639014365635,490.87639014365635,34267.8242,5.0,809.0965,1,2,3,4,5,6 +2210.5,77.55335,2043.3613500000001,100,1508.7514188619837,1508.7514188619837,489.0021206201048,489.0021206201048,34223.2129,5.0,811.69075,1,2,3,4,5,6 +2211.0,77.2561,2035.4999,100,1515.0889782942709,1515.0889782942709,487.1278510965533,487.1278510965533,34178.6016,5.0,814.285,1,2,3,4,5,6 +2211.5,76.91329999999999,2026.4319500000001,100,1521.7421909344675,1521.7421909344675,484.96637223137753,484.96637223137753,34127.14345,5.0,817.27745,1,2,3,4,5,6 +2212.0,76.5705,2017.364,100,1528.454975375634,1528.454975375634,482.8048933662019,482.8048933662019,34075.6853,5.0,820.2699,1,2,3,4,5,6 +2212.5,76.20205,2007.6336999999999,100,1535.241325882965,1535.241325882965,480.48168190799316,480.48168190799316,34020.9502,5.0,823.5112,1,2,3,4,5,6 +2213.0,75.8336,1997.9034,100,1542.0936215872646,1542.0936215872646,478.1584704497844,478.1584704497844,33966.2151,5.0,826.7525,1,2,3,4,5,6 +2213.5,75.45435,1987.89905,100,1549.0583275318122,1549.0583275318122,475.7671610576668,475.7671610576668,33913.4107,5.0,830.1894,1,2,3,4,5,6 +2214.0,75.0751,1977.8947,100,1556.0933994093914,1556.0933994093914,473.37585166554936,473.37585166554936,33860.6063,5.0,833.6263,1,2,3,4,5,6 +2214.5,74.69284999999999,1967.8207499999999,100,1563.0430951690826,1563.0430951690826,470.9656261806794,470.9656261806794,33808.02695,5.0,837.10185,1,2,3,4,5,6 +2215.0,74.3106,1957.7468,100,1570.0642887017466,1570.0642887017466,468.5554006958095,468.5554006958095,33755.4476,5.0,840.5774,1,2,3,4,5,6 +2215.5,73.9275,1947.65935,100,1577.036848006493,1577.036848006493,466.13981565132644,466.13981565132644,33702.7978,5.0,844.05755,1,2,3,4,5,6 +2216.0,73.5444,1937.5719,100,1584.082048803172,1584.082048803172,463.7242306068433,463.7242306068433,33650.148,5.0,847.5377,1,2,3,4,5,6 +2216.5,73.1592,1927.4241,100,1591.128133303809,1591.128133303809,461.29540429743355,461.29540429743355,33597.183300000004,5.0,851.0387000000001,1,2,3,4,5,6 +2217.0,72.774,1917.2763,100,1598.2488090526836,1598.2488090526836,458.86657798802383,458.86657798802383,33544.2186,5.0,854.5397,1,2,3,4,5,6 +2217.5,72.3875,1907.08105,100,1605.2370400552581,1605.2370400552581,456.4295547050881,456.4295547050881,33491.0062,5.0,858.05705,1,2,3,4,5,6 +2218.0,72.001,1896.8858,100,1612.3002964403272,1612.3002964403272,453.99253142215224,453.99253142215224,33437.7938,5.0,861.5744,1,2,3,4,5,6 +2218.5,71.61895000000001,1886.8110000000001,100,1619.0503773791709,1619.0503773791709,451.5835670101325,451.5835670101325,33384.9111,5.0,865.0501999999999,1,2,3,4,5,6 +2219.0,71.2369,1876.7362,100,1625.87286091899,1625.87286091899,449.1746025981127,449.1746025981127,33332.0284,5.0,868.526,1,2,3,4,5,6 +2219.5,70.86405,1866.9110500000002,100,1632.4195606940327,1632.4195606940327,446.82364753720043,446.82364753720043,33270.468250000005,5.0,871.9157,1,2,3,4,5,6 +2220.0,70.4912,1857.0859,100,1639.0355155537143,1639.0355155537143,444.47269247628805,444.47269247628805,33208.9081,5.0,875.3054,1,2,3,4,5,6 +2220.5,70.13155,1847.6037000000001,100,1645.2165448503563,1645.2165448503563,442.20496822348633,442.20496822348633,33139.75765,5.0,878.57675,1,2,3,4,5,6 +2221.0,69.7719,1838.1215,100,1651.4612962811675,1651.4612962811675,439.93724397068456,439.93724397068456,33070.6072,5.0,881.8481,1,2,3,4,5,6 +2221.5,69.42685,1829.0365,100,1657.4401479110745,1657.4401479110745,437.76157803594464,437.76157803594464,32996.600099999996,5.0,884.9824000000001,1,2,3,4,5,6 +2222.0,69.0818,1819.9515,100,1663.4787259162326,1663.4787259162326,435.5859121012046,435.5859121012046,32922.593,5.0,888.1167,1,2,3,4,5,6 +2222.5,68.7522,1811.25225,100,1669.022021040781,1669.022021040781,433.50766404413963,433.50766404413963,32847.6771,5.0,891.0899,1,2,3,4,5,6 +2223.0,68.4226,1802.553,100,1674.6187216212186,1674.6187216212186,431.42941598707455,431.42941598707455,32772.7612,5.0,894.0631,1,2,3,4,5,6 +2223.5,68.1137,1794.4108,100,1679.230070573174,1679.230070573174,429.4816889700011,429.4816889700011,32694.37905,5.0,896.6256,1,2,3,4,5,6 +2224.0,67.8048,1786.2686,100,1683.8834355974793,1683.8834355974793,427.53396195292765,427.53396195292765,32615.9969,5.0,899.1881,1,2,3,4,5,6 +2224.5,67.51785000000001,1778.7254,100,1688.0556850521757,1688.0556850521757,425.7246376811594,425.7246376811594,32540.632149999998,5.0,901.48875,1,2,3,4,5,6 +2225.0,67.2309,1771.1822,100,1692.2635498855434,1692.2635498855434,423.9153134093912,423.9153134093912,32465.2674,5.0,903.7894,1,2,3,4,5,6 +2225.5,66.9591,1764.03915,100,1696.4014156104247,1696.4014156104247,422.20151540602257,422.20151540602257,32393.90045,5.0,905.96805,1,2,3,4,5,6 +2226.0,66.6873,1756.8961,100,1700.5730110530792,1700.5730110530792,420.48771740265397,420.48771740265397,32322.5335,5.0,908.1467,1,2,3,4,5,6 +2226.5,66.42095,1749.8878,100,1704.792854694189,1704.792854694189,418.8082836344523,418.8082836344523,32252.513,5.0,910.2842499999999,1,2,3,4,5,6 +2227.0,66.1546,1742.8795,100,1709.0466779936698,1709.0466779936698,417.12884986625056,417.12884986625056,32182.4925,5.0,912.4218,1,2,3,4,5,6 +2227.5,65.8886,1735.86455,100,1713.2797978102437,1713.2797978102437,415.4516229755367,415.4516229755367,32112.40535,5.0,914.56135,1,2,3,4,5,6 +2228.0,65.6226,1728.8496,100,1717.5472353731798,1717.5472353731798,413.77439608482274,413.77439608482274,32042.3182,5.0,916.7009,1,2,3,4,5,6 +2228.5,65.3605,1721.9252999999999,100,1721.5432394030033,1721.5432394030033,412.121760114687,412.121760114687,31973.137300000002,5.0,918.8128,1,2,3,4,5,6 +2229.0,65.0984,1715.001,100,1725.5714209565826,1725.5714209565826,410.46912414455124,410.46912414455124,31903.9564,5.0,920.9247,1,2,3,4,5,6 +2229.5,64.8509,1708.46285,100,1729.0757154488217,1729.0757154488217,408.9085464924771,408.9085464924771,31838.633,5.0,922.91885,1,2,3,4,5,6 +2230.0,64.6034,1701.9247,100,1732.6068603200454,1732.6068603200454,407.34796884040304,407.34796884040304,31773.3096,5.0,924.913,1,2,3,4,5,6 +2230.5,64.38125,1696.06225,100,1735.5450991243574,1735.5450991243574,405.94723217208696,405.94723217208696,31714.73715,5.0,926.70105,1,2,3,4,5,6 +2231.0,64.1591,1690.1998,100,1738.5036851514442,1738.5036851514442,404.5464955037708,404.5464955037708,31656.1647,5.0,928.4891,1,2,3,4,5,6 +2231.5,63.967749999999995,1685.1579000000002,100,1740.9025137667027,1740.9025137667027,403.3399640543794,403.3399640543794,31605.79085,5.0,930.02685,1,2,3,4,5,6 +2232.0,63.7764,1680.116,100,1743.3157369183582,1743.3157369183582,402.1334326049881,402.1334326049881,31555.417,5.0,931.5646,1,2,3,4,5,6 +2232.5,63.61585,1675.8935999999999,100,1745.2823470565902,1745.2823470565902,401.1211063745215,401.1211063745215,31513.23065,5.0,932.8524500000001,1,2,3,4,5,6 +2233.0,63.4553,1671.6712,100,1747.2589087436352,1747.2589087436352,400.10878014405483,400.10878014405483,31471.0443,5.0,934.1403,1,2,3,4,5,6 +2233.5,63.3214,1668.1545999999998,100,1748.9131026951395,1748.9131026951395,399.2644918708721,399.2644918708721,31435.90705,5.0,935.21285,1,2,3,4,5,6 +2234.0,63.1875,1664.638,100,1750.5743074183977,1750.5743074183977,398.42020359768946,398.42020359768946,31400.7698,5.0,936.2854,1,2,3,4,5,6 +2234.5,63.075050000000005,1661.6819,100,1751.9866033399894,1751.9866033399894,397.7111653876866,397.7111653876866,31371.1793,5.0,937.187,1,2,3,4,5,6 +2235.0,62.9626,1658.7258,100,1753.4039439286182,1753.4039439286182,397.0021271776836,397.0021271776836,31341.5888,5.0,938.0886,1,2,3,4,5,6 +2235.5,62.865700000000004,1656.19015,100,1754.7074394781255,1754.7074394781255,396.39113738178077,396.39113738178077,31316.158450000003,5.0,938.8620000000001,1,2,3,4,5,6 +2236.0,62.7688,1653.6545,100,1756.0149595977623,1756.0149595977623,395.7801475858777,395.7801475858777,31290.7281,5.0,939.6354,1,2,3,4,5,6 +2236.5,62.6787,1651.2962,100,1757.4247588415205,1757.4247588415205,395.2120342668803,395.2120342668803,31267.076399999998,5.0,940.35465,1,2,3,4,5,6 +2237.0,62.5886,1648.9379,100,1758.8386170644496,1758.8386170644496,394.6439209478828,394.6439209478828,31243.4247,5.0,941.0739,1,2,3,4,5,6 +2237.5,62.4962,1646.5052,100,1760.4231635203423,1760.4231635203423,394.0613052911085,394.0613052911085,31219.027000000002,5.0,941.8159,1,2,3,4,5,6 +2238.0,62.4038,1644.0725,100,1762.0124023857525,1762.0124023857525,393.4786896343342,393.4786896343342,31194.6293,5.0,942.5579,1,2,3,4,5,6 +2238.5,62.308099999999996,1641.53665,100,1763.5374337044464,1763.5374337044464,392.8752662755323,392.8752662755323,31169.196750000003,5.0,943.3313499999999,1,2,3,4,5,6 +2239.0,62.2124,1639.0008,100,1765.0671568690486,1765.0671568690486,392.27184291673035,392.27184291673035,31143.7642,5.0,944.1048,1,2,3,4,5,6 +2239.5,62.1222,1636.6024499999999,100,1766.2543254102402,1766.2543254102402,391.7030990613078,391.7030990613078,31119.71065,5.0,944.8362999999999,1,2,3,4,5,6 +2240.0,62.032,1634.2041,100,1767.4449464469953,1767.4449464469953,391.1343552058852,391.1343552058852,31095.6571,5.0,945.5678,1,2,3,4,5,6 +2240.5,61.95935,1632.2723,100,1768.122171649638,1768.122171649638,390.6762704930644,390.6762704930644,31076.28315,5.0,946.15695,1,2,3,4,5,6 +2241.0,61.8867,1630.3405,100,1768.800986867938,1768.800986867938,390.21818578024335,390.21818578024335,31056.9092,5.0,946.7461,1,2,3,4,5,6 +2241.5,61.8408,1629.1263,100,1768.9279313657,1768.9279313657,389.9287695611315,389.9287695611315,31044.73175,5.0,947.11645,1,2,3,4,5,6 +2242.0,61.7949,1627.9121,100,1769.055064447066,1769.055064447066,389.63935334201966,389.63935334201966,31032.5543,5.0,947.4868,1,2,3,4,5,6 +2242.5,61.77905,1627.50005,100,1768.708133517754,1768.708133517754,389.53941331864434,389.53941331864434,31028.3835,5.0,947.6113,1,2,3,4,5,6 +2243.0,61.7632,1627.088,100,1768.3610245259315,1768.3610245259315,389.439473295269,389.439473295269,31024.2127,5.0,947.7358,1,2,3,4,5,6 +2243.5,61.77535,1627.4158499999999,100,1767.6219973177,1767.6219973177,389.5160834709164,389.5160834709164,31027.0101,5.0,947.62095,1,2,3,4,5,6 +2244.0,61.7875,1627.7437,100,1766.883260756626,1766.883260756626,389.5926936465636,389.5926936465636,31029.8075,5.0,947.5061,1,2,3,4,5,6 +2244.5,61.82325,1628.6958,100,1765.8560257670053,1765.8560257670053,389.81811041852984,389.81811041852984,31038.649449999997,5.0,947.1943,1,2,3,4,5,6 +2245.0,61.859,1629.6479,100,1764.8299781115115,1764.8299781115115,390.04352719049615,390.04352719049615,31047.4914,5.0,946.8825,1,2,3,4,5,6 +2245.5,61.9116,1631.0515,100,1763.7221692865312,1763.7221692865312,390.3751893500885,390.3751893500885,31061.0851,5.0,946.43975,1,2,3,4,5,6 +2246.0,61.9642,1632.4551,100,1762.6162412489791,1762.6162412489791,390.7068515096807,390.7068515096807,31074.6788,5.0,945.997,1,2,3,4,5,6 +2246.5,62.0214,1633.992,100,1761.7834301386297,1761.7834301386297,391.0675183448267,391.0675183448267,31090.03365,5.0,945.52645,1,2,3,4,5,6 +2247.0,62.0786,1635.5289,100,1760.9521537534674,1760.9521537534674,391.42818517997273,391.42818517997273,31105.3885,5.0,945.0559,1,2,3,4,5,6 +2247.5,62.12315,1636.73425,100,1760.7296049540307,1760.7296049540307,391.7090891573461,391.7090891573461,31117.959450000002,5.0,944.7029,1,2,3,4,5,6 +2248.0,62.1677,1637.9396,100,1760.5073751160164,1760.5073751160164,391.98999313471944,391.98999313471944,31130.5304,5.0,944.3499,1,2,3,4,5,6 +2248.5,62.1846,1638.39195,100,1760.9579038700897,1760.9579038700897,392.096553790558,392.096553790558,31135.93795,5.0,944.2383500000001,1,2,3,4,5,6 +2249.0,62.2015,1638.8443,100,1761.4081878089755,1761.4081878089755,392.2031144463965,392.2031144463965,31141.3455,5.0,944.1268,1,2,3,4,5,6 +2249.5,62.186800000000005,1638.4371,100,1762.2546164137727,1762.2546164137727,392.1104255919098,392.1104255919098,31137.686,5.0,944.26385,1,2,3,4,5,6 +2250.0,62.1721,1638.0299,100,1763.1014452785096,1763.1014452785096,392.0177367374229,392.0177367374229,31134.0265,5.0,944.4009,1,2,3,4,5,6 +2250.5,62.134150000000005,1637.00745,100,1764.0252781280503,1764.0252781280503,391.7784481641049,391.7784481641049,31123.7723,5.0,944.7127499999999,1,2,3,4,5,6 +2251.0,62.0962,1635.985,100,1764.9502401757277,1764.9502401757277,391.5391595907869,391.5391595907869,31113.5181,5.0,945.0246,1,2,3,4,5,6 +2251.5,62.048,1634.6986,100,1765.7846458387053,1765.7846458387053,391.2352410338982,391.2352410338982,31100.61655,5.0,945.41695,1,2,3,4,5,6 +2252.0,61.9998,1633.4122,100,1766.6203488720935,1766.6203488720935,390.93132247700936,390.93132247700936,31087.715,5.0,945.8093,1,2,3,4,5,6 +2252.5,61.95155,1632.13425,100,1767.305301901244,1767.305301901244,390.6270886519081,390.6270886519081,31074.8985,5.0,946.1990499999999,1,2,3,4,5,6 +2253.0,61.9033,1630.8563,100,1767.9913226920053,1767.9913226920053,390.3228548268068,390.3228548268068,31062.082,5.0,946.5888,1,2,3,4,5,6 +2253.5,61.85945,1629.7031499999998,100,1768.5918012526786,1768.5918012526786,390.046364604409,390.046364604409,31050.51705,5.0,946.9404999999999,1,2,3,4,5,6 +2254.0,61.8156,1628.55,100,1769.1931317337371,1769.1931317337371,389.7698743820112,389.7698743820112,31038.9521,5.0,947.2922,1,2,3,4,5,6 +2254.5,61.774150000000006,1627.4687,100,1769.8565594184622,1769.8565594184622,389.50851703381545,389.50851703381545,31028.1077,5.0,947.6220000000001,1,2,3,4,5,6 +2255.0,61.7327,1626.3874,100,1770.5208780111673,1770.5208780111673,389.2471596856196,389.2471596856196,31017.2633,5.0,947.9518,1,2,3,4,5,6 +2255.5,61.68875,1625.2363500000001,100,1771.3186610362504,1771.3186610362504,388.9700389267967,388.9700389267967,31005.7189,5.0,948.3029,1,2,3,4,5,6 +2256.0,61.6448,1624.0853,100,1772.117581628945,1772.117581628945,388.69291816797386,388.69291816797386,30994.1745,5.0,948.654,1,2,3,4,5,6 +2256.5,61.59605,1622.7926499999999,100,1772.9826166125915,1772.9826166125915,388.3855316607471,388.3855316607471,30981.2106,5.0,949.04825,1,2,3,4,5,6 +2257.0,61.5473,1621.5,100,1773.849021939224,1773.849021939224,388.07814515352044,388.07814515352044,30968.2467,5.0,949.4425,1,2,3,4,5,6 +2257.5,61.49665,1620.15265,100,1774.6231801732288,1774.6231801732288,387.7587784542172,387.7587784542172,30954.7341,5.0,949.8534500000001,1,2,3,4,5,6 +2258.0,61.446,1618.8053,100,1775.398614686066,1775.398614686066,387.4394117549139,387.4394117549139,30941.2215,5.0,950.2644,1,2,3,4,5,6 +2258.5,61.40015,1617.5909000000001,100,1775.953803191034,1775.953803191034,387.1503108040147,387.1503108040147,30929.0418,5.0,950.6348,1,2,3,4,5,6 +2259.0,61.3543,1616.3765,100,1776.509821479505,1776.509821479505,386.8612098531153,386.8612098531153,30916.8621,5.0,951.0052,1,2,3,4,5,6 +2259.5,61.31765,1615.4139,100,1776.8945640284649,1776.8945640284649,386.63011825332325,386.63011825332325,30907.20805,5.0,951.2988,1,2,3,4,5,6 +2260.0,61.281,1614.4513,100,1777.2797667792624,1777.2797667792624,386.3990266535314,386.3990266535314,30897.554,5.0,951.5924,1,2,3,4,5,6 +2260.5,61.2517,1613.6888,100,1777.6555860653662,1777.6555860653662,386.2142794809828,386.2142794809828,30889.90685,5.0,951.82495,1,2,3,4,5,6 +2261.0,61.2224,1612.9263,100,1778.0317650729148,1778.0317650729148,386.02953230843417,386.02953230843417,30882.2597,5.0,952.0575,1,2,3,4,5,6 +2261.5,61.1953,1612.21935,100,1778.4687923418953,1778.4687923418953,385.8586569372374,385.8586569372374,30875.16965,5.0,952.2731,1,2,3,4,5,6 +2262.0,61.1682,1611.5124,100,1778.9062068525805,1778.9062068525805,385.6877815660406,385.6877815660406,30868.0796,5.0,952.4887,1,2,3,4,5,6 +2262.5,61.14005,1610.77035,100,1779.3906760298692,1779.3906760298692,385.51028556238043,385.51028556238043,30860.63765,5.0,952.71505,1,2,3,4,5,6 +2263.0,61.1119,1610.0283,100,1779.8755915296367,1779.8755915296367,385.3327895587203,385.3327895587203,30853.1957,5.0,952.9414,1,2,3,4,5,6 +2263.5,61.0827,1609.2528,100,1780.3394646602067,1780.3394646602067,385.1486729225969,385.1486729225969,30845.4179,5.0,953.1779,1,2,3,4,5,6 +2264.0,61.0535,1608.4773,100,1780.803781503108,1780.803781503108,384.9645562864734,384.9645562864734,30837.6401,5.0,953.4144,1,2,3,4,5,6 +2264.5,61.025999999999996,1607.7458000000001,100,1781.1624350113068,1781.1624350113068,384.7911587695762,384.7911587695762,30830.30385,5.0,953.6375,1,2,3,4,5,6 +2265.0,60.9985,1607.0143,100,1781.5214119035718,1781.5214119035718,384.61776125267914,384.61776125267914,30822.9676,5.0,953.8606,1,2,3,4,5,6 +2265.5,60.9769,1606.4406,100,1781.7002254296303,1781.7002254296303,384.4815653848617,384.4815653848617,30817.213900000002,5.0,954.0355999999999,1,2,3,4,5,6 +2266.0,60.9553,1605.8669,100,1781.8791656837066,1781.8791656837066,384.34536951704433,384.34536951704433,30811.4602,5.0,954.2106,1,2,3,4,5,6 +2266.5,60.9429,1605.5373,100,1781.8700171800165,1781.8700171800165,384.2671830003344,384.2671830003344,30808.155,5.0,954.3111,1,2,3,4,5,6 +2267.0,60.9305,1605.2077,100,1781.8608649526918,1781.8608649526918,384.1889964836244,384.1889964836244,30804.8498,5.0,954.4116,1,2,3,4,5,6 +2267.5,60.9289,1605.16385,100,1781.6539931625218,1781.6539931625218,384.1789079008232,384.1789079008232,30804.33775,5.0,954.4228499999999,1,2,3,4,5,6 +2268.0,60.9273,1605.12,100,1781.4471105071125,1781.4471105071125,384.16881931802186,384.16881931802186,30803.8257,5.0,954.4341,1,2,3,4,5,6 +2268.5,60.9375,1605.3874,100,1781.018379913846,1781.018379913846,384.23313403338005,384.23313403338005,30806.14445,5.0,954.3415,1,2,3,4,5,6 +2269.0,60.9477,1605.6548,100,1780.5897928223708,1780.5897928223708,384.29744874873825,384.29744874873825,30808.4632,5.0,954.2489,1,2,3,4,5,6 +2269.5,60.9695,1606.2353,100,1780.0009734867435,1780.0009734867435,384.4349056894058,384.4349056894058,30813.85345,5.0,954.05875,1,2,3,4,5,6 +2270.0,60.9913,1606.8158,100,1779.4125750721823,1779.4125750721823,384.57236263007337,384.57236263007337,30819.2437,5.0,953.8686,1,2,3,4,5,6 +2270.5,61.0227,1607.64615,100,1778.733468873059,1778.733468873059,384.7703510675486,384.7703510675486,30827.2394,5.0,953.6052999999999,1,2,3,4,5,6 +2271.0,61.0541,1608.4765,100,1778.0550611998215,1778.0550611998215,384.9683395050238,384.9683395050238,30835.2351,5.0,953.342,1,2,3,4,5,6 +2271.5,61.093199999999996,1609.50405,100,1777.2705257213568,1777.2705257213568,385.2148792472303,385.2148792472303,30845.28225,5.0,953.0208,1,2,3,4,5,6 +2272.0,61.1323,1610.5316,100,1776.4869938150537,1776.4869938150537,385.46141898943677,385.46141898943677,30855.3294,5.0,952.6996,1,2,3,4,5,6 +2272.5,61.18,1611.7867,100,1775.5161530075188,1775.5161530075188,385.76218486420004,385.76218486420004,30867.618150000002,5.0,952.3077000000001,1,2,3,4,5,6 +2273.0,61.2277,1613.0418,100,1774.5468248848156,1774.5468248848156,386.06295073896337,386.06295073896337,30879.9069,5.0,951.9158,1,2,3,4,5,6 +2273.5,61.28345,1614.5221000000001,100,1773.5222005941246,1773.5222005941246,386.4144747959458,386.4144747959458,30894.5006,5.0,951.45665,1,2,3,4,5,6 +2274.0,61.3392,1616.0024,100,1772.499438825417,1772.499438825417,386.765998852928,386.765998852928,30909.0943,5.0,950.9975,1,2,3,4,5,6 +2274.5,61.395399999999995,1617.5079,100,1771.7370306570197,1771.7370306570197,387.12036032382326,387.12036032382326,30924.25115,5.0,950.5400999999999,1,2,3,4,5,6 +2275.0,61.4516,1619.0134,100,1770.9760169954893,1770.9760169954893,387.47472179471845,387.47472179471845,30939.408,5.0,950.0827,1,2,3,4,5,6 +2275.5,61.4949,1620.1787,100,1770.7318830342028,1770.7318830342028,387.74774406677835,387.74774406677835,30951.62115,5.0,949.74325,1,2,3,4,5,6 +2276.0,61.5382,1621.344,100,1770.4880926318933,1770.4880926318933,388.02076633883826,388.02076633883826,30963.8343,5.0,949.4038,1,2,3,4,5,6 +2276.5,61.55675,1621.84005,100,1770.8425578835788,1770.8425578835788,388.1377308456906,388.1377308456906,30969.70225,5.0,949.27955,1,2,3,4,5,6 +2277.0,61.5753,1622.3361,100,1771.196809564874,1771.196809564874,388.254695352543,388.254695352543,30975.5702,5.0,949.1553,1,2,3,4,5,6 +2277.5,61.56385,1622.02605,100,1772.012939070575,1772.012939070575,388.1824989318713,388.1824989318713,30972.9917,5.0,949.26595,1,2,3,4,5,6 +2278.0,61.5524,1621.716,100,1772.8293722096944,1772.8293722096944,388.11030251119956,388.11030251119956,30970.4132,5.0,949.3766,1,2,3,4,5,6 +2278.5,61.51465,1620.7017999999998,100,1773.8594275672542,1773.8594275672542,387.87227501073176,387.87227501073176,30960.24135,5.0,949.68595,1,2,3,4,5,6 +2279.0,61.4769,1619.6876,100,1774.89074793947,1774.89074793947,387.6342475102639,387.6342475102639,30950.0695,5.0,949.9953,1,2,3,4,5,6 +2279.5,61.4251,1618.2952500000001,100,1775.8183032506254,1775.8183032506254,387.3076296420722,387.3076296420722,30936.10555,5.0,950.41995,1,2,3,4,5,6 +2280.0,61.3733,1616.9029,100,1776.7474243034026,1776.7474243034026,386.9810117738806,386.9810117738806,30922.1416,5.0,950.8446,1,2,3,4,5,6 +2280.5,61.324200000000005,1615.5842499999999,100,1777.285428982359,1777.285428982359,386.6714183891661,386.6714183891661,30908.9167,5.0,951.2468,1,2,3,4,5,6 +2281.0,61.2751,1614.2656,100,1777.8242958722224,1777.8242958722224,386.36182500445153,386.36182500445153,30895.6918,5.0,951.649,1,2,3,4,5,6 +2281.5,61.242000000000004,1613.38395,100,1777.935908347213,1777.935908347213,386.15311744774993,386.15311744774993,30886.8497,5.0,951.9178999999999,1,2,3,4,5,6 +2282.0,61.2089,1612.5023,100,1778.0476415357898,1778.0476415357898,385.94440989104834,385.94440989104834,30878.0076,5.0,952.1868,1,2,3,4,5,6 +2282.5,61.1973,1612.1981500000002,100,1777.7799110254866,1777.7799110254866,385.871267665739,385.871267665739,30874.922,5.0,952.2784999999999,1,2,3,4,5,6 +2283.0,61.1857,1611.894,100,1777.5120789988512,1777.5120789988512,385.7981254404297,385.7981254404297,30871.8364,5.0,952.3702,1,2,3,4,5,6 +2283.5,61.196799999999996,1612.1837,100,1776.8510756281376,1776.8510756281376,385.86811498361357,385.86811498361357,30874.26685,5.0,952.26745,1,2,3,4,5,6 +2284.0,61.2079,1612.4734,100,1776.190312002209,1776.190312002209,385.9381045267975,385.9381045267975,30876.6973,5.0,952.1647,1,2,3,4,5,6 +2284.5,61.240899999999996,1613.3539,100,1775.2047483299561,1775.2047483299561,386.1461815470741,386.1461815470741,30884.7666,5.0,951.87305,1,2,3,4,5,6 +2285.0,61.2739,1614.2344,100,1774.220246238611,1774.220246238611,386.35425856735054,386.35425856735054,30892.8359,5.0,951.5814,1,2,3,4,5,6 +2285.5,61.323449999999994,1615.5566,100,1773.1696466196863,1773.1696466196863,386.6666893659779,386.6666893659779,30905.5671,5.0,951.1621,1,2,3,4,5,6 +2286.0,61.373,1616.8788,100,1772.120743421374,1772.120743421374,386.97912016460526,386.97912016460526,30918.2983,5.0,950.7428,1,2,3,4,5,6 +2286.5,61.429050000000004,1618.36965,100,1771.2074109399377,1771.2074109399377,387.332535830863,387.332535830863,30933.10525,5.0,950.2837,1,2,3,4,5,6 +2287.0,61.4851,1619.8605,100,1770.2957436517138,1770.2957436517138,387.68595149712047,387.68595149712047,30947.9122,5.0,949.8246,1,2,3,4,5,6 +2287.5,61.540850000000006,1621.3291,100,1769.4497612398923,1769.4497612398923,388.0374755541028,388.0374755541028,30962.713,5.0,949.37885,1,2,3,4,5,6 +2288.0,61.5966,1622.7977,100,1768.6053101956925,1768.6053101956925,388.3889996110852,388.3889996110852,30977.5138,5.0,948.9331,1,2,3,4,5,6 +2288.5,61.64965,1624.2044500000002,100,1767.8477949834264,1767.8477949834264,388.72349918459025,388.72349918459025,30991.74435,5.0,948.50775,1,2,3,4,5,6 +2289.0,61.7027,1625.6112,100,1767.0915823456671,1767.0915823456671,389.05799875809544,389.05799875809544,31005.9749,5.0,948.0824,1,2,3,4,5,6 +2289.5,61.748000000000005,1626.8168,100,1766.6319793677521,1766.6319793677521,389.343631758657,389.343631758657,31018.377950000002,5.0,947.72415,1,2,3,4,5,6 +2290.0,61.7933,1628.0224,100,1766.1730502497844,1766.1730502497844,389.6292647592183,389.6292647592183,31030.781,5.0,947.3659,1,2,3,4,5,6 +2290.5,61.824650000000005,1628.85375,100,1766.0298766592289,1766.0298766592289,389.8269379284811,389.8269379284811,31039.6072,5.0,947.12715,1,2,3,4,5,6 +2291.0,61.856,1629.6851,100,1765.8868481958095,1765.8868481958095,390.0246110977437,390.0246110977437,31048.4334,5.0,946.8884,1,2,3,4,5,6 +2291.5,61.87055,1630.0664499999998,100,1766.037297648073,1766.037297648073,390.116354147593,390.116354147593,31052.81275,5.0,946.7889,1,2,3,4,5,6 +2292.0,61.8851,1630.4478,100,1766.1876763550517,1766.1876763550517,390.2080971974421,390.2080971974421,31057.1921,5.0,946.6894,1,2,3,4,5,6 +2292.5,61.8836,1630.4011,100,1766.5236988313543,1766.5236988313543,390.19863915106595,390.19863915106595,31057.09015,5.0,946.71475,1,2,3,4,5,6 +2293.0,61.8821,1630.3544,100,1766.8597375977868,1766.8597375977868,390.1891811046897,390.1891811046897,31056.9882,5.0,946.7401,1,2,3,4,5,6 +2293.5,61.86835,1629.9838,100,1767.2695592496002,1767.2695592496002,390.1024823462411,390.1024823462411,31053.30165,5.0,946.8540499999999,1,2,3,4,5,6 +2294.0,61.8546,1629.6132,100,1767.6795631044413,1767.6795631044413,390.0157835877926,390.0157835877926,31049.6151,5.0,946.968,1,2,3,4,5,6 +2294.5,61.83385,1629.0578,100,1768.0908053921924,1768.0908053921924,389.8849472795884,389.8849472795884,31044.04475,5.0,947.1374,1,2,3,4,5,6 +2295.0,61.8131,1628.5024,100,1768.5023237792639,1768.5023237792639,389.7541109713842,389.7541109713842,31038.4744,5.0,947.3068,1,2,3,4,5,6 +2295.5,61.79025,1627.894,100,1768.8583688203234,1768.8583688203234,389.6100333982534,389.6100333982534,31032.372649999998,5.0,947.49235,1,2,3,4,5,6 +2296.0,61.7674,1627.2856,100,1769.2146772893145,1769.2146772893145,389.4659558251225,389.4659558251225,31026.2709,5.0,947.6779,1,2,3,4,5,6 +2296.5,61.7464,1626.7285499999998,100,1769.4783538311542,1769.4783538311542,389.3335431758556,389.3335431758556,31020.6843,5.0,947.8478,1,2,3,4,5,6 +2297.0,61.7254,1626.1715,100,1769.7422097872186,1769.7422097872186,389.2011305265887,389.2011305265887,31015.0977,5.0,948.0177,1,2,3,4,5,6 +2297.5,61.70695,1625.6912,100,1770.0024700297133,1770.0024700297133,389.08479655616134,389.08479655616134,31010.280749999998,5.0,948.1641999999999,1,2,3,4,5,6 +2298.0,61.6885,1625.2109,100,1770.26288595119,1770.26288595119,388.9684625857341,388.9684625857341,31005.4638,5.0,948.3107,1,2,3,4,5,6 +2298.5,61.677049999999994,1624.8598000000002,100,1770.1744950674522,1770.1744950674522,388.8962661650623,388.8962661650623,31001.93915,5.0,948.41765,1,2,3,4,5,6 +2299.0,61.6656,1624.5087,100,1770.086071359072,1770.086071359072,388.8240697443905,388.8240697443905,30998.4145,5.0,948.5246,1,2,3,4,5,6 +2299.5,61.675349999999995,1624.7709,100,1769.2958456012007,1769.2958456012007,388.88554704583595,388.88554704583595,31000.3674,5.0,948.42415,1,2,3,4,5,6 +2300.0,61.6851,1625.0331,100,1768.5058696508559,1768.5058696508559,388.9470243472813,388.9470243472813,31002.3203,5.0,948.3237,1,2,3,4,5,6 +2300.5,61.726299999999995,1626.1062000000002,100,1767.1345994981073,1767.1345994981073,389.20680535441437,389.20680535441437,31012.2889,5.0,947.97235,1,2,3,4,5,6 +2301.0,61.7675,1627.1793,100,1765.7651586675843,1765.7651586675843,389.4665863615475,389.4665863615475,31022.2575,5.0,947.621,1,2,3,4,5,6 +2301.5,61.84305,1629.1824000000001,100,1763.763611464829,1763.763611464829,389.9429566306958,389.9429566306958,31040.734,5.0,946.96115,1,2,3,4,5,6 +2302.0,61.9186,1631.1855,100,1761.7669486390196,1761.7669486390196,390.41932689984407,390.41932689984407,31059.2105,5.0,946.3013,1,2,3,4,5,6 +2302.5,62.0283,1634.0686500000002,100,1759.329062637538,1759.329062637538,391.11102535815724,391.11102535815724,31087.605199999998,5.0,945.40615,1,2,3,4,5,6 +2303.0,62.138,1636.9518,100,1756.8997844475205,1756.8997844475205,391.8027238164705,391.8027238164705,31115.9999,5.0,944.511,1,2,3,4,5,6 +2303.5,62.2791,1640.6756,100,1754.0196556308622,1754.0196556308622,392.6924107122589,392.6924107122589,31152.74205,5.0,943.3569,1,2,3,4,5,6 +2304.0,62.4202,1644.3994,100,1751.1525477970272,1751.1525477970272,393.5820976080474,393.5820976080474,31189.4842,5.0,942.2028,1,2,3,4,5,6 +2304.5,62.5881,1648.84145,100,1747.9873483297943,1747.9873483297943,394.64076826575746,394.64076826575746,31233.583599999998,5.0,940.8343500000001,1,2,3,4,5,6 +2305.0,62.756,1653.2835,100,1744.8390854738986,1744.8390854738986,395.6994389234675,395.6994389234675,31277.683,5.0,939.4659,1,2,3,4,5,6 +2305.5,62.9416,1658.19195,100,1741.6439379996693,1741.6439379996693,396.8697145284168,396.8697145284168,31326.7049,5.0,937.9666500000001,1,2,3,4,5,6 +2306.0,63.1272,1663.1004,100,1738.4675786032012,1738.4675786032012,398.039990133366,398.039990133366,31375.7268,5.0,936.4674,1,2,3,4,5,6 +2306.5,63.32,1668.18705,100,1735.3584027005681,1735.3584027005681,399.25566436092106,399.25566436092106,31426.631849999998,5.0,934.92335,1,2,3,4,5,6 +2307.0,63.5128,1673.2737,100,1732.268103279969,1732.268103279969,400.47133858847604,400.47133858847604,31477.5369,5.0,933.3793,1,2,3,4,5,6 +2307.5,63.7074,1678.4018999999998,100,1729.1631117735142,1729.1631117735142,401.6983624716826,401.6983624716826,31528.9646,5.0,931.8255999999999,1,2,3,4,5,6 +2308.0,63.902,1683.5301,100,1726.0770314544147,1726.0770314544147,402.92538635488904,402.92538635488904,31580.3923,5.0,930.2719,1,2,3,4,5,6 +2308.5,64.09649999999999,1688.6598,100,1723.0182882216661,1723.0182882216661,404.15177970167036,404.15177970167036,31631.9181,5.0,928.7184,1,2,3,4,5,6 +2309.0,64.291,1693.7895,100,1719.97805226237,1719.97805226237,405.37817304845186,405.37817304845186,31683.4439,5.0,927.1649,1,2,3,4,5,6 +2309.5,64.4806,1698.799,100,1717.1512534777908,1717.1512534777908,406.5736701104044,406.5736701104044,31733.983549999997,5.0,925.6502499999999,1,2,3,4,5,6 +2310.0,64.6702,1703.8085,100,1714.34102990249,1714.34102990249,407.76916717235684,407.76916717235684,31784.5232,5.0,924.1356,1,2,3,4,5,6 +2310.5,64.84835,1708.5088,100,1711.814972161974,1711.814972161974,408.89246781363767,408.89246781363767,31832.049899999998,5.0,922.7171,1,2,3,4,5,6 +2311.0,65.0265,1713.2091,100,1709.302755461235,1709.302755461235,410.0157684549184,410.0157684549184,31879.5766,5.0,921.2986,1,2,3,4,5,6 +2311.5,65.18955,1717.50355,100,1707.038074169863,1707.038074169863,411.043858096012,411.043858096012,31923.0178,5.0,920.00305,1,2,3,4,5,6 +2312.0,65.3526,1721.798,100,1704.7846933098303,1704.7846933098303,412.0719477371056,412.0719477371056,31966.459,5.0,918.7075,1,2,3,4,5,6 +2312.5,65.50075,1725.6972,100,1702.7216214776167,1702.7216214776167,413.00608745086225,413.00608745086225,32005.860849999997,5.0,917.5300500000001,1,2,3,4,5,6 +2313.0,65.6489,1729.5964,100,1700.667861121816,1700.667861121816,413.94022716461893,413.94022716461893,32045.2627,5.0,916.3526,1,2,3,4,5,6 +2313.5,65.78389999999999,1733.1491999999998,100,1698.7676891914284,1698.7676891914284,414.7914513384774,414.7914513384774,32081.112849999998,5.0,915.27845,1,2,3,4,5,6 +2314.0,65.9189,1736.702,100,1696.875300255314,1696.875300255314,415.64267551233604,415.64267551233604,32116.963,5.0,914.2043,1,2,3,4,5,6 +2314.5,66.0435,1739.9756,100,1695.0688534375072,1695.0688534375072,416.4283238979862,416.4283238979862,32149.940000000002,5.0,913.2130999999999,1,2,3,4,5,6 +2315.0,66.1681,1743.2492,100,1693.2692099969627,1693.2692099969627,417.21397228363645,417.21397228363645,32182.917,5.0,912.2219,1,2,3,4,5,6 +2315.5,66.28765,1746.3795,100,1691.3817511255868,1691.3817511255868,417.96777857982005,417.96777857982005,32214.35435,5.0,911.27145,1,2,3,4,5,6 +2316.0,66.4072,1749.5098,100,1689.5010880747868,1689.5010880747868,418.72158487600376,418.72158487600376,32245.7917,5.0,910.321,1,2,3,4,5,6 +2316.5,66.53200000000001,1752.7784000000001,100,1687.262282961582,1687.262282961582,419.5084943345042,419.5084943345042,32278.431750000003,5.0,909.32365,1,2,3,4,5,6 +2317.0,66.6568,1756.047,100,1685.031861175454,1685.031861175454,420.2954037930044,420.2954037930044,32311.0718,5.0,908.3263,1,2,3,4,5,6 +2317.5,66.79805,1759.7621,100,1682.3352467923837,1682.3352467923837,421.1860364934306,421.1860364934306,32348.0533,5.0,907.18955,1,2,3,4,5,6 +2318.0,66.9393,1763.4772,100,1679.6500127727659,1679.6500127727659,422.0766691938567,422.0766691938567,32385.0348,5.0,906.0528,1,2,3,4,5,6 +2318.5,67.10185,1767.7624,100,1676.6125626491669,1676.6125626491669,423.1016061528249,423.1016061528249,32427.71465,5.0,904.7422,1,2,3,4,5,6 +2319.0,67.2644,1772.0476,100,1673.5897930257315,1673.5897930257315,424.1265431117931,424.1265431117931,32470.3945,5.0,903.4316,1,2,3,4,5,6 +2319.5,67.4473,1776.86735,100,1670.2657036827272,1670.2657036827272,425.2797942332652,425.2797942332652,32518.469749999997,5.0,901.9594999999999,1,2,3,4,5,6 +2320.0,67.6302,1781.6871,100,1666.9595937613667,1666.9595937613667,426.43304535473726,426.43304535473726,32566.545,5.0,900.4874,1,2,3,4,5,6 +2320.5,67.83295000000001,1787.02575,100,1663.2933734269259,1663.2933734269259,427.7114579565878,427.7114579565878,32619.84175,5.0,898.858,1,2,3,4,5,6 +2321.0,68.0357,1792.3644,100,1659.6490041551713,1659.6490041551713,428.98987055843844,428.98987055843844,32673.1385,5.0,897.2286,1,2,3,4,5,6 +2321.5,68.2599,1798.26845,100,1655.4315376231143,1655.4315376231143,430.4035332234687,430.4035332234687,32729.07485,5.0,895.34645,1,2,3,4,5,6 +2322.0,68.4841,1804.1725,100,1651.2416849750525,1651.2416849750525,431.8171958884989,431.8171958884989,32785.0112,5.0,893.4643,1,2,3,4,5,6 +2322.5,68.7306,1810.6731,100,1646.3270675070494,1646.3270675070494,433.37146817632214,433.37146817632214,32840.547699999996,5.0,891.2307000000001,1,2,3,4,5,6 +2323.0,68.9771,1817.1737,100,1641.4475762825637,1641.4475762825637,434.92574046414535,434.92574046414535,32896.0842,5.0,888.9971,1,2,3,4,5,6 +2323.5,69.23894999999999,1824.0907000000002,100,1636.5124661769137,1636.5124661769137,436.5768000932184,436.5768000932184,32954.50925,5.0,886.614,1,2,3,4,5,6 +2324.0,69.5008,1831.0077,100,1631.6145429405128,1631.6145429405128,438.22785972229156,438.22785972229156,33012.9343,5.0,884.2309,1,2,3,4,5,6 +2324.5,69.7795,1838.3435,100,1626.0299615646427,1626.0299615646427,439.9851647389907,439.9851647389907,33068.63535,5.0,881.7029,1,2,3,4,5,6 +2325.0,70.0582,1845.6793,100,1620.4898124702033,1620.4898124702033,441.7424697556898,441.7424697556898,33124.3364,5.0,879.1749,1,2,3,4,5,6 +2325.5,70.3526,1853.45255,100,1615.0019976802566,1615.0019976802566,443.59876899112646,443.59876899112646,33180.0029,5.0,876.49705,1,2,3,4,5,6 +2326.0,70.647,1861.2258,100,1609.5599205061785,1609.5599205061785,445.45506822656336,445.45506822656336,33235.6694,5.0,873.8192,1,2,3,4,5,6 +2326.5,70.9444,1869.07025,100,1604.1426987189968,1604.1426987189968,447.3302835547525,447.3302835547525,33283.62945,5.0,871.11765,1,2,3,4,5,6 +2327.0,71.2418,1876.9147,100,1598.7707054847017,1598.7707054847017,449.2054988829416,449.2054988829416,33331.5895,5.0,868.4161,1,2,3,4,5,6 +2327.5,71.539,1884.7260999999999,100,1593.3482826010986,1593.3482826010986,451.07945313828066,451.07945313828066,33372.5404,5.0,865.7256,1,2,3,4,5,6 +2328.0,71.8362,1892.5375,100,1587.970726903706,1587.970726903706,452.95340739361967,452.95340739361967,33413.4913,5.0,863.0351,1,2,3,4,5,6 +2328.5,72.13565,1900.43705,100,1582.4106235543732,1582.4106235543732,454.8415487185229,454.8415487185229,33454.8674,5.0,860.31335,1,2,3,4,5,6 +2329.0,72.4351,1908.3366,100,1576.8964916456246,1576.8964916456246,456.7296900434263,456.7296900434263,33496.2435,5.0,857.5916,1,2,3,4,5,6 +2329.5,72.73685,1916.29125,100,1571.385364653542,1571.385364653542,458.63233370610646,458.63233370610646,33537.89685,5.0,854.85055,1,2,3,4,5,6 +2330.0,73.0386,1924.2459,100,1565.9197747492422,1565.9197747492422,460.5349773687866,460.5349773687866,33579.5502,5.0,852.1095,1,2,3,4,5,6 +2330.5,73.33875,1932.15805,100,1560.4939490105846,1560.4939490105846,462.4275324486655,462.4275324486655,33620.96585,5.0,849.38275,1,2,3,4,5,6 +2331.0,73.6389,1940.0702,100,1555.1123542855742,1555.1123542855742,464.3200875285445,464.3200875285445,33662.3815,5.0,846.656,1,2,3,4,5,6 +2331.5,73.93520000000001,1947.87775,100,1549.7870096516951,1549.7870096516951,466.1883669560577,466.1883669560577,33703.2321,5.0,843.96485,1,2,3,4,5,6 +2332.0,74.2315,1955.6853,100,1544.504177956797,1544.504177956797,468.0566463835709,468.0566463835709,33744.0827,5.0,841.2737,1,2,3,4,5,6 +2332.5,74.52285,1963.36065,100,1539.276130743792,1539.276130743792,469.89371425804273,469.89371425804273,33784.2236,5.0,838.6277,1,2,3,4,5,6 +2333.0,74.8142,1971.036,100,1534.088802847588,1534.088802847588,471.7307821325145,471.7307821325145,33824.3645,5.0,835.9817,1,2,3,4,5,6 +2333.5,75.1007,1978.58165,100,1528.9330215963366,1528.9330215963366,473.53726899036997,473.53726899036997,33863.8107,5.0,833.38,1,2,3,4,5,6 +2334.0,75.3872,1986.1273,100,1523.8164282000128,1523.8164282000128,475.3437558482254,475.3437558482254,33903.2569,5.0,830.7783,1,2,3,4,5,6 +2334.5,75.66955,1993.56525,100,1518.7602957067934,1518.7602957067934,477.12407544443994,477.12407544443994,33942.917700000005,5.0,828.23345,1,2,3,4,5,6 +2335.0,75.9519,2001.0032,100,1513.7417554004576,1513.7417554004576,478.90439504065444,478.90439504065444,33982.5785,5.0,825.6886,1,2,3,4,5,6 +2335.5,76.2302,2008.3374,100,1508.9240319191085,1508.9240319191085,480.6591779116532,480.6591779116532,34024.2074,5.0,823.2554,1,2,3,4,5,6 +2336.0,76.5085,2015.6716,100,1504.1413574178032,1504.1413574178032,482.41396078265205,482.41396078265205,34065.8363,5.0,820.8222,1,2,3,4,5,6 +2336.5,76.78184999999999,2022.8757,100,1499.4604127147238,1499.4604127147238,484.1375321006093,484.1375321006093,34106.72785,5.0,818.4450999999999,1,2,3,4,5,6 +2337.0,77.0552,2030.0798,100,1494.8126789107032,1494.8126789107032,485.86110341856664,485.86110341856664,34147.6194,5.0,816.068,1,2,3,4,5,6 +2337.5,77.3226,2037.12475,100,1490.2522162860537,1490.2522162860537,487.5471578192317,487.5471578192317,34187.607650000005,5.0,813.7434000000001,1,2,3,4,5,6 +2338.0,77.59,2044.1697,100,1485.7231872921768,1485.7231872921768,489.2332122198968,489.2332122198968,34227.5959,5.0,811.4188,1,2,3,4,5,6 +2338.5,77.8506,2051.03665,100,1481.292365338225,1481.292365338225,490.87639014365635,490.87639014365635,34266.57365,5.0,809.153,1,2,3,4,5,6 +2339.0,78.1112,2057.9036,100,1476.8911082149552,1476.8911082149552,492.51956806741583,492.51956806741583,34305.5514,5.0,806.8872,1,2,3,4,5,6 +2339.5,78.36484999999999,2064.5843999999997,100,1472.5810735935822,1472.5810735935822,494.1189237096323,494.1189237096323,34343.4721,5.0,804.6827499999999,1,2,3,4,5,6 +2340.0,78.6185,2071.2652,100,1468.2988502451715,1468.2988502451715,495.71827935184893,495.71827935184893,34381.3928,5.0,802.4783,1,2,3,4,5,6 +2340.5,78.86535,2077.76815,100,1464.094992972199,1464.094992972199,497.2747585171599,497.2747585171599,34418.30375,5.0,800.33255,1,2,3,4,5,6 +2341.0,79.1122,2084.2711,100,1459.9173698873246,1459.9173698873246,498.83123768247094,498.83123768247094,34455.2147,5.0,798.1868,1,2,3,4,5,6 +2341.5,79.35305,2090.6147499999997,100,1455.803725439665,1455.803725439665,500.3498846622771,500.3498846622771,34491.22074999999,5.0,796.09355,1,2,3,4,5,6 +2342.0,79.5939,2096.9584,100,1451.7149766502207,1451.7149766502207,501.86853164208327,501.86853164208327,34527.2268,5.0,794.0003,1,2,3,4,5,6 +2342.5,79.82925,2103.1585999999998,100,1447.6870506863083,1447.6870506863083,503.3524991185101,503.3524991185101,34562.418,5.0,791.95445,1,2,3,4,5,6 +2343.0,80.0646,2109.3588,100,1443.6828049100352,1443.6828049100352,504.83646659493684,504.83646659493684,34597.6092,5.0,789.9086,1,2,3,4,5,6 +2343.5,80.29495,2115.4265,100,1439.734125633057,1439.734125633057,506.2889072501095,506.2889072501095,34632.048299999995,5.0,787.9064,1,2,3,4,5,6 +2344.0,80.5253,2121.4942,100,1435.8080374739368,1435.8080374739368,507.7413479052823,507.7413479052823,34666.4874,5.0,785.9042,1,2,3,4,5,6 +2344.5,80.751,2127.4399000000003,100,1431.9319167812162,1431.9319167812162,509.16446861668885,509.16446861668885,34700.2336,5.0,783.9422500000001,1,2,3,4,5,6 +2345.0,80.9767,2133.3856,100,1428.0774033024318,1428.0774033024318,510.5875893280952,510.5875893280952,34733.9798,5.0,781.9803,1,2,3,4,5,6 +2345.5,81.1982,2139.2203,100,1424.2652689714796,1424.2652689714796,511.98422750964846,511.98422750964846,34767.095499999996,5.0,780.0550000000001,1,2,3,4,5,6 +2346.0,81.4197,2145.055,100,1420.473876248623,1420.473876248623,513.3808656912016,513.3808656912016,34800.2112,5.0,778.1297,1,2,3,4,5,6 +2346.5,81.6376,2150.79425,100,1416.7093834213647,1416.7093834213647,514.7548045614519,514.7548045614519,34832.78495,5.0,776.2358999999999,1,2,3,4,5,6 +2347.0,81.8555,2156.5335,100,1412.9649328145326,1412.9649328145326,516.1287434317021,516.1287434317021,34865.3587,5.0,774.3421,1,2,3,4,5,6 +2347.5,82.0707,2162.20075,100,1409.226723130179,1409.226723130179,517.4856578184751,517.4856578184751,34897.52344999999,5.0,772.47205,1,2,3,4,5,6 +2348.0,82.2859,2167.868,100,1405.508066315128,1405.508066315128,518.8425722052482,518.8425722052482,34929.6882,5.0,770.602,1,2,3,4,5,6 +2348.5,82.49940000000001,2173.49055,100,1401.7775444548683,1401.7775444548683,520.188767472795,520.188767472795,34963.30265,5.0,768.74665,1,2,3,4,5,6 +2349.0,82.7129,2179.1131,100,1398.0662811725858,1398.0662811725858,521.5349627403416,521.5349627403416,34996.9171,5.0,766.8913,1,2,3,4,5,6 +2349.5,82.92575,2184.71895,100,1394.3261292903594,1394.3261292903594,522.8770595211253,522.8770595211253,35045.931150000004,5.0,765.0415,1,2,3,4,5,6 +2350.0,83.1386,2190.3248,100,1390.605128351933,1390.605128351933,524.2191563019088,524.2191563019088,35094.9452,5.0,763.1917,1,2,3,4,5,6 +2350.5,83.35159999999999,2195.9368,100,1386.2557394579112,1386.2557394579112,525.56219888733,525.56219888733,35135.1367,5.0,761.0481,1,2,3,4,5,6 +2351.0,83.5646,2201.5488,100,1381.9285231066742,1381.9285231066742,526.9052414727515,526.9052414727515,35175.3282,5.0,758.9045,1,2,3,4,5,6 +2351.5,83.77795,2207.1685500000003,100,1375.8383070485734,1375.8383070485734,528.2504909356605,528.2504909356605,35177.5343,5.0,755.9035,1,2,3,4,5,6 +2352.0,83.9913,2212.7883,100,1369.7790310425012,1369.7790310425012,529.5957403985695,529.5957403985695,35179.7404,5.0,752.9025,1,2,3,4,5,6 +2352.5,83.9942,2178.69515,100,865.1088968166849,865.1088968166849,529.614025954897,529.614025954897,23291.08625,2.5,466.1816,1,2,3,4,5,6 +2353.0,83.9971,2144.602,100,360.47361006510937,360.47361006510937,529.6323115112243,529.6323115112243,11402.4321,0.0,179.4607,1,2,3,4,5,6 +2353.5,83.695,2013.03495,100,123.36093955433421,123.36093955433421,527.7274609710563,527.7274609710563,5702.5428,0.0,47.4734,1,2,3,4,5,6 +2354.0,83.3929,1881.4679,100,-115.4696646836841,-115.4696646836841,525.8226104308884,525.8226104308884,2.6535,0.0,-84.5139,1,2,3,4,5,6 +2354.5,83.16714999999999,1766.0706,100,270.9556765982723,270.9556765982723,524.3991744512693,524.3991744512693,8453.357100000001,3.0,203.7793,1,2,3,4,5,6 +2355.0,82.9414,1650.6733,100,659.484563776353,659.484563776353,522.9757384716503,522.9757384716503,16904.0607,6.0,492.0725,1,2,3,4,5,6 +2355.5,83.00614999999999,1624.1027,100,931.0400601280749,931.0400601280749,523.3840108068898,523.3840108068898,23425.4179,6.0,711.95785,1,2,3,4,5,6 +2356.0,83.0709,1597.5321,100,1202.1722260863914,1202.1722260863914,523.7922831421293,523.7922831421293,29946.7751,6.0,931.8432,1,2,3,4,5,6 +2356.5,83.26625,1601.32935,100,1217.0143451878762,1217.0143451878762,525.0240360485241,525.0240360485241,30346.96215,6.0,942.2775,1,2,3,4,5,6 +2357.0,83.4616,1605.1266,100,1231.7869854400108,1231.7869854400108,526.2557889549187,526.2557889549187,30747.1492,6.0,952.7118,1,2,3,4,5,6 +2357.5,83.67255,1609.18545,100,1230.899401093907,1230.899401093907,527.5859055436258,527.5859055436258,30809.50015,6.0,952.13005,1,2,3,4,5,6 +2358.0,83.8835,1613.2443,100,1230.016280937252,1230.016280937252,528.9160221323328,528.9160221323328,30871.8511,6.0,951.5483,1,2,3,4,5,6 +2358.5,84.1035,1617.47555,100,1228.1707209331364,1228.1707209331364,530.3032022675097,530.3032022675097,30915.502800000002,6.0,950.2946,1,2,3,4,5,6 +2359.0,84.3235,1621.7068,100,1226.3347910606178,1226.3347910606178,531.6903824026867,531.6903824026867,30959.1545,6.0,949.0409,1,2,3,4,5,6 +2359.5,84.537,1625.955,100,1189.9124854679017,1189.9124854679017,533.0365776702336,533.0365776702336,30224.78035,6.0,923.53405,1,2,3,4,5,6 +2360.0,84.7505,1630.2032,100,1153.6736870460938,1153.6736870460938,534.3827729377803,534.3827729377803,29490.4062,6.0,898.0272,1,2,3,4,5,6 +2360.5,84.86359999999999,1632.35795,100,930.6716009455174,930.6716009455174,535.095909634546,535.095909634546,24528.53555,6.0,741.5690500000001,1,2,3,4,5,6 +2361.0,84.9767,1634.5127,100,708.2631254685109,708.2631254685109,535.8090463313121,535.8090463313121,19566.6649,6.0,585.1109,1,2,3,4,5,6 +2361.5,84.98835,1634.6248500000002,100,672.2909340633158,672.2909340633158,535.882503824834,535.882503824834,18765.4488,6.0,559.91035,1,2,3,4,5,6 +2362.0,85.0,1634.737,100,636.3286032705882,636.3286032705882,535.9559613183559,535.9559613183559,17964.2327,6.0,534.7098,1,2,3,4,5,6 +2362.5,84.98830000000001,1634.62425,100,608.7494613493857,608.7494613493857,535.8821885566215,535.8821885566215,17410.0516,6.0,515.8556,1,2,3,4,5,6 +2363.0,84.9766,1634.5115,100,581.1627249619307,581.1627249619307,535.808415794887,535.808415794887,16855.8705,6.0,497.0014,1,2,3,4,5,6 +2363.5,84.77225,1630.4757,100,160.47408153021775,160.47408153021775,534.5199146102351,534.5199146102351,8427.9352,6.0,209.9291,1,2,3,4,5,6 +2364.0,84.5679,1626.4399,100,-262.2476672354404,-262.2476672354404,533.2314134255832,533.2314134255832,-0.0001,6.0,-77.1432,1,2,3,4,5,6 +2364.5,84.1809,1618.9978,100,-261.8477004878779,-261.8477004878779,530.7912374605221,530.7912374605221,-0.0001,6.0,-76.8488,1,2,3,4,5,6 +2365.0,83.7939,1611.5557,100,-261.4440392677748,-261.4440392677748,528.3510614954608,528.3510614954608,-0.0001,6.0,-76.5544,1,2,3,4,5,6 +2365.5,83.49825,1605.1335,100,-38.138119840835,-38.138119840835,526.4868805547105,526.4868805547105,4307.9073499999995,6.0,75.75590000000001,1,2,3,4,5,6 +2366.0,83.2026,1598.7113,100,186.75477872085727,186.75477872085727,524.6226996139603,524.6226996139603,8615.8148,6.0,228.0662,1,2,3,4,5,6 +2366.5,83.10130000000001,1597.49195,100,430.30957626414977,430.30957626414977,523.983966215354,523.983966215354,13502.4442,6.0,394.82705,1,2,3,4,5,6 +2367.0,83.0,1596.2726,100,674.4588822650602,674.4588822650602,523.3452328167474,523.3452328167474,18389.0736,6.0,561.5879,1,2,3,4,5,6 +2367.5,83.0,1596.2726,100,673.2987195903615,673.2987195903615,523.3452328167474,523.3452328167474,18365.63135,6.0,560.77945,1,2,3,4,5,6 +2368.0,83.0,1596.2726,100,672.1385569156627,672.1385569156627,523.3452328167474,523.3452328167474,18342.1891,6.0,559.971,1,2,3,4,5,6 +2368.5,83.0,1596.2726,100,671.0888424578312,671.0888424578312,523.3452328167474,523.3452328167474,18320.97505,6.0,559.2393999999999,1,2,3,4,5,6 +2369.0,83.0,1596.2726,100,670.039128,670.039128,523.3452328167474,523.3452328167474,18299.761,6.0,558.5078,1,2,3,4,5,6 +2369.5,83.0,1596.2726,100,670.039128,670.039128,523.3452328167474,523.3452328167474,18299.761,6.0,558.5078,1,2,3,4,5,6 +2370.0,83.0,1596.2726,100,670.039128,670.039128,523.3452328167474,523.3452328167474,18299.761,6.0,558.5078,1,2,3,4,5,6 +2370.5,83.0,1596.2726,100,670.039128,670.039128,523.3452328167474,523.3452328167474,18299.761,6.0,558.5078,1,2,3,4,5,6 +2371.0,83.0,1596.2726,100,670.039128,670.039128,523.3452328167474,523.3452328167474,18299.761,6.0,558.5078,1,2,3,4,5,6 +2371.5,83.0,1596.2726,100,669.7274084457832,669.7274084457832,523.3452328167474,523.3452328167474,18293.4604,6.0,558.2905000000001,1,2,3,4,5,6 +2372.0,83.0,1596.2726,100,669.4156888915662,669.4156888915662,523.3452328167474,523.3452328167474,18287.1598,6.0,558.0732,1,2,3,4,5,6 +2372.5,83.0,1596.2726,100,658.8363927469879,658.8363927469879,523.3452328167474,523.3452328167474,18064.543550000002,6.0,550.69965,1,2,3,4,5,6 +2373.0,83.0,1596.2726,100,648.2570966024098,648.2570966024098,523.3452328167474,523.3452328167474,17841.9273,6.0,543.3261,1,2,3,4,5,6 +2373.5,83.0,1596.2726,100,638.5759909156627,638.5759909156627,523.3452328167474,523.3452328167474,17625.08095,6.0,536.5789500000001,1,2,3,4,5,6 +2374.0,83.0,1596.2726,100,628.8948852289157,628.8948852289157,523.3452328167474,523.3452328167474,17408.2346,6.0,529.8318,1,2,3,4,5,6 +2374.5,83.0,1596.2726,100,619.7673898192771,619.7673898192771,523.3452328167474,523.3452328167474,17200.3168,6.0,523.4702500000001,1,2,3,4,5,6 +2375.0,83.0,1596.2726,100,610.6398944096386,610.6398944096386,523.3452328167474,523.3452328167474,16992.399,6.0,517.1087,1,2,3,4,5,6 +2375.5,83.0,1596.2726,100,608.8184116265061,608.8184116265061,523.3452328167474,523.3452328167474,16950.905899999998,6.0,515.83915,1,2,3,4,5,6 +2376.0,83.0,1596.2726,100,606.9969288433736,606.9969288433736,523.3452328167474,523.3452328167474,16909.4128,6.0,514.5696,1,2,3,4,5,6 +2376.5,83.0,1596.2726,100,600.7200927831325,600.7200927831325,523.3452328167474,523.3452328167474,16766.42715,6.0,510.19475,1,2,3,4,5,6 +2377.0,83.0,1596.2726,100,594.4432567228916,594.4432567228916,523.3452328167474,523.3452328167474,16623.4415,6.0,505.8199,1,2,3,4,5,6 +2377.5,83.0,1596.2726,100,592.3086851927711,592.3086851927711,523.3452328167474,523.3452328167474,16574.82045,6.0,504.33225000000004,1,2,3,4,5,6 +2378.0,83.0,1596.2726,100,590.1741136626506,590.1741136626506,523.3452328167474,523.3452328167474,16526.1994,6.0,502.8446,1,2,3,4,5,6 +2378.5,83.0,1596.2726,100,603.0527408674699,603.0527408674699,523.3452328167474,523.3452328167474,16819.5626,6.0,511.8205,1,2,3,4,5,6 +2379.0,83.0,1596.2726,100,615.9313680722892,615.9313680722892,523.3452328167474,523.3452328167474,17112.9258,6.0,520.7964,1,2,3,4,5,6 +2379.5,83.0,1596.2726,100,630.3708750361448,630.3708750361448,523.3452328167474,523.3452328167474,17441.41865,6.0,530.86025,1,2,3,4,5,6 +2380.0,83.0,1596.2726,100,644.8103820000001,644.8103820000001,523.3452328167474,523.3452328167474,17769.9115,6.0,540.9241,1,2,3,4,5,6 +2380.5,83.0,1596.2726,100,654.3230769759036,654.3230769759036,523.3452328167474,523.3452328167474,17972.15395,6.0,547.5542,1,2,3,4,5,6 +2381.0,83.0,1596.2726,100,663.8357719518074,663.8357719518074,523.3452328167474,523.3452328167474,18174.3964,6.0,554.1843,1,2,3,4,5,6 +2381.5,83.0,1596.2726,100,674.2749540361447,674.2749540361447,523.3452328167474,523.3452328167474,18386.18095,6.0,561.46005,1,2,3,4,5,6 +2382.0,83.0,1596.2726,100,684.7141361204821,684.7141361204821,523.3452328167474,523.3452328167474,18597.9655,6.0,568.7358,1,2,3,4,5,6 +2382.5,83.0,1596.2726,100,699.0523228192772,699.0523228192772,523.3452328167474,523.3452328167474,18913.7087,6.0,578.72905,1,2,3,4,5,6 +2383.0,83.0,1596.2726,100,713.3905095180723,713.3905095180723,523.3452328167474,523.3452328167474,19229.4519,6.0,588.7223,1,2,3,4,5,6 +2383.5,83.0,1596.2726,100,727.7072455301205,727.7072455301205,523.3452328167474,523.3452328167474,19554.134299999998,6.0,598.7003500000001,1,2,3,4,5,6 +2384.0,83.0,1596.2726,100,742.0239815421687,742.0239815421687,523.3452328167474,523.3452328167474,19878.8167,6.0,608.6784,1,2,3,4,5,6 +2384.5,83.0,1596.2726,100,745.1603457831325,745.1603457831325,523.3452328167474,523.3452328167474,19949.94575,6.0,610.8643,1,2,3,4,5,6 +2385.0,83.0,1596.2726,100,748.2967100240965,748.2967100240965,523.3452328167474,523.3452328167474,20021.0748,6.0,613.0502,1,2,3,4,5,6 +2385.5,83.0,1596.2726,100,732.3241635542167,732.3241635542167,523.3452328167474,523.3452328167474,19659.811999999998,6.0,601.91805,1,2,3,4,5,6 +2386.0,83.0,1596.2726,100,716.3516170843374,716.3516170843374,523.3452328167474,523.3452328167474,19298.5492,6.0,590.7859,1,2,3,4,5,6 +2386.5,83.0,1596.2726,100,687.7710871807229,687.7710871807229,523.3452328167474,523.3452328167474,18684.113250000002,6.0,570.86625,1,2,3,4,5,6 +2387.0,83.0,1596.2726,100,659.1905572771085,659.1905572771085,523.3452328167474,523.3452328167474,18069.6773,6.0,550.9466,1,2,3,4,5,6 +2387.5,83.0,1596.2726,100,634.7486407228917,634.7486407228917,523.3452328167474,523.3452328167474,17527.2394,6.0,533.9114,1,2,3,4,5,6 +2388.0,83.0,1596.2726,100,610.3067241686748,610.3067241686748,523.3452328167474,523.3452328167474,16984.8015,6.0,516.8762,1,2,3,4,5,6 +2388.5,83.0,1596.2726,100,599.7922364819278,599.7922364819278,523.3452328167474,523.3452328167474,16745.28905,6.0,509.548,1,2,3,4,5,6 +2389.0,83.0,1596.2726,100,589.2777487951809,589.2777487951809,523.3452328167474,523.3452328167474,16505.7766,6.0,502.2198,1,2,3,4,5,6 +2389.5,83.0,1596.2726,100,581.1397233614458,581.1397233614458,523.3452328167474,523.3452328167474,16320.4156,6.0,496.5477,1,2,3,4,5,6 +2390.0,83.0,1596.2726,100,573.0016979277109,573.0016979277109,523.3452328167474,523.3452328167474,16135.0546,6.0,490.8756,1,2,3,4,5,6 +2390.5,83.0,1596.2726,100,557.2861033012049,557.2861033012049,523.3452328167474,523.3452328167474,15779.3181,6.0,479.9226,1,2,3,4,5,6 +2391.0,83.0,1596.2726,100,541.5705086746989,541.5705086746989,523.3452328167474,523.3452328167474,15423.5816,6.0,468.9696,1,2,3,4,5,6 +2391.5,83.0,1596.2726,100,526.0411242650603,526.0411242650603,523.3452328167474,523.3452328167474,15075.2734,6.0,458.1462,1,2,3,4,5,6 +2392.0,83.0,1596.2726,100,510.51173985542175,510.51173985542175,523.3452328167474,523.3452328167474,14726.9652,6.0,447.3228,1,2,3,4,5,6 +2392.5,83.0,1596.2726,100,502.0501285301205,502.0501285301205,523.3452328167474,523.3452328167474,14537.2355,6.0,441.4271,1,2,3,4,5,6 +2393.0,83.0,1596.2726,100,493.58851720481925,493.58851720481925,523.3452328167474,523.3452328167474,14347.5058,6.0,435.5314,1,2,3,4,5,6 +2393.5,83.0,1596.2726,100,463.15273109638554,463.15273109638554,523.3452328167474,523.3452328167474,13698.48445,6.0,414.3371,1,2,3,4,5,6 +2394.0,83.0,1596.2726,100,432.7169449879519,432.7169449879519,523.3452328167474,523.3452328167474,13049.4631,6.0,393.1428,1,2,3,4,5,6 +2394.5,83.0,1596.2726,100,394.8268170361446,394.8268170361446,523.3452328167474,523.3452328167474,12214.204450000001,6.0,366.7576,1,2,3,4,5,6 +2395.0,83.0,1596.2726,100,356.9366890843374,356.9366890843374,523.3452328167474,523.3452328167474,11378.9458,6.0,340.3724,1,2,3,4,5,6 +2395.5,83.0,1596.2726,100,325.835931686747,325.835931686747,523.3452328167474,523.3452328167474,10708.44645,6.0,318.7142,1,2,3,4,5,6 +2396.0,83.0,1596.2726,100,294.7351742891566,294.7351742891566,523.3452328167474,523.3452328167474,10037.9471,6.0,297.056,1,2,3,4,5,6 +2396.5,83.0,1596.2726,100,264.58509307228917,264.58509307228917,523.3452328167474,523.3452328167474,9431.96455,6.0,276.06505,1,2,3,4,5,6 +2397.0,83.0,1596.2726,100,234.43501185542172,234.43501185542172,523.3452328167474,523.3452328167474,8825.982,6.0,255.0741,1,2,3,4,5,6 +2397.5,83.0,1596.2726,100,194.58739463855423,194.58739463855423,523.3452328167474,523.3452328167474,7951.7744999999995,6.0,227.80304999999998,1,2,3,4,5,6 +2398.0,83.0,1596.2726,100,154.73977742168674,154.73977742168674,523.3452328167474,523.3452328167474,7077.567,6.0,200.532,1,2,3,4,5,6 +2398.5,83.0,1596.2726,100,108.16896730120483,108.16896730120483,523.3452328167474,523.3452328167474,6106.3944,6.0,169.80175,1,2,3,4,5,6 +2399.0,83.0,1596.2726,100,61.5981571807229,61.5981571807229,523.3452328167474,523.3452328167474,5135.2218,6.0,139.0715,1,2,3,4,5,6 +2399.5,83.0,1596.2726,100,27.545876566265065,27.545876566265065,523.3452328167474,523.3452328167474,4500.4353,6.0,116.75444999999999,1,2,3,4,5,6 +2400.0,83.0,1596.2726,100,-6.506404048192771,-6.506404048192771,523.3452328167474,523.3452328167474,3865.6488,6.0,94.4374,1,2,3,4,5,6 +2400.5,83.0,1596.2726,100,-14.334535518072288,-14.334535518072288,523.3452328167474,523.3452328167474,3748.1538,6.0,89.30705,1,2,3,4,5,6 +2401.0,83.0,1596.2726,100,-22.16266698795181,-22.16266698795181,523.3452328167474,523.3452328167474,3630.6588,6.0,84.1767,1,2,3,4,5,6 +2401.5,83.0,1596.2726,100,-19.030866722891567,-19.030866722891567,523.3452328167474,523.3452328167474,3674.1981,6.0,86.22925000000001,1,2,3,4,5,6 +2402.0,83.0,1596.2726,100,-15.899066457831326,-15.899066457831326,523.3452328167474,523.3452328167474,3717.7374,6.0,88.2818,1,2,3,4,5,6 +2402.5,83.0,1596.2726,100,-20.35168134939759,-20.35168134939759,523.3452328167474,523.3452328167474,3655.8388999999997,6.0,85.3637,1,2,3,4,5,6 +2403.0,83.0,1596.2726,100,-24.804296240963858,-24.804296240963858,523.3452328167474,523.3452328167474,3593.9404,6.0,82.4456,1,2,3,4,5,6 +2403.5,83.0,1596.2726,100,-33.46991728915663,-33.46991728915663,523.3452328167474,523.3452328167474,3473.4681,6.0,76.7662,1,2,3,4,5,6 +2404.0,83.0,1596.2726,100,-42.1355383373494,-42.1355383373494,523.3452328167474,523.3452328167474,3352.9958,6.0,71.0868,1,2,3,4,5,6 +2404.5,83.0,1596.2726,100,-49.52552812048193,-49.52552812048193,523.3452328167474,523.3452328167474,3250.2640499999998,6.0,66.24369999999999,1,2,3,4,5,6 +2405.0,83.0,1596.2726,100,-56.91551790361446,-56.91551790361446,523.3452328167474,523.3452328167474,3147.5323,6.0,61.4006,1,2,3,4,5,6 +2405.5,83.0,1596.2726,100,-57.39290978313253,-57.39290978313253,523.3452328167474,523.3452328167474,3140.8939499999997,6.0,61.08765,1,2,3,4,5,6 +2406.0,83.0,1596.2726,100,-57.870301662650604,-57.870301662650604,523.3452328167474,523.3452328167474,3134.2556,6.0,60.7747,1,2,3,4,5,6 +2406.5,83.0,1596.2726,100,-44.70186198795181,-44.70186198795181,523.3452328167474,523.3452328167474,3317.32465,6.0,69.40515,1,2,3,4,5,6 +2407.0,83.0,1596.2726,100,-31.533422313253013,-31.533422313253013,523.3452328167474,523.3452328167474,3500.3937,6.0,78.0356,1,2,3,4,5,6 +2407.5,83.0,1596.2726,100,-16.409775361445785,-16.409775361445785,523.3452328167474,523.3452328167474,3719.7366,6.0,87.9471,1,2,3,4,5,6 +2408.0,83.0,1596.2726,100,-1.2861284096385543,-1.2861284096385543,523.3452328167474,523.3452328167474,3939.0795,6.0,97.8586,1,2,3,4,5,6 +2408.5,83.0,1596.2726,100,-0.3345394337349398,-0.3345394337349398,523.3452328167474,523.3452328167474,3955.04375,6.0,98.48225,1,2,3,4,5,6 +2409.0,83.0,1596.2726,100,0.6170495421686747,0.6170495421686747,523.3452328167474,523.3452328167474,3971.008,6.0,99.1059,1,2,3,4,5,6 +2409.5,83.0,1596.2726,100,-10.59709565060241,-10.59709565060241,523.3452328167474,523.3452328167474,3803.2792499999996,6.0,91.7566,1,2,3,4,5,6 +2410.0,83.0,1596.2726,100,-21.811240843373497,-21.811240843373497,523.3452328167474,523.3452328167474,3635.5505,6.0,84.4073,1,2,3,4,5,6 +2410.5,83.0,1596.2726,100,-33.1198603373494,-33.1198603373494,523.3452328167474,523.3452328167474,3478.3352,6.0,76.9957,1,2,3,4,5,6 +2411.0,83.0,1596.2726,100,-44.428479831325305,-44.428479831325305,523.3452328167474,523.3452328167474,3321.1199,6.0,69.5841,1,2,3,4,5,6 +2411.5,83.0,1596.2726,100,-73.62332089156627,-73.62332089156627,523.3452328167474,523.3452328167474,2919.6014999999998,6.0,50.4543,1,2,3,4,5,6 +2412.0,83.0,1596.2726,100,-102.81816195180723,-102.81816195180723,523.3452328167474,523.3452328167474,2518.0831,6.0,31.3245,1,2,3,4,5,6 +2412.5,83.0,1596.2726,100,-119.75325093975904,-119.75325093975904,523.3452328167474,523.3452328167474,2300.24505,6.0,20.2989,1,2,3,4,5,6 +2413.0,83.0,1596.2726,100,-136.68833992771087,-136.68833992771087,523.3452328167474,523.3452328167474,2082.407,6.0,9.2733,1,2,3,4,5,6 +2413.5,83.0,1596.2726,100,-130.91171562650604,-130.91171562650604,523.3452328167474,523.3452328167474,2153.6075,6.0,13.00995,1,2,3,4,5,6 +2414.0,83.0,1596.2726,100,-125.13509132530122,-125.13509132530122,523.3452328167474,523.3452328167474,2224.808,6.0,16.7466,1,2,3,4,5,6 +2414.5,83.0,1596.2726,100,-107.66282237349398,-107.66282237349398,523.3452328167474,523.3452328167474,2454.8742,6.0,28.1696,1,2,3,4,5,6 +2415.0,83.0,1596.2726,100,-90.19055342168674,-90.19055342168674,523.3452328167474,523.3452328167474,2684.9404,6.0,39.5926,1,2,3,4,5,6 +2415.5,83.0,1596.2726,100,-68.70016008433734,-68.70016008433734,523.3452328167474,523.3452328167474,2983.703,6.0,53.6772,1,2,3,4,5,6 +2416.0,83.0,1596.2726,100,-47.20976674698795,-47.20976674698795,523.3452328167474,523.3452328167474,3282.4656,6.0,67.7618,1,2,3,4,5,6 +2416.5,83.0,1596.2726,100,-24.357026602409636,-24.357026602409636,523.3452328167474,523.3452328167474,3615.2197,6.0,82.7387,1,2,3,4,5,6 +2417.0,83.0,1596.2726,100,-1.5042864578313255,-1.5042864578313255,523.3452328167474,523.3452328167474,3947.9738,6.0,97.7156,1,2,3,4,5,6 +2417.5,83.0,1596.2726,100,10.768701144578314,10.768701144578314,523.3452328167474,523.3452328167474,4160.2328,6.0,105.75915,1,2,3,4,5,6 +2418.0,83.0,1596.2726,100,23.041688746987955,23.041688746987955,523.3452328167474,523.3452328167474,4372.4918,6.0,113.8027,1,2,3,4,5,6 +2418.5,83.0,1596.2726,100,20.090165530120487,20.090165530120487,523.3452328167474,523.3452328167474,4319.4119,6.0,111.86845,1,2,3,4,5,6 +2419.0,83.0,1596.2726,100,17.138642313253012,17.138642313253012,523.3452328167474,523.3452328167474,4266.332,6.0,109.9342,1,2,3,4,5,6 +2419.5,83.0,1596.2726,100,4.257733120481928,4.257733120481928,523.3452328167474,523.3452328167474,4047.8365000000003,6.0,101.49225,1,2,3,4,5,6 +2420.0,83.0,1596.2726,100,-8.623176072289157,-8.623176072289157,523.3452328167474,523.3452328167474,3829.341,6.0,93.0503,1,2,3,4,5,6 +2420.5,83.0,1596.2726,100,-22.87875480722892,-22.87875480722892,523.3452328167474,523.3452328167474,3625.9316,6.0,83.7074,1,2,3,4,5,6 +2421.0,83.0,1596.2726,100,-37.134333542168676,-37.134333542168676,523.3452328167474,523.3452328167474,3422.5222,6.0,74.3645,1,2,3,4,5,6 +2421.5,83.0,1596.2726,100,-45.17605908433735,-45.17605908433735,523.3452328167474,523.3452328167474,3310.7290000000003,6.0,69.0942,1,2,3,4,5,6 +2422.0,83.0,1596.2726,100,-53.217784626506024,-53.217784626506024,523.3452328167474,523.3452328167474,3198.9358,6.0,63.8239,1,2,3,4,5,6 +2422.5,83.0,1596.2726,100,-55.39434473493976,-55.39434473493976,523.3452328167474,523.3452328167474,3168.67945,6.0,62.39755,1,2,3,4,5,6 +2423.0,83.0,1596.2726,100,-57.5709048433735,-57.5709048433735,523.3452328167474,523.3452328167474,3138.4231,6.0,60.9712,1,2,3,4,5,6 +2423.5,83.0,1596.2726,100,-54.6978820120482,-54.6978820120482,523.3452328167474,523.3452328167474,3178.3596,6.0,62.853899999999996,1,2,3,4,5,6 +2424.0,83.0,1596.2726,100,-51.824859180722896,-51.824859180722896,523.3452328167474,523.3452328167474,3218.2961,6.0,64.7366,1,2,3,4,5,6 +2424.5,83.0,1596.2726,100,-26.150669132530123,-26.150669132530123,523.3452328167474,523.3452328167474,3602.29675,6.0,81.5629,1,2,3,4,5,6 +2425.0,83.0,1596.2726,100,-0.4764790843373495,-0.4764790843373495,523.3452328167474,523.3452328167474,3986.2974,6.0,98.3892,1,2,3,4,5,6 +2425.5,83.0,1596.2726,100,30.069298843373495,30.069298843373495,523.3452328167474,523.3452328167474,4548.2616,6.0,118.4082,1,2,3,4,5,6 +2426.0,83.0,1596.2726,100,60.61507677108435,60.61507677108435,523.3452328167474,523.3452328167474,5110.2258,6.0,138.4272,1,2,3,4,5,6 +2426.5,83.0,1596.2726,100,75.32659669879519,75.32659669879519,523.3452328167474,523.3452328167474,5413.7754,6.0,148.06885,1,2,3,4,5,6 +2427.0,83.0,1596.2726,100,90.03811662650602,90.03811662650602,523.3452328167474,523.3452328167474,5717.325,6.0,157.7105,1,2,3,4,5,6 +2427.5,83.0,1596.2726,100,95.23694157831326,95.23694157831326,523.3452328167474,523.3452328167474,5824.5925,6.0,161.11765,1,2,3,4,5,6 +2428.0,83.0,1596.2726,100,100.43576653012049,100.43576653012049,523.3452328167474,523.3452328167474,5931.86,6.0,164.5248,1,2,3,4,5,6 +2428.5,83.0,1596.2726,100,113.7329103253012,113.7329103253012,523.3452328167474,523.3452328167474,6207.74615,6.0,173.28109999999998,1,2,3,4,5,6 +2429.0,83.0,1596.2726,100,127.03005412048194,127.03005412048194,523.3452328167474,523.3452328167474,6483.6323,6.0,182.0374,1,2,3,4,5,6 +2429.5,83.0,1596.2726,100,140.00908879518073,140.00908879518073,523.3452328167474,523.3452328167474,6759.7177,6.0,190.68619999999999,1,2,3,4,5,6 +2430.0,83.0,1596.2726,100,152.98812346987955,152.98812346987955,523.3452328167474,523.3452328167474,7035.8031,6.0,199.335,1,2,3,4,5,6 +2430.5,83.0,1596.2726,100,154.75666413253012,154.75666413253012,523.3452328167474,523.3452328167474,7074.7387,6.0,200.5342,1,2,3,4,5,6 +2431.0,83.0,1596.2726,100,156.52520479518074,156.52520479518074,523.3452328167474,523.3452328167474,7113.6743,6.0,201.7334,1,2,3,4,5,6 +2431.5,83.0,1596.2726,100,193.67003548192773,193.67003548192773,523.3452328167474,523.3452328167474,7932.8893499999995,6.0,227.13819999999998,1,2,3,4,5,6 +2432.0,83.0,1596.2726,100,230.8148661686747,230.8148661686747,523.3452328167474,523.3452328167474,8752.1044,6.0,252.543,1,2,3,4,5,6 +2432.5,83.0,1596.2726,100,251.69049195180722,251.69049195180722,523.3452328167474,523.3452328167474,9179.323199999999,6.0,267.08045000000004,1,2,3,4,5,6 +2433.0,83.0,1596.2726,100,272.5661177349398,272.5661177349398,523.3452328167474,523.3452328167474,9606.542,6.0,281.6179,1,2,3,4,5,6 +2433.5,83.0,1596.2726,100,298.1252955903614,298.1252955903614,523.3452328167474,523.3452328167474,10122.565149999999,6.0,299.41675,1,2,3,4,5,6 +2434.0,83.0,1596.2726,100,323.6844734457831,323.6844734457831,523.3452328167474,523.3452328167474,10638.5883,6.0,317.2156,1,2,3,4,5,6 +2434.5,83.0,1596.2726,100,345.751296939759,345.751296939759,523.3452328167474,523.3452328167474,11131.63925,6.0,332.5827,1,2,3,4,5,6 +2435.0,83.0,1596.2726,100,367.818120433735,367.818120433735,523.3452328167474,523.3452328167474,11624.6902,6.0,347.9498,1,2,3,4,5,6 +2435.5,83.0,1596.2726,100,418.52069793975903,418.52069793975903,523.3452328167474,523.3452328167474,12733.181499999999,6.0,383.25795,1,2,3,4,5,6 +2436.0,83.0,1596.2726,100,469.22327544578314,469.22327544578314,523.3452328167474,523.3452328167474,13841.6728,6.0,418.5661,1,2,3,4,5,6 +2436.5,83.0,1596.2726,100,519.3453152168676,519.3453152168676,523.3452328167474,523.3452328167474,14949.029,6.0,453.4892,1,2,3,4,5,6 +2437.0,83.0,1596.2726,100,569.4673549879518,569.4673549879518,523.3452328167474,523.3452328167474,16056.3852,6.0,488.4123,1,2,3,4,5,6 +2437.5,83.0,1596.2726,100,613.3728031807229,613.3728031807229,523.3452328167474,523.3452328167474,17038.766,6.0,519.01285,1,2,3,4,5,6 +2438.0,83.0,1596.2726,100,657.278251373494,657.278251373494,523.3452328167474,523.3452328167474,18021.1468,6.0,549.6134,1,2,3,4,5,6 +2438.5,83.0,1596.2726,100,696.9647602409638,696.9647602409638,523.3452328167474,523.3452328167474,18889.03765,6.0,577.27295,1,2,3,4,5,6 +2439.0,83.0,1596.2726,100,736.6512691084338,736.6512691084338,523.3452328167474,523.3452328167474,19756.9285,6.0,604.9325,1,2,3,4,5,6 +2439.5,83.0,1596.2726,100,771.8262877951807,771.8262877951807,523.3452328167474,523.3452328167474,20523.6588,6.0,629.43215,1,2,3,4,5,6 +2440.0,83.0,1596.2726,100,807.0013064819277,807.0013064819277,523.3452328167474,523.3452328167474,21290.3891,6.0,653.9318,1,2,3,4,5,6 +2440.5,83.0,1596.2726,100,844.8836756746988,844.8836756746988,523.3452328167474,523.3452328167474,22046.331599999998,6.0,680.31195,1,2,3,4,5,6 +2441.0,83.0,1596.2726,100,882.7660448674699,882.7660448674699,523.3452328167474,523.3452328167474,22802.2741,6.0,706.6921,1,2,3,4,5,6 +2441.5,83.0,1596.2726,100,916.705138879518,916.705138879518,523.3452328167474,523.3452328167474,23543.78755,6.0,730.32645,1,2,3,4,5,6 +2442.0,83.0,1596.2726,100,950.6442328915663,950.6442328915663,523.3452328167474,523.3452328167474,24285.301,6.0,753.9608,1,2,3,4,5,6 +2442.5,83.0,1596.2726,100,965.1663478192771,965.1663478192771,523.3452328167474,523.3452328167474,24610.637300000002,6.0,764.07365,1,2,3,4,5,6 +2443.0,83.0,1596.2726,100,979.6884627469881,979.6884627469881,523.3452328167474,523.3452328167474,24935.9736,6.0,774.1865,1,2,3,4,5,6 +2443.5,83.0,1596.2726,100,977.4868007710844,977.4868007710844,523.3452328167474,523.3452328167474,24885.68165,6.0,772.6531500000001,1,2,3,4,5,6 +2444.0,83.0,1596.2726,100,975.2851387951807,975.2851387951807,523.3452328167474,523.3452328167474,24835.3897,6.0,771.1198,1,2,3,4,5,6 +2444.5,83.0,1596.2726,100,972.9734850000001,972.9734850000001,523.3452328167474,523.3452328167474,24782.59055,6.0,769.51,1,2,3,4,5,6 +2445.0,83.0,1596.2726,100,970.6618312048194,970.6618312048194,523.3452328167474,523.3452328167474,24729.7914,6.0,767.9002,1,2,3,4,5,6 +2445.5,83.0,1596.2726,100,987.2108078313254,987.2108078313254,523.3452328167474,523.3452328167474,25107.82415,6.0,779.426,1,2,3,4,5,6 +2446.0,83.0,1596.2726,100,1003.7597844578314,1003.7597844578314,523.3452328167474,523.3452328167474,25485.8569,6.0,790.9518,1,2,3,4,5,6 +2446.5,83.0,1596.2726,100,1024.9845543975905,1024.9845543975905,523.3452328167474,523.3452328167474,25967.45805,6.0,805.7374500000001,1,2,3,4,5,6 +2447.0,83.0,1596.2726,100,1046.2093243373495,1046.2093243373495,523.3452328167474,523.3452328167474,26449.0592,6.0,820.5231,1,2,3,4,5,6 +2447.5,83.0,1596.2726,100,1086.443510313253,1086.443510313253,523.3452328167474,523.3452328167474,27311.235399999998,6.0,848.5531,1,2,3,4,5,6 +2448.0,83.0,1596.2726,100,1126.6776962891568,1126.6776962891568,523.3452328167474,523.3452328167474,28173.4116,6.0,876.5831,1,2,3,4,5,6 +2448.5,83.0,1596.2726,100,1143.7528993373494,1143.7528993373494,523.3452328167474,523.3452328167474,28567.01675,6.0,888.4786999999999,1,2,3,4,5,6 +2449.0,83.0,1596.2726,100,1160.8281023855423,1160.8281023855423,523.3452328167474,523.3452328167474,28960.6219,6.0,900.3743,1,2,3,4,5,6 +2449.5,83.0,1596.2726,100,1158.0961064096387,1158.0961064096387,523.3452328167474,523.3452328167474,28896.5415,6.0,898.4712,1,2,3,4,5,6 +2450.0,83.0,1596.2726,100,1155.3641104337348,1155.3641104337348,523.3452328167474,523.3452328167474,28832.4611,6.0,896.5681,1,2,3,4,5,6 +2450.5,83.0,1596.2726,100,1146.369883120482,1146.369883120482,523.3452328167474,523.3452328167474,28621.469250000002,6.0,890.3018999999999,1,2,3,4,5,6 +2451.0,83.0,1596.2726,100,1137.3756558072291,1137.3756558072291,523.3452328167474,523.3452328167474,28410.4774,6.0,884.0357,1,2,3,4,5,6 +2451.5,83.0,1596.2726,100,1135.5774493012048,1135.5774493012048,523.3452328167474,523.3452328167474,28368.3018,6.0,882.78315,1,2,3,4,5,6 +2452.0,83.0,1596.2726,100,1133.7792427951806,1133.7792427951806,523.3452328167474,523.3452328167474,28326.1262,6.0,881.5306,1,2,3,4,5,6 +2452.5,83.0,1596.2726,100,1136.0475388192772,1136.0475388192772,523.3452328167474,523.3452328167474,28379.334600000002,6.0,883.11085,1,2,3,4,5,6 +2453.0,83.0,1596.2726,100,1138.3158348433735,1138.3158348433735,523.3452328167474,523.3452328167474,28432.543,6.0,884.6911,1,2,3,4,5,6 +2453.5,83.0,1596.2726,100,1147.1585381566265,1147.1585381566265,523.3452328167474,523.3452328167474,28639.966500000002,6.0,890.8513,1,2,3,4,5,6 +2454.0,83.0,1596.2726,100,1156.0012414698795,1156.0012414698795,523.3452328167474,523.3452328167474,28847.39,6.0,897.0115,1,2,3,4,5,6 +2454.5,83.0,1596.2726,100,1169.559444686747,1169.559444686747,523.3452328167474,523.3452328167474,29157.02635,6.0,906.4571,1,2,3,4,5,6 +2455.0,83.0,1596.2726,100,1183.1176479036146,1183.1176479036146,523.3452328167474,523.3452328167474,29466.6627,6.0,915.9027,1,2,3,4,5,6 +2455.5,83.0,1596.2726,100,1194.950668228916,1194.950668228916,523.3452328167474,523.3452328167474,29706.47045,6.0,924.14635,1,2,3,4,5,6 +2456.0,83.0,1596.2726,100,1206.783688554217,1206.783688554217,523.3452328167474,523.3452328167474,29946.2782,6.0,932.39,1,2,3,4,5,6 +2456.5,83.0,1596.2726,100,1212.7634097831324,1212.7634097831324,523.3452328167474,523.3452328167474,30064.61465,6.0,936.5562,1,2,3,4,5,6 +2457.0,83.0,1596.2726,100,1218.743131012048,1218.743131012048,523.3452328167474,523.3452328167474,30182.9511,6.0,940.7224,1,2,3,4,5,6 +2457.5,83.0,1596.2724,100,1223.757114939759,1223.757114939759,523.3452328167474,523.3452328167474,30293.5795,6.0,944.2153000000001,1,2,3,4,5,6 +2458.0,83.0,1596.2722,100,1228.7710988674698,1228.7710988674698,523.3452328167474,523.3452328167474,30404.2079,6.0,947.7082,1,2,3,4,5,6 +2458.5,82.9982,1596.2489,100,1234.1418227744698,1234.1418227744698,523.333883161096,523.333883161096,30526.139049999998,6.0,951.41875,1,2,3,4,5,6 +2459.0,82.9964,1596.2256,100,1239.512779638635,1239.512779638635,523.3225335054445,523.3225335054445,30648.0702,6.0,955.1293,1,2,3,4,5,6 +2459.5,82.98955,1596.0855000000001,100,1240.1769858373736,1240.1769858373736,523.2793417603265,523.2793417603265,30659.13555,6.0,955.55005,1,2,3,4,5,6 +2460.0,82.9827,1595.9454,100,1240.841301693004,1240.841301693004,523.2361500152084,523.2361500152084,30670.2009,6.0,955.9708,1,2,3,4,5,6 +2460.5,82.96525,1595.6283,100,1241.022383600363,1241.022383600363,523.126121409032,523.126121409032,30664.31125,6.0,955.9854,1,2,3,4,5,6 +2461.0,82.9478,1595.3112,100,1241.2035416973085,1241.2035416973085,523.0160928028554,523.0160928028554,30658.4216,6.0,956.0,1,2,3,4,5,6 +2461.5,82.92320000000001,1594.80395,100,1241.1702121601675,1241.1702121601675,522.8609808422857,522.8609808422857,30648.2308,6.0,956.0,1,2,3,4,5,6 +2462.0,82.8986,1594.2967,100,1241.1368628420744,1241.1368628420744,522.7058688817159,522.7058688817159,30638.04,6.0,956.0,1,2,3,4,5,6 +2462.5,82.88255000000001,1593.977,100,1240.9480412825135,1240.9480412825135,522.6046677854905,522.6046677854905,30631.61475,6.0,955.9999,1,2,3,4,5,6 +2463.0,82.8665,1593.6573,100,1240.7591465791363,1240.7591465791363,522.5034666892651,522.5034666892651,30625.1895,6.0,955.9998,1,2,3,4,5,6 +2463.5,82.86705,1593.6805,100,1240.5922874411478,1240.5922874411478,522.5069346396031,522.5069346396031,30625.40765,6.0,955.9923,1,2,3,4,5,6 +2464.0,82.8676,1593.7037,100,1240.4254305180796,1240.4254305180796,522.5104025899409,522.5104025899409,30625.6258,6.0,955.9848,1,2,3,4,5,6 +2464.5,82.87645,1593.8975500000001,100,1240.4268949623204,1240.4268949623204,522.5662050635606,522.5662050635606,30629.1804,6.0,955.9745,1,2,3,4,5,6 +2465.0,82.8853,1594.0914,100,1240.4283590938321,1240.4283590938321,522.6220075371803,522.6220075371803,30632.735,6.0,955.9642,1,2,3,4,5,6 +2465.5,82.8858,1594.1187,100,1240.638420911664,1240.638420911664,522.6251602193056,522.6251602193056,30633.7413,6.0,955.9780499999999,1,2,3,4,5,6 +2466.0,82.8863,1594.146,100,1240.8484801951586,1240.8484801951586,522.6283129014311,522.6283129014311,30634.7476,6.0,955.9919,1,2,3,4,5,6 +2466.5,82.86449999999999,1593.7334,100,1241.139722643593,1241.139722643593,522.4908559607635,522.4908559607635,30626.591800000002,6.0,955.99595,1,2,3,4,5,6 +2467.0,82.8427,1593.3208,100,1241.4311183725301,1241.4311183725301,522.3533990200959,522.3533990200959,30618.436,6.0,956.0,1,2,3,4,5,6 +2467.5,82.7912,1592.33205,100,1241.7467130806172,1241.7467130806172,522.0286727611796,522.0286727611796,30598.5718,6.0,956.0,1,2,3,4,5,6 +2468.0,82.7397,1591.3433,100,1242.062700662439,1242.062700662439,521.7039465022631,521.7039465022631,30578.7076,6.0,956.0,1,2,3,4,5,6 +2468.5,82.65705,1589.7491,100,1242.355536315414,1242.355536315414,521.1828081469341,521.1828081469341,30546.67985,6.0,956.0,1,2,3,4,5,6 +2469.0,82.5744,1588.1549,100,1242.6489581758995,1242.6489581758995,520.6616697916052,520.6616697916052,30514.6521,6.0,956.0,1,2,3,4,5,6 +2469.5,82.46600000000001,1586.05285,100,1242.823951167754,1242.823951167754,519.978168306818,519.978168306818,30472.42125,6.0,956.0,1,2,3,4,5,6 +2470.0,82.3576,1583.9508,100,1242.9994048150993,1242.9994048150993,519.2946668220308,519.2946668220308,30430.1904,6.0,956.0,1,2,3,4,5,6 +2470.5,82.2363,1581.60165,100,1243.0110356010666,1243.0110356010666,518.5298261384083,518.5298261384083,30382.9959,6.0,956.0,1,2,3,4,5,6 +2471.0,82.115,1579.2525,100,1243.0227007489495,1243.0227007489495,517.7649854547857,517.7649854547857,30335.8014,6.0,956.0,1,2,3,4,5,6 +2471.5,81.991,1576.8721500000001,100,1243.0000257833178,1243.0000257833178,516.983120287686,516.983120287686,30287.97985,6.0,956.0,1,2,3,4,5,6 +2472.0,81.867,1574.4918,100,1242.97728212833,1242.97728212833,516.2012551205863,516.2012551205863,30240.1583,6.0,956.0,1,2,3,4,5,6 +2472.5,81.7386,1572.03575,100,1243.043623037341,1243.043623037341,515.391646350783,515.391646350783,30190.81615,6.0,956.0,1,2,3,4,5,6 +2473.0,81.6102,1569.5797,100,1243.1101726990005,1243.1101726990005,514.5820375809799,514.5820375809799,30141.474,6.0,956.0,1,2,3,4,5,6 +2473.5,81.46925,1566.8742,100,1243.2535900232292,1243.2535900232292,513.693296489829,513.693296489829,30087.12045,6.0,956.0,1,2,3,4,5,6 +2474.0,81.3283,1564.1687,100,1243.3975044603171,1243.3975044603171,512.8045553986781,512.8045553986781,30032.7669,6.0,956.0,1,2,3,4,5,6 +2474.5,81.1705,1561.12865,100,1243.5275190001294,1243.5275190001294,511.80956891990127,511.80956891990127,29971.692799999997,6.0,956.0,1,2,3,4,5,6 +2475.0,81.0127,1558.0886,100,1243.6580400356981,1243.6580400356981,510.81458244112423,510.81458244112423,29910.6187,6.0,956.0,1,2,3,4,5,6 +2475.5,80.8401,1554.7672,100,1243.7459342702446,1243.7459342702446,509.72627657143545,509.72627657143545,29843.8911,6.0,956.0,1,2,3,4,5,6 +2476.0,80.6675,1551.4458,100,1243.834204630117,1243.834204630117,508.63797070174667,508.63797070174667,29777.1635,6.0,956.0,1,2,3,4,5,6 +2476.5,80.4793,1547.83785,100,1243.9851107427626,1243.9851107427626,507.45130114974523,507.45130114974523,29704.6795,6.0,956.0,1,2,3,4,5,6 +2477.0,80.2911,1544.2299,100,1244.1367242944737,1244.1367242944737,506.26463159774397,506.26463159774397,29632.1955,6.0,956.0,1,2,3,4,5,6 +2477.5,80.081,1540.1924,100,1244.3474018681086,1244.3474018681086,504.93987456865,504.93987456865,29551.081850000002,6.0,956.0,1,2,3,4,5,6 +2478.0,79.8709,1536.1549,100,1244.5591878143355,1244.5591878143355,503.6151175395561,503.6151175395561,29469.9682,6.0,956.0,1,2,3,4,5,6 +2478.5,79.6378,1531.6601,100,1244.700637046729,1244.700637046729,502.1453371326936,502.1453371326936,29379.6672,6.0,956.0,1,2,3,4,5,6 +2479.0,79.4047,1527.1653,100,1244.8429167542981,1244.8429167542981,500.67555672583114,500.67555672583114,29289.3662,6.0,956.0,1,2,3,4,5,6 +2479.5,79.1557,1522.3688499999998,100,1244.885327752771,1244.885327752771,499.1055210273809,499.1055210273809,29193.005,6.0,956.0,1,2,3,4,5,6 +2480.0,78.9067,1517.5724,100,1244.928006417706,1244.928006417706,497.53548532893063,497.53548532893063,29096.6438,6.0,956.0,1,2,3,4,5,6 +2480.5,78.64824999999999,1512.6023500000001,100,1244.93848104694,1244.93848104694,495.9058639383103,495.9058639383103,28996.794950000003,6.0,956.0,1,2,3,4,5,6 +2481.0,78.3898,1507.6323,100,1244.9490247455662,1244.9490247455662,494.27624254768995,494.27624254768995,28896.9461,6.0,956.0,1,2,3,4,5,6 +2481.5,78.1242,1502.5174499999998,100,1244.936841414056,1244.936841414056,492.6015378026763,492.6015378026763,28794.18895,6.0,956.0,1,2,3,4,5,6 +2482.0,77.8586,1497.4026,100,1244.9245749602487,1244.9245749602487,490.92683305766275,490.92683305766275,28691.4318,6.0,956.0,1,2,3,4,5,6 +2482.5,77.5912,1492.2431499999998,100,1244.804405112951,1244.804405112951,489.24077865699775,489.24077865699775,28587.7784,6.0,956.0,1,2,3,4,5,6 +2483.0,77.3238,1487.0837,100,1244.683404126543,1244.683404126543,487.5547242563327,487.5547242563327,28484.125,6.0,956.0,1,2,3,4,5,6 +2483.5,77.06495000000001,1482.0976999999998,100,1244.4559270589286,1244.4559270589286,485.92258072001215,485.92258072001215,28383.95555,6.0,956.0,1,2,3,4,5,6 +2484.0,76.8061,1477.1117,100,1244.2269167162503,1244.2269167162503,484.29043718369144,484.29043718369144,28283.7861,6.0,956.0,1,2,3,4,5,6 +2484.5,76.5624,1472.42825,100,1243.9931317591927,1243.9931317591927,482.7538199157704,482.7538199157704,28189.69555,6.0,956.0,1,2,3,4,5,6 +2485.0,76.3187,1467.7448,100,1243.757853763232,1243.757853763232,481.21720264784955,481.21720264784955,28095.605,6.0,956.0,1,2,3,4,5,6 +2485.5,76.08805000000001,1463.318,100,1243.59306211685,1243.59306211685,479.7628703834015,479.7628703834015,28006.67005,6.0,956.0,1,2,3,4,5,6 +2486.0,75.8574,1458.8912,100,1243.427268348243,1243.427268348243,478.30853811895344,478.30853811895344,27917.7351,6.0,956.0,1,2,3,4,5,6 +2486.5,75.62355,1455.6212500000001,100,1223.1326933871792,1223.1326933871792,476.83402868890283,476.83402868890283,27480.65195,6.0,943.4346499999999,1,2,3,4,5,6 +2487.0,75.3897,1452.3513,100,1202.7122156474954,1202.7122156474954,475.35951925885234,475.35951925885234,27043.5688,6.0,930.8693,1,2,3,4,5,6 +2487.5,74.86605,1520.01015,100,546.9526800064916,546.9526800064916,472.05771526891874,472.05771526891874,15846.41865,3.0,526.981,1,2,3,4,5,6 +2488.0,74.3424,1587.669,100,-118.04488079480888,-118.04488079480888,468.75591127898514,468.75591127898514,4649.2685,0.0,123.0927,1,2,3,4,5,6 +2488.5,73.54395,1719.9263,100,-102.00330488095895,-102.00330488095895,463.72139319293046,463.72139319293046,5301.4882,0.0,127.6848,1,2,3,4,5,6 +2489.0,72.7455,1852.1836,100,-85.60958632492732,-85.60958632492732,458.68687510687596,458.68687510687596,5953.7079,0.0,132.2769,1,2,3,4,5,6 +2489.5,72.32275000000001,1883.61285,100,776.6823436470542,776.6823436470542,456.0212823698485,456.0212823698485,19557.233200000002,2.5,489.04210000000006,1,2,3,4,5,6 +2490.0,71.9,1915.0421,100,1649.1142990264254,1649.1142990264254,453.355689632821,453.355689632821,33160.7585,5.0,845.8073,1,2,3,4,5,6 +2490.5,71.83845,1903.007,100,1626.4434879510904,1626.4434879510904,452.96759446318396,452.96759446318396,33283.6673,5.0,854.7067,1,2,3,4,5,6 +2491.0,71.7769,1890.9719,100,1603.7337956083365,1603.7337956083365,452.579499293547,452.579499293547,33406.5761,5.0,863.6061,1,2,3,4,5,6 +2491.5,71.71340000000001,1889.2902,100,1604.6689393614022,1604.6689393614022,452.179108663621,452.179108663621,33397.974350000004,5.0,864.1905999999999,1,2,3,4,5,6 +2492.0,71.6499,1887.6085,100,1605.6057406639784,1605.6057406639784,451.7787180336949,451.7787180336949,33389.3726,5.0,864.7751,1,2,3,4,5,6 +2492.5,71.59835000000001,1886.2533,100,1606.2967003988217,1606.2967003988217,451.45367650656596,451.45367650656596,33382.2994,5.0,865.2426,1,2,3,4,5,6 +2493.0,71.5468,1884.8981,100,1606.9886558168919,1606.9886558168919,451.1286349794369,451.1286349794369,33375.2262,5.0,865.7101,1,2,3,4,5,6 +2493.5,71.50370000000001,1883.77985,100,1607.6833993625503,1607.6833993625503,450.85687378022726,450.85687378022726,33369.389599999995,5.0,866.0959,1,2,3,4,5,6 +2494.0,71.4606,1882.6616,100,1608.3789809489424,1608.3789809489424,450.58511258101765,450.58511258101765,33363.553,5.0,866.4817,1,2,3,4,5,6 +2494.5,71.419,1881.56945,100,1609.17102581946,1609.17102581946,450.32280942818414,450.32280942818414,33357.85275,5.0,866.8585,1,2,3,4,5,6 +2495.0,71.3774,1880.4773,100,1609.9639939252484,1609.9639939252484,450.06050627535063,450.06050627535063,33352.1525,5.0,867.2353,1,2,3,4,5,6 +2495.5,71.3385,1879.42795,100,1610.5222231754242,1610.5222231754242,449.81522760599444,449.81522760599444,33346.6756,5.0,867.59735,1,2,3,4,5,6 +2496.0,71.2996,1878.3786,100,1611.0810615487324,1611.0810615487324,449.5699489366381,449.5699489366381,33341.1987,5.0,867.9594,1,2,3,4,5,6 +2496.5,71.27765,1877.7667999999999,100,1610.945292767088,1610.945292767088,449.4315461913329,449.4315461913329,33338.00505,5.0,868.17045,1,2,3,4,5,6 +2497.0,71.2557,1877.155,100,1610.8094403395096,1610.8094403395096,449.2931434460278,449.2931434460278,33334.8114,5.0,868.3815,1,2,3,4,5,6 +2497.5,71.2662,1877.4203499999999,100,1609.8486827837041,1609.8486827837041,449.35934977066125,449.35934977066125,33336.1362,5.0,868.2885,1,2,3,4,5,6 +2498.0,71.2767,1877.6857,100,1608.8882082924715,1608.8882082924715,449.4255560952947,449.4255560952947,33337.461,5.0,868.1955,1,2,3,4,5,6 +2498.5,71.32585,1878.98485,100,1607.2107322240113,1607.2107322240113,449.7354647482217,449.7354647482217,33344.122050000005,5.0,867.7443499999999,1,2,3,4,5,6 +2499.0,71.375,1880.284,100,1605.5355664308229,1605.5355664308229,450.04537340114877,450.04537340114877,33350.7831,5.0,867.2932,1,2,3,4,5,6 +2499.5,71.4611,1882.5602,100,1603.2639959082635,1603.2639959082635,450.588265263143,450.588265263143,33362.56625,5.0,866.5055,1,2,3,4,5,6 +2500.0,71.5472,1884.8364,100,1600.9978926079564,1600.9978926079564,451.13115712513724,451.13115712513724,33374.3494,5.0,865.7178,1,2,3,4,5,6 +2500.5,71.6662,1887.9787999999999,100,1598.2099731393598,1598.2099731393598,451.88149547098294,451.88149547098294,33390.6847,5.0,864.6320499999999,1,2,3,4,5,6 +2501.0,71.7852,1891.1212,100,1595.4312968689924,1595.4312968689924,452.63183381682876,452.63183381682876,33407.02,5.0,863.5463,1,2,3,4,5,6 +2501.5,71.934,1895.0434,100,1592.1426323296355,1592.1426323296355,453.5700720173483,453.5700720173483,33427.4531,5.0,862.1922,1,2,3,4,5,6 +2502.0,72.0828,1898.9656,100,1588.867545322879,1588.867545322879,454.508310217868,454.508310217868,33447.8862,5.0,860.8381,1,2,3,4,5,6 +2502.5,72.25890000000001,1903.6114499999999,100,1585.1321904568154,1585.1321904568154,455.6186848624347,455.6186848624347,33472.1214,5.0,859.235,1,2,3,4,5,6 +2503.0,72.435,1908.2573,100,1581.4149979705942,1581.4149979705942,456.72905950700124,456.72905950700124,33496.3566,5.0,857.6319,1,2,3,4,5,6 +2503.5,72.63135,1913.4739,100,1577.548210256315,1577.548210256315,457.9671177776466,457.9671177776466,33523.60305,5.0,855.8326500000001,1,2,3,4,5,6 +2504.0,72.8277,1918.6905,100,1573.702272953835,1573.702272953835,459.205176048292,459.205176048292,33550.8495,5.0,854.0334,1,2,3,4,5,6 +2504.5,73.04425,1924.2726499999999,100,1569.207949345773,1569.207949345773,460.5706026768037,460.5706026768037,33580.0177,5.0,852.10835,1,2,3,4,5,6 +2505.0,73.2608,1929.8548,100,1564.7401950838648,1564.7401950838648,461.9360293053153,461.9360293053153,33609.1859,5.0,850.1833,1,2,3,4,5,6 +2505.5,73.50675000000001,1936.4261000000001,100,1559.5984426736316,1559.5984426736316,463.48683364280066,463.48683364280066,33643.498649999994,5.0,847.91655,1,2,3,4,5,6 +2506.0,73.7527,1942.9974,100,1554.4909836250063,1554.4909836250063,465.03763798028587,465.03763798028587,33677.8114,5.0,845.6498,1,2,3,4,5,6 +2506.5,74.02045000000001,1950.0678,100,1549.37670443776,1549.37670443776,466.72589925843874,466.72589925843874,33714.772150000004,5.0,843.21195,1,2,3,4,5,6 +2507.0,74.2882,1957.1382,100,1544.2992910852602,1544.2992910852602,468.4141605365915,468.4141605365915,33751.7329,5.0,840.7741,1,2,3,4,5,6 +2507.5,74.56665000000001,1964.4681500000002,100,1538.9927639501034,1538.9927639501034,470.16988921222804,470.16988921222804,33790.04885000001,5.0,838.2466999999999,1,2,3,4,5,6 +2508.0,74.8451,1971.7981,100,1533.7257210959701,1533.7257210959701,471.92561788786435,471.92561788786435,33828.3648,5.0,835.7193,1,2,3,4,5,6 +2508.5,75.13499999999999,1979.4371,100,1528.1695034937118,1528.1695034937118,473.7535429841725,473.7535429841725,33868.28635,5.0,833.0851,1,2,3,4,5,6 +2509.0,75.4249,1987.0761,100,1522.655997183954,1522.655997183954,475.5814680804806,475.5814680804806,33908.2079,5.0,830.4509,1,2,3,4,5,6 +2509.5,75.72295,1994.9457499999999,100,1517.169994777013,1517.169994777013,477.4607818954328,477.4607818954328,33950.38935,5.0,827.7635,1,2,3,4,5,6 +2510.0,76.021,2002.8154,100,1511.7270095105298,1511.7270095105298,479.34009571038507,479.34009571038507,33992.5708,5.0,825.0761,1,2,3,4,5,6 +2510.5,76.3189,2010.6723499999998,100,1506.5766810318285,1506.5766810318285,481.2184637206995,481.2184637206995,34037.304650000005,5.0,822.47745,1,2,3,4,5,6 +2511.0,76.6168,2018.5293,100,1501.4664033736726,1501.4664033736726,483.09683173101416,483.09683173101416,34082.0385,5.0,819.8788,1,2,3,4,5,6 +2511.5,76.91775,2026.41955,100,1495.977844359722,1495.977844359722,484.9944311022936,484.9944311022936,34126.82105,5.0,817.2752,1,2,3,4,5,6 +2512.0,77.2187,2034.3098,100,1490.5320672583193,1490.5320672583193,486.8920304735732,486.8920304735732,34171.6036,5.0,814.6716,1,2,3,4,5,6 +2512.5,77.53975,2042.72985,100,1484.2951194451878,1484.2951194451878,488.91636766629387,488.91636766629387,34219.3857,5.0,811.893,1,2,3,4,5,6 +2513.0,77.8608,2051.1499,100,1478.109606297392,1478.109606297392,490.94070485901455,490.94070485901455,34267.1678,5.0,809.1144,1,2,3,4,5,6 +2513.5,78.2217,2060.63485,100,1470.7688081184633,1470.7688081184633,493.21631081712974,493.21631081712974,34320.98885,5.0,805.9843000000001,1,2,3,4,5,6 +2514.0,78.5826,2070.1198,100,1463.495436928786,1463.495436928786,495.49191677524493,495.49191677524493,34374.8099,5.0,802.8542,1,2,3,4,5,6 +2514.5,78.99625,2081.0279499999997,100,1455.100818038831,1455.100818038831,498.10013069759015,498.10013069759015,34436.7092,5.0,799.25445,1,2,3,4,5,6 +2515.0,79.4099,2091.9361,100,1446.79365509842,1446.79365509842,500.70834461993525,500.70834461993525,34498.6085,5.0,795.6547,1,2,3,4,5,6 +2515.5,79.8719,2104.1525,100,1437.838821362707,1437.838821362707,503.62142290380683,503.62142290380683,34567.94075,5.0,791.6235,1,2,3,4,5,6 +2516.0,80.3339,2116.3689,100,1428.9869860669032,1428.9869860669032,506.53450118767836,506.53450118767836,34637.273,5.0,787.5923,1,2,3,4,5,6 +2516.5,80.82135,2129.26515,100,1420.1955244622864,1420.1955244622864,509.60805099173285,509.60805099173285,34710.47415,5.0,783.337,1,2,3,4,5,6 +2517.0,81.3088,2142.1614,100,1411.5094732919438,1411.5094732919438,512.6816007957874,512.6816007957874,34783.6753,5.0,779.0817,1,2,3,4,5,6 +2517.5,81.7741,2152.76605,100,1362.4608060253795,1362.4608060253795,515.6154867816866,515.6154867816866,33911.985700000005,5.0,751.7312,1,2,3,4,5,6 +2518.0,82.2394,2163.3707,100,1313.9671609228662,1313.9671609228662,518.5493727675859,518.5493727675859,33040.2961,5.0,724.3807,1,2,3,4,5,6 +2518.5,82.35804999999999,2090.5886,100,596.8068400478156,596.8068400478156,519.2975042359436,519.2975042359436,16532.43355,2.5,317.66325,1,2,3,4,5,6 +2519.0,82.4767,2017.8065,100,-118.29008420559988,-118.29008420559988,520.0456357043016,520.0456357043016,24.571,0.0,-89.0542,1,2,3,4,5,6 +2519.5,82.2716,1879.3953,100,-89.72239877430364,-89.72239877430364,518.7524054964617,518.7524054964617,600.325,0.0,-64.62655,1,2,3,4,5,6 +2520.0,82.0665,1740.9841,100,-61.011921039644676,-61.011921039644676,517.4591752886217,517.4591752886217,1176.079,0.0,-40.1989,1,2,3,4,5,6 +2520.5,82.08225,1664.5587,100,499.1284894602671,499.1284894602671,517.5584847755719,517.5584847755719,13620.187199999998,3.0,387.086,1,2,3,4,5,6 +2521.0,82.098,1588.1333,100,1059.0539809252357,1059.0539809252357,517.6577942625221,517.6577942625221,26064.2954,6.0,814.3709,1,2,3,4,5,6 +2521.5,82.3611,1588.6361499999998,100,1127.6755400182851,1127.6755400182851,519.3167355969086,519.3167355969086,27874.3738,6.0,871.6592499999999,1,2,3,4,5,6 +2522.0,82.6242,1589.139,100,1195.860076248847,1195.860076248847,520.9756769312952,520.9756769312952,29684.4522,6.0,928.9476,1,2,3,4,5,6 +2522.5,82.7895,1592.48835,100,919.1869410613665,919.1869410613665,522.0179536419531,522.0179536419531,23697.44195,6.0,734.7946,1,2,3,4,5,6 +2523.0,82.9548,1595.8377,100,643.6164321051945,643.6164321051945,523.0602303526111,523.0602303526111,17710.4317,6.0,540.6416,1,2,3,4,5,6 +2523.5,82.9774,1596.0551500000001,100,597.6355536085729,597.6355536085729,523.2027315846792,523.2027315846792,16680.5067,6.0,508.3285,1,2,3,4,5,6 +2524.0,83.0,1596.2726,100,551.6797153012049,551.6797153012049,523.3452328167474,523.3452328167474,15650.5817,6.0,476.0154,1,2,3,4,5,6 +2524.5,83.0,1596.2726,100,579.7317367951808,579.7317367951808,523.3452328167474,523.3452328167474,16287.526249999999,6.0,495.5664,1,2,3,4,5,6 +2525.0,83.0,1596.2726,100,607.7837582891567,607.7837582891567,523.3452328167474,523.3452328167474,16924.4708,6.0,515.1174,1,2,3,4,5,6 +2525.5,83.0,1596.2726,100,650.3839093734941,650.3839093734941,523.3452328167474,523.3452328167474,17856.14175,6.0,544.80845,1,2,3,4,5,6 +2526.0,83.0,1596.2726,100,692.9840604578313,692.9840604578313,523.3452328167474,523.3452328167474,18787.8127,6.0,574.4995,1,2,3,4,5,6 +2526.5,83.0,1596.2726,100,720.2784619518072,720.2784619518072,523.3452328167474,523.3452328167474,19396.19285,6.0,593.5213,1,2,3,4,5,6 +2527.0,83.0,1596.2726,100,747.5728634457832,747.5728634457832,523.3452328167474,523.3452328167474,20004.573,6.0,612.5431,1,2,3,4,5,6 +2527.5,83.0,1596.2726,100,770.1627185783134,770.1627185783134,523.3452328167474,523.3452328167474,20503.7765,6.0,628.2761499999999,1,2,3,4,5,6 +2528.0,83.0,1596.2726,100,792.7525737108434,792.7525737108434,523.3452328167474,523.3452328167474,21002.98,6.0,644.0092,1,2,3,4,5,6 +2528.5,83.0,1596.2726,100,818.4536912168675,818.4536912168675,523.3452328167474,523.3452328167474,21509.3658,6.0,661.9069,1,2,3,4,5,6 +2529.0,83.0,1596.2726,100,844.1548087228916,844.1548087228916,523.3452328167474,523.3452328167474,22015.7516,6.0,679.8046,1,2,3,4,5,6 +2529.5,83.0,1596.2726,100,870.8919487590362,870.8919487590362,523.3452328167474,523.3452328167474,22565.745499999997,6.0,698.42335,1,2,3,4,5,6 +2530.0,83.0,1596.2726,100,897.6290887951808,897.6290887951808,523.3452328167474,523.3452328167474,23115.7394,6.0,717.0421,1,2,3,4,5,6 +2530.5,83.0,1596.2726,100,912.7709916506024,912.7709916506024,523.3452328167474,523.3452328167474,23449.658949999997,6.0,727.5867000000001,1,2,3,4,5,6 +2531.0,83.0,1596.2726,100,927.9128945060241,927.9128945060241,523.3452328167474,523.3452328167474,23783.5785,6.0,738.1313,1,2,3,4,5,6 +2531.5,83.0,1596.2726,100,923.1741183253013,923.1741183253013,523.3452328167474,523.3452328167474,23679.079250000003,6.0,734.8314,1,2,3,4,5,6 +2532.0,83.0,1596.2726,100,918.4353421445785,918.4353421445785,523.3452328167474,523.3452328167474,23574.58,6.0,731.5315,1,2,3,4,5,6 +2532.5,83.0,1596.2726,100,906.3608874939761,906.3608874939761,523.3452328167474,523.3452328167474,23308.311,6.0,723.1232,1,2,3,4,5,6 +2533.0,83.0,1596.2726,100,894.2864328433736,894.2864328433736,523.3452328167474,523.3452328167474,23042.042,6.0,714.7149,1,2,3,4,5,6 +2533.5,83.0,1596.2726,100,888.6124980000001,888.6124980000001,523.3452328167474,523.3452328167474,22916.912,6.0,710.7635,1,2,3,4,5,6 +2534.0,83.0,1596.2726,100,882.9385631566266,882.9385631566266,523.3452328167474,523.3452328167474,22791.782,6.0,706.8121,1,2,3,4,5,6 +2534.5,83.0,1596.2726,100,888.4408925060243,888.4408925060243,523.3452328167474,523.3452328167474,22913.12675,6.0,710.64395,1,2,3,4,5,6 +2535.0,83.0,1596.2726,100,893.9432218554218,893.9432218554218,523.3452328167474,523.3452328167474,23034.4715,6.0,714.4758,1,2,3,4,5,6 +2535.5,83.0,1596.2726,100,902.1980850722892,902.1980850722892,523.3452328167474,523.3452328167474,23216.5065,6.0,720.22415,1,2,3,4,5,6 +2536.0,83.0,1596.2726,100,910.4529482891567,910.4529482891567,523.3452328167474,523.3452328167474,23398.5415,6.0,725.9725,1,2,3,4,5,6 +2536.5,83.0,1596.2726,100,898.946252240964,898.946252240964,523.3452328167474,523.3452328167474,23146.376949999998,6.0,717.95975,1,2,3,4,5,6 +2537.0,83.0,1596.2726,100,887.4395561927711,887.4395561927711,523.3452328167474,523.3452328167474,22894.2124,6.0,709.947,1,2,3,4,5,6 +2537.5,83.0,1596.2726,100,860.3007862771085,860.3007862771085,523.3452328167474,523.3452328167474,22348.4291,6.0,691.04825,1,2,3,4,5,6 +2538.0,83.0,1596.2726,100,833.1620163614458,833.1620163614458,523.3452328167474,523.3452328167474,21802.6458,6.0,672.1495,1,2,3,4,5,6 +2538.5,83.0,1596.2726,100,816.7015808674699,816.7015808674699,523.3452328167474,523.3452328167474,21483.784249999997,6.0,660.6868,1,2,3,4,5,6 +2539.0,83.0,1596.2726,100,800.2411453734941,800.2411453734941,523.3452328167474,523.3452328167474,21164.9227,6.0,649.2241,1,2,3,4,5,6 +2539.5,83.0,1596.2726,100,806.9506463493975,806.9506463493975,523.3452328167474,523.3452328167474,21296.033649999998,6.0,653.89645,1,2,3,4,5,6 +2540.0,83.0,1596.2726,100,813.6601473253012,813.6601473253012,523.3452328167474,523.3452328167474,21427.1446,6.0,658.5688,1,2,3,4,5,6 +2540.5,83.0,1596.2726,100,829.7477059879518,829.7477059879518,523.3452328167474,523.3452328167474,21736.3229,6.0,669.7717,1,2,3,4,5,6 +2541.0,83.0,1596.2726,100,845.8352646506025,845.8352646506025,523.3452328167474,523.3452328167474,22045.5012,6.0,680.9746,1,2,3,4,5,6 +2541.5,83.0,1596.2726,100,874.5203096024096,874.5203096024096,523.3452328167474,523.3452328167474,22645.6105,6.0,700.94995,1,2,3,4,5,6 +2542.0,83.0,1596.2726,100,903.2053545542169,903.2053545542169,523.3452328167474,523.3452328167474,23245.7198,6.0,720.9253,1,2,3,4,5,6 +2542.5,83.0,1596.2726,100,940.9991826144578,940.9991826144578,523.3452328167474,523.3452328167474,24081.2295,6.0,747.2442,1,2,3,4,5,6 +2543.0,83.0,1596.2726,100,978.7930106746988,978.7930106746988,523.3452328167474,523.3452328167474,24916.7392,6.0,773.5631,1,2,3,4,5,6 +2543.5,83.0,1596.2726,100,998.0844804216869,998.0844804216869,523.3452328167474,523.3452328167474,25356.832150000002,6.0,786.99945,1,2,3,4,5,6 +2544.0,83.0,1596.2726,100,1017.3759501686748,1017.3759501686748,523.3452328167474,523.3452328167474,25796.9251,6.0,800.4358,1,2,3,4,5,6 +2544.5,83.0,1596.2726,100,1021.4570574216868,1021.4570574216868,523.3452328167474,523.3452328167474,25890.17365,6.0,803.2788499999999,1,2,3,4,5,6 +2545.0,83.0,1596.2726,100,1025.538164674699,1025.538164674699,523.3452328167474,523.3452328167474,25983.4222,6.0,806.1219,1,2,3,4,5,6 +2545.5,83.0,1596.2726,100,1021.6186221686747,1021.6186221686747,523.3452328167474,523.3452328167474,25893.8687,6.0,803.39155,1,2,3,4,5,6 +2546.0,83.0,1596.2726,100,1017.6990796626505,1017.6990796626505,523.3452328167474,523.3452328167474,25804.3152,6.0,800.6612,1,2,3,4,5,6 +2546.5,83.0,1596.2726,100,1012.3574022650603,1012.3574022650603,523.3452328167474,523.3452328167474,25682.25105,6.0,796.9395999999999,1,2,3,4,5,6 +2547.0,83.0,1596.2726,100,1007.0157248674699,1007.0157248674699,523.3452328167474,523.3452328167474,25560.1869,6.0,793.218,1,2,3,4,5,6 +2547.5,83.0,1596.2726,100,1002.4480977831327,1002.4480977831327,523.3452328167474,523.3452328167474,25455.834600000002,6.0,790.0364,1,2,3,4,5,6 +2548.0,83.0,1596.2726,100,997.8804706987952,997.8804706987952,523.3452328167474,523.3452328167474,25351.4823,6.0,786.8548,1,2,3,4,5,6 +2548.5,83.0,1596.2726,100,996.9297945180723,996.9297945180723,523.3452328167474,523.3452328167474,25329.7689,6.0,786.1928,1,2,3,4,5,6 +2549.0,83.0,1596.2726,100,995.9791183373495,995.9791183373495,523.3452328167474,523.3452328167474,25308.0555,6.0,785.5308,1,2,3,4,5,6 +2549.5,83.0,1596.2726,100,967.7856135903614,967.7856135903614,523.3452328167474,523.3452328167474,24676.190349999997,6.0,765.89765,1,2,3,4,5,6 +2550.0,83.0,1596.2726,100,939.5921088433736,939.5921088433736,523.3452328167474,523.3452328167474,24044.3252,6.0,746.2645,1,2,3,4,5,6 +2550.5,83.0,1596.2726,100,928.575583807229,928.575583807229,523.3452328167474,523.3452328167474,23799.78315,6.0,738.59265,1,2,3,4,5,6 +2551.0,83.0,1596.2726,100,917.5590587710844,917.5590587710844,523.3452328167474,523.3452328167474,23555.2411,6.0,730.9208,1,2,3,4,5,6 +2551.5,83.0,1596.2726,100,935.0007490843375,935.0007490843375,523.3452328167474,523.3452328167474,23939.975,6.0,743.0668499999999,1,2,3,4,5,6 +2552.0,83.0,1596.2726,100,952.4424393975904,952.4424393975904,523.3452328167474,523.3452328167474,24324.7089,6.0,755.2129,1,2,3,4,5,6 +2552.5,83.0,1596.2726,100,962.26548473494,962.26548473494,523.3452328167474,523.3452328167474,24543.54315,6.0,762.05335,1,2,3,4,5,6 +2553.0,83.0,1596.2726,100,972.0885300722892,972.0885300722892,523.3452328167474,523.3452328167474,24762.3774,6.0,768.8938,1,2,3,4,5,6 +2553.5,83.0,1596.2726,100,963.8765682289156,963.8765682289156,523.3452328167474,523.3452328167474,24579.7414,6.0,763.17515,1,2,3,4,5,6 +2554.0,83.0,1596.2726,100,955.6646063855422,955.6646063855422,523.3452328167474,523.3452328167474,24397.1054,6.0,757.4565,1,2,3,4,5,6 +2554.5,83.0,1596.2726,100,928.2255268554217,928.2255268554217,523.3452328167474,523.3452328167474,23792.528400000003,6.0,738.3487,1,2,3,4,5,6 +2555.0,83.0,1596.2726,100,900.7864473253012,900.7864473253012,523.3452328167474,523.3452328167474,23187.9514,6.0,719.2409,1,2,3,4,5,6 +2555.5,83.0,1596.2726,100,866.6013550120483,866.6013550120483,523.3452328167474,523.3452328167474,22487.1849,6.0,695.43535,1,2,3,4,5,6 +2556.0,83.0,1596.2726,100,832.4162626987952,832.4162626987952,523.3452328167474,523.3452328167474,21786.4184,6.0,671.6298,1,2,3,4,5,6 +2556.5,83.0,1596.2726,100,800.9006398915662,800.9006398915662,523.3452328167474,523.3452328167474,21142.689449999998,6.0,649.6831,1,2,3,4,5,6 +2557.0,83.0,1596.2726,100,769.3850170843374,769.3850170843374,523.3452328167474,523.3452328167474,20498.9605,6.0,627.7364,1,2,3,4,5,6 +2557.5,83.0,1596.2726,100,753.2869612771085,753.2869612771085,523.3452328167474,523.3452328167474,20134.07,6.0,616.5227,1,2,3,4,5,6 +2558.0,83.0,1596.2726,100,737.1889054698796,737.1889054698796,523.3452328167474,523.3452328167474,19769.1795,6.0,605.309,1,2,3,4,5,6 +2558.5,83.0,1596.2726,100,736.4869659759036,736.4869659759036,523.3452328167474,523.3452328167474,19753.2586,6.0,604.81975,1,2,3,4,5,6 +2559.0,83.0,1596.2726,100,735.7850264819277,735.7850264819277,523.3452328167474,523.3452328167474,19737.3377,6.0,604.3305,1,2,3,4,5,6 +2559.5,83.0,1596.2726,100,742.5807866024097,742.5807866024097,523.3452328167474,523.3452328167474,19891.412949999998,6.0,609.0655,1,2,3,4,5,6 +2560.0,83.0,1596.2726,100,749.3765467228917,749.3765467228917,523.3452328167474,523.3452328167474,20045.4882,6.0,613.8005,1,2,3,4,5,6 +2560.5,83.0,1596.2726,100,758.1548979759037,758.1548979759037,523.3452328167474,523.3452328167474,20244.449849999997,6.0,619.9149,1,2,3,4,5,6 +2561.0,83.0,1596.2726,100,766.9332492289158,766.9332492289158,523.3452328167474,523.3452328167474,20443.4115,6.0,626.0293,1,2,3,4,5,6 +2561.5,83.0,1596.2726,100,770.5232726746989,770.5232726746989,523.3452328167474,523.3452328167474,20524.75965,6.0,628.52925,1,2,3,4,5,6 +2562.0,83.0,1596.2726,100,774.1132961204819,774.1132961204819,523.3452328167474,523.3452328167474,20606.1078,6.0,631.0292,1,2,3,4,5,6 +2562.5,83.0,1596.2726,100,783.1426660481927,783.1426660481927,523.3452328167474,523.3452328167474,20800.234,6.0,637.3172999999999,1,2,3,4,5,6 +2563.0,83.0,1596.2726,100,792.1720359759037,792.1720359759037,523.3452328167474,523.3452328167474,20994.3602,6.0,643.6054,1,2,3,4,5,6 +2563.5,83.0,1596.2726,100,796.8058407108435,796.8058407108435,523.3452328167474,523.3452328167474,21091.370799999997,6.0,646.83195,1,2,3,4,5,6 +2564.0,83.0,1596.2726,100,801.4396454457832,801.4396454457832,523.3452328167474,523.3452328167474,21188.3814,6.0,650.0585,1,2,3,4,5,6 +2564.5,83.0,1596.2726,100,801.6299632409639,801.6299632409639,523.3452328167474,523.3452328167474,21192.11335,6.0,650.19125,1,2,3,4,5,6 +2565.0,83.0,1596.2726,100,801.8202810361445,801.8202810361445,523.3452328167474,523.3452328167474,21195.8453,6.0,650.324,1,2,3,4,5,6 +2565.5,83.0,1596.2726,100,809.6479561084337,809.6479561084337,523.3452328167474,523.3452328167474,21349.08775,6.0,655.7746999999999,1,2,3,4,5,6 +2566.0,83.0,1596.2726,100,817.4756311807229,817.4756311807229,523.3452328167474,523.3452328167474,21502.3302,6.0,661.2254,1,2,3,4,5,6 +2566.5,83.0,1596.2726,100,840.2548913132532,840.2548913132532,523.3452328167474,523.3452328167474,21955.95115,6.0,677.08835,1,2,3,4,5,6 +2567.0,83.0,1596.2726,100,863.0341514457832,863.0341514457832,523.3452328167474,523.3452328167474,22409.5721,6.0,692.9513,1,2,3,4,5,6 +2567.5,83.0,1596.2726,100,898.1977601927712,898.1977601927712,523.3452328167474,523.3452328167474,23156.6507,6.0,717.4383499999999,1,2,3,4,5,6 +2568.0,83.0,1596.2726,100,933.3613689397591,933.3613689397591,523.3452328167474,523.3452328167474,23903.7293,6.0,741.9254,1,2,3,4,5,6 +2568.5,83.0,1596.2726,100,950.4023421686747,950.4023421686747,523.3452328167474,523.3452328167474,24280.52435,6.0,753.79225,1,2,3,4,5,6 +2569.0,83.0,1596.2726,100,967.4433153975905,967.4433153975905,523.3452328167474,523.3452328167474,24657.3194,6.0,765.6591,1,2,3,4,5,6 +2569.5,83.0,1596.2726,100,969.3852871445785,969.3852871445785,523.3452328167474,523.3452328167474,24701.155,6.0,767.01135,1,2,3,4,5,6 +2570.0,83.0,1596.2726,100,971.3272588915664,971.3272588915664,523.3452328167474,523.3452328167474,24744.9906,6.0,768.3636,1,2,3,4,5,6 +2570.5,83.0,1596.2726,100,972.9383423855422,972.9383423855422,523.3452328167474,523.3452328167474,24781.791100000002,6.0,769.4856500000001,1,2,3,4,5,6 +2571.0,83.0,1596.2726,100,974.549425879518,974.549425879518,523.3452328167474,523.3452328167474,24818.5916,6.0,770.6077,1,2,3,4,5,6 +2571.5,83.0,1596.2726,100,989.2029833132531,989.2029833132531,523.3452328167474,523.3452328167474,25153.3205,6.0,780.81315,1,2,3,4,5,6 +2572.0,83.0,1596.2726,100,1003.8565407469881,1003.8565407469881,523.3452328167474,523.3452328167474,25488.0494,6.0,791.0186,1,2,3,4,5,6 +2572.5,83.0,1596.2726,100,1020.9212466506025,1020.9212466506025,523.3452328167474,523.3452328167474,25877.9601,6.0,802.9065,1,2,3,4,5,6 +2573.0,83.0,1596.2726,100,1037.985952554217,1037.985952554217,523.3452328167474,523.3452328167474,26267.8708,6.0,814.7944,1,2,3,4,5,6 +2573.5,83.0,1596.2726,100,1040.5750960843375,1040.5750960843375,523.3452328167474,523.3452328167474,26327.02985,6.0,816.5980999999999,1,2,3,4,5,6 +2574.0,83.0,1596.2726,100,1043.1642396144578,1043.1642396144578,523.3452328167474,523.3452328167474,26386.1889,6.0,818.4018,1,2,3,4,5,6 +2574.5,83.0,1596.2726,100,1036.4629537951807,1036.4629537951807,523.3452328167474,523.3452328167474,26233.063000000002,6.0,813.73315,1,2,3,4,5,6 +2575.0,83.0,1596.2726,100,1029.7616679759035,1029.7616679759035,523.3452328167474,523.3452328167474,26079.9371,6.0,809.0645,1,2,3,4,5,6 +2575.5,83.0,1596.2726,100,1030.7328820481928,1030.7328820481928,523.3452328167474,523.3452328167474,26102.129999999997,6.0,809.7411500000001,1,2,3,4,5,6 +2576.0,83.0,1596.2726,100,1031.7040961204818,1031.7040961204818,523.3452328167474,523.3452328167474,26124.3229,6.0,810.4178,1,2,3,4,5,6 +2576.5,83.0,1596.2726,100,1050.8965275903615,1050.8965275903615,523.3452328167474,523.3452328167474,26542.9558,6.0,823.78875,1,2,3,4,5,6 +2577.0,83.0,1596.2726,100,1070.088959060241,1070.088959060241,523.3452328167474,523.3452328167474,26961.5887,6.0,837.1597,1,2,3,4,5,6 +2577.5,83.0,1596.2726,100,1097.8717059759038,1097.8717059759038,523.3452328167474,523.3452328167474,27548.5585,6.0,856.5149,1,2,3,4,5,6 +2578.0,83.0,1596.2726,100,1125.6544528915663,1125.6544528915663,523.3452328167474,523.3452328167474,28135.5283,6.0,875.8701,1,2,3,4,5,6 +2578.5,83.0,1596.2726,100,1139.0949055301205,1139.0949055301205,523.3452328167474,523.3452328167474,28450.8137,6.0,885.2337,1,2,3,4,5,6 +2579.0,83.0,1596.2726,100,1152.5353581686747,1152.5353581686747,523.3452328167474,523.3452328167474,28766.0991,6.0,894.5973,1,2,3,4,5,6 +2579.5,83.0,1596.2726,100,1150.1223841084336,1150.1223841084336,523.3452328167474,523.3452328167474,28709.491,6.0,892.9161,1,2,3,4,5,6 +2580.0,83.0,1596.2726,100,1147.709410048193,1147.709410048193,523.3452328167474,523.3452328167474,28652.8829,6.0,891.2349,1,2,3,4,5,6 +2580.5,83.0,1596.2726,100,1129.958738566265,1129.958738566265,523.3452328167474,523.3452328167474,28241.03755,6.0,878.86865,1,2,3,4,5,6 +2581.0,83.0,1596.2726,100,1112.2080670843375,1112.2080670843375,523.3452328167474,523.3452328167474,27829.1922,6.0,866.5024,1,2,3,4,5,6 +2581.5,83.0,1596.2726,100,1083.947015493976,1083.947015493976,523.3452328167474,523.3452328167474,27242.2776,6.0,846.81385,1,2,3,4,5,6 +2582.0,83.0,1596.2726,100,1055.6859639036145,1055.6859639036145,523.3452328167474,523.3452328167474,26655.363,6.0,827.1253,1,2,3,4,5,6 +2582.5,83.0,1596.2726,100,1028.6065256746988,1028.6065256746988,523.3452328167474,523.3452328167474,26045.1014,6.0,808.2608,1,2,3,4,5,6 +2583.0,83.0,1596.2726,100,1001.5270874457832,1001.5270874457832,523.3452328167474,523.3452328167474,25434.8398,6.0,789.3963,1,2,3,4,5,6 +2583.5,83.0,1596.2726,100,979.1234425301207,979.1234425301207,523.3452328167474,523.3452328167474,24927.5274,6.0,773.7939,1,2,3,4,5,6 +2584.0,83.0,1596.2726,100,956.7197976144579,956.7197976144579,523.3452328167474,523.3452328167474,24420.215,6.0,758.1915,1,2,3,4,5,6 +2584.5,83.0,1596.2726,100,932.6229176385542,932.6229176385542,523.3452328167474,523.3452328167474,23888.13775,6.0,741.41125,1,2,3,4,5,6 +2585.0,83.0,1596.2726,100,908.5260376626507,908.5260376626507,523.3452328167474,523.3452328167474,23356.0605,6.0,724.631,1,2,3,4,5,6 +2585.5,83.0,1596.2726,100,885.9900374457832,885.9900374457832,523.3452328167474,523.3452328167474,22872.26185,6.0,708.9374,1,2,3,4,5,6 +2586.0,83.0,1596.2726,100,863.4540372289157,863.4540372289157,523.3452328167474,523.3452328167474,22388.4632,6.0,693.2438,1,2,3,4,5,6 +2586.5,83.0,1596.2726,100,844.433211253012,844.433211253012,523.3452328167474,523.3452328167474,22021.725449999998,6.0,679.9982,1,2,3,4,5,6 +2587.0,83.0,1596.2726,100,825.4123852771086,825.4123852771086,523.3452328167474,523.3452328167474,21654.9877,6.0,666.7526,1,2,3,4,5,6 +2587.5,83.0,1596.2726,100,803.3779660120482,803.3779660120482,523.3452328167474,523.3452328167474,21207.670250000003,6.0,651.40845,1,2,3,4,5,6 +2588.0,83.0,1596.2726,100,781.343546746988,781.343546746988,523.3452328167474,523.3452328167474,20760.3528,6.0,636.0643,1,2,3,4,5,6 +2588.5,83.0,1596.2726,100,756.1143443493976,756.1143443493976,523.3452328167474,523.3452328167474,20193.283600000002,6.0,618.4899,1,2,3,4,5,6 +2589.0,83.0,1596.2726,100,730.8851419518073,730.8851419518073,523.3452328167474,523.3452328167474,19626.2144,6.0,600.9155,1,2,3,4,5,6 +2589.5,83.0,1596.2726,100,706.1963143012049,706.1963143012049,523.3452328167474,523.3452328167474,19081.1901,6.0,583.7082499999999,1,2,3,4,5,6 +2590.0,83.0,1596.2726,100,681.5074866506025,681.5074866506025,523.3452328167474,523.3452328167474,18536.1658,6.0,566.501,1,2,3,4,5,6 +2590.5,83.0,1596.2726,100,660.928519301205,660.928519301205,523.3452328167474,523.3452328167474,18102.656799999997,6.0,552.1578999999999,1,2,3,4,5,6 +2591.0,83.0,1596.2726,100,640.3495519518074,640.3495519518074,523.3452328167474,523.3452328167474,17669.1478,6.0,537.8148,1,2,3,4,5,6 +2591.5,83.0,1596.2726,100,631.267696301205,631.267696301205,523.3452328167474,523.3452328167474,17462.269800000002,6.0,531.48505,1,2,3,4,5,6 +2592.0,83.0,1596.2726,100,622.1858406506025,622.1858406506025,523.3452328167474,523.3452328167474,17255.3918,6.0,525.1553,1,2,3,4,5,6 +2592.5,83.0,1596.2726,100,621.3652377831326,621.3652377831326,523.3452328167474,523.3452328167474,17236.70495,6.0,524.5835500000001,1,2,3,4,5,6 +2593.0,83.0,1596.2726,100,620.5446349156626,620.5446349156626,523.3452328167474,523.3452328167474,17218.0181,6.0,524.0118,1,2,3,4,5,6 +2593.5,83.0,1596.2726,100,615.0354596024097,615.0354596024097,523.3452328167474,523.3452328167474,17092.521500000003,6.0,520.17205,1,2,3,4,5,6 +2594.0,83.0,1596.2726,100,609.5262842891567,609.5262842891567,523.3452328167474,523.3452328167474,16967.0249,6.0,516.3323,1,2,3,4,5,6 +2594.5,83.0,1596.2726,100,599.2313238433736,599.2313238433736,523.3452328167474,523.3452328167474,16732.5106,6.0,509.15700000000004,1,2,3,4,5,6 +2595.0,83.0,1596.2726,100,588.9363633975904,588.9363633975904,523.3452328167474,523.3452328167474,16497.9963,6.0,501.9817,1,2,3,4,5,6 +2595.5,83.0,1596.2726,100,583.8844984698795,583.8844984698795,523.3452328167474,523.3452328167474,16382.922299999998,6.0,498.46085,1,2,3,4,5,6 +2596.0,83.0,1596.2726,100,578.8326335421688,578.8326335421688,523.3452328167474,523.3452328167474,16267.8483,6.0,494.94,1,2,3,4,5,6 +2596.5,83.0,1596.2726,100,583.3213038433735,583.3213038433735,523.3452328167474,523.3452328167474,16370.0903,6.0,498.06825000000003,1,2,3,4,5,6 +2597.0,83.0,1596.2726,100,587.8099741445783,587.8099741445783,523.3452328167474,523.3452328167474,16472.3323,6.0,501.1965,1,2,3,4,5,6 +2597.5,83.0,1596.2726,100,590.8961346506026,590.8961346506026,523.3452328167474,523.3452328167474,16542.637199999997,6.0,503.3476,1,2,3,4,5,6 +2598.0,83.0,1596.2726,100,593.9822951566266,593.9822951566266,523.3452328167474,523.3452328167474,16612.9421,6.0,505.4987,1,2,3,4,5,6 +2598.5,83.0,1596.2726,100,588.6346845903615,588.6346845903615,523.3452328167474,523.3452328167474,16491.12735,6.0,501.77160000000003,1,2,3,4,5,6 +2599.0,83.0,1596.2726,100,583.2870740240965,583.2870740240965,523.3452328167474,523.3452328167474,16369.3126,6.0,498.0445,1,2,3,4,5,6 +2599.5,83.0,1596.2726,100,575.7569701807229,575.7569701807229,523.3452328167474,523.3452328167474,16197.78415,6.0,492.7961,1,2,3,4,5,6 +2600.0,83.0,1596.2726,100,568.2268663373494,568.2268663373494,523.3452328167474,523.3452328167474,16026.2557,6.0,487.5477,1,2,3,4,5,6 +2600.5,83.0,1596.2726,100,555.8726399638555,555.8726399638555,523.3452328167474,523.3452328167474,15746.76255,6.0,478.93745,1,2,3,4,5,6 +2601.0,83.0,1596.2726,100,543.5184135903615,543.5184135903615,523.3452328167474,523.3452328167474,15467.2694,6.0,470.3272,1,2,3,4,5,6 +2601.5,83.0,1596.2726,100,526.5317516746989,526.5317516746989,523.3452328167474,523.3452328167474,15086.2805,6.0,458.48825,1,2,3,4,5,6 +2602.0,83.0,1596.2726,100,509.54508975903616,509.54508975903616,523.3452328167474,523.3452328167474,14705.2916,6.0,446.6493,1,2,3,4,5,6 +2602.5,83.0,1596.2726,100,496.8262017108434,496.8262017108434,523.3452328167474,523.3452328167474,14420.162550000001,6.0,437.78909999999996,1,2,3,4,5,6 +2603.0,83.0,1596.2726,100,484.1073136626506,484.1073136626506,523.3452328167474,523.3452328167474,14135.0335,6.0,428.9289,1,2,3,4,5,6 +2603.5,83.0,1596.2726,100,481.5213649156626,481.5213649156626,523.3452328167474,523.3452328167474,14077.08585,6.0,427.12825,1,2,3,4,5,6 +2604.0,83.0,1596.2726,100,478.9354161686747,478.9354161686747,523.3452328167474,523.3452328167474,14019.1382,6.0,425.3276,1,2,3,4,5,6 +2604.5,83.0,1596.2726,100,490.08155812048193,490.08155812048193,523.3452328167474,523.3452328167474,14268.97345,6.0,433.09105,1,2,3,4,5,6 +2605.0,83.0,1596.2726,100,501.22770007228917,501.22770007228917,523.3452328167474,523.3452328167474,14518.8087,6.0,440.8545,1,2,3,4,5,6 +2605.5,83.0,1596.2726,100,521.3584849879518,521.3584849879518,523.3452328167474,523.3452328167474,14970.464100000001,6.0,454.8835,1,2,3,4,5,6 +2606.0,83.0,1596.2726,100,541.4892699036145,541.4892699036145,523.3452328167474,523.3452328167474,15422.1195,6.0,468.9125,1,2,3,4,5,6 +2606.5,83.0,1596.2726,100,559.6890366144579,559.6890366144579,523.3452328167474,523.3452328167474,15834.23255,6.0,481.5973,1,2,3,4,5,6 +2607.0,83.0,1596.2726,100,577.8888033253013,577.8888033253013,523.3452328167474,523.3452328167474,16246.3456,6.0,494.2821,1,2,3,4,5,6 +2607.5,83.0,1596.2726,100,579.9147522289157,579.9147522289157,523.3452328167474,523.3452328167474,16292.48965,6.0,495.69395,1,2,3,4,5,6 +2608.0,83.0,1596.2726,100,581.9407011325302,581.9407011325302,523.3452328167474,523.3452328167474,16338.6337,6.0,497.1058,1,2,3,4,5,6 +2608.5,83.0,1596.2726,100,608.5715005301205,608.5715005301205,523.3452328167474,523.3452328167474,16936.87915,6.0,515.6666,1,2,3,4,5,6 +2609.0,83.0,1596.2726,100,635.2022999277109,635.2022999277109,523.3452328167474,523.3452328167474,17535.1246,6.0,534.2274,1,2,3,4,5,6 +2609.5,83.0,1596.2726,100,647.1024106987953,647.1024106987953,523.3452328167474,523.3452328167474,17805.92355,6.0,542.5215499999999,1,2,3,4,5,6 +2610.0,83.0,1596.2726,100,659.0025214698796,659.0025214698796,523.3452328167474,523.3452328167474,18076.7225,6.0,550.8157,1,2,3,4,5,6 +2610.5,83.0,1596.2726,100,661.5788858674699,661.5788858674699,523.3452328167474,523.3452328167474,18128.78165,6.0,552.6111000000001,1,2,3,4,5,6 +2611.0,83.0,1596.2726,100,664.1552502650602,664.1552502650602,523.3452328167474,523.3452328167474,18180.8408,6.0,554.4065,1,2,3,4,5,6 +2611.5,83.0,1596.2726,100,676.3780341325302,676.3780341325302,523.3452328167474,523.3452328167474,18430.2987,6.0,562.92535,1,2,3,4,5,6 +2612.0,83.0,1596.2726,100,688.600818,688.600818,523.3452328167474,523.3452328167474,18679.7566,6.0,571.4442,1,2,3,4,5,6 +2612.5,83.0,1596.2726,100,698.8971476385542,698.8971476385542,523.3452328167474,523.3452328167474,18907.006650000003,6.0,578.6205,1,2,3,4,5,6 +2613.0,83.0,1596.2726,100,709.1934772771084,709.1934772771084,523.3452328167474,523.3452328167474,19134.2567,6.0,585.7968,1,2,3,4,5,6 +2613.5,83.0,1596.2726,100,708.720649373494,708.720649373494,523.3452328167474,523.3452328167474,19123.533150000003,6.0,585.4672499999999,1,2,3,4,5,6 +2614.0,83.0,1596.2726,100,708.2478214698795,708.2478214698795,523.3452328167474,523.3452328167474,19112.8096,6.0,585.1377,1,2,3,4,5,6 +2614.5,83.0,1596.2726,100,701.2987117590362,701.2987117590362,523.3452328167474,523.3452328167474,18955.7287,6.0,580.2944,1,2,3,4,5,6 +2615.0,83.0,1596.2726,100,694.3496020481928,694.3496020481928,523.3452328167474,523.3452328167474,18798.6478,6.0,575.4511,1,2,3,4,5,6 +2615.5,83.0,1596.2726,100,687.5803129879517,687.5803129879517,523.3452328167474,523.3452328167474,18658.043899999997,6.0,570.73305,1,2,3,4,5,6 +2616.0,83.0,1596.2726,100,680.811023927711,680.811023927711,523.3452328167474,523.3452328167474,18517.44,6.0,566.015,1,2,3,4,5,6 +2616.5,83.0,1596.2726,100,667.56408386747,667.56408386747,523.3452328167474,523.3452328167474,18244.5566,6.0,556.7824,1,2,3,4,5,6 +2617.0,83.0,1596.2726,100,654.317143807229,654.317143807229,523.3452328167474,523.3452328167474,17971.6732,6.0,547.5498,1,2,3,4,5,6 +2617.5,83.0,1596.2726,100,625.1706808915662,625.1706808915662,523.3452328167474,523.3452328167474,17315.6853,6.0,527.23575,1,2,3,4,5,6 +2618.0,83.0,1596.2726,100,596.0242179759036,596.0242179759036,523.3452328167474,523.3452328167474,16659.6974,6.0,506.9217,1,2,3,4,5,6 +2618.5,83.0,1596.2726,100,558.4672602650603,558.4672602650603,523.3452328167474,523.3452328167474,15809.947800000002,6.0,480.746,1,2,3,4,5,6 +2619.0,83.0,1596.2726,100,520.9103025542169,520.9103025542169,523.3452328167474,523.3452328167474,14960.1982,6.0,454.5703,1,2,3,4,5,6 +2619.5,83.0,1596.2726,100,498.815638807229,498.815638807229,523.3452328167474,523.3452328167474,14464.85655,6.0,439.17795,1,2,3,4,5,6 +2620.0,83.0,1596.2726,100,476.720975060241,476.720975060241,523.3452328167474,523.3452328167474,13969.5149,6.0,423.7856,1,2,3,4,5,6 +2620.5,83.0,1596.2726,100,484.71249686746995,484.71249686746995,523.3452328167474,523.3452328167474,14148.6173,6.0,429.35105,1,2,3,4,5,6 +2621.0,83.0,1596.2726,100,492.70401867469883,492.70401867469883,523.3452328167474,523.3452328167474,14327.7197,6.0,434.9165,1,2,3,4,5,6 +2621.5,83.0,1596.2726,100,519.2307594216868,519.2307594216868,523.3452328167474,523.3452328167474,14923.1956,6.0,453.40189999999996,1,2,3,4,5,6 +2622.0,83.0,1596.2726,100,545.7575001686748,545.7575001686748,523.3452328167474,523.3452328167474,15518.6715,6.0,471.8873,1,2,3,4,5,6 +2622.5,83.0,1596.2726,100,575.8267990120482,575.8267990120482,523.3452328167474,523.3452328167474,16201.498450000001,6.0,492.84465,1,2,3,4,5,6 +2623.0,83.0,1596.2726,100,605.8960978554218,605.8960978554218,523.3452328167474,523.3452328167474,16884.3254,6.0,513.802,1,2,3,4,5,6 +2623.5,83.0,1596.2726,100,622.3702252771086,622.3702252771086,523.3452328167474,523.3452328167474,17259.593200000003,6.0,525.28385,1,2,3,4,5,6 +2624.0,83.0,1596.2726,100,638.8443526987952,638.8443526987952,523.3452328167474,523.3452328167474,17634.861,6.0,536.7657,1,2,3,4,5,6 +2624.5,83.0,1596.2726,100,640.4079708433734,640.4079708433734,523.3452328167474,523.3452328167474,17670.4843,6.0,537.85565,1,2,3,4,5,6 +2625.0,83.0,1596.2726,100,641.9715889879517,641.9715889879517,523.3452328167474,523.3452328167474,17706.1076,6.0,538.9456,1,2,3,4,5,6 +2625.5,83.0,1596.2726,100,641.605558120482,641.605558120482,523.3452328167474,523.3452328167474,17697.767200000002,6.0,538.6904,1,2,3,4,5,6 +2626.0,83.0,1596.2726,100,641.2395272530122,641.2395272530122,523.3452328167474,523.3452328167474,17689.4268,6.0,538.4352,1,2,3,4,5,6 +2626.5,83.0,1596.2726,100,650.0986608795182,650.0986608795182,523.3452328167474,523.3452328167474,17880.841,6.0,544.6096,1,2,3,4,5,6 +2627.0,83.0,1596.2726,100,658.9577945060241,658.9577945060241,523.3452328167474,523.3452328167474,18072.2552,6.0,550.784,1,2,3,4,5,6 +2627.5,83.0,1596.2726,100,681.3294915903615,681.3294915903615,523.3452328167474,523.3452328167474,18544.444949999997,6.0,566.3764,1,2,3,4,5,6 +2628.0,83.0,1596.2726,100,703.7011886746989,703.7011886746989,523.3452328167474,523.3452328167474,19016.6347,6.0,581.9688,1,2,3,4,5,6 +2628.5,83.0,1596.2726,100,731.1229250963855,731.1229250963855,523.3452328167474,523.3452328167474,19634.9559,6.0,601.07745,1,2,3,4,5,6 +2629.0,83.0,1596.2726,100,758.5446615180722,758.5446615180722,523.3452328167474,523.3452328167474,20253.2771,6.0,620.1861,1,2,3,4,5,6 +2629.5,83.0,1596.2726,100,767.3540478072289,767.3540478072289,523.3452328167474,523.3452328167474,20452.92095,6.0,626.3215,1,2,3,4,5,6 +2630.0,83.0,1596.2726,100,776.1634340963856,776.1634340963856,523.3452328167474,523.3452328167474,20652.5648,6.0,632.4569,1,2,3,4,5,6 +2630.5,83.0,1596.2726,100,763.5769013493976,763.5769013493976,523.3452328167474,523.3452328167474,20367.3194,6.0,623.69085,1,2,3,4,5,6 +2631.0,83.0,1596.2726,100,750.9903686024098,750.9903686024098,523.3452328167474,523.3452328167474,20082.074,6.0,614.9248,1,2,3,4,5,6 +2631.5,83.0,1596.2726,100,735.203119554217,735.203119554217,523.3452328167474,523.3452328167474,19724.08335,6.0,603.9231500000001,1,2,3,4,5,6 +2632.0,83.0,1596.2726,100,719.4158705060242,719.4158705060242,523.3452328167474,523.3452328167474,19366.0927,6.0,592.9215,1,2,3,4,5,6 +2632.5,83.0,1596.2726,100,710.8369650000001,710.8369650000001,523.3452328167474,523.3452328167474,19171.5364,6.0,586.94245,1,2,3,4,5,6 +2633.0,83.0,1596.2726,100,702.2580594939759,702.2580594939759,523.3452328167474,523.3452328167474,18976.9801,6.0,580.9634,1,2,3,4,5,6 +2633.5,83.0,1596.2726,100,698.0372945783133,698.0372945783133,523.3452328167474,523.3452328167474,18881.6826,6.0,578.0215499999999,1,2,3,4,5,6 +2634.0,83.0,1596.2726,100,693.8165296626505,693.8165296626505,523.3452328167474,523.3452328167474,18786.3851,6.0,575.0797,1,2,3,4,5,6 +2634.5,83.0,1596.2726,100,685.8336794096385,685.8336794096385,523.3452328167474,523.3452328167474,18622.00825,6.0,569.5160000000001,1,2,3,4,5,6 +2635.0,83.0,1596.2726,100,677.8508291566266,677.8508291566266,523.3452328167474,523.3452328167474,18457.6314,6.0,563.9523,1,2,3,4,5,6 +2635.5,83.0,1596.2726,100,661.0330343493977,661.0330343493977,523.3452328167474,523.3452328167474,18104.5973,6.0,552.2306000000001,1,2,3,4,5,6 +2636.0,83.0,1596.2726,100,644.2152395421687,644.2152395421687,523.3452328167474,523.3452328167474,17751.5632,6.0,540.5089,1,2,3,4,5,6 +2636.5,83.0,1596.2726,100,617.9810496506025,617.9810496506025,523.3452328167474,523.3452328167474,17156.8565,6.0,522.2248,1,2,3,4,5,6 +2637.0,83.0,1596.2726,100,591.7468597590362,591.7468597590362,523.3452328167474,523.3452328167474,16562.1498,6.0,503.9407,1,2,3,4,5,6 +2637.5,83.0,1596.2726,100,559.9354913132531,559.9354913132531,523.3452328167474,523.3452328167474,15842.07225,6.0,481.76935000000003,1,2,3,4,5,6 +2638.0,83.0,1596.2726,100,528.12412286747,528.12412286747,523.3452328167474,523.3452328167474,15121.9947,6.0,459.598,1,2,3,4,5,6 +2638.5,83.0,1596.2726,100,496.1685327831326,496.1685327831326,523.3452328167474,523.3452328167474,14412.8023,6.0,437.33685,1,2,3,4,5,6 +2639.0,83.0,1596.2726,100,464.21294269879525,464.21294269879525,523.3452328167474,523.3452328167474,13703.6099,6.0,415.0757,1,2,3,4,5,6 +2639.5,83.0,1596.2726,100,431.26103667469886,431.26103667469886,523.3452328167474,523.3452328167474,13013.27935,6.0,392.1293,1,2,3,4,5,6 +2640.0,83.0,1596.2726,100,398.30913065060247,398.30913065060247,523.3452328167474,523.3452328167474,12322.9488,6.0,369.1829,1,2,3,4,5,6 +2640.5,83.0,1596.2726,100,365.2951545542169,365.2951545542169,523.3452328167474,523.3452328167474,11571.122800000001,6.0,346.19255,1,2,3,4,5,6 +2641.0,83.0,1596.2726,100,332.28117845783134,332.28117845783134,523.3452328167474,523.3452328167474,10819.2968,6.0,323.2022,1,2,3,4,5,6 +2641.5,83.0,1596.2726,100,295.5183525542169,295.5183525542169,523.3452328167474,523.3452328167474,10074.42295,6.0,297.60125,1,2,3,4,5,6 +2642.0,83.0,1596.2726,100,258.7555266506024,258.7555266506024,523.3452328167474,523.3452328167474,9329.5491,6.0,272.0003,1,2,3,4,5,6 +2642.5,83.0,1596.2726,100,209.34592351807228,209.34592351807228,523.3452328167474,523.3452328167474,8260.794600000001,6.0,238.03199999999998,1,2,3,4,5,6 +2643.0,83.0,1596.2726,100,159.93632038554216,159.93632038554216,523.3452328167474,523.3452328167474,7192.0401,6.0,204.0637,1,2,3,4,5,6 +2643.5,83.0,1596.2726,100,110.64629342168676,110.64629342168676,523.3452328167474,523.3452328167474,6160.07765,6.0,171.48855,1,2,3,4,5,6 +2644.0,83.0,1596.2726,100,61.35626645783133,61.35626645783133,523.3452328167474,523.3452328167474,5128.1152,6.0,138.9134,1,2,3,4,5,6 +2644.5,83.0,1596.2726,100,39.16210803614458,39.16210803614458,523.3452328167474,523.3452328167474,4695.68545,6.0,124.36775,1,2,3,4,5,6 +2645.0,83.0,1596.2726,100,16.967949614457833,16.967949614457833,523.3452328167474,523.3452328167474,4263.2557,6.0,109.8221,1,2,3,4,5,6 +2645.5,83.0,1596.2726,100,32.20387037349397,32.20387037349397,523.3452328167474,523.3452328167474,4555.4912,6.0,119.80720000000001,1,2,3,4,5,6 +2646.0,83.0,1596.2726,100,47.439791132530125,47.439791132530125,523.3452328167474,523.3452328167474,4847.7267,6.0,129.7923,1,2,3,4,5,6 +2646.5,83.0,1596.2726,100,78.66833985542169,78.66833985542169,523.3452328167474,523.3452328167474,5487.5649,6.0,150.26409999999998,1,2,3,4,5,6 +2647.0,83.0,1596.2726,100,109.89688857831327,109.89688857831327,523.3452328167474,523.3452328167474,6127.4031,6.0,170.7359,1,2,3,4,5,6 +2647.5,83.0,1596.2726,100,124.11184792771085,124.11184792771085,523.3452328167474,523.3452328167474,6423.3054,6.0,180.1347,1,2,3,4,5,6 +2648.0,83.0,1596.2726,100,138.32680727710843,138.32680727710843,523.3452328167474,523.3452328167474,6719.2077,6.0,189.5335,1,2,3,4,5,6 +2648.5,83.0,1596.2726,100,125.5732330120482,125.5732330120482,523.3452328167474,523.3452328167474,6453.4285500000005,6.0,181.0915,1,2,3,4,5,6 +2649.0,83.0,1596.2726,100,112.81965874698795,112.81965874698795,523.3452328167474,523.3452328167474,6187.6494,6.0,172.6495,1,2,3,4,5,6 +2649.5,83.0,1596.2726,100,92.68933022891568,92.68933022891568,523.3452328167474,523.3452328167474,5772.15755,6.0,159.4522,1,2,3,4,5,6 +2650.0,83.0,1596.2726,100,72.55900171084338,72.55900171084338,523.3452328167474,523.3452328167474,5356.6657,6.0,146.2549,1,2,3,4,5,6 +2650.5,83.0,1596.2726,100,65.47571110843373,65.47571110843373,523.3452328167474,523.3452328167474,5210.522849999999,6.0,141.61295,1,2,3,4,5,6 +2651.0,83.0,1596.2726,100,58.3924205060241,58.3924205060241,523.3452328167474,523.3452328167474,5064.38,6.0,136.971,1,2,3,4,5,6 +2651.5,83.0,1596.2726,100,65.13295651807229,65.13295651807229,523.3452328167474,523.3452328167474,5203.4586500000005,6.0,141.38855,1,2,3,4,5,6 +2652.0,83.0,1596.2726,100,71.87349253012049,71.87349253012049,523.3452328167474,523.3452328167474,5342.5373,6.0,145.8061,1,2,3,4,5,6 +2652.5,83.0,1596.2726,100,77.6679163373494,77.6679163373494,523.3452328167474,523.3452328167474,5462.09065,6.0,149.6035,1,2,3,4,5,6 +2653.0,83.0,1596.2726,100,83.4623401445783,83.4623401445783,523.3452328167474,523.3452328167474,5581.644,6.0,153.4009,1,2,3,4,5,6 +2653.5,83.0,1596.2726,100,70.59512287951807,70.59512287951807,523.3452328167474,523.3452328167474,5317.4989000000005,6.0,144.96820000000002,1,2,3,4,5,6 +2654.0,83.0,1596.2726,100,57.72790561445784,57.72790561445784,523.3452328167474,523.3452328167474,5053.3538,6.0,136.5355,1,2,3,4,5,6 +2654.5,83.0,1596.2726,100,28.868973180722897,28.868973180722897,523.3452328167474,523.3452328167474,4517.46275,6.0,117.62200000000001,1,2,3,4,5,6 +2655.0,83.0,1596.2726,100,0.010040746987951809,0.010040746987951809,523.3452328167474,523.3452328167474,3981.5717,6.0,98.7085,1,2,3,4,5,6 +2655.5,83.0,1596.2726,100,-24.2995205060241,-24.2995205060241,523.3452328167474,523.3452328167474,3622.2917500000003,6.0,82.7766,1,2,3,4,5,6 +2656.0,83.0,1596.2726,100,-48.60908175903615,-48.60908175903615,523.3452328167474,523.3452328167474,3263.0118,6.0,66.8447,1,2,3,4,5,6 +2656.5,83.0,1596.2726,100,-67.71844886746989,-67.71844886746989,523.3452328167474,523.3452328167474,2998.0218000000004,6.0,54.320800000000006,1,2,3,4,5,6 +2657.0,83.0,1596.2726,100,-86.82781597590362,-86.82781597590362,523.3452328167474,523.3452328167474,2733.0318,6.0,41.7969,1,2,3,4,5,6 +2657.5,83.0,1596.2726,100,-117.82907869879519,-117.82907869879519,523.3452328167474,523.3452328167474,2320.1905,6.0,21.6362,1,2,3,4,5,6 +2658.0,83.0,1596.2726,100,-148.83034142168674,-148.83034142168674,523.3452328167474,523.3452328167474,1907.3492,6.0,1.4755,1,2,3,4,5,6 +2658.5,83.00030000000001,1596.2756,100,-191.92042622737506,-191.92042622737506,523.3471244260227,523.3471244260227,1238.67595,6.0,-26.1939,1,2,3,4,5,6 +2659.0,83.0006,1596.2786,100,-235.0101995407262,-235.0101995407262,523.349016035298,523.349016035298,570.0027,6.0,-53.8633,1,2,3,4,5,6 +2659.5,83.0108,1596.44485,100,-252.42439431977525,-252.42439431977525,523.4133307506562,523.4133307506562,285.0013,6.0,-64.9132,1,2,3,4,5,6 +2660.0,83.021,1596.6111,100,-269.83431006612784,-269.83431006612784,523.4776454660143,523.4776454660143,-0.0001,6.0,-75.9631,1,2,3,4,5,6 +2660.5,83.0527,1597.22905,100,-270.13314939791246,-270.13314939791246,523.6775255127648,523.6775255127648,-0.0001,6.0,-75.98755,1,2,3,4,5,6 +2661.0,83.0844,1597.847,100,-270.43176069153776,-270.43176069153776,523.8774055595153,523.8774055595153,-0.0001,6.0,-76.012,1,2,3,4,5,6 +2661.5,83.13835,1598.8841,100,-270.71191066457294,-270.71191066457294,524.2175799608463,524.2175799608463,-0.00015000000000000001,6.0,-76.05305,1,2,3,4,5,6 +2662.0,83.1923,1599.9212,100,-270.9916972844843,-270.9916972844843,524.5577543621771,524.5577543621771,-0.0002,6.0,-76.0941,1,2,3,4,5,6 +2662.5,83.2647,1601.3242500000001,100,-271.24649816789105,-271.24649816789105,525.0142627339353,525.0142627339353,-0.0002,6.0,-76.14959999999999,1,2,3,4,5,6 +2663.0,83.3371,1602.7273,100,-271.50085632929387,-271.50085632929387,525.4707711056936,525.4707711056936,-0.0002,6.0,-76.2051,1,2,3,4,5,6 +2663.5,83.4195,1604.3301999999999,100,-271.62002298023845,-271.62002298023845,525.9903331199598,525.9903331199598,-0.0002,6.0,-76.2685,1,2,3,4,5,6 +2664.0,83.5019,1605.9331,100,-271.7389544429527,-271.7389544429527,526.5098951342261,526.5098951342261,-0.0002,6.0,-76.3319,1,2,3,4,5,6 +2664.5,83.58275,1607.4923,100,-271.7416843307979,-271.7416843307979,527.0196838339036,527.0196838339036,-0.00015000000000000001,6.0,-76.39359999999999,1,2,3,4,5,6 +2665.0,83.6636,1609.0515,100,-271.7444089424792,-271.7444089424792,527.529472533581,527.529472533581,-0.0001,6.0,-76.4553,1,2,3,4,5,6 +2665.5,83.7389,1610.492,100,-271.76513899752683,-271.76513899752683,528.0042664616667,528.0042664616667,-0.0001,6.0,-76.5123,1,2,3,4,5,6 +2666.0,83.8142,1611.9325,100,-271.7858318041573,-271.7858318041573,528.4790603897521,528.4790603897521,-0.0001,6.0,-76.5693,1,2,3,4,5,6 +2666.5,83.8891,1613.3634499999998,100,-271.8931284159682,-271.8931284159682,528.9513321721374,528.9513321721374,-0.0001,6.0,-76.6259,1,2,3,4,5,6 +2667.0,83.964,1614.7944,100,-272.0002336001143,-272.0002336001143,529.4236039545227,529.4236039545227,-0.0001,6.0,-76.6825,1,2,3,4,5,6 +2667.5,84.04585,1616.36215,100,-272.1919174712374,-272.1919174712374,529.939698018451,529.939698018451,-0.0001,6.0,-76.7445,1,2,3,4,5,6 +2668.0,84.1277,1617.9299,100,-272.38322835403795,-272.38322835403795,530.4557920823794,530.4557920823794,-0.0001,6.0,-76.8065,1,2,3,4,5,6 +2668.5,84.22075000000001,1619.72205,100,-272.6076356242375,-272.6076356242375,531.0425062259167,531.0425062259167,-0.0001,6.0,-76.8774,1,2,3,4,5,6 +2669.0,84.3138,1621.5142,100,-272.8315475758416,-272.8315475758416,531.6292203694541,531.6292203694541,-0.0001,6.0,-76.9483,1,2,3,4,5,6 +2669.5,84.4169,1623.5034,100,-273.0188682124077,-273.0188682124077,532.2793034237119,532.2793034237119,-0.0001,6.0,-77.027,1,2,3,4,5,6 +2670.0,84.52,1625.4926,100,-273.20573185044964,-273.20573185044964,532.9293864779697,532.9293864779697,-0.0001,6.0,-77.1057,1,2,3,4,5,6 +2670.5,84.6287,1627.58705,100,-273.34808780000157,-273.34808780000157,533.6147795720323,533.6147795720323,-0.0001,6.0,-77.18854999999999,1,2,3,4,5,6 +2671.0,84.7374,1629.6815,100,-273.49007852494884,-273.49007852494884,534.3001726660946,534.3001726660946,-0.0001,6.0,-77.2714,1,2,3,4,5,6 +2671.5,84.84899999999999,1631.82805,100,-273.62190669306653,-273.62190669306653,535.0038513164843,535.0038513164843,-5e-05,6.0,-77.35634999999999,1,2,3,4,5,6 +2672.0,84.9606,1633.9746,100,-273.7533885353917,-273.7533885353917,535.7075299668741,535.7075299668741,0.0,6.0,-77.4413,1,2,3,4,5,6 +2672.5,85.07390000000001,1636.1565,100,-273.8745997656155,-273.8745997656155,536.4219277364903,536.4219277364903,0.0,6.0,-77.5276,1,2,3,4,5,6 +2673.0,85.1872,1638.3384,100,-273.99548857105293,-273.99548857105293,537.1363255061063,537.1363255061063,0.0,6.0,-77.6139,1,2,3,4,5,6 +2673.5,85.29384999999999,1640.4445500000002,100,-287.01922893620116,-287.01922893620116,537.8087926034547,537.8087926034547,0.0,6.0,-77.69725,1,2,3,4,5,6 +2674.0,85.4005,1642.5507,100,-300.01044064144816,-300.01044064144816,538.4812597008029,538.4812597008029,0.0,6.0,-77.7806,1,2,3,4,5,6 +2674.5,85.45025,1643.4519,100,-410.71838736574796,-410.71838736574796,538.7949515722803,538.7949515722803,0.0,6.0,-77.81625,1,2,3,4,5,6 +2675.0,85.5,1644.3531,100,-521.2974985263157,-521.2974985263157,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2675.5,85.5,1644.3531,100,-509.70236810526313,-509.70236810526313,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2676.0,85.5,1644.3531,100,-498.10723768421053,-498.10723768421053,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2676.5,85.5,1644.3531,100,-497.77583431578944,-497.77583431578944,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2677.0,85.5,1644.3531,100,-497.44443094736846,-497.44443094736846,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2677.5,85.5,1644.3531,100,-498.6357994736842,-498.6357994736842,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2678.0,85.5,1644.3531,100,-499.82716800000003,-499.82716800000003,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2678.5,85.5,1644.3531,100,-491.6878481052632,-491.6878481052632,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2679.0,85.5,1644.3531,100,-483.5485282105263,-483.5485282105263,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2679.5,85.5,1644.3531,100,-455.9410326315789,-455.9410326315789,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2680.0,85.5,1644.3531,100,-428.3335370526316,-428.3335370526316,539.108643443758,539.108643443758,0.0,6.0,-77.8519,1,2,3,4,5,6 +2680.5,85.49975,1644.35055,100,-381.0560618832218,-381.0560618832218,539.1070671026953,539.1070671026953,0.0,6.0,-77.8518,1,2,3,4,5,6 +2681.0,85.4995,1644.348,100,-333.7783102357324,-333.7783102357324,539.1054907616325,539.1054907616325,0.0,6.0,-77.8517,1,2,3,4,5,6 +2681.5,85.4876,1644.17425,100,-302.50881536035627,-302.50881536035627,539.030456927048,539.030456927048,0.0,6.0,-77.84479999999999,1,2,3,4,5,6 +2682.0,85.4757,1644.0005,100,-271.23061375338256,-271.23061375338256,538.9554230924633,538.9554230924633,0.0,6.0,-77.8379,1,2,3,4,5,6 +2682.5,85.43175,1643.1373,100,-270.7214433626842,-270.7214433626842,538.6783023336405,538.6783023336405,0.0,6.0,-77.80375000000001,1,2,3,4,5,6 +2683.0,85.3878,1642.2741,100,-270.2117488212602,-270.2117488212602,538.4011815748177,538.4011815748177,0.0,6.0,-77.7696,1,2,3,4,5,6 +2683.5,85.3113,1640.7792,100,-269.869705068379,-269.869705068379,537.9188212096311,537.9188212096311,5e-05,6.0,-77.71045000000001,1,2,3,4,5,6 +2684.0,85.2348,1639.2843,100,-269.5270473327795,-269.5270473327795,537.4364608444447,537.4364608444447,0.0001,6.0,-77.6513,1,2,3,4,5,6 +2684.5,85.1463,1637.55365,100,-269.4321455072035,-269.4321455072035,536.8784361082485,536.8784361082485,0.0001,6.0,-77.58285000000001,1,2,3,4,5,6 +2685.0,85.0578,1635.823,100,-269.33704619682146,-269.33704619682146,536.3204113720523,536.3204113720523,0.0001,6.0,-77.5144,1,2,3,4,5,6 +2685.5,84.97805,1634.27655,100,-269.4583096811471,-269.4583096811471,535.8175585730506,535.8175585730506,5e-05,6.0,-77.4532,1,2,3,4,5,6 +2686.0,84.8983,1632.7301,100,-269.57980098541435,-269.57980098541435,535.314705774049,535.314705774049,0.0,6.0,-77.392,1,2,3,4,5,6 +2686.5,84.83590000000001,1631.54115,100,-269.71200199443865,-269.71200199443865,534.9212510447989,534.9212510447989,0.0,6.0,-77.345,1,2,3,4,5,6 +2687.0,84.7735,1630.3522,100,-269.8443976242576,-269.8443976242576,534.5277963155486,534.5277963155486,0.0,6.0,-77.298,1,2,3,4,5,6 +2687.5,84.7236,1629.4009,100,-269.88797388212964,-269.88797388212964,534.2131586394336,534.2131586394336,-5e-05,6.0,-77.26035,1,2,3,4,5,6 +2688.0,84.6737,1628.4496,100,-269.93160150082025,-269.93160150082025,533.8985209633183,533.8985209633183,-0.0001,6.0,-77.2227,1,2,3,4,5,6 +2688.5,84.6285,1627.5904999999998,100,-269.9079160211985,-269.9079160211985,533.6135184991821,533.6135184991821,-0.0001,6.0,-77.18870000000001,1,2,3,4,5,6 +2689.0,84.5833,1626.7314,100,-269.88420522727296,-269.88420522727296,533.3285160350457,533.3285160350457,-0.0001,6.0,-77.1547,1,2,3,4,5,6 +2689.5,84.53255,1625.77965,100,-269.6998337681757,-269.6998337681757,533.0085187993174,533.0085187993174,-5e-05,6.0,-77.11705,1,2,3,4,5,6 +2690.0,84.4818,1624.8279,100,-269.5152407974262,-269.5152407974262,532.6885215635891,532.6885215635891,0.0,6.0,-77.0794,1,2,3,4,5,6 +2690.5,84.40825000000001,1623.4332,100,-269.08229636321084,-269.08229636321084,532.2247620229425,532.2247620229425,-5e-05,6.0,-77.02425,1,2,3,4,5,6 +2691.0,84.3347,1622.0385,100,-268.6485967697756,-268.6485967697756,531.7610024822958,531.7610024822958,-0.0001,6.0,-76.9691,1,2,3,4,5,6 +2691.5,84.22335,1619.9038500000001,100,-268.06825344752974,-268.06825344752974,531.0589001729686,531.0589001729686,-0.0001,6.0,-76.88465,1,2,3,4,5,6 +2692.0,84.112,1617.7692,100,-267.4863735733308,-267.4863735733308,530.3567978636416,530.3567978636416,-0.0001,6.0,-76.8002,1,2,3,4,5,6 +2692.5,83.95400000000001,1614.74465,100,-266.77692219548794,-266.77692219548794,529.3605503120147,529.3605503120147,-0.0001,6.0,-76.68055000000001,1,2,3,4,5,6 +2693.0,83.796,1611.7201,100,-266.06479543176283,-266.06479543176283,528.3643027603877,528.3643027603877,-0.0001,6.0,-76.5609,1,2,3,4,5,6 +2693.5,83.58585,1607.6524,100,-256.53313389766333,-256.53313389766333,527.039230463081,527.039230463081,134.36825,6.0,-70.6951,1,2,3,4,5,6 +2694.0,83.3757,1603.5847,100,-246.9534229037957,-246.9534229037957,525.7141581657745,525.7141581657745,268.7366,6.0,-64.8293,1,2,3,4,5,6 +2694.5,83.2225,1600.26235,100,26.209569058848295,26.209569058848295,524.7481763625514,524.7481763625514,5238.98635,6.0,118.7246,1,2,3,4,5,6 +2695.0,83.0693,1596.94,100,300.38011905722095,300.38011905722095,523.7821945593281,523.7821945593281,10209.2361,6.0,302.2785,1,2,3,4,5,6 +2695.5,83.03465,1596.6063,100,453.3330326556444,453.3330326556444,523.5637136880378,523.5637136880378,13549.9068,6.0,408.22075,1,2,3,4,5,6 +2696.0,83.0,1596.2726,100,606.4136527228915,606.4136527228915,523.3452328167474,523.3452328167474,16890.5775,6.0,514.163,1,2,3,4,5,6 +2696.5,83.0,1596.2726,100,664.5002868433735,664.5002868433735,523.3452328167474,523.3452328167474,18164.35215,6.0,554.6468500000001,1,2,3,4,5,6 +2697.0,83.0,1596.2726,100,722.5869209638555,722.5869209638555,523.3452328167474,523.3452328167474,19438.1268,6.0,595.1307,1,2,3,4,5,6 +2697.5,83.0,1596.2726,100,761.4624113132531,761.4624113132531,523.3452328167474,523.3452328167474,20298.057,6.0,622.21095,1,2,3,4,5,6 +2698.0,83.0,1596.2726,100,800.3379016626508,800.3379016626508,523.3452328167474,523.3452328167474,21157.9872,6.0,649.2912,1,2,3,4,5,6 +2698.5,83.0,1596.2726,100,809.2540849879518,809.2540849879518,523.3452328167474,523.3452328167474,21336.95365,6.0,655.5004,1,2,3,4,5,6 +2699.0,83.0,1596.2726,100,818.170268313253,818.170268313253,523.3452328167474,523.3452328167474,21515.9201,6.0,661.7096,1,2,3,4,5,6 +2699.5,83.0,1596.2726,100,790.5810339759036,790.5810339759036,523.3452328167474,523.3452328167474,20934.9676,6.0,642.4958,1,2,3,4,5,6 +2700.0,83.0,1596.2726,100,762.9917996385543,762.9917996385543,523.3452328167474,523.3452328167474,20354.0151,6.0,623.282,1,2,3,4,5,6 +2700.5,83.0,1596.2726,100,715.2224894457831,715.2224894457831,523.3452328167474,523.3452328167474,19297.61215,6.0,589.9937,1,2,3,4,5,6 +2701.0,83.0,1596.2726,100,667.4531792530121,667.4531792530121,523.3452328167474,523.3452328167474,18241.2092,6.0,556.7054,1,2,3,4,5,6 +2701.5,83.0,1596.2726,100,626.282921819277,626.282921819277,523.3452328167474,523.3452328167474,17326.08805,6.0,528.01115,1,2,3,4,5,6 +2702.0,83.0,1596.2726,100,585.1126643855422,585.1126643855422,523.3452328167474,523.3452328167474,16410.9669,6.0,499.3169,1,2,3,4,5,6 +2702.5,83.0,1596.2726,100,565.2986193975904,565.2986193975904,523.3452328167474,523.3452328167474,15961.160199999998,6.0,485.50699999999995,1,2,3,4,5,6 +2703.0,83.0,1596.2726,100,545.4845744096385,545.4845744096385,523.3452328167474,523.3452328167474,15511.3535,6.0,471.6971,1,2,3,4,5,6 +2703.5,83.0,1596.2726,100,543.2879328072289,543.2879328072289,523.3452328167474,523.3452328167474,15462.08525,6.0,470.16610000000003,1,2,3,4,5,6 +2704.0,83.0,1596.2726,100,541.0912912048193,541.0912912048193,523.3452328167474,523.3452328167474,15412.817,6.0,468.6351,1,2,3,4,5,6 +2704.5,83.0,1596.2726,100,541.8908997831326,541.8908997831326,523.3452328167474,523.3452328167474,15430.75735,6.0,469.19259999999997,1,2,3,4,5,6 +2705.0,83.0,1596.2726,100,542.6905083614458,542.6905083614458,523.3452328167474,523.3452328167474,15448.6977,6.0,469.7501,1,2,3,4,5,6 +2705.5,83.0,1596.2726,100,538.6308517951808,538.6308517951808,523.3452328167474,523.3452328167474,15357.6419,6.0,466.9206,1,2,3,4,5,6 +2706.0,83.0,1596.2726,100,534.5711952289157,534.5711952289157,523.3452328167474,523.3452328167474,15266.5861,6.0,464.0911,1,2,3,4,5,6 +2706.5,83.0,1596.2726,100,526.9872364698796,526.9872364698796,523.3452328167474,523.3452328167474,15096.481950000001,6.0,458.80525,1,2,3,4,5,6 +2707.0,83.0,1596.2726,100,519.4032777108434,519.4032777108434,523.3452328167474,523.3452328167474,14926.3778,6.0,453.5194,1,2,3,4,5,6 +2707.5,83.0,1596.2726,100,513.9990738433736,513.9990738433736,523.3452328167474,523.3452328167474,14805.1737,6.0,449.75305000000003,1,2,3,4,5,6 +2708.0,83.0,1596.2726,100,508.59486997590363,508.59486997590363,523.3452328167474,523.3452328167474,14683.9696,6.0,445.9867,1,2,3,4,5,6 +2708.5,83.0,1596.2726,100,512.9397750361446,512.9397750361446,523.3452328167474,523.3452328167474,14781.4218,6.0,449.01495,1,2,3,4,5,6 +2709.0,83.0,1596.2726,100,517.2846800963856,517.2846800963856,523.3452328167474,523.3452328167474,14878.874,6.0,452.0432,1,2,3,4,5,6 +2709.5,83.0,1596.2726,100,528.6631284216868,528.6631284216868,523.3452328167474,523.3452328167474,15134.09085,6.0,459.97345,1,2,3,4,5,6 +2710.0,83.0,1596.2726,100,540.041576746988,540.041576746988,523.3452328167474,523.3452328167474,15389.3077,6.0,467.9037,1,2,3,4,5,6 +2710.5,83.0,1596.2726,100,551.4528856987953,551.4528856987953,523.3452328167474,523.3452328167474,15646.696349999998,6.0,475.85695,1,2,3,4,5,6 +2711.0,83.0,1596.2726,100,562.8641946506025,562.8641946506025,523.3452328167474,523.3452328167474,15904.085,6.0,483.8102,1,2,3,4,5,6 +2711.5,83.0,1596.2726,100,574.8391546265061,574.8391546265061,523.3452328167474,523.3452328167474,16176.86825,6.0,492.15639999999996,1,2,3,4,5,6 +2712.0,83.0,1596.2726,100,586.8141146024096,586.8141146024096,523.3452328167474,523.3452328167474,16449.6515,6.0,500.5026,1,2,3,4,5,6 +2712.5,83.0,1596.2726,100,601.7241674819278,601.7241674819278,523.3452328167474,523.3452328167474,16789.295899999997,6.0,510.89445,1,2,3,4,5,6 +2713.0,83.0,1596.2726,100,616.6342203614458,616.6342203614458,523.3452328167474,523.3452328167474,17128.9403,6.0,521.2863,1,2,3,4,5,6 +2713.5,83.0,1596.2726,100,632.1261801686748,632.1261801686748,523.3452328167474,523.3452328167474,17480.2839,6.0,532.0835,1,2,3,4,5,6 +2714.0,83.0,1596.2726,100,647.6181399759035,647.6181399759035,523.3452328167474,523.3452328167474,17831.6275,6.0,542.8807,1,2,3,4,5,6 +2714.5,83.0,1596.2726,100,663.4396188433735,663.4396188433735,523.3452328167474,523.3452328167474,18160.221299999997,6.0,553.90785,1,2,3,4,5,6 +2715.0,83.0,1596.2726,100,679.2610977108434,679.2610977108434,523.3452328167474,523.3452328167474,18488.8151,6.0,564.935,1,2,3,4,5,6 +2715.5,83.0,1596.2726,100,705.7225736024096,705.7225736024096,523.3452328167474,523.3452328167474,19072.22555,6.0,583.37735,1,2,3,4,5,6 +2716.0,83.0,1596.2726,100,732.1840494939759,732.1840494939759,523.3452328167474,523.3452328167474,19655.636,6.0,601.8197,1,2,3,4,5,6 +2716.5,83.0,1596.2726,100,769.9564268674698,769.9564268674698,523.3452328167474,523.3452328167474,20478.752549999997,6.0,628.1291,1,2,3,4,5,6 +2717.0,83.0,1596.2726,100,807.7288042409639,807.7288042409639,523.3452328167474,523.3452328167474,21301.8691,6.0,654.4385,1,2,3,4,5,6 +2717.5,83.0,1596.2726,100,845.4696901807229,845.4696901807229,523.3452328167474,523.3452328167474,22054.66055,6.0,680.72015,1,2,3,4,5,6 +2718.0,83.0,1596.2726,100,883.210576120482,883.210576120482,523.3452328167474,523.3452328167474,22807.452,6.0,707.0018,1,2,3,4,5,6 +2718.5,83.0,1596.2726,100,914.1410972168675,914.1410972168675,523.3452328167474,523.3452328167474,23484.968,6.0,728.5409500000001,1,2,3,4,5,6 +2719.0,83.0,1596.2726,100,945.0716183132531,945.0716183132531,523.3452328167474,523.3452328167474,24162.484,6.0,750.0801,1,2,3,4,5,6 +2719.5,83.0,1596.2726,100,965.3009851084338,965.3009851084338,523.3452328167474,523.3452328167474,24615.94315,6.0,764.1673499999999,1,2,3,4,5,6 +2720.0,83.0,1596.2726,100,985.5303519036146,985.5303519036146,523.3452328167474,523.3452328167474,25069.4023,6.0,778.2546,1,2,3,4,5,6 +2720.5,83.0,1596.2726,100,989.8633906265061,989.8633906265061,523.3452328167474,523.3452328167474,25168.364500000003,6.0,781.2718,1,2,3,4,5,6 +2721.0,83.0,1596.2726,100,994.1964293493977,994.1964293493977,523.3452328167474,523.3452328167474,25267.3267,6.0,784.289,1,2,3,4,5,6 +2721.5,83.0,1596.2726,100,986.2710851927711,986.2710851927711,523.3452328167474,523.3452328167474,25086.310100000002,6.0,778.77005,1,2,3,4,5,6 +2722.0,83.0,1596.2726,100,978.3457410361445,978.3457410361445,523.3452328167474,523.3452328167474,24905.2935,6.0,773.2511,1,2,3,4,5,6 +2722.5,83.0,1596.2726,100,974.5348211566265,974.5348211566265,523.3452328167474,523.3452328167474,24818.25215,6.0,770.5972999999999,1,2,3,4,5,6 +2723.0,83.0,1596.2726,100,970.7239012771086,970.7239012771086,523.3452328167474,523.3452328167474,24731.2108,6.0,767.9435,1,2,3,4,5,6 +2723.5,83.0,1596.2726,100,978.3224647590364,978.3224647590364,523.3452328167474,523.3452328167474,24904.761550000003,6.0,773.23485,1,2,3,4,5,6 +2724.0,83.0,1596.2726,100,985.9210282409639,985.9210282409639,523.3452328167474,523.3452328167474,25078.3123,6.0,778.5262,1,2,3,4,5,6 +2724.5,83.0,1596.2726,100,997.1365426265062,997.1365426265062,523.3452328167474,523.3452328167474,25334.5233,6.0,786.33775,1,2,3,4,5,6 +2725.0,83.0,1596.2726,100,1008.3520570120481,1008.3520570120481,523.3452328167474,523.3452328167474,25590.7343,6.0,794.1493,1,2,3,4,5,6 +2725.5,83.0,1596.2726,100,1015.318053433735,1015.318053433735,523.3452328167474,523.3452328167474,25749.90955,6.0,799.0024000000001,1,2,3,4,5,6 +2726.0,83.0,1596.2726,100,1022.2840498554217,1022.2840498554217,523.3452328167474,523.3452328167474,25909.0848,6.0,803.8555,1,2,3,4,5,6 +2726.5,83.0,1596.2726,100,1016.1464150602409,1016.1464150602409,523.3452328167474,523.3452328167474,25768.84145,6.0,799.57965,1,2,3,4,5,6 +2727.0,83.0,1596.2726,100,1010.0087802650602,1010.0087802650602,523.3452328167474,523.3452328167474,25628.5981,6.0,795.3038,1,2,3,4,5,6 +2727.5,83.0,1596.2726,100,987.4800824096385,987.4800824096385,523.3452328167474,523.3452328167474,25117.27635,6.0,779.61385,1,2,3,4,5,6 +2728.0,83.0,1596.2726,100,964.9513845542169,964.9513845542169,523.3452328167474,523.3452328167474,24605.9546,6.0,763.9239,1,2,3,4,5,6 +2728.5,83.0,1596.2726,100,934.4886709879518,934.4886709879518,523.3452328167474,523.3452328167474,23932.82595,6.0,742.71055,1,2,3,4,5,6 +2729.0,83.0,1596.2726,100,904.0259574216868,904.0259574216868,523.3452328167474,523.3452328167474,23259.6973,6.0,721.4972,1,2,3,4,5,6 +2729.5,83.0,1596.2726,100,864.5274843614458,864.5274843614458,523.3452328167474,523.3452328167474,22448.915999999997,6.0,693.99145,1,2,3,4,5,6 +2730.0,83.0,1596.2726,100,825.029011301205,825.029011301205,523.3452328167474,523.3452328167474,21638.1347,6.0,666.4857,1,2,3,4,5,6 +2730.5,83.0,1596.2726,100,779.6197330481929,779.6197330481929,523.3452328167474,523.3452328167474,20670.800799999997,6.0,634.8577,1,2,3,4,5,6 +2731.0,83.0,1596.2726,100,734.2104547951807,734.2104547951807,523.3452328167474,523.3452328167474,19703.4669,6.0,603.2297,1,2,3,4,5,6 +2731.5,83.0,1596.2726,100,695.2760891566265,695.2760891566265,523.3452328167474,523.3452328167474,18854.118349999997,6.0,576.09535,1,2,3,4,5,6 +2732.0,83.0,1596.2726,100,656.3417235180724,656.3417235180724,523.3452328167474,523.3452328167474,18004.7698,6.0,548.961,1,2,3,4,5,6 +2732.5,83.0,1596.2726,100,626.009996060241,626.009996060241,523.3452328167474,523.3452328167474,17328.17645,6.0,527.82095,1,2,3,4,5,6 +2733.0,83.0,1596.2726,100,595.6782686024097,595.6782686024097,523.3452328167474,523.3452328167474,16651.5831,6.0,506.6809,1,2,3,4,5,6 +2733.5,83.0,1596.2726,100,572.8501739277109,572.8501739277109,523.3452328167474,523.3452328167474,16132.86955,6.0,490.77020000000005,1,2,3,4,5,6 +2734.0,83.0,1596.2726,100,550.0220792530121,550.0220792530121,523.3452328167474,523.3452328167474,15614.156,6.0,474.8595,1,2,3,4,5,6 +2734.5,83.0,1596.2726,100,536.767380433735,536.767380433735,523.3452328167474,523.3452328167474,15316.35415,6.0,465.62155,1,2,3,4,5,6 +2735.0,83.0,1596.2726,100,523.5126816144578,523.5126816144578,523.3452328167474,523.3452328167474,15018.5523,6.0,456.3836,1,2,3,4,5,6 +2735.5,83.0,1596.2726,100,519.7798057228915,519.7798057228915,523.3452328167474,523.3452328167474,14934.83145,6.0,453.78205,1,2,3,4,5,6 +2736.0,83.0,1596.2726,100,516.0469298313253,516.0469298313253,523.3452328167474,523.3452328167474,14851.1106,6.0,451.1805,1,2,3,4,5,6 +2736.5,83.0,1596.2726,100,509.5889039277108,509.5889039277108,523.3452328167474,523.3452328167474,14706.2771,6.0,446.6799,1,2,3,4,5,6 +2737.0,83.0,1596.2726,100,503.1308780240964,503.1308780240964,523.3452328167474,523.3452328167474,14561.4436,6.0,442.1793,1,2,3,4,5,6 +2737.5,83.0,1596.2726,100,485.92331967469886,485.92331967469886,523.3452328167474,523.3452328167474,14176.85835,6.0,430.1951,1,2,3,4,5,6 +2738.0,83.0,1596.2726,100,468.71576132530123,468.71576132530123,523.3452328167474,523.3452328167474,13792.2731,6.0,418.2109,1,2,3,4,5,6 +2738.5,83.0,1596.2726,100,453.08368745783133,453.08368745783133,523.3452328167474,523.3452328167474,13470.795750000001,6.0,407.32545,1,2,3,4,5,6 +2739.0,83.0,1596.2726,100,437.4516135903615,437.4516135903615,523.3452328167474,523.3452328167474,13149.3184,6.0,396.44,1,2,3,4,5,6 +2739.5,83.0,1596.2726,100,428.10550373493976,428.10550373493976,523.3452328167474,523.3452328167474,12965.1868,6.0,389.9318,1,2,3,4,5,6 +2740.0,83.0,1596.2726,100,418.75939387951814,418.75939387951814,523.3452328167474,523.3452328167474,12781.0552,6.0,383.4236,1,2,3,4,5,6 +2740.5,83.0,1596.2726,100,405.45631691566274,405.45631691566274,523.3452328167474,523.3452328167474,12482.6119,6.0,374.15985,1,2,3,4,5,6 +2741.0,83.0,1596.2726,100,392.1532399518072,392.1532399518072,523.3452328167474,523.3452328167474,12184.1686,6.0,364.8961,1,2,3,4,5,6 +2741.5,83.0,1596.2726,100,377.1336516506024,377.1336516506024,523.3452328167474,523.3452328167474,11840.119,6.0,354.4368,1,2,3,4,5,6 +2742.0,83.0,1596.2726,100,362.1140633493976,362.1140633493976,523.3452328167474,523.3452328167474,11496.0694,6.0,343.9775,1,2,3,4,5,6 +2742.5,83.0,1596.2726,100,358.43732436144586,358.43732436144586,523.3452328167474,523.3452328167474,11411.84285,6.0,341.41695000000004,1,2,3,4,5,6 +2743.0,83.0,1596.2726,100,354.76058537349394,354.76058537349394,523.3452328167474,523.3452328167474,11327.6163,6.0,338.8564,1,2,3,4,5,6 +2743.5,83.0,1596.2726,100,367.2124808313253,367.2124808313253,523.3452328167474,523.3452328167474,11612.85375,6.0,347.5278,1,2,3,4,5,6 +2744.0,83.0,1596.2726,100,379.6643762891566,379.6643762891566,523.3452328167474,523.3452328167474,11898.0912,6.0,356.1992,1,2,3,4,5,6 +2744.5,83.0,1596.2726,100,405.3002289397591,405.3002289397591,523.3452328167474,523.3452328167474,12458.35225,6.0,374.05100000000004,1,2,3,4,5,6 +2745.0,83.0,1596.2726,100,430.9360815903615,430.9360815903615,523.3452328167474,523.3452328167474,13018.6133,6.0,391.9028,1,2,3,4,5,6 +2745.5,83.0,1596.2726,100,465.3826897228916,465.3826897228916,523.3452328167474,523.3452328167474,13753.08445,6.0,415.89305,1,2,3,4,5,6 +2746.0,83.0,1596.2726,100,499.8292978554217,499.8292978554217,523.3452328167474,523.3452328167474,14487.5556,6.0,439.8833,1,2,3,4,5,6 +2746.5,83.0,1596.2726,100,532.488196626506,532.488196626506,523.3452328167474,523.3452328167474,15222.329,6.0,462.6423,1,2,3,4,5,6 +2747.0,83.0,1596.2726,100,565.1470953975904,565.1470953975904,523.3452328167474,523.3452328167474,15957.1024,6.0,485.4013,1,2,3,4,5,6 +2747.5,83.0,1596.2726,100,588.5392974939758,588.5392974939758,523.3452328167474,523.3452328167474,16489.4549,6.0,501.7049,1,2,3,4,5,6 +2748.0,83.0,1596.2726,100,611.9314995903615,611.9314995903615,523.3452328167474,523.3452328167474,17021.8074,6.0,518.0085,1,2,3,4,5,6 +2748.5,83.0,1596.2726,100,620.3565991084338,620.3565991084338,523.3452328167474,523.3452328167474,17213.7317,6.0,523.8806999999999,1,2,3,4,5,6 +2749.0,83.0,1596.2726,100,628.7816986265061,628.7816986265061,523.3452328167474,523.3452328167474,17405.656,6.0,529.7529,1,2,3,4,5,6 +2749.5,83.0,1596.2726,100,620.452899,620.452899,523.3452328167474,523.3452328167474,17215.92285,6.0,523.94775,1,2,3,4,5,6 +2750.0,83.0,1596.2726,100,612.124099373494,612.124099373494,523.3452328167474,523.3452328167474,17026.1897,6.0,518.1426,1,2,3,4,5,6 +2750.5,83.0,1596.2726,100,599.5909651445784,599.5909651445784,523.3452328167474,523.3452328167474,16740.699099999998,6.0,509.4076,1,2,3,4,5,6 +2751.0,83.0,1596.2726,100,587.0578309156627,587.0578309156627,523.3452328167474,523.3452328167474,16455.2085,6.0,500.6726,1,2,3,4,5,6 +2751.5,83.0,1596.2726,100,584.2696980361446,584.2696980361446,523.3452328167474,523.3452328167474,16391.6904,6.0,498.72915,1,2,3,4,5,6 +2752.0,83.0,1596.2726,100,581.4815651566265,581.4815651566265,523.3452328167474,523.3452328167474,16328.1723,6.0,496.7857,1,2,3,4,5,6 +2752.5,83.0,1596.2726,100,596.8283905301206,596.8283905301206,523.3452328167474,523.3452328167474,16677.7722,6.0,507.48220000000003,1,2,3,4,5,6 +2753.0,83.0,1596.2726,100,612.1752159036145,612.1752159036145,523.3452328167474,523.3452328167474,17027.3721,6.0,518.1787,1,2,3,4,5,6 +2753.5,83.0,1596.2726,100,640.832877,640.832877,523.3452328167474,523.3452328167474,17658.378,6.0,538.152,1,2,3,4,5,6 +2754.0,83.0,1596.2726,100,669.4905380963856,669.4905380963856,523.3452328167474,523.3452328167474,18289.3839,6.0,558.1253,1,2,3,4,5,6 +2754.5,83.0,1596.2726,100,697.9131544337349,697.9131544337349,523.3452328167474,523.3452328167474,18906.2121,6.0,577.93505,1,2,3,4,5,6 +2755.0,83.0,1596.2726,100,726.3357707710844,726.3357707710844,523.3452328167474,523.3452328167474,19523.0403,6.0,597.7448,1,2,3,4,5,6 +2755.5,83.0,1596.2726,100,739.4868673373495,739.4868673373495,523.3452328167474,523.3452328167474,19821.231350000002,6.0,606.9087,1,2,3,4,5,6 +2756.0,83.0,1596.2726,100,752.6379639036145,752.6379639036145,523.3452328167474,523.3452328167474,20119.4224,6.0,616.0726,1,2,3,4,5,6 +2756.5,83.0,1596.2726,100,770.458920614458,770.458920614458,523.3452328167474,523.3452328167474,20523.18725,6.0,628.4836,1,2,3,4,5,6 +2757.0,83.0,1596.2726,100,788.2798773253013,788.2798773253013,523.3452328167474,523.3452328167474,20926.9521,6.0,640.8946,1,2,3,4,5,6 +2757.5,83.0,1596.2726,100,785.0403672289157,785.0403672289157,523.3452328167474,523.3452328167474,20853.63315,6.0,638.63875,1,2,3,4,5,6 +2758.0,83.0,1596.2726,100,781.8008571325303,781.8008571325303,523.3452328167474,523.3452328167474,20780.3142,6.0,636.3829,1,2,3,4,5,6 +2758.5,83.0,1596.2726,100,776.898690614458,776.898690614458,523.3452328167474,523.3452328167474,20669.23465,6.0,632.9692,1,2,3,4,5,6 +2759.0,83.0,1596.2726,100,771.9965240963855,771.9965240963855,523.3452328167474,523.3452328167474,20558.1551,6.0,629.5555,1,2,3,4,5,6 +2759.5,83.0,1596.2726,100,767.8606491325303,767.8606491325303,523.3452328167474,523.3452328167474,20464.43305,6.0,626.6753000000001,1,2,3,4,5,6 +2760.0,83.0,1596.2726,100,763.7247741686748,763.7247741686748,523.3452328167474,523.3452328167474,20370.711,6.0,623.7951,1,2,3,4,5,6 +2760.5,83.0,1596.2726,100,744.6491804819279,744.6491804819279,523.3452328167474,523.3452328167474,19938.23075,6.0,610.50425,1,2,3,4,5,6 +2761.0,83.0,1596.2726,100,725.5735867951807,725.5735867951807,523.3452328167474,523.3452328167474,19505.7505,6.0,597.2134,1,2,3,4,5,6 +2761.5,83.0,1596.2726,100,701.9896977108433,701.9896977108433,523.3452328167474,523.3452328167474,18988.08285,6.0,580.7762,1,2,3,4,5,6 +2762.0,83.0,1596.2726,100,678.4058086265061,678.4058086265061,523.3452328167474,523.3452328167474,18470.4152,6.0,564.339,1,2,3,4,5,6 +2762.5,83.0,1596.2726,100,650.0744718072289,650.0744718072289,523.3452328167474,523.3452328167474,17857.867299999998,6.0,544.59305,1,2,3,4,5,6 +2763.0,83.0,1596.2726,100,621.7431349879519,621.7431349879519,523.3452328167474,523.3452328167474,17245.3194,6.0,524.8471,1,2,3,4,5,6 +2763.5,83.0,1596.2726,100,593.3720915783133,593.3720915783133,523.3452328167474,523.3452328167474,16599.32405,6.0,505.07349999999997,1,2,3,4,5,6 +2764.0,83.0,1596.2726,100,565.0010481686747,565.0010481686747,523.3452328167474,523.3452328167474,15953.3287,6.0,485.2999,1,2,3,4,5,6 +2764.5,83.0,1596.2726,100,540.0995392409638,540.0995392409638,523.3452328167474,523.3452328167474,15392.70495,6.0,467.94455,1,2,3,4,5,6 +2765.0,83.0,1596.2726,100,515.1980303132531,515.1980303132531,523.3452328167474,523.3452328167474,14832.0812,6.0,450.5892,1,2,3,4,5,6 +2765.5,83.0,1596.2726,100,493.89202160240967,493.89202160240967,523.3452328167474,523.3452328167474,14355.574349999999,6.0,435.74760000000003,1,2,3,4,5,6 +2766.0,83.0,1596.2726,100,472.58601289156627,472.58601289156627,523.3452328167474,523.3452328167474,13879.0675,6.0,420.906,1,2,3,4,5,6 +2766.5,83.0,1596.2726,100,451.8842745903615,451.8842745903615,523.3452328167474,523.3452328167474,13452.3093,6.0,406.49035000000003,1,2,3,4,5,6 +2767.0,83.0,1596.2726,100,431.18253628915664,431.18253628915664,523.3452328167474,523.3452328167474,13025.5511,6.0,392.0747,1,2,3,4,5,6 +2767.5,83.0,1596.2726,100,412.15532074698797,412.15532074698797,523.3452328167474,523.3452328167474,12616.027300000002,6.0,378.8249,1,2,3,4,5,6 +2768.0,83.0,1596.2726,100,393.12810520481935,393.12810520481935,523.3452328167474,523.3452328167474,12206.5035,6.0,365.5751,1,2,3,4,5,6 +2768.5,83.0,1596.2726,100,378.53251026506024,378.53251026506024,523.3452328167474,523.3452328167474,11872.16635,6.0,355.41105000000005,1,2,3,4,5,6 +2769.0,83.0,1596.2726,100,363.9369153253013,363.9369153253013,523.3452328167474,523.3452328167474,11537.8292,6.0,345.247,1,2,3,4,5,6 +2769.5,83.0,1596.2726,100,355.55426078313263,355.55426078313263,523.3452328167474,523.3452328167474,11345.811150000001,6.0,339.40954999999997,1,2,3,4,5,6 +2770.0,83.0,1596.2726,100,347.1716062409639,347.1716062409639,523.3452328167474,523.3452328167474,11153.7931,6.0,333.5721,1,2,3,4,5,6 +2770.5,83.0,1596.2726,100,346.72296740963867,346.72296740963867,523.3452328167474,523.3452328167474,11143.51255,6.0,333.2596,1,2,3,4,5,6 +2771.0,83.0,1596.2726,100,346.27432857831326,346.27432857831326,523.3452328167474,523.3452328167474,11133.232,6.0,332.9471,1,2,3,4,5,6 +2771.5,83.0,1596.2726,100,354.13395148192774,354.13395148192774,523.3452328167474,523.3452328167474,11313.269349999999,6.0,338.4203,1,2,3,4,5,6 +2772.0,83.0,1596.2726,100,361.99357438554216,361.99357438554216,523.3452328167474,523.3452328167474,11493.3067,6.0,343.8935,1,2,3,4,5,6 +2772.5,83.0,1596.2726,100,374.46098736144586,374.46098736144586,523.3452328167474,523.3452328167474,11778.889899999998,6.0,352.5754,1,2,3,4,5,6 +2773.0,83.0,1596.2726,100,386.92840033734944,386.92840033734944,523.3452328167474,523.3452328167474,12064.4731,6.0,361.2573,1,2,3,4,5,6 +2773.5,83.0,1596.2726,100,397.73863366265067,397.73863366265067,523.3452328167474,523.3452328167474,12311.79625,6.0,368.78520000000003,1,2,3,4,5,6 +2774.0,83.0,1596.2726,100,408.54886698795184,408.54886698795184,523.3452328167474,523.3452328167474,12559.1194,6.0,376.3131,1,2,3,4,5,6 +2774.5,83.0,1596.2726,100,416.50707177108444,416.50707177108444,523.3452328167474,523.3452328167474,12728.823,6.0,381.85505,1,2,3,4,5,6 +2775.0,83.0,1596.2726,100,424.46527655421687,424.46527655421687,523.3452328167474,523.3452328167474,12898.5266,6.0,387.397,1,2,3,4,5,6 +2775.5,83.0,1596.2726,100,427.6062047710843,427.6062047710843,523.3452328167474,523.3452328167474,12959.18305,6.0,389.58415,1,2,3,4,5,6 +2776.0,83.0,1596.2726,100,430.74713298795183,430.74713298795183,523.3452328167474,523.3452328167474,13019.8395,6.0,391.7713,1,2,3,4,5,6 +2776.5,83.0,1596.2726,100,431.5170757228916,431.5170757228916,523.3452328167474,523.3452328167474,13034.71065,6.0,392.3075,1,2,3,4,5,6 +2777.0,83.0,1596.2726,100,432.2870184578314,432.2870184578314,523.3452328167474,523.3452328167474,13049.5818,6.0,392.8437,1,2,3,4,5,6 +2777.5,83.0,1596.2726,100,425.88421666265066,425.88421666265066,523.3452328167474,523.3452328167474,12924.97785,6.0,388.38505,1,2,3,4,5,6 +2778.0,83.0,1596.2726,100,419.4814148674699,419.4814148674699,523.3452328167474,523.3452328167474,12800.3739,6.0,383.9264,1,2,3,4,5,6 +2778.5,83.0,1596.2726,100,414.7111472530121,414.7111472530121,523.3452328167474,523.3452328167474,12695.99775,6.0,380.60465,1,2,3,4,5,6 +2779.0,83.0,1596.2726,100,409.94087963855424,409.94087963855424,523.3452328167474,523.3452328167474,12591.6216,6.0,377.2829,1,2,3,4,5,6 +2779.5,83.0,1596.2726,100,409.2357453614458,409.2357453614458,523.3452328167474,523.3452328167474,12575.46845,6.0,376.79184999999995,1,2,3,4,5,6 +2780.0,83.0,1596.2726,100,408.53061108433735,408.53061108433735,523.3452328167474,523.3452328167474,12559.3153,6.0,376.3008,1,2,3,4,5,6 +2780.5,83.0,1596.2726,100,410.3196896385542,410.3196896385542,523.3452328167474,523.3452328167474,12600.2947,6.0,377.5466,1,2,3,4,5,6 +2781.0,83.0,1596.2726,100,412.1087681927711,412.1087681927711,523.3452328167474,523.3452328167474,12641.2741,6.0,378.7924,1,2,3,4,5,6 +2781.5,83.0,1596.2726,100,415.46694166265064,415.46694166265064,523.3452328167474,523.3452328167474,12714.95225,6.0,381.1307,1,2,3,4,5,6 +2782.0,83.0,1596.2726,100,418.8251151325302,418.8251151325302,523.3452328167474,523.3452328167474,12788.6304,6.0,383.469,1,2,3,4,5,6 +2782.5,83.0,1596.2726,100,421.9409414819277,421.9409414819277,523.3452328167474,523.3452328167474,12849.289,6.0,385.63890000000004,1,2,3,4,5,6 +2783.0,83.0,1596.2726,100,425.0567678313253,425.0567678313253,523.3452328167474,523.3452328167474,12909.9476,6.0,387.8088,1,2,3,4,5,6 +2783.5,83.0,1596.2726,100,427.65321372289156,427.65321372289156,523.3452328167474,523.3452328167474,12960.09175,6.0,389.6169,1,2,3,4,5,6 +2784.0,83.0,1596.2726,100,430.2496596144578,430.2496596144578,523.3452328167474,523.3452328167474,13010.2359,6.0,391.425,1,2,3,4,5,6 +2784.5,83.0,1596.2726,100,432.77947145783133,432.77947145783133,523.3452328167474,523.3452328167474,13059.091550000001,6.0,393.1866,1,2,3,4,5,6 +2785.0,83.0,1596.2726,100,435.3092833012049,435.3092833012049,523.3452328167474,523.3452328167474,13107.9472,6.0,394.9482,1,2,3,4,5,6 +2785.5,83.0,1596.2726,100,438.4045717590362,438.4045717590362,523.3452328167474,523.3452328167474,13167.722450000001,6.0,397.10355,1,2,3,4,5,6 +2786.0,83.0,1596.2726,100,441.4998602168675,441.4998602168675,523.3452328167474,523.3452328167474,13227.4977,6.0,399.2589,1,2,3,4,5,6 +2786.5,83.0,1596.2726,100,445.1012936024097,445.1012936024097,523.3452328167474,523.3452328167474,13297.05135,6.0,401.76685,1,2,3,4,5,6 +2787.0,83.0,1596.2726,100,448.70272698795185,448.70272698795185,523.3452328167474,523.3452328167474,13366.605,6.0,404.2748,1,2,3,4,5,6 +2787.5,83.0,1596.2726,100,452.2754073253013,452.2754073253013,523.3452328167474,523.3452328167474,13436.263449999999,6.0,406.76255000000003,1,2,3,4,5,6 +2788.0,83.0,1596.2726,100,455.8480876626506,455.8480876626506,523.3452328167474,523.3452328167474,13505.9219,6.0,409.2503,1,2,3,4,5,6 +2788.5,83.0,1596.2726,100,458.96847798795187,458.96847798795187,523.3452328167474,523.3452328167474,13573.7747,6.0,411.4235,1,2,3,4,5,6 +2789.0,83.0,1596.2726,100,462.08886831325304,462.08886831325304,523.3452328167474,523.3452328167474,13641.6275,6.0,413.5967,1,2,3,4,5,6 +2789.5,83.0,1596.2726,100,464.3183705421687,464.3183705421687,523.3452328167474,523.3452328167474,13691.58855,6.0,415.1492,1,2,3,4,5,6 +2790.0,83.0,1596.2726,100,466.54787277108437,466.54787277108437,523.3452328167474,523.3452328167474,13741.5496,6.0,416.7017,1,2,3,4,5,6 +2790.5,83.0,1596.2726,100,467.71031743373493,467.71031743373493,523.3452328167474,523.3452328167474,13767.59625,6.0,417.5111,1,2,3,4,5,6 +2791.0,83.0,1596.2726,100,468.8727620963856,468.8727620963856,523.3452328167474,523.3452328167474,13793.6429,6.0,418.3205,1,2,3,4,5,6 +2791.5,83.0,1596.2726,100,469.1251499638555,469.1251499638555,523.3452328167474,523.3452328167474,13799.2986,6.0,418.49625000000003,1,2,3,4,5,6 +2792.0,83.0,1596.2726,100,469.37753783132536,469.37753783132536,523.3452328167474,523.3452328167474,13804.9543,6.0,418.672,1,2,3,4,5,6 +2792.5,83.0,1596.2726,100,469.4564946144579,469.4564946144579,523.3452328167474,523.3452328167474,13806.718799999999,6.0,418.7268,1,2,3,4,5,6 +2793.0,83.0,1596.2726,100,469.5354513975904,469.5354513975904,523.3452328167474,523.3452328167474,13808.4833,6.0,418.7816,1,2,3,4,5,6 +2793.5,83.0,1596.2726,100,468.6386301325302,468.6386301325302,523.3452328167474,523.3452328167474,13788.389350000001,6.0,418.1572,1,2,3,4,5,6 +2794.0,83.0,1596.2726,100,467.74180886746996,467.74180886746996,523.3452328167474,523.3452328167474,13768.2954,6.0,417.5328,1,2,3,4,5,6 +2794.5,83.0,1596.2726,100,465.89202943373493,465.89202943373493,523.3452328167474,523.3452328167474,13726.8453,6.0,416.2448,1,2,3,4,5,6 +2795.0,83.0,1596.2726,100,464.04225,464.04225,523.3452328167474,523.3452328167474,13685.3952,6.0,414.9568,1,2,3,4,5,6 +2795.5,83.0,1596.2726,100,461.71964266265064,461.71964266265064,523.3452328167474,523.3452328167474,13633.4053,6.0,413.3395,1,2,3,4,5,6 +2796.0,83.0,1596.2726,100,459.3970353253012,459.3970353253012,523.3452328167474,523.3452328167474,13581.4154,6.0,411.7222,1,2,3,4,5,6 +2796.5,83.0,1596.2726,100,456.97858449397586,456.97858449397586,523.3452328167474,523.3452328167474,13530.57015,6.0,410.03795,1,2,3,4,5,6 +2797.0,83.0,1596.2726,100,454.5601336626506,454.5601336626506,523.3452328167474,523.3452328167474,13479.7249,6.0,408.3537,1,2,3,4,5,6 +2797.5,83.0,1596.2726,100,451.5260024819277,451.5260024819277,523.3452328167474,523.3452328167474,13421.131949999999,6.0,406.24095,1,2,3,4,5,6 +2798.0,83.0,1596.2726,100,448.4918713012048,448.4918713012048,523.3452328167474,523.3452328167474,13362.539,6.0,404.1282,1,2,3,4,5,6 +2798.5,83.0,1596.2726,100,443.5650593132531,443.5650593132531,523.3452328167474,523.3452328167474,13267.38565,6.0,400.6972,1,2,3,4,5,6 +2799.0,83.0,1596.2726,100,438.6382473253012,438.6382473253012,523.3452328167474,523.3452328167474,13172.2323,6.0,397.2662,1,2,3,4,5,6 +2799.5,83.0,1596.2726,100,431.2290888433735,431.2290888433735,523.3452328167474,523.3452328167474,13028.508549999999,6.0,392.10670000000005,1,2,3,4,5,6 +2800.0,83.0,1596.2726,100,423.8199303614458,423.8199303614458,523.3452328167474,523.3452328167474,12884.7848,6.0,386.9472,1,2,3,4,5,6 +2800.5,83.0,1596.2726,100,413.9813675060241,413.9813675060241,523.3452328167474,523.3452328167474,12671.78825,6.0,380.096,1,2,3,4,5,6 +2801.0,83.0,1596.2726,100,404.14280465060244,404.14280465060244,523.3452328167474,523.3452328167474,12458.7917,6.0,373.2448,1,2,3,4,5,6 +2801.5,83.0,1596.2726,100,392.0925390722892,392.0925390722892,523.3452328167474,523.3452328167474,12182.76605,6.0,364.85345,1,2,3,4,5,6 +2802.0,83.0,1596.2726,100,380.0422734939759,380.0422734939759,523.3452328167474,523.3452328167474,11906.7404,6.0,356.4621,1,2,3,4,5,6 +2802.5,83.0,1596.2726,100,367.8916004457831,367.8916004457831,523.3452328167474,523.3452328167474,11628.4159,6.0,348.0009,1,2,3,4,5,6 +2803.0,83.0,1596.2726,100,355.74092739759044,355.74092739759044,523.3452328167474,523.3452328167474,11350.0914,6.0,339.5397,1,2,3,4,5,6 +2803.5,83.0,1596.2726,100,346.5481671325301,346.5481671325301,523.3452328167474,523.3452328167474,11139.5068,6.0,333.13779999999997,1,2,3,4,5,6 +2804.0,83.0,1596.2726,100,337.3554068674699,337.3554068674699,523.3452328167474,523.3452328167474,10928.9222,6.0,326.7359,1,2,3,4,5,6 +2804.5,83.0,1596.2726,100,331.7134198554217,331.7134198554217,523.3452328167474,523.3452328167474,10799.68185,6.0,322.80695000000003,1,2,3,4,5,6 +2805.0,83.0,1596.2726,100,326.0714328433735,326.0714328433735,523.3452328167474,523.3452328167474,10670.4415,6.0,318.878,1,2,3,4,5,6 +2805.5,83.0,1596.2726,100,321.8210020843373,321.8210020843373,523.3452328167474,523.3452328167474,10576.84805,6.0,315.91805,1,2,3,4,5,6 +2806.0,83.0,1596.2726,100,317.5705713253012,317.5705713253012,523.3452328167474,523.3452328167474,10483.2546,6.0,312.9581,1,2,3,4,5,6 +2806.5,83.0,1596.2726,100,313.22520986746986,313.22520986746986,523.3452328167474,523.3452328167474,10398.2209,6.0,309.9321,1,2,3,4,5,6 +2807.0,83.0,1596.2726,100,308.8798484096386,308.8798484096386,523.3452328167474,523.3452328167474,10313.1872,6.0,306.9061,1,2,3,4,5,6 +2807.5,83.0,1596.2726,100,303.21093393975906,303.21093393975906,523.3452328167474,523.3452328167474,10202.87865,6.0,302.95835,1,2,3,4,5,6 +2808.0,83.0,1596.2726,100,297.54201946987956,297.54201946987956,523.3452328167474,523.3452328167474,10092.5701,6.0,299.0106,1,2,3,4,5,6 +2808.5,83.0,1596.2726,100,291.41259983132534,291.41259983132534,523.3452328167474,523.3452328167474,9973.29695,6.0,294.74205,1,2,3,4,5,6 +2809.0,83.0,1596.2726,100,285.2831801927711,285.2831801927711,523.3452328167474,523.3452328167474,9854.0238,6.0,290.4735,1,2,3,4,5,6 +2809.5,83.0,1596.2726,100,283.387761,283.387761,523.3452328167474,523.3452328167474,9817.142650000002,6.0,289.1536,1,2,3,4,5,6 +2810.0,83.0,1596.2726,100,281.4923418072289,281.4923418072289,523.3452328167474,523.3452328167474,9780.2615,6.0,287.8337,1,2,3,4,5,6 +2810.5,83.0,1596.2726,100,285.9385671325302,285.9385671325302,523.3452328167474,523.3452328167474,9866.778,6.0,290.92995,1,2,3,4,5,6 +2811.0,83.0,1596.2726,100,290.38479245783134,290.38479245783134,523.3452328167474,523.3452328167474,9953.2945,6.0,294.0262,1,2,3,4,5,6 +2811.5,83.0,1596.2726,100,300.47300479518077,300.47300479518077,523.3452328167474,523.3452328167474,10150.4861,6.0,301.0516,1,2,3,4,5,6 +2812.0,83.0,1596.2726,100,310.56121713253015,310.56121713253015,523.3452328167474,523.3452328167474,10347.6777,6.0,308.077,1,2,3,4,5,6 +2812.5,83.0,1596.2726,100,324.081995746988,324.081995746988,523.3452328167474,523.3452328167474,10641.1376,6.0,317.49275,1,2,3,4,5,6 +2813.0,83.0,1596.2726,100,337.60277436144577,337.60277436144577,523.3452328167474,523.3452328167474,10934.5975,6.0,326.9085,1,2,3,4,5,6 +2813.5,83.0,1596.2726,100,353.0687195060241,353.0687195060241,523.3452328167474,523.3452328167474,11288.871449999999,6.0,337.67859999999996,1,2,3,4,5,6 +2814.0,83.0,1596.2726,100,368.5346646506024,368.5346646506024,523.3452328167474,523.3452328167474,11643.1454,6.0,348.4487,1,2,3,4,5,6 +2814.5,83.0,1596.2726,100,387.0078135180723,387.0078135180723,523.3452328167474,523.3452328167474,12064.71125,6.0,361.31295,1,2,3,4,5,6 +2815.0,83.0,1596.2726,100,405.4809623855422,405.4809623855422,523.3452328167474,523.3452328167474,12486.2771,6.0,374.1772,1,2,3,4,5,6 +2815.5,83.0,1596.2726,100,425.76737887951816,425.76737887951816,523.3452328167474,523.3452328167474,12902.440149999999,6.0,388.30370000000005,1,2,3,4,5,6 +2816.0,83.0,1596.2726,100,446.053795373494,446.053795373494,523.3452328167474,523.3452328167474,13318.6032,6.0,402.4302,1,2,3,4,5,6 +2816.5,83.0,1596.2726,100,467.83628316867475,467.83628316867475,523.3452328167474,523.3452328167474,13788.59445,6.0,417.5992,1,2,3,4,5,6 +2817.0,83.0,1596.2726,100,489.61877096385547,489.61877096385547,523.3452328167474,523.3452328167474,14258.5857,6.0,432.7682,1,2,3,4,5,6 +2817.5,83.0,1596.2726,100,514.5910215180722,514.5910215180722,523.3452328167474,523.3452328167474,14818.6061,6.0,450.1692,1,2,3,4,5,6 +2818.0,83.0,1596.2726,100,539.5632720722891,539.5632720722891,523.3452328167474,523.3452328167474,15378.6265,6.0,467.5702,1,2,3,4,5,6 +2818.5,83.0,1596.2726,100,554.6791602650603,554.6791602650603,523.3452328167474,523.3452328167474,15720.2952,6.0,478.10545,1,2,3,4,5,6 +2819.0,83.0,1596.2726,100,569.7950484578314,569.7950484578314,523.3452328167474,523.3452328167474,16061.9639,6.0,488.6407,1,2,3,4,5,6 +2819.5,83.0,1596.2726,100,601.306563686747,601.306563686747,523.3452328167474,523.3452328167474,16779.77845,6.0,510.60325,1,2,3,4,5,6 +2820.0,83.0,1596.2726,100,632.8180789156627,632.8180789156627,523.3452328167474,523.3452328167474,17497.593,6.0,532.5658,1,2,3,4,5,6 +2820.5,83.0,1596.2726,100,634.3616155662652,634.3616155662652,523.3452328167474,523.3452328167474,17532.751949999998,6.0,533.64155,1,2,3,4,5,6 +2821.0,83.0,1596.2726,100,635.9051522168675,635.9051522168675,523.3452328167474,523.3452328167474,17567.9109,6.0,534.7173,1,2,3,4,5,6 +2821.5,83.0,1596.2726,100,633.9901079277108,633.9901079277108,523.3452328167474,523.3452328167474,17524.2863,6.0,533.38255,1,2,3,4,5,6 +2822.0,83.0,1596.2726,100,632.0750636385542,632.0750636385542,523.3452328167474,523.3452328167474,17480.6617,6.0,532.0478,1,2,3,4,5,6 +2822.5,83.0,1596.2726,100,637.9817612530122,637.9817612530122,523.3452328167474,523.3452328167474,17614.734,6.0,536.16475,1,2,3,4,5,6 +2823.0,83.0,1596.2726,100,643.8884588674699,643.8884588674699,523.3452328167474,523.3452328167474,17748.8063,6.0,540.2817,1,2,3,4,5,6 +2823.5,83.0,1596.2726,100,654.9223270120483,654.9223270120483,523.3452328167474,523.3452328167474,17983.023800000003,6.0,547.9718,1,2,3,4,5,6 +2824.0,83.0,1596.2726,100,665.9561951566264,665.9561951566264,523.3452328167474,523.3452328167474,18217.2413,6.0,555.6619,1,2,3,4,5,6 +2824.5,83.0,1596.2726,100,674.9025007228914,674.9025007228914,523.3452328167474,523.3452328167474,18398.0416,6.0,561.89725,1,2,3,4,5,6 +2825.0,83.0,1596.2726,100,683.8488062891566,683.8488062891566,523.3452328167474,523.3452328167474,18578.8419,6.0,568.1326,1,2,3,4,5,6 +2825.5,83.0,1596.2726,100,684.8428402409639,684.8428402409639,523.3452328167474,523.3452328167474,18598.93375,6.0,568.8255,1,2,3,4,5,6 +2826.0,83.0,1596.2726,100,685.8368741927712,685.8368741927712,523.3452328167474,523.3452328167474,18619.0256,6.0,569.5184,1,2,3,4,5,6 +2826.5,83.0,1596.2726,100,679.790975313253,679.790975313253,523.3452328167474,523.3452328167474,18496.838499999998,6.0,565.3045,1,2,3,4,5,6 +2827.0,83.0,1596.2726,100,673.745076433735,673.745076433735,523.3452328167474,523.3452328167474,18374.6514,6.0,561.0906,1,2,3,4,5,6 +2827.5,83.0,1596.2726,100,667.7073927108435,667.7073927108435,523.3452328167474,523.3452328167474,18252.637649999997,6.0,556.88265,1,2,3,4,5,6 +2828.0,83.0,1596.2726,100,661.6697089879517,661.6697089879517,523.3452328167474,523.3452328167474,18130.6239,6.0,552.6747,1,2,3,4,5,6 +2828.5,83.0,1596.2726,100,663.8293823855422,663.8293823855422,523.3452328167474,523.3452328167474,18174.262949999997,6.0,554.1797,1,2,3,4,5,6 +2829.0,83.0,1596.2726,100,665.9890557831326,665.9890557831326,523.3452328167474,523.3452328167474,18217.902,6.0,555.6847,1,2,3,4,5,6 +2829.5,83.0,1596.2726,100,678.7471940240964,678.7471940240964,523.3452328167474,523.3452328167474,18481.27285,6.0,564.57665,1,2,3,4,5,6 +2830.0,83.0,1596.2726,100,691.5053322650604,691.5053322650604,523.3452328167474,523.3452328167474,18744.6437,6.0,573.4686,1,2,3,4,5,6 +2830.5,83.0,1596.2726,100,711.8529060361446,711.8529060361446,523.3452328167474,523.3452328167474,19200.326950000002,6.0,587.6499,1,2,3,4,5,6 +2831.0,83.0,1596.2726,100,732.2004798072289,732.2004798072289,523.3452328167474,523.3452328167474,19656.0102,6.0,601.8312,1,2,3,4,5,6 +2831.5,83.0,1596.2726,100,756.9687206385544,756.9687206385544,523.3452328167474,523.3452328167474,20213.2171,6.0,619.0847,1,2,3,4,5,6 +2832.0,83.0,1596.2726,100,781.7369614698796,781.7369614698796,523.3452328167474,523.3452328167474,20770.424,6.0,636.3382,1,2,3,4,5,6 +2832.5,83.0,1596.2726,100,806.6398395903615,806.6398395903615,523.3452328167474,523.3452328167474,21271.2948,6.0,653.6800499999999,1,2,3,4,5,6 +2833.0,83.0,1596.2726,100,831.5427177108435,831.5427177108435,523.3452328167474,523.3452328167474,21772.1656,6.0,671.0219,1,2,3,4,5,6 +2833.5,83.0,1596.2726,100,853.9700953012049,853.9700953012049,523.3452328167474,523.3452328167474,22213.6092,6.0,686.6396,1,2,3,4,5,6 +2834.0,83.0,1596.2726,100,876.3974728915663,876.3974728915663,523.3452328167474,523.3452328167474,22655.0528,6.0,702.2573,1,2,3,4,5,6 +2834.5,83.0,1596.2726,100,902.4189815060241,902.4189815060241,523.3452328167474,523.3452328167474,23225.31565,6.0,720.37785,1,2,3,4,5,6 +2835.0,83.0,1596.2726,100,928.440490120482,928.440490120482,523.3452328167474,523.3452328167474,23795.5785,6.0,738.4984,1,2,3,4,5,6 +2835.5,83.0,1596.2726,100,962.4603665060241,962.4603665060241,523.3452328167474,523.3452328167474,24557.574549999998,6.0,762.1901499999999,1,2,3,4,5,6 +2836.0,83.0,1596.2726,100,996.4802428915664,996.4802428915664,523.3452328167474,523.3452328167474,25319.5706,6.0,785.8819,1,2,3,4,5,6 +2836.5,83.0,1596.2726,100,1030.4444387710844,1030.4444387710844,523.3452328167474,523.3452328167474,26079.1753,6.0,809.54205,1,2,3,4,5,6 +2837.0,83.0,1596.2726,100,1064.4086346506026,1064.4086346506026,523.3452328167474,523.3452328167474,26838.78,6.0,833.2022,1,2,3,4,5,6 +2837.5,83.0,1596.2726,100,1096.1780145180724,1096.1780145180724,523.3452328167474,523.3452328167474,27514.0477,6.0,855.33485,1,2,3,4,5,6 +2838.0,83.0,1596.2726,100,1127.947394385542,1127.947394385542,523.3452328167474,523.3452328167474,28189.3154,6.0,877.4675,1,2,3,4,5,6 +2838.5,82.99985000000001,1596.2711,100,1160.4664507345492,1160.4664507345492,523.3442870121099,523.3442870121099,28924.980750000002,6.0,900.1197,1,2,3,4,5,6 +2839.0,82.9997,1596.2696,100,1192.9856246227396,1192.9856246227396,523.3433412074722,523.3433412074722,29660.6461,6.0,922.7719,1,2,3,4,5,6 +2839.5,82.99125000000001,1596.1495,100,1214.7371412769417,1214.7371412769417,523.2900608795529,523.2900608795529,30114.05235,6.0,937.78845,1,2,3,4,5,6 +2840.0,82.9828,1596.0294,100,1236.493087772406,1236.493087772406,523.2367805516336,523.2367805516336,30567.4586,6.0,952.805,1,2,3,4,5,6 +2840.5,82.9426,1595.2783,100,1239.210618934058,1239.210618934058,522.9833049087513,522.9833049087513,30603.459300000002,6.0,954.3538,1,2,3,4,5,6 +2841.0,82.9024,1594.5272,100,1241.9307855984869,1241.9307855984869,522.729829265869,522.729829265869,30639.46,6.0,955.9026,1,2,3,4,5,6 +2841.5,82.81205,1592.7837,100,1242.5218490545763,1242.5218490545763,522.1601396058087,522.1601396058087,30606.038650000002,6.0,955.9513,1,2,3,4,5,6 +2842.0,82.7217,1591.0402,100,1243.114203649103,1243.114203649103,521.5904499457486,521.5904499457486,30572.6173,6.0,956.0,1,2,3,4,5,6 +2842.5,82.5852,1588.3901,100,1243.4666723456503,1243.4666723456503,520.7297677255139,520.7297677255139,30519.3767,6.0,956.0,1,2,3,4,5,6 +2843.0,82.4487,1585.74,100,1243.820308118867,1243.820308118867,519.869085505279,519.869085505279,30466.1361,6.0,956.0,1,2,3,4,5,6 +2843.5,82.2865,1582.59605,100,1243.888821386254,1243.888821386254,518.8463554237986,518.8463554237986,30402.973550000002,6.0,956.0,1,2,3,4,5,6 +2844.0,82.1243,1579.4521,100,1243.9576052885684,1243.9576052885684,517.8236253423182,517.8236253423182,30339.811,6.0,956.0,1,2,3,4,5,6 +2844.5,81.94545,1576.0097,100,1244.1296518964755,1244.1296518964755,516.6959109460618,516.6959109460618,30270.6538,6.0,956.0,1,2,3,4,5,6 +2845.0,81.7666,1572.5673,100,1244.3024511475346,1244.3024511475346,515.5681965498055,515.5681965498055,30201.4966,6.0,956.0,1,2,3,4,5,6 +2845.5,81.57509999999999,1568.8798,100,1244.2965667096944,1244.2965667096944,514.3607192957766,514.3607192957766,30127.4138,6.0,956.0,1,2,3,4,5,6 +2846.0,81.3836,1565.1923,100,1244.2906545790554,1244.2906545790554,513.1532420417475,513.1532420417475,30053.331,6.0,956.0,1,2,3,4,5,6 +2846.5,81.1897,1561.4612,100,1244.2477774274323,1244.2477774274323,511.9306319135166,511.9306319135166,29978.373399999997,6.0,956.0,1,2,3,4,5,6 +2847.0,80.9958,1557.7301,100,1244.2046949841845,1244.2046949841845,510.70802178528567,510.70802178528567,29903.4158,6.0,956.0,1,2,3,4,5,6 +2847.5,80.79724999999999,1553.91805,100,1244.2498873290865,1244.2498873290865,509.4560917132884,509.4560917132884,29826.831149999998,6.0,956.0,1,2,3,4,5,6 +2848.0,80.5987,1550.106,100,1244.2953023311793,1244.2953023311793,508.20416164129125,508.20416164129125,29750.2465,6.0,956.0,1,2,3,4,5,6 +2848.5,80.3951,1546.1816,100,1244.2513626203588,1244.2513626203588,506.92038947982763,506.92038947982763,29671.40505,6.0,956.0,1,2,3,4,5,6 +2849.0,80.1915,1542.2572,100,1244.2071997905014,1244.2071997905014,505.6366173183639,505.6366173183639,29592.5636,6.0,956.0,1,2,3,4,5,6 +2849.5,79.98915,1538.3576,100,1244.1097455092347,1244.1097455092347,504.36072686221365,504.36072686221365,29514.2204,6.0,956.0,1,2,3,4,5,6 +2850.0,79.7868,1534.458,100,1244.0117969137752,1244.0117969137752,503.08483640606346,503.08483640606346,29435.8772,6.0,956.0,1,2,3,4,5,6 +2850.5,79.59115,1530.6934500000002,100,1243.8600393888014,1243.8600393888014,501.8511918903935,501.8511918903935,29360.2476,6.0,956.0,1,2,3,4,5,6 +2851.0,79.3955,1526.9289,100,1243.7075339282453,1243.7075339282453,500.61754737472376,500.61754737472376,29284.618,6.0,956.0,1,2,3,4,5,6 +2851.5,79.2093,1523.348,100,1243.5637327435034,1243.5637327435034,499.443488551224,499.443488551224,29212.67725,6.0,956.0,1,2,3,4,5,6 +2852.0,79.0231,1519.7671,100,1243.4192538890527,1243.4192538890527,498.26942972772423,498.26942972772423,29140.7365,6.0,956.0,1,2,3,4,5,6 +2852.5,78.84705,1516.3744000000002,100,1243.2514504220512,1243.2514504220512,497.15937035137017,497.15937035137017,29072.576399999998,6.0,956.0,1,2,3,4,5,6 +2853.0,78.671,1512.9817,100,1243.0828959336984,1243.0828959336984,496.04931097501617,496.04931097501617,29004.4163,6.0,956.0,1,2,3,4,5,6 +2853.5,78.50865,1509.85675,100,1242.868948262389,1242.868948262389,495.02563508889807,495.02563508889807,28941.6365,6.0,956.0,1,2,3,4,5,6 +2854.0,78.3463,1506.7318,100,1242.6541139019964,1242.6541139019964,494.00195920278003,494.00195920278003,28878.8567,6.0,956.0,1,2,3,4,5,6 +2854.5,78.19925,1503.91325,100,1242.4748074949566,1242.4748074949566,493.07475538969936,493.07475538969936,28822.231,6.0,956.0,1,2,3,4,5,6 +2855.0,78.0522,1501.0947,100,1242.2948254629594,1242.2948254629594,492.14755157661847,492.14755157661847,28765.6053,6.0,956.0,1,2,3,4,5,6 +2855.5,77.91475,1498.46225,100,1242.2139374380333,1242.2139374380333,491.28087926034544,491.28087926034544,28712.71935,6.0,956.0,1,2,3,4,5,6 +2856.0,77.7773,1495.8298,100,1242.1327635184043,1242.1327635184043,490.4142069440724,490.4142069440724,28659.8334,6.0,956.0,1,2,3,4,5,6 +2856.5,77.6416,1493.22345,100,1242.1135677137,1242.1135677137,489.5585690152383,489.5585690152383,28607.472,6.0,956.0,1,2,3,4,5,6 +2857.0,77.5059,1490.6171,100,1242.0943046916427,1242.0943046916427,488.7029310864042,488.7029310864042,28555.1106,6.0,956.0,1,2,3,4,5,6 +2857.5,77.36985,1487.9911499999998,100,1242.037996894139,1242.037996894139,487.8450862800822,487.8450862800822,28502.35525,6.0,956.0,1,2,3,4,5,6 +2858.0,77.2338,1485.3652,100,1241.981490720384,1241.981490720384,486.9872414737603,486.9872414737603,28449.5999,6.0,956.0,1,2,3,4,5,6 +2858.5,77.10425000000001,1482.8586,100,1241.8063327767275,1241.8063327767275,486.1703815350687,486.1703815350687,28399.2415,6.0,956.0,1,2,3,4,5,6 +2859.0,76.9747,1480.352,100,1241.6305852442426,1241.6305852442426,485.35352159637694,485.35352159637694,28348.8831,6.0,956.0,1,2,3,4,5,6 +2859.5,76.86189999999999,1478.1748,100,1241.3719700918143,1241.3719700918143,484.6422765088862,484.6422765088862,28305.14355,6.0,956.0,1,2,3,4,5,6 +2860.0,76.7491,1475.9976,100,1241.1125947535543,1241.1125947535543,483.9310314213956,483.9310314213956,28261.404,6.0,956.0,1,2,3,4,5,6 +2860.5,76.6584,1474.2579,100,1240.8539775288814,1240.8539775288814,483.3591348838476,483.3591348838476,28226.452899999997,6.0,956.0,1,2,3,4,5,6 +2861.0,76.5677,1472.5182,100,1240.5947476024485,1240.5947476024485,482.78723834629966,482.78723834629966,28191.5018,6.0,956.0,1,2,3,4,5,6 +2861.5,76.4944,1471.10675,100,1240.4484417159947,1240.4484417159947,482.3250551467157,482.3250551467157,28163.146249999998,6.0,956.0,1,2,3,4,5,6 +2862.0,76.4211,1469.6953,100,1240.3018551682717,1240.3018551682717,481.86287194713174,481.86287194713174,28134.7907,6.0,956.0,1,2,3,4,5,6 +2862.5,76.36865,1468.69315,100,1239.9855483761987,1239.9855483761987,481.5321555921771,481.5321555921771,28114.65685,6.0,956.0,1,2,3,4,5,6 +2863.0,76.3162,1467.691,100,1239.6688068064186,1239.6688068064186,481.2014392372224,481.2014392372224,28094.523,6.0,956.0,1,2,3,4,5,6 +2863.5,76.28195,1467.0479500000001,100,1239.6026821548219,1239.6026821548219,480.9854805116323,480.9854805116323,28081.60405,6.0,956.0,1,2,3,4,5,6 +2864.0,76.2477,1466.4049,100,1239.5364980976478,1239.5364980976478,480.7695217860423,480.7695217860423,28068.6851,6.0,956.0,1,2,3,4,5,6 +2864.5,76.22295,1465.9333000000001,100,1239.4077145662823,1239.4077145662823,480.61346402083495,480.61346402083495,28059.211,6.0,956.0,1,2,3,4,5,6 +2865.0,76.1982,1465.4617,100,1239.2788473743476,1239.2788473743476,480.45740625562746,480.45740625562746,28049.7369,6.0,956.0,1,2,3,4,5,6 +2865.5,76.17775,1465.0691000000002,100,1239.309192251018,1239.309192251018,480.3284615566986,480.3284615566986,28041.8492,6.0,956.0,1,2,3,4,5,6 +2866.0,76.1573,1464.6765,100,1239.339553424294,1239.339553424294,480.19951685776965,480.19951685776965,28033.9615,6.0,956.0,1,2,3,4,5,6 +2866.5,76.13655,1464.26225,100,1239.290730076422,1239.290730076422,480.06868054956544,480.06868054956544,28025.6394,6.0,956.0,1,2,3,4,5,6 +2867.0,76.1158,1463.848,100,1239.2418801089918,1239.2418801089918,479.9378442413612,479.9378442413612,28017.3173,6.0,956.0,1,2,3,4,5,6 +2867.5,76.10475,1463.61915,100,1239.0524822169446,1239.0524822169446,479.8681699663898,479.8681699663898,28012.699399999998,6.0,955.9993999999999,1,2,3,4,5,6 +2868.0,76.0937,1463.3903,100,1238.8630293178019,1238.8630293178019,479.7984956914184,479.7984956914184,28008.0815,6.0,955.9988,1,2,3,4,5,6 +2868.5,76.1046,1463.5932,100,1238.5248215088181,1238.5248215088181,479.86722416175235,479.86722416175235,28010.9028,6.0,955.96075,1,2,3,4,5,6 +2869.0,76.1155,1463.7961,100,1238.1867105648653,1238.1867105648653,479.93595263208596,479.93595263208596,28013.7241,6.0,955.9227,1,2,3,4,5,6 +2869.5,76.15435,1464.548,100,1237.7933180048153,1237.7933180048153,480.1809160332297,480.1809160332297,28026.2147,6.0,955.8434,1,2,3,4,5,6 +2870.0,76.1932,1465.2999,100,1237.4003266170735,1237.4003266170735,480.42587943437354,480.42587943437354,28038.7053,6.0,955.7641,1,2,3,4,5,6 +2870.5,76.25795,1466.5538000000001,100,1237.0793832643024,1237.0793832643024,480.834151769613,480.834151769613,28061.417950000003,6.0,955.689,1,2,3,4,5,6 +2871.0,76.3227,1467.8077,100,1236.758984469889,1236.758984469889,481.2424241048527,481.2424241048527,28084.1306,6.0,955.6139,1,2,3,4,5,6 +2871.5,76.39585,1469.33095,100,1210.8198796138797,1210.8198796138797,481.7036614997989,481.7036614997989,27625.0138,6.0,937.72245,1,2,3,4,5,6 +2872.0,76.469,1470.8542,100,1184.9304012867958,1184.9304012867958,482.16489889474536,482.16489889474536,27165.897,6.0,919.831,1,2,3,4,5,6 +2872.5,76.2361,1466.29195,100,469.07017398581513,469.07017398581513,480.69637956073296,480.69637956073296,13582.9485,6.0,424.60200000000003,1,2,3,4,5,6 +2873.0,76.0032,1461.7297,100,-251.17733824365285,-251.17733824365285,479.22786022672074,479.22786022672074,0.0,6.0,-70.627,1,2,3,4,5,6 +2873.5,75.46185,1451.3404,100,-250.59981346866005,-250.59981346866005,475.81445128954783,475.81445128954783,0.03275,6.0,-70.2141,1,2,3,4,5,6 +2874.0,74.9205,1440.9511,100,-250.0139426992612,-250.0139426992612,472.40104235237504,472.40104235237504,0.0655,6.0,-69.8012,1,2,3,4,5,6 +2874.5,74.36205000000001,1430.2165,100,-249.24919158361013,-249.24919158361013,468.8798116865135,468.8798116865135,0.03275,6.0,-69.33895,1,2,3,4,5,6 +2875.0,73.8036,1419.4819,100,-248.47286717721084,-248.47286717721084,465.35858102065185,465.35858102065185,0.0,6.0,-68.8767,1,2,3,4,5,6 +2875.5,73.2251,1408.3431500000002,100,-247.7178634921632,-247.7178634921632,461.71092780156164,461.71092780156164,0.0,6.0,-68.37545,1,2,3,4,5,6 +2876.0,72.6466,1397.2044,100,-246.95083530406103,-246.95083530406103,458.0632745824714,458.0632745824714,0.0,6.0,-67.8742,1,2,3,4,5,6 +2876.5,72.05635000000001,1385.84015,100,-246.32518957732387,-246.32518957732387,454.34153333343426,454.34153333343426,0.0,6.0,-67.3628,1,2,3,4,5,6 +2877.0,71.4661,1374.4759,100,-245.68920923346874,-245.68920923346874,450.619792084397,450.619792084397,0.0,6.0,-66.8514,1,2,3,4,5,6 +2877.5,70.87440000000001,1363.0884,100,-245.17111437980427,-245.17111437980427,446.8889080571962,446.8889080571962,0.0,6.0,-66.33895,1,2,3,4,5,6 +2878.0,70.2827,1351.7009,100,-244.64429599318183,-244.64429599318183,443.1580240299953,443.1580240299953,0.0,6.0,-65.8265,1,2,3,4,5,6 +2878.5,69.69545,1340.40555,100,-244.1782786681197,-244.1782786681197,439.4551988737106,439.4551988737106,0.0,6.0,-65.31825,1,2,3,4,5,6 +2879.0,69.1082,1329.1102,100,-243.7043413372075,-243.7043413372075,435.75237371742577,435.75237371742577,0.0,6.0,-64.81,1,2,3,4,5,6 +2879.5,68.5258,1317.8327,100,-243.21391078980471,-243.21391078980471,432.08012957775753,432.08012957775753,0.0,6.0,-64.30250000000001,1,2,3,4,5,6 +2880.0,67.9434,1306.5552,100,-242.71507245736896,-242.71507245736896,428.40788543808907,428.40788543808907,0.0,6.0,-63.795,1,2,3,4,5,6 +2880.5,67.22704999999999,1292.8627000000001,100,-559.8987610939347,-559.8987610939347,423.89103775702546,423.89103775702546,0.0,6.0,-63.17885,1,2,3,4,5,6 +2881.0,66.5107,1279.1702,100,-883.9148702389241,-883.9148702389241,419.37419007596196,419.37419007596196,0.0,6.0,-62.5627,1,2,3,4,5,6 +2881.5,65.6346,1262.2977,100,-944.13809641561,-944.13809641561,413.8500604558325,413.8500604558325,0.0017,6.0,-61.803349999999995,1,2,3,4,5,6 +2882.0,64.7585,1245.4252,100,-1005.9908096388891,-1005.9908096388891,408.3259308357028,408.3259308357028,0.0034,6.0,-61.044,1,2,3,4,5,6 +2882.5,63.8585,1228.11675,100,-1015.550230274748,-1015.550230274748,402.65110300997907,402.65110300997907,0.0025,6.0,-60.231700000000004,1,2,3,4,5,6 +2883.0,62.9585,1210.8083,100,-1025.3829572496168,-1025.3829572496168,396.97627518425537,396.97627518425537,0.0016,6.0,-59.4194,1,2,3,4,5,6 +2883.5,62.0576,1193.4911,100,-1042.6486189121076,-1042.6486189121076,391.29577253070585,391.29577253070585,0.0008500000000000001,6.0,-58.5662,1,2,3,4,5,6 +2884.0,61.1567,1176.1739,100,-1060.422961866811,-1060.422961866811,385.6152698771563,385.6152698771563,0.0001,6.0,-57.713,1,2,3,4,5,6 +2884.5,60.203450000000004,1158.0480499999999,100,-1195.683626004822,-1195.683626004822,379.60468140507726,379.60468140507726,5e-05,6.0,-56.8176,1,2,3,4,5,6 +2885.0,59.2502,1139.9222,100,-1335.2965869482298,-1335.2965869482298,373.59409293299814,373.59409293299814,0.0,6.0,-55.9222,1,2,3,4,5,6 +2885.5,58.14275,1118.6695,100,-1586.8182824857788,-1586.8182824857788,366.611217293445,366.611217293445,0.0,6.0,-54.87235,1,2,3,4,5,6 +2886.0,57.0353,1097.4168,100,-1848.107532563167,-1848.107532563167,359.62834165389194,359.62834165389194,0.0,6.0,-53.8225,1,2,3,4,5,6 +2886.5,55.70035,1071.7919,100,-2146.907486577733,-2146.907486577733,351.2109956472809,351.2109956472809,0.0009,6.0,-52.5566,1,2,3,4,5,6 +2887.0,54.3654,1046.167,100,-2460.381589908287,-2460.381589908287,342.7936496406699,342.7936496406699,0.0018,6.0,-51.2907,1,2,3,4,5,6 +2887.5,52.79405,1015.74585,100,-2729.16941270844,-2729.16941270844,332.88571552516873,332.88571552516873,2.0890999999999997,6.0,-49.9675,1,2,3,4,5,6 +2888.0,51.2227,985.3247,100,-3014.4483515706906,-3014.4483515706906,322.97778140966756,322.97778140966756,4.1764,6.0,-48.6443,1,2,3,4,5,6 +2888.5,49.5266,952.5932,100,-3057.8704627210423,-3057.8704627210423,312.2832531038786,312.2832531038786,3.85265,6.0,-47.6201,1,2,3,4,5,6 +2889.0,47.8305,919.8617,100,-3104.3721253175277,-3104.3721253175277,301.5887247980896,301.5887247980896,3.5289,6.0,-46.5959,1,2,3,4,5,6 +2889.5,46.121449999999996,887.0038,100,-3117.983837346831,-3117.983837346831,290.8125420252527,290.8125420252527,2.49235,6.0,-45.610150000000004,1,2,3,4,5,6 +2890.0,44.4124,854.1459,100,-3132.643144031848,-3132.643144031848,280.03635925241576,280.03635925241576,1.4558,6.0,-44.6244,1,2,3,4,5,6 +2890.5,42.70335,821.2909500000001,100,-3146.632485905672,-3146.632485905672,269.26017647957894,269.26017647957894,0.78045,6.0,-43.52865,1,2,3,4,5,6 +2891.0,40.9943,788.436,100,-3161.7882574894556,-3161.7882574894556,258.48399370674207,258.48399370674207,0.1051,6.0,-42.4329,1,2,3,4,5,6 +2891.5,39.285250000000005,755.58515,100,-3176.264754048911,-3176.264754048911,247.70781093390517,247.70781093390517,0.05255,6.0,-41.147549999999995,1,2,3,4,5,6 +2892.0,37.5762,722.7343,100,-3192.0580977853,-3192.0580977853,236.93162816106826,236.93162816106826,0.0,6.0,-39.8622,1,2,3,4,5,6 +2892.5,35.867149999999995,744.15185,100,-3205.995868559393,-3205.995868559393,226.15544538823133,226.15544538823133,1177.8551,3.0,33.9761,1,2,3,4,5,6 +2893.0,34.1581,765.5694,100,-3221.3283508157656,-3221.3283508157656,215.37926261539448,215.37926261539448,2355.7102,0.0,107.8144,1,2,3,4,5,6 +2893.5,32.44905,920.1285,100,-3234.591605208781,-3234.591605208781,204.60307984255755,204.60307984255755,3176.96325,0.0,134.38935,1,2,3,4,5,6 +2894.0,30.74,1074.6876,100,-3249.3296523747563,-3249.3296523747563,193.82689706972064,193.82689706972064,3998.2163,0.0,160.9643,1,2,3,4,5,6 +2894.5,29.030949999999997,1135.4095,100,-3261.4708571713986,-3261.4708571713986,183.05071429688374,183.05071429688374,2780.6239,2.0,89.1999,1,2,3,4,5,6 +2895.0,27.3219,1196.1314,100,-3275.1309845947753,-3275.1309845947753,172.2745315240469,172.2745315240469,1563.0315,4.0,17.4355,1,2,3,4,5,6 +2895.5,25.61285,1064.47685,100,-3286.4315235126114,-3286.4315235126114,161.49834875121002,161.49834875121002,783.48465,4.0,-14.774599999999996,1,2,3,4,5,6 +2896.0,23.9038,932.8223,100,-3299.3479717032433,-3299.3479717032433,150.7221659783731,150.7221659783731,3.9378,4.0,-46.9847,1,2,3,4,5,6 +2896.5,22.19475,866.37795,100,-3309.5515060994153,-3309.5515060994153,139.9459832055362,139.9459832055362,2.1995500000000003,4.0,-44.88225,1,2,3,4,5,6 +2897.0,20.4857,799.9336,100,-3321.457530570105,-3321.457530570105,129.1698004326993,129.1698004326993,0.4613,4.0,-42.7798,1,2,3,4,5,6 +2897.5,18.77665,754.1348,100,-3326.8437762859726,-3326.8437762859726,118.39361765986241,118.39361765986241,590.38575,2.0,-0.543600000000005,1,2,3,4,5,6 +2898.0,17.0676,708.336,100,-3333.308716515503,-3333.308716515503,107.61743488702552,107.61743488702552,1180.3102,0.0,41.6926,1,2,3,4,5,6 +2898.5,15.35855,780.8552,100,-3334.4223325118583,-3334.4223325118583,96.84125211418862,96.84125211418862,1836.42785,0.0,76.55735,1,2,3,4,5,6 +2899.0,13.6495,853.3744,100,-3335.8148195904605,-3335.8148195904605,86.06506934135174,86.06506934135174,2492.5455,0.0,111.4221,1,2,3,4,5,6 +2899.5,11.9404,904.79765,100,-3338.879384442733,-3338.879384442733,75.2885713003023,75.2885713003023,1994.5549500000002,0.0,75.70385,1,2,3,4,5,6 +2900.0,10.2313,956.2209,100,-3342.967797249617,-3342.967797249617,64.51207325925286,64.51207325925286,1496.5644,0.0,39.9856,1,2,3,4,5,6 +2900.5,8.53595,844.86145,100,-3235.2276492950405,-3235.2276492950405,53.822273976651985,53.822273976651985,905.00355,0.0,10.730649999999997,1,2,3,4,5,6 +2901.0,6.8406,733.502,100,-3074.0836303832994,-3074.0836303832994,43.13247469405112,43.13247469405112,313.4427,0.0,-18.5243,1,2,3,4,5,6 +2901.5,5.20085,680.2580499999999,100,-2910.001689531519,-2910.001689531519,32.79325366379495,32.79325366379495,760.18235,0.0,14.680600000000002,1,2,3,4,5,6 +2902.0,3.5611,627.0141,100,-2594.81286456432,-2594.81286456432,22.454032633538784,22.454032633538784,1206.922,0.0,47.8855,1,2,3,4,5,6 +2902.5,2.2714,621.806,100,-3283.8427507264246,-3283.8427507264246,14.322004359276628,14.322004359276628,1233.9395,0.0,50.4861,1,2,3,4,5,6 +2903.0,0.9817,616.5979,100,-5783.286906386879,-5783.286906386879,6.18997608501447,6.18997608501447,1260.957,0.0,53.0867,1,2,3,4,5,6 +2903.5,0.49085,608.29895,100,-5783.286906386879,-5783.286906386879,3.094988042507235,3.094988042507235,1304.0089,0.0,57.2307,1,2,3,4,5,6 +2904.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2904.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2905.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2905.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2906.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2906.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2907.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2907.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2908.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2908.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2909.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2909.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2910.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2910.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2911.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2911.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2912.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2912.5,0.347,608.54415,100,3454.7035331412108,3454.7035331412108,2.187961395029052,2.187961395029052,2726.6519,0.0,144.10015,1,2,3,4,5,6 +2913.0,0.694,617.0883,100,3454.7035331412108,3454.7035331412108,4.375922790058104,4.375922790058104,4106.243,0.0,226.8256,1,2,3,4,5,6 +2913.5,1.8872,664.4838,100,4203.301613501484,4203.301613501484,11.89948341411766,11.89948341411766,6564.08735,0.5,359.8719,1,2,3,4,5,6 +2914.0,3.0804,711.8793,100,4371.95732956759,4371.95732956759,19.423044038177213,19.423044038177213,9021.9317,1.0,492.9182,1,2,3,4,5,6 +2914.5,4.79915,923.7914499999999,100,4616.341111446819,4616.341111446819,30.260388844246908,30.260388844246908,12316.223999999998,1.0,567.95095,1,2,3,4,5,6 +2915.0,6.5179,1135.7036,100,4731.838403780359,4731.838403780359,41.097733650316606,41.097733650316606,15610.5163,1.0,642.9837,1,2,3,4,5,6 +2915.5,8.22865,1451.6761000000001,100,4648.719823057245,4648.719823057245,51.88463554237986,51.88463554237986,18877.9582,1.0,626.9259,1,2,3,4,5,6 +2916.0,9.9394,1767.6486,100,4594.213655955088,4594.213655955088,62.671537434443124,62.671537434443124,22145.4001,1.0,610.8681,1,2,3,4,5,6 +2916.5,10.58115,1835.16925,100,2010.9259602217153,2010.9259602217153,66.7180049423967,66.7180049423967,11074.056999999999,0.5,262.88455,1,2,3,4,5,6 +2917.0,11.2229,1902.6899,100,-276.92563989699636,-276.92563989699636,70.76447245035028,70.76447245035028,2.7139,0.0,-85.099,1,2,3,4,5,6 +2917.5,10.85985,1765.0642,100,-209.05647619442254,-209.05647619442254,68.47530995909584,68.47530995909584,91.06205,0.0,-77.18315000000001,1,2,3,4,5,6 +2918.0,10.4968,1627.4385,100,-136.49256744912736,-136.49256744912736,66.18614746784138,66.18614746784138,179.4102,0.0,-69.2673,1,2,3,4,5,6 +2918.5,11.1479,1463.654,100,2324.785435373479,2324.785435373479,70.29157013153998,70.29157013153998,7307.368750000001,1.0,238.21885,1,2,3,4,5,6 +2919.0,11.799,1299.8695,100,4514.423789473684,4514.423789473684,74.39699279523859,74.39699279523859,14435.3273,2.0,545.705,1,2,3,4,5,6 +2919.5,13.008199999999999,1378.72755,100,3405.3441231684637,3405.3441231684637,82.021439247311,82.021439247311,13754.524949999999,2.0,494.38585,1,2,3,4,5,6 +2920.0,14.2174,1457.5856,100,2484.9204885562767,2484.9204885562767,89.64588569938343,89.64588569938343,13073.7226,2.0,443.0667,1,2,3,4,5,6 +2920.5,14.608699999999999,1479.63895,100,1538.6085113665147,1538.6085113665147,92.11317473072309,92.11317473072309,8946.35065,2.0,291.35295,1,2,3,4,5,6 +2921.0,15.0,1501.6923,100,641.6687843999998,641.6687843999998,94.5804637620628,94.5804637620628,4818.9787,2.0,139.6392,1,2,3,4,5,6 +2921.5,15.0,1501.6923,100,639.6282611999999,639.6282611999999,94.5804637620628,94.5804637620628,4811.7819,2.0,139.37695,1,2,3,4,5,6 +2922.0,15.0,1501.6923,100,637.587738,637.587738,94.5804637620628,94.5804637620628,4804.5851,2.0,139.1147,1,2,3,4,5,6 +2922.5,15.0,1501.6923,100,635.8755167999999,635.8755167999999,94.5804637620628,94.5804637620628,4798.5484,2.0,138.8947,1,2,3,4,5,6 +2923.0,15.0,1501.6923,100,634.1632956,634.1632956,94.5804637620628,94.5804637620628,4792.5117,2.0,138.6747,1,2,3,4,5,6 +2923.5,15.0,1501.6923,100,632.8728161999999,632.8728161999999,94.5804637620628,94.5804637620628,4787.95775,2.0,138.50875000000002,1,2,3,4,5,6 +2924.0,15.0,1501.6923,100,631.5823367999999,631.5823367999999,94.5804637620628,94.5804637620628,4783.4038,2.0,138.3428,1,2,3,4,5,6 +2924.5,15.0,1501.6923,100,630.3019589999999,630.3019589999999,94.5804637620628,94.5804637620628,4778.89105,2.0,138.17835000000002,1,2,3,4,5,6 +2925.0,15.0,1501.6923,100,629.0215812,629.0215812,94.5804637620628,94.5804637620628,4774.3783,2.0,138.0139,1,2,3,4,5,6 +2925.5,15.0,1501.6923,100,627.7462542,627.7462542,94.5804637620628,94.5804637620628,4769.88125,2.0,137.85005,1,2,3,4,5,6 +2926.0,15.0,1501.6923,100,626.4709271999999,626.4709271999999,94.5804637620628,94.5804637620628,4765.3842,2.0,137.6862,1,2,3,4,5,6 +2926.5,15.0,1501.6923,100,625.1753969999999,625.1753969999999,94.5804637620628,94.5804637620628,4760.81425,2.0,137.51965,1,2,3,4,5,6 +2927.0,15.0,1501.6923,100,623.8798668,623.8798668,94.5804637620628,94.5804637620628,4756.2443,2.0,137.3531,1,2,3,4,5,6 +2927.5,15.0,1501.6923,100,622.2156281999999,622.2156281999999,94.5804637620628,94.5804637620628,4750.370150000001,2.0,137.13905,1,2,3,4,5,6 +2928.0,15.0,1501.6923,100,620.5513895999999,620.5513895999999,94.5804637620628,94.5804637620628,4744.496,2.0,136.925,1,2,3,4,5,6 +2928.5,15.0,1501.6923,100,618.6320856,618.6320856,94.5804637620628,94.5804637620628,4737.72925,2.0,136.6784,1,2,3,4,5,6 +2929.0,15.0,1501.6923,100,616.7127816,616.7127816,94.5804637620628,94.5804637620628,4730.9625,2.0,136.4318,1,2,3,4,5,6 +2929.5,15.0,1501.6923,100,614.7833759999999,614.7833759999999,94.5804637620628,94.5804637620628,4724.15495,2.0,136.18375,1,2,3,4,5,6 +2930.0,15.0,1501.6923,100,612.8539704,612.8539704,94.5804637620628,94.5804637620628,4717.3474,2.0,135.9357,1,2,3,4,5,6 +2930.5,15.0,1501.6923,100,610.9296155999999,610.9296155999999,94.5804637620628,94.5804637620628,4710.55745,2.0,135.6883,1,2,3,4,5,6 +2931.0,15.0,1501.6923,100,609.0052608,609.0052608,94.5804637620628,94.5804637620628,4703.7675,2.0,135.4409,1,2,3,4,5,6 +2931.5,15.0,1501.6923,100,607.1642441999999,607.1642441999999,94.5804637620628,94.5804637620628,4697.2782,2.0,135.2044,1,2,3,4,5,6 +2932.0,15.0,1501.6923,100,605.3232276,605.3232276,94.5804637620628,94.5804637620628,4690.7889,2.0,134.9679,1,2,3,4,5,6 +2932.5,15.0,1501.6923,100,604.1489165999999,604.1489165999999,94.5804637620628,94.5804637620628,4686.6447,2.0,134.81689999999998,1,2,3,4,5,6 +2933.0,15.0,1501.6923,100,602.9746055999999,602.9746055999999,94.5804637620628,94.5804637620628,4682.5005,2.0,134.6659,1,2,3,4,5,6 +2933.5,15.0,1501.6923,100,602.0351567999999,602.0351567999999,94.5804637620628,94.5804637620628,4679.182049999999,2.0,134.54495,1,2,3,4,5,6 +2934.0,15.0,1501.6923,100,601.095708,601.095708,94.5804637620628,94.5804637620628,4675.8636,2.0,134.424,1,2,3,4,5,6 +2934.5,15.0,1501.6923,100,600.1537337999998,600.1537337999998,94.5804637620628,94.5804637620628,4672.5449499999995,2.0,134.3031,1,2,3,4,5,6 +2935.0,15.0,1501.6923,100,599.2117595999998,599.2117595999998,94.5804637620628,94.5804637620628,4669.2263,2.0,134.1822,1,2,3,4,5,6 +2935.5,15.0,1501.6923,100,598.2773616,598.2773616,94.5804637620628,94.5804637620628,4665.93025,2.0,134.06205,1,2,3,4,5,6 +2936.0,15.0,1501.6923,100,597.3429636,597.3429636,94.5804637620628,94.5804637620628,4662.6342,2.0,133.9419,1,2,3,4,5,6 +2936.5,14.237549999999999,1430.6179499999998,100,-1081.7950807547647,-1081.7950807547647,89.77293878903713,89.77293878903713,2687.3111000000004,2.0,49.6602,1,2,3,4,5,6 +2937.0,13.4751,1359.5436,100,-2950.9515742369263,-2950.9515742369263,84.96541381601148,84.96541381601148,711.988,2.0,-34.6215,1,2,3,4,5,6 +2937.5,11.8126,1187.4336,100,-3248.3680640163902,-3248.3680640163902,74.48274574904951,74.48274574904951,356.15770000000003,2.0,-42.59415,1,2,3,4,5,6 +2938.0,10.1501,1015.3236,100,-3643.2131336637076,-3643.2131336637076,64.00007768208756,64.00007768208756,0.3274,2.0,-50.5668,1,2,3,4,5,6 +2938.5,8.379,862.9592500000001,100,-3290.9678216971006,-3290.9678216971006,52.832647057488266,52.832647057488266,360.31095,1.0,-20.85175,1,2,3,4,5,6 +2939.0,6.6079,710.5949,100,-2749.8995335885834,-2749.8995335885834,41.66521643288898,41.66521643288898,720.2945,0.0,8.8633,1,2,3,4,5,6 +2939.5,4.8804,683.8304,100,-3119.725909761495,-3119.725909761495,30.772699689624748,30.772699689624748,904.1335,0.0,22.222749999999998,1,2,3,4,5,6 +2940.0,3.1529,657.0659,100,-3894.8141495131467,-3894.8141495131467,19.880182946360517,19.880182946360517,1087.9725,0.0,35.5822,1,2,3,4,5,6 +2940.5,1.9364999999999999,640.5288,100,-4503.662602633617,-4503.662602633617,12.210337871682304,12.210337871682304,1163.05365,0.0,43.0566,1,2,3,4,5,6 +2941.0,0.7201,623.9917,100,-7169.456642133038,-7169.456642133038,4.540492797004093,4.540492797004093,1238.1348,0.0,50.531,1,2,3,4,5,6 +2941.5,0.36005,611.99585,100,-7169.456642133038,-7169.456642133038,2.2702463985020467,2.2702463985020467,1292.5978,0.0,55.95285,1,2,3,4,5,6 +2942.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2942.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2943.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2943.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2944.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2944.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2945.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2945.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2946.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2946.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2947.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2947.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2948.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2948.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2949.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2949.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2950.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +2950.5,0.5216,612.84295,100,3412.558107745399,3412.558107745399,3.288877993219463,3.288877993219463,3396.2941499999997,0.5,184.41345,1,2,3,4,5,6 +2951.0,1.0432,625.6859,100,3412.558107745399,3412.558107745399,6.577755986438926,6.577755986438926,5445.5275,1.0,307.4522,1,2,3,4,5,6 +2951.5,2.3857,690.9060999999999,100,4135.677268726161,4135.677268726161,15.042707493143544,15.042707493143544,7532.4354,1.0,407.03505,1,2,3,4,5,6 +2952.0,3.7282,756.1263,100,4338.015638109544,4338.015638109544,23.507658999848164,23.507658999848164,9619.3433,1.0,506.6179,1,2,3,4,5,6 +2952.5,5.44905,1015.5353,100,4686.6757915599965,4686.6757915599965,34.358245070844546,34.358245070844546,13459.7649,1.0,580.0661,1,2,3,4,5,6 +2953.0,7.1699,1274.9443,100,4867.9718743636595,4867.9718743636595,45.20883114184093,45.20883114184093,17300.1865,1.0,653.5143,1,2,3,4,5,6 +2953.5,8.6959,1561.3521500000002,100,4083.7372481284283,4083.7372481284283,54.83081698856812,54.83081698856812,17635.68905,1.0,558.84275,1,2,3,4,5,6 +2954.0,10.2219,1847.76,100,3533.6551844569008,3533.6551844569008,64.45280283529532,64.45280283529532,17971.1916,1.0,464.1712,1,2,3,4,5,6 +2954.5,10.663,1848.4962500000001,100,1556.527909781487,1556.527909781487,67.23409900632504,67.23409900632504,8986.558299999999,0.5,190.29205000000002,1,2,3,4,5,6 +2955.0,11.1041,1849.2325,100,-263.52029664718435,-263.52029664718435,70.01539517735476,70.01539517735476,1.925,0.0,-83.5871,1,2,3,4,5,6 +2955.5,10.971350000000001,1703.7406500000002,100,299.9861278694053,299.9861278694053,69.17835807306051,69.17835807306051,984.7591,0.0,-37.16015,1,2,3,4,5,6 +2956.0,10.8386,1558.2488,100,877.2960838115625,877.2960838115625,68.34132096876624,68.34132096876624,1967.5932,0.0,9.2668,1,2,3,4,5,6 +2956.5,11.7121,1438.7012,100,2816.9936665499786,2816.9936665499786,73.8490566418437,73.8490566418437,9697.2333,1.0,329.17615,1,2,3,4,5,6 +2957.0,12.5856,1319.1536,100,4487.44292763158,4487.44292763158,79.35679231492115,79.35679231492115,17426.8734,2.0,649.0855,1,2,3,4,5,6 +2957.5,14.307,1461.30005,100,4703.339062696582,4703.339062696582,90.21084633625547,90.21084633625547,22251.36305,2.0,742.8071500000001,1,2,3,4,5,6 +2958.0,16.0284,1603.4465,100,4872.862059219884,4872.862059219884,101.06490035758982,101.06490035758982,27075.8527,2.0,836.5288,1,2,3,4,5,6 +2958.5,17.8077,1782.37915,100,4831.451105139911,4831.451105139911,112.28403496904572,112.28403496904572,30066.74495,2.0,829.0459000000001,1,2,3,4,5,6 +2959.0,19.587,1961.3118,100,4797.563764741921,4797.563764741921,123.50316958050158,123.50316958050158,33057.6372,2.0,821.563,1,2,3,4,5,6 +2959.5,20.83545,2093.9764,100,3541.4670175590163,3541.4670175590163,131.37510157941807,131.37510157941807,26671.050199999998,2.0,605.4954,1,2,3,4,5,6 +2960.0,22.0839,2226.641,100,2427.389930311222,2427.389930311222,139.24703357833457,139.24703357833457,20284.4632,2.0,389.4278,1,2,3,4,5,6 +2960.5,22.26265,2132.3263500000003,100,1108.3723002427832,1108.3723002427832,140.37411743816583,140.37411743816583,10143.025099999999,1.0,149.3903,1,2,3,4,5,6 +2961.0,22.4414,2038.0117,100,-189.63287949949643,-189.63287949949643,141.50120129799706,141.50120129799706,1.587,0.0,-90.6472,1,2,3,4,5,6 +2961.5,22.4702,1877.80665,100,783.1856542887913,783.1856542887913,141.6827957884202,141.6827957884202,4372.6121,0.0,67.77175,1,2,3,4,5,6 +2962.0,22.499,1717.6016,100,1753.513661940531,1753.513661940531,141.86439027884336,141.86439027884336,8743.6372,0.0,226.1907,1,2,3,4,5,6 +2962.5,23.3309,1595.9687,100,2728.0882755915973,2728.0882755915973,147.10982279908737,147.10982279908737,17427.5607,1.5,554.8295,1,2,3,4,5,6 +2963.0,24.1628,1474.3358,100,3635.5557144867316,3635.5557144867316,152.35525531933138,152.35525531933138,26111.4842,3.0,883.4683,1,2,3,4,5,6 +2963.5,25.39385,1540.0444499999999,100,3667.363109099251,3667.363109099251,160.11747398028388,160.11747398028388,28125.19445,3.0,908.09375,1,2,3,4,5,6 +2964.0,26.6249,1605.7531,100,3696.2291598466104,3696.2291598466104,167.87969264123635,167.87969264123635,30138.9047,3.0,932.7192,1,2,3,4,5,6 +2964.5,27.8336,1678.94025,100,3643.656367412049,3643.656367412049,175.5009864111834,175.5009864111834,31158.413099999998,3.0,919.7479000000001,1,2,3,4,5,6 +2965.0,29.0423,1752.1274,100,3595.459587498235,3595.459587498235,183.1222801811304,183.1222801811304,32177.9215,3.0,906.7766,1,2,3,4,5,6 +2965.5,30.17955,1820.9866000000002,100,3505.661428947749,3505.661428947749,190.29305567535746,190.29305567535746,32774.26355,3.0,885.1493,1,2,3,4,5,6 +2966.0,31.3168,1889.8458,100,3422.3851982961223,3422.3851982961223,197.46383116958455,197.46383116958455,33370.6056,3.0,863.522,1,2,3,4,5,6 +2966.5,32.36875,1953.5819999999999,100,3332.2125879436185,3332.2125879436185,204.09675909321803,204.09675909321803,33723.04285,3.0,841.92445,1,2,3,4,5,6 +2967.0,33.4207,2017.3182,100,3247.716524010569,3247.716524010569,210.72968701685141,210.72968701685141,34075.4801,3.0,820.3269,1,2,3,4,5,6 +2967.5,34.39375,2075.9539,100,3165.964428769762,3165.964428769762,216.86512170109643,216.86512170109643,34407.5166,3.0,800.8931,1,2,3,4,5,6 +2968.0,35.3668,2134.5896,100,3088.7108392616806,3088.7108392616806,223.00055638534147,223.00055638534147,34739.5531,3.0,781.4593,1,2,3,4,5,6 +2968.5,36.2622,2188.66575,100,2993.10272614458,2993.10272614458,228.64637953551156,228.64637953551156,34944.15755,3.0,758.86875,1,2,3,4,5,6 +2969.0,37.1576,2242.7419,100,2902.102418939867,2902.102418939867,234.29220268568162,234.29220268568162,35148.762,3.0,736.2782,1,2,3,4,5,6 +2969.5,37.6405,2258.80845,100,2013.0998270214263,2013.0998270214263,237.33706308239496,237.33706308239496,25406.691400000003,1.5,497.51495,1,2,3,4,5,6 +2970.0,38.1234,2274.875,100,1146.6188019956248,1146.6188019956248,240.3819234791083,240.3819234791083,15664.6208,0.0,258.7517,1,2,3,4,5,6 +2970.5,37.965149999999994,2146.4088,100,500.70771273128133,500.70771273128133,239.3840995864185,239.3840995864185,7833.4802500000005,0.0,84.51895000000002,1,2,3,4,5,6 +2971.0,37.8069,2017.9426,100,-150.61061330074668,-150.61061330074668,238.38627569372875,238.38627569372875,2.3397,0.0,-89.7138,1,2,3,4,5,6 +2971.5,37.7161,1859.28845,100,623.8888541763332,623.8888541763332,237.81374861975576,237.81374861975576,6368.696550000001,2.0,133.28654999999998,1,2,3,4,5,6 +2972.0,37.6253,1700.6343,100,1402.1264739948917,1402.1264739948917,237.24122154578276,237.24122154578276,12735.0534,4.0,356.2869,1,2,3,4,5,6 +2972.5,38.09025,1601.8138,100,1918.9181314903421,1918.9181314903421,240.1729006541941,240.1729006541941,20226.1452,4.0,637.43985,1,2,3,4,5,6 +2973.0,38.5552,1502.9933,100,2423.2454634913065,2423.2454634913065,243.10457976260554,243.10457976260554,27717.237,4.0,918.5928,1,2,3,4,5,6 +2973.5,39.2601,1530.6488,100,2464.4383758319514,2464.4383758319514,247.54923102299742,247.54923102299742,28670.84225,4.0,932.82215,1,2,3,4,5,6 +2974.0,39.965,1558.3043,100,2504.1781725009378,2504.1781725009378,251.9938822833893,251.9938822833893,29624.4475,4.0,947.0515,1,2,3,4,5,6 +2974.5,40.69465,1586.8026,100,2504.0417399338735,2504.0417399338735,256.5945913089886,256.5945913089886,30189.25895,4.0,946.8868500000001,1,2,3,4,5,6 +2975.0,41.4243,1615.3009,100,2503.910113628956,2503.910113628956,261.1953003345879,261.1953003345879,30754.0704,4.0,946.7222,1,2,3,4,5,6 +2975.5,42.1531,1643.7377999999999,100,2483.5545334032367,2483.5545334032367,265.79064980057393,265.79064980057393,31086.36545,4.0,939.49245,1,2,3,4,5,6 +2976.0,42.8819,1672.1747,100,2463.8908603396767,2463.8908603396767,270.3859992665601,270.3859992665601,31418.6605,4.0,932.2627,1,2,3,4,5,6 +2976.5,43.598200000000006,1700.104,100,2441.0055831433406,2441.0055831433406,274.9025316794111,274.9025316794111,31709.1861,4.0,924.12415,1,2,3,4,5,6 +2977.0,44.3145,1728.0333,100,2418.8601416240735,2418.8601416240735,279.41906409226215,279.41906409226215,31999.7117,4.0,915.9856,1,2,3,4,5,6 +2977.5,45.01355,1755.3008,100,2396.082619500128,2396.082619500128,283.82682897178677,283.82682897178677,32277.5762,4.0,907.8367000000001,1,2,3,4,5,6 +2978.0,45.7126,1782.5683,100,2374.001737989088,2374.001737989088,288.23459385131144,288.23459385131144,32555.4407,4.0,899.6878,1,2,3,4,5,6 +2978.5,46.39,1808.98175,100,2350.036311101531,2350.036311101531,292.5058475948062,292.5058475948062,32794.07335,4.0,891.09395,1,2,3,4,5,6 +2979.0,47.0674,1835.3952,100,2326.760711150393,2326.760711150393,296.7771013383009,296.7771013383009,33032.706,4.0,882.5001,1,2,3,4,5,6 +2979.5,47.7204,1860.85295,100,2302.456466165413,2302.456466165413,300.8945041940761,300.8945041940761,33204.64915,4.0,873.78775,1,2,3,4,5,6 +2980.0,48.3734,1886.3107,100,2278.8083946962593,2278.8083946962593,305.0119070498512,305.0119070498512,33376.5923,4.0,865.0754,1,2,3,4,5,6 +2980.5,49.00105,1910.7845,100,2255.418879024021,2255.418879024021,308.96946892186844,308.96946892186844,33505.893249999994,4.0,856.67035,1,2,3,4,5,6 +2981.0,49.6287,1935.2583,100,2232.6209738316743,2232.6209738316743,312.9270307938857,312.9270307938857,33635.1942,4.0,848.2653,1,2,3,4,5,6 +2981.5,50.22975,1958.69805,100,2210.308150090335,2210.308150090335,316.7168699768316,316.7168699768316,33758.73675,4.0,840.20875,1,2,3,4,5,6 +2982.0,50.8308,1982.1378,100,2188.523003375906,2188.523003375906,320.5067091597774,320.5067091597774,33882.2793,4.0,832.1522,1,2,3,4,5,6 +2982.5,51.403000000000006,2004.4483500000001,100,2167.950492811703,2167.950492811703,324.11463858408763,324.11463858408763,34005.28575,4.0,824.6519499999999,1,2,3,4,5,6 +2983.0,51.9752,2026.7589,100,2147.830951761609,2147.830951761609,327.72256800839773,327.72256800839773,34128.2922,4.0,817.1517,1,2,3,4,5,6 +2983.5,52.5166,2047.8697000000002,100,2128.845175430245,2128.845175430245,331.13629221378307,331.13629221378307,34248.1648,4.0,810.18705,1,2,3,4,5,6 +2984.0,53.058,2068.9805,100,2110.2468580798372,2110.2468580798372,334.55001641916846,334.55001641916846,34368.0374,4.0,803.2224,1,2,3,4,5,6 +2984.5,53.5686,2088.8829,100,2092.3862961324357,2092.3862961324357,337.7695354056292,337.7695354056292,34481.052800000005,4.0,796.6565,1,2,3,4,5,6 +2985.0,54.0792,2108.7853,100,2074.863002596192,2074.863002596192,340.98905439208977,340.98905439208977,34594.0682,4.0,790.0906,1,2,3,4,5,6 +2985.5,54.5603,2127.53675,100,2058.016340397688,2058.016340397688,344.0225651331516,344.0225651331516,34700.539300000004,4.0,783.9042,1,2,3,4,5,6 +2986.0,55.0414,2146.2882,100,2041.4641812163204,2041.4641812163204,347.05607587421355,347.05607587421355,34807.0104,4.0,777.7178,1,2,3,4,5,6 +2986.5,55.4955,2163.9862000000003,100,2025.393735221775,2025.393735221775,349.91934178050366,349.91934178050366,34916.6478,4.0,771.8423,1,2,3,4,5,6 +2987.0,55.9496,2181.6842,100,2009.584152201267,2009.584152201267,352.7826076867938,352.7826076867938,35026.2852,4.0,765.9668,1,2,3,4,5,6 +2987.5,56.37775,2198.3888500000003,100,1989.7402975819364,1989.7402975819364,355.4822493907756,355.4822493907756,35102.3881,4.0,758.79495,1,2,3,4,5,6 +2988.0,56.8059,2215.0935,100,1970.195571974038,1970.195571974038,358.1818910947574,358.1818910947574,35178.491,4.0,751.6231,1,2,3,4,5,6 +2988.5,57.2071,2230.72505,100,1945.9935028868797,1945.9935028868797,360.7116032321801,360.7116032321801,35170.01865,4.0,742.9476,1,2,3,4,5,6 +2989.0,57.6083,2246.3566,100,1922.1285334925694,1922.1285334925694,363.2413153696028,363.2413153696028,35161.5463,4.0,734.2721,1,2,3,4,5,6 +2989.5,57.9839,2260.9907000000003,100,1899.3809446242835,1899.3809446242835,365.60961018220485,365.60961018220485,35128.0401,4.0,726.1501499999999,1,2,3,4,5,6 +2990.0,58.3595,2275.6248,100,1876.9261613619037,1876.9261613619037,367.9779049948068,367.9779049948068,35094.5339,4.0,718.0282,1,2,3,4,5,6 +2990.5,58.71355,2289.42015,100,1855.3625531755447,1855.3625531755447,370.21031920780416,370.21031920780416,34986.07905,4.0,710.3718,1,2,3,4,5,6 +2991.0,59.0676,2303.2155,100,1834.0574486520527,1834.0574486520527,372.44273342080135,372.44273342080135,34877.6242,4.0,702.7154,1,2,3,4,5,6 +2991.5,59.404849999999996,2316.3508,100,1813.3423186322334,1813.3423186322334,374.56921751438495,374.56921751438495,34763.7577,4.0,695.4253000000001,1,2,3,4,5,6 +2992.0,59.7421,2329.4861,100,1792.8610664841044,1792.8610664841044,376.6957016079687,376.6957016079687,34649.8912,4.0,688.1352,1,2,3,4,5,6 +2992.5,59.807950000000005,2300.693,100,1156.7306936619632,1156.7306936619632,377.11090984388426,377.11090984388426,23184.37455,2.0,426.43525,1,2,3,4,5,6 +2993.0,59.8738,2271.8999,100,521.999570095768,521.999570095768,377.52611807979963,377.52611807979963,11718.8579,0.0,164.7353,1,2,3,4,5,6 +2993.5,59.55265,2135.63845,100,204.86316335209264,204.86316335209264,375.5011503506539,375.5011503506539,5860.71975,0.0,37.8741,1,2,3,4,5,6 +2994.0,59.2315,1999.377,100,-115.71223639448606,-115.71223639448606,373.4761826215081,373.4761826215081,2.5816,0.0,-88.9871,1,2,3,4,5,6 +2994.5,59.0644,1850.37615,100,499.8361021021122,499.8361021021122,372.4225562551987,372.4225562551987,8440.552099999999,2.5,197.72499999999997,1,2,3,4,5,6 +2995.0,58.8973,1701.3753,100,1118.877236613563,1118.877236613563,371.36892988888934,371.36892988888934,16878.5226,5.0,484.4371,1,2,3,4,5,6 +2995.5,59.1471,1633.00595,100,1422.261442200886,1422.261442200886,372.9440098787402,372.9440098787402,23120.62635,5.0,709.0279,1,2,3,4,5,6 +2996.0,59.3969,1564.6366,100,1723.0938184989454,1723.0938184989454,374.51908986859115,374.51908986859115,29362.7301,5.0,933.6187,1,2,3,4,5,6 +2996.5,59.8059,1575.47585,100,1741.800504732811,1741.800504732811,377.09798384717004,377.09798384717004,29862.46005,5.0,943.05865,1,2,3,4,5,6 +2997.0,60.2149,1586.3151,100,1760.253066666224,1760.253066666224,379.67687782574893,379.67687782574893,30362.19,5.0,952.4986,1,2,3,4,5,6 +2997.5,60.652950000000004,1597.874,100,1759.0393765843214,1759.0393765843214,382.4389426358137,382.4389426358137,30577.95695,5.0,951.9998499999999,1,2,3,4,5,6 +2998.0,61.091,1609.4329,100,1757.8430919120656,1757.8430919120656,385.2010074458786,385.2010074458786,30793.7239,5.0,951.5011,1,2,3,4,5,6 +2998.5,61.543099999999995,1621.36105,100,1751.1786088123608,1751.1786088123608,388.0516626236671,388.0516626236671,30925.0012,5.0,948.21615,1,2,3,4,5,6 +2999.0,61.9952,1633.2892,100,1744.6113271995255,1744.6113271995255,390.9023178014556,390.9023178014556,31056.2785,5.0,944.9312,1,2,3,4,5,6 +2999.5,62.450649999999996,1645.3054,100,1737.532735656074,1737.532735656074,393.77409594948443,393.77409594948443,31179.680350000002,5.0,941.3511,1,2,3,4,5,6 +3000.0,62.9061,1657.3216,100,1730.5566443317898,1730.5566443317898,396.64587409751323,396.64587409751323,31303.0822,5.0,937.771,1,2,3,4,5,6 +3000.5,63.35705,1669.2040499999998,100,1723.6280852249276,1723.6280852249276,399.48927810641334,399.48927810641334,31423.6133,5.0,934.2172499999999,1,2,3,4,5,6 +3001.0,63.808,1681.0865,100,1716.7974584691576,1716.7974584691576,402.33268211531345,402.33268211531345,31544.1444,5.0,930.6635,1,2,3,4,5,6 +3001.5,64.25005,1692.73785,100,1710.0389848879493,1710.0389848879493,405.1199683823815,405.1199683823815,31662.3077,5.0,927.1722500000001,1,2,3,4,5,6 +3002.0,64.6921,1704.3892,100,1703.3728744622608,1703.3728744622608,407.90725464944944,407.90725464944944,31780.471,5.0,923.681,1,2,3,4,5,6 +3002.5,65.12145,1715.7144,100,1696.9047845064877,1696.9047845064877,410.61446279053223,410.61446279053223,31895.38875,5.0,920.2813000000001,1,2,3,4,5,6 +3003.0,65.5508,1727.0396,100,1690.5214250016786,1690.5214250016786,413.3216709316149,413.3216709316149,32010.3065,5.0,916.8816,1,2,3,4,5,6 +3003.5,65.96035,1737.84085,100,1684.5285785778879,1684.5285785778879,415.9040328605319,415.9040328605319,32119.95175,5.0,913.6333,1,2,3,4,5,6 +3004.0,66.3699,1748.6421,100,1678.6096924961466,1678.6096924961466,418.4863947894487,418.4863947894487,32229.597,5.0,910.385,1,2,3,4,5,6 +3004.5,66.75225,1758.72035,100,1673.130063436064,1673.130063436064,420.8972508107438,420.8972508107438,32331.39845,5.0,907.3407,1,2,3,4,5,6 +3005.0,67.1346,1768.7986,100,1667.7128503633,1667.7128503633,423.30810683203873,423.30810683203873,32433.1999,5.0,904.2964,1,2,3,4,5,6 +3005.5,67.4862,1778.062,100,1662.7344336175402,1662.7344336175402,425.52507290262133,425.52507290262133,32526.57935,5.0,901.49315,1,2,3,4,5,6 +3006.0,67.8378,1787.3254,100,1657.8076226528574,1657.8076226528574,427.7420389732042,427.7420389732042,32619.9588,5.0,898.6899,1,2,3,4,5,6 +3006.5,68.15815,1795.76405,100,1653.1214678215294,1653.1214678215294,429.7619624109493,429.7619624109493,32701.3608,5.0,896.0385,1,2,3,4,5,6 +3007.0,68.4785,1804.2027,100,1648.4791576918303,1648.4791576918303,431.7818858486944,431.7818858486944,32782.7628,5.0,893.3871,1,2,3,4,5,6 +3007.5,68.76795,1811.8258500000002,100,1643.8916109612103,1643.8916109612103,433.60697353108975,433.60697353108975,32848.9219,5.0,890.7953,1,2,3,4,5,6 +3008.0,69.0574,1819.449,100,1639.34252109115,1639.34252109115,435.432061213485,435.432061213485,32915.081,5.0,888.2035,1,2,3,4,5,6 +3008.5,69.3185,1826.3146000000002,100,1635.1224067601,1635.1224067601,437.07839181937,437.07839181937,32973.0555,5.0,885.8444,1,2,3,4,5,6 +3009.0,69.5796,1833.1802,100,1630.933964696549,1630.933964696549,438.7247224252549,438.7247224252549,33031.03,5.0,883.4853,1,2,3,4,5,6 +3009.5,69.82115,1839.5203999999999,100,1626.7966767089915,1626.7966767089915,440.2477831600367,440.2477831600367,33078.54015,5.0,881.3042,1,2,3,4,5,6 +3010.0,70.0627,1845.8606,100,1622.6879163663405,1622.6879163663405,441.7708438948184,441.7708438948184,33126.0503,5.0,879.1231,1,2,3,4,5,6 +3010.5,70.2978,1852.0223,100,1618.4002502496523,1618.4002502496523,443.25323503018245,443.25323503018245,33170.53905000001,5.0,877.00125,1,2,3,4,5,6 +3011.0,70.5329,1858.184,100,1614.141167398477,1614.141167398477,444.73562616554653,444.73562616554653,33215.0278,5.0,874.8794,1,2,3,4,5,6 +3011.5,70.7764,1864.59815,100,1609.3666024409267,1609.3666024409267,446.2709823606173,446.2709823606173,33257.2289,5.0,872.6686500000001,1,2,3,4,5,6 +3012.0,71.0199,1871.0123,100,1604.6247777876342,1604.6247777876342,447.8063385556882,447.8063385556882,33299.43,5.0,870.4579,1,2,3,4,5,6 +3012.5,71.27815000000001,1877.8142,100,1599.6533669995642,1599.6533669995642,449.4346988734585,449.4346988734585,33335.81115,5.0,868.1134999999999,1,2,3,4,5,6 +3013.0,71.5364,1884.6161,100,1594.7178502971915,1594.7178502971915,451.06305919122855,451.06305919122855,33372.1923,5.0,865.7691,1,2,3,4,5,6 +3013.5,71.8101,1891.8139999999999,100,1589.3629012771185,1589.3629012771185,452.78883738667366,452.78883738667366,33409.85415,5.0,863.28815,1,2,3,4,5,6 +3014.0,72.0838,1899.0119,100,1584.0486174147318,1584.0486174147318,454.5146155821187,454.5146155821187,33447.516,5.0,860.8072,1,2,3,4,5,6 +3014.5,72.37915,1906.7802000000001,100,1578.1353406333178,1578.1353406333178,456.3769049135938,456.3769049135938,33488.14845,5.0,858.12925,1,2,3,4,5,6 +3015.0,72.6745,1914.5485,100,1572.270127100978,1572.270127100978,458.23919424506875,458.23919424506875,33528.7809,5.0,855.4513,1,2,3,4,5,6 +3015.5,72.999,1923.0889000000002,100,1565.6815776106523,1565.6815776106523,460.2852849444548,460.2852849444548,33573.4448,5.0,852.5070499999999,1,2,3,4,5,6 +3016.0,73.3235,1931.6293,100,1559.1513446030267,1559.1513446030267,462.33137564384066,462.33137564384066,33618.1087,5.0,849.5628,1,2,3,4,5,6 +3016.5,73.6807,1941.0471,100,1551.9520367613231,1551.9520367613231,464.583651754228,464.583651754228,33667.36225,5.0,846.3161,1,2,3,4,5,6 +3017.0,74.0379,1950.4649,100,1544.822195848343,1544.822195848343,466.83592786461514,466.83592786461514,33716.6158,5.0,843.0694,1,2,3,4,5,6 +3017.5,74.42355,1960.6464999999998,100,1537.276813548937,1537.276813548937,469.2675915879379,469.2675915879379,33769.86545,5.0,839.5594,1,2,3,4,5,6 +3018.0,74.8092,1970.8281,100,1529.8092258706147,1529.8092258706147,471.6992553112606,471.6992553112606,33823.1151,5.0,836.0494,1,2,3,4,5,6 +3018.5,75.21245,1981.47075,100,1522.203510775144,1522.203510775144,474.24189344539735,474.24189344539735,33878.999200000006,5.0,832.38595,1,2,3,4,5,6 +3019.0,75.6157,1992.1134,100,1514.6789165213042,1514.6789165213042,476.78453157953413,476.78453157953413,33934.8833,5.0,828.7225,1,2,3,4,5,6 +3019.5,76.02725000000001,2002.95595,100,1507.214099444607,1507.214099444607,479.3795042369526,479.3795042369526,33994.9011,5.0,825.07995,1,2,3,4,5,6 +3020.0,76.4388,2013.7985,100,1499.8296642019498,1499.8296642019498,481.97447689437104,481.97447689437104,34054.9189,5.0,821.4374,1,2,3,4,5,6 +3020.5,76.85785,2024.8287500000001,100,1492.2746790210758,1492.2746790210758,484.6167397836704,484.6167397836704,34117.6082,5.0,817.79765,1,2,3,4,5,6 +3021.0,77.2769,2035.859,100,1484.8016307848789,1484.8016307848789,487.2590026729699,487.2590026729699,34180.2975,5.0,814.1579,1,2,3,4,5,6 +3021.5,77.70675,2047.1866,100,1477.0049628507177,1477.0049628507177,489.9693634961782,489.9693634961782,34244.59315,5.0,810.42015,1,2,3,4,5,6 +3022.0,78.1366,2058.5142,100,1469.2940779609046,1469.2940779609046,492.6797243193863,492.6797243193863,34308.8888,5.0,806.6824,1,2,3,4,5,6 +3022.5,78.57535,2070.0858,100,1461.4600668021203,1461.4600668021203,495.4462028844267,495.4462028844267,34374.57145,5.0,802.8642,1,2,3,4,5,6 +3023.0,79.0141,2081.6574,100,1453.7130571379032,1453.7130571379032,498.212681449467,498.212681449467,34440.2541,5.0,799.046,1,2,3,4,5,6 +3023.5,79.45535000000001,2093.29095,100,1445.9641540563346,1445.9641540563346,500.99492342513446,500.99492342513446,34506.2907,5.0,795.2074500000001,1,2,3,4,5,6 +3024.0,79.8966,2104.9245,100,1438.3008416878815,1438.3008416878815,503.7771654008017,503.7771654008017,34572.3273,5.0,791.3689,1,2,3,4,5,6 +3024.5,80.33555000000001,2116.4904500000002,100,1430.6490313068123,1430.6490313068123,506.5449050386922,506.5449050386922,34637.9807,5.0,787.5526500000001,1,2,3,4,5,6 +3025.0,80.7745,2128.0564,100,1423.0803848491787,1423.0803848491787,509.31264467658275,509.31264467658275,34703.6341,5.0,783.7364,1,2,3,4,5,6 +3025.5,81.2115,2139.5545,100,1415.3840579597716,1415.3840579597716,512.0680888541842,512.0680888541842,34768.901150000005,5.0,779.9425,1,2,3,4,5,6 +3026.0,81.6485,2151.0526,100,1407.7701158012703,1407.7701158012703,514.8235330317855,514.8235330317855,34834.1682,5.0,776.1486,1,2,3,4,5,6 +3026.5,82.01405,2153.1372,100,1218.550483679321,1218.550483679321,517.1284589336669,517.1284589336669,30707.232949999998,5.0,669.6114,1,2,3,4,5,6 +3027.0,82.3796,2155.2218,100,1031.0101322657554,1031.0101322657554,519.4333848355485,519.4333848355485,26580.2977,5.0,563.0742,1,2,3,4,5,6 +3027.5,82.4426,2060.904,100,456.5421726025137,456.5421726025137,519.8306227833492,519.8306227833492,13297.92685,2.5,237.88,1,2,3,4,5,6 +3028.0,82.5056,1966.5862,100,-117.04847736396074,-117.04847736396074,520.2278607311499,520.2278607311499,15.556,0.0,-87.3142,1,2,3,4,5,6 +3028.5,82.40235,1834.1009,100,9.013949820605838,9.013949820605838,519.5768318722544,519.5768318722544,2748.2360500000004,0.0,10.39085,1,2,3,4,5,6 +3029.0,82.2991,1701.6156,100,135.39268533920784,135.39268533920784,518.9258030133587,518.9258030133587,5480.9161,0.0,108.0959,1,2,3,4,5,6 +3029.5,82.4427,1647.6667,100,547.3128991408578,547.3128991408578,519.8312533197743,519.8312533197743,14888.0339,3.0,430.93035,1,2,3,4,5,6 +3030.0,82.5863,1593.7178,100,957.8006297654697,957.8006297654697,520.7367036261898,520.7367036261898,24295.1517,6.0,753.7648,1,2,3,4,5,6 +3030.5,82.77109999999999,1594.7833999999998,100,620.4342050184184,620.4342050184184,521.9019349397383,521.9019349397383,17100.805,6.0,522.2821,1,2,3,4,5,6 +3031.0,82.9559,1595.849,100,284.5708756580304,284.5708756580304,523.0671662532869,523.0671662532869,9906.4583,6.0,290.7994,1,2,3,4,5,6 +3031.5,82.97794999999999,1596.0608,100,236.5484483166914,236.5484483166914,523.206199535017,523.206199535017,8857.7978,6.0,256.9763,1,2,3,4,5,6 +3032.0,83.0,1596.2726,100,188.55153650602412,188.55153650602412,523.3452328167474,523.3452328167474,7809.1373,6.0,223.1532,1,2,3,4,5,6 +3032.5,83.0,1596.2726,100,189.61950686746988,189.61950686746988,523.3452328167474,523.3452328167474,7833.16885,6.0,223.89335,1,2,3,4,5,6 +3033.0,83.0,1596.2726,100,190.68747722891567,190.68747722891567,523.3452328167474,523.3452328167474,7857.2004,6.0,224.6335,1,2,3,4,5,6 +3033.5,83.0,1596.2726,100,175.4401465301205,175.4401465301205,523.3452328167474,523.3452328167474,7525.355299999999,6.0,214.3923,1,2,3,4,5,6 +3034.0,83.0,1596.2726,100,160.1928158313253,160.1928158313253,523.3452328167474,523.3452328167474,7193.5102,6.0,204.1511,1,2,3,4,5,6 +3034.5,83.0,1596.2726,100,128.10623963855423,128.10623963855423,523.3452328167474,523.3452328167474,6517.52765,6.0,182.90365000000003,1,2,3,4,5,6 +3035.0,83.0,1596.2726,100,96.01966344578314,96.01966344578314,523.3452328167474,523.3452328167474,5841.5451,6.0,161.6562,1,2,3,4,5,6 +3035.5,83.0,1596.2726,100,59.09938037349398,59.09938037349398,523.3452328167474,523.3452328167474,5109.35155,6.0,137.44670000000002,1,2,3,4,5,6 +3036.0,83.0,1596.2726,100,22.179097301204823,22.179097301204823,523.3452328167474,523.3452328167474,4377.158,6.0,113.2372,1,2,3,4,5,6 +3036.5,83.0,1596.2726,100,-5.731440939759035,-5.731440939759035,523.3452328167474,523.3452328167474,3924.1186500000003,6.0,94.9454,1,2,3,4,5,6 +3037.0,83.0,1596.2726,100,-33.64197918072289,-33.64197918072289,523.3452328167474,523.3452328167474,3471.0793,6.0,76.6536,1,2,3,4,5,6 +3037.5,83.0,1596.2726,100,-43.79089239759036,-43.79089239759036,523.3452328167474,523.3452328167474,3329.9887,6.0,70.00215,1,2,3,4,5,6 +3038.0,83.0,1596.2726,100,-53.93980561445784,-53.93980561445784,523.3452328167474,523.3452328167474,3188.8981,6.0,63.3507,1,2,3,4,5,6 +3038.5,83.0,1596.2726,100,-40.3788640120482,-40.3788640120482,523.3452328167474,523.3452328167474,3380.9696,6.0,72.23815,1,2,3,4,5,6 +3039.0,83.0,1596.2726,100,-26.817922409638555,-26.817922409638555,523.3452328167474,523.3452328167474,3573.0411,6.0,81.1256,1,2,3,4,5,6 +3039.5,83.0,1596.2726,100,7.227968638554215,7.227968638554215,523.3452328167474,523.3452328167474,4154.02635,6.0,103.4385,1,2,3,4,5,6 +3040.0,83.0,1596.2726,100,41.27385968674699,41.27385968674699,523.3452328167474,523.3452328167474,4735.0116,6.0,125.7514,1,2,3,4,5,6 +3040.5,83.0,1596.2726,100,68.21135826506024,68.21135826506024,523.3452328167474,523.3452328167474,5282.6721,6.0,143.46735,1,2,3,4,5,6 +3041.0,83.0,1596.2726,100,95.1488568433735,95.1488568433735,523.3452328167474,523.3452328167474,5830.3326,6.0,161.1833,1,2,3,4,5,6 +3041.5,83.0,1596.2726,100,149.7705204578313,149.7705204578313,523.3452328167474,523.3452328167474,7001.0118999999995,6.0,197.75145,1,2,3,4,5,6 +3042.0,83.0,1596.2726,100,204.39218407228918,204.39218407228918,523.3452328167474,523.3452328167474,8171.6912,6.0,234.3196,1,2,3,4,5,6 +3042.5,83.0,1596.2726,100,228.53789859036146,228.53789859036146,523.3452328167474,523.3452328167474,8693.29075,6.0,251.04585000000003,1,2,3,4,5,6 +3043.0,83.0,1596.2726,100,252.68361310843378,252.68361310843378,523.3452328167474,523.3452328167474,9214.8903,6.0,267.7721,1,2,3,4,5,6 +3043.5,83.0,1596.2726,100,265.6617349879518,265.6617349879518,523.3452328167474,523.3452328167474,9469.8181,6.0,276.80975,1,2,3,4,5,6 +3044.0,83.0,1596.2726,100,278.6398568674699,278.6398568674699,523.3452328167474,523.3452328167474,9724.7459,6.0,285.8474,1,2,3,4,5,6 +3044.5,83.0,1596.2726,100,284.43930104819276,284.43930104819276,523.3452328167474,523.3452328167474,9837.6051,6.0,289.88615,1,2,3,4,5,6 +3045.0,83.0,1596.2726,100,290.23874522891566,290.23874522891566,523.3452328167474,523.3452328167474,9950.4643,6.0,293.9249,1,2,3,4,5,6 +3045.5,83.0,1596.2726,100,293.11085526506025,293.11085526506025,523.3452328167474,523.3452328167474,10006.35035,6.0,295.92494999999997,1,2,3,4,5,6 +3046.0,83.0,1596.2726,100,295.9829653012049,295.9829653012049,523.3452328167474,523.3452328167474,10062.2364,6.0,297.925,1,2,3,4,5,6 +3046.5,83.0,1596.2726,100,310.16825880722894,310.16825880722894,523.3452328167474,523.3452328167474,10354.1006,6.0,307.8034,1,2,3,4,5,6 +3047.0,83.0,1596.2726,100,324.3535523132531,324.3535523132531,523.3452328167474,523.3452328167474,10645.9648,6.0,317.6818,1,2,3,4,5,6 +3047.5,83.0,1596.2726,100,352.7647587108434,352.7647587108434,523.3452328167474,523.3452328167474,11289.33685,6.0,337.4667,1,2,3,4,5,6 +3048.0,83.0,1596.2726,100,381.17596510843373,381.17596510843373,523.3452328167474,523.3452328167474,11932.7089,6.0,357.2516,1,2,3,4,5,6 +3048.5,83.0,1596.2726,100,408.7647430481928,408.7647430481928,523.3452328167474,523.3452328167474,12528.55595,6.0,376.4634,1,2,3,4,5,6 +3049.0,83.0,1596.2726,100,436.3535209879518,436.3535209879518,523.3452328167474,523.3452328167474,13124.403,6.0,395.6752,1,2,3,4,5,6 +3049.5,83.0,1596.2726,100,458.37698671084337,458.37698671084337,523.3452328167474,523.3452328167474,13588.205399999999,6.0,411.01210000000003,1,2,3,4,5,6 +3050.0,83.0,1596.2726,100,480.40045243373504,480.40045243373504,523.3452328167474,523.3452328167474,14052.0078,6.0,426.349,1,2,3,4,5,6 +3050.5,83.0,1596.2726,100,510.9786345903615,510.9786345903615,523.3452328167474,523.3452328167474,14738.82195,6.0,447.65455,1,2,3,4,5,6 +3051.0,83.0,1596.2726,100,541.556816746988,541.556816746988,523.3452328167474,523.3452328167474,15425.6361,6.0,468.9601,1,2,3,4,5,6 +3051.5,83.0,1596.2726,100,583.2962019759037,583.2962019759037,523.3452328167474,523.3452328167474,16367.97845,6.0,498.05085,1,2,3,4,5,6 +3052.0,83.0,1596.2726,100,625.0355872048194,625.0355872048194,523.3452328167474,523.3452328167474,17310.3208,6.0,527.1416,1,2,3,4,5,6 +3052.5,83.0,1596.2726,100,660.4146156144577,660.4146156144577,523.3452328167474,523.3452328167474,18077.802150000003,6.0,551.79965,1,2,3,4,5,6 +3053.0,83.0,1596.2726,100,695.7936440240964,695.7936440240964,523.3452328167474,523.3452328167474,18845.2835,6.0,576.4577,1,2,3,4,5,6 +3053.5,83.0,1596.2726,100,712.1664511807229,712.1664511807229,523.3452328167474,523.3452328167474,19209.14515,6.0,587.869,1,2,3,4,5,6 +3054.0,83.0,1596.2726,100,728.5392583373493,728.5392583373493,523.3452328167474,523.3452328167474,19573.0068,6.0,599.2803,1,2,3,4,5,6 +3054.5,83.0,1596.2726,100,734.6271457951808,734.6271457951808,523.3452328167474,523.3452328167474,19711.0696,6.0,603.5232000000001,1,2,3,4,5,6 +3055.0,83.0,1596.2726,100,740.715033253012,740.715033253012,523.3452328167474,523.3452328167474,19849.1324,6.0,607.7661,1,2,3,4,5,6 +3055.5,83.0,1596.2726,100,750.7726669518072,750.7726669518072,523.3452328167474,523.3452328167474,20077.123099999997,6.0,614.77265,1,2,3,4,5,6 +3056.0,83.0,1596.2726,100,760.8303006506025,760.8303006506025,523.3452328167474,523.3452328167474,20305.1138,6.0,621.7792,1,2,3,4,5,6 +3056.5,83.0,1596.2726,100,779.7543703373494,779.7543703373494,523.3452328167474,523.3452328167474,20714.880250000002,6.0,634.9575,1,2,3,4,5,6 +3057.0,83.0,1596.2726,100,798.6784400240964,798.6784400240964,523.3452328167474,523.3452328167474,21124.6467,6.0,648.1358,1,2,3,4,5,6 +3057.5,83.0,1596.2726,100,817.0708065180722,817.0708065180722,523.3452328167474,523.3452328167474,21492.25805,6.0,660.9438,1,2,3,4,5,6 +3058.0,83.0,1596.2726,100,835.4631730120483,835.4631730120483,523.3452328167474,523.3452328167474,21859.8694,6.0,673.7518,1,2,3,4,5,6 +3058.5,83.0,1596.2726,100,876.80594873494,876.80594873494,523.3452328167474,523.3452328167474,22714.0582,6.0,702.54165,1,2,3,4,5,6 +3059.0,83.0,1596.2726,100,918.1487244578313,918.1487244578313,523.3452328167474,523.3452328167474,23568.247,6.0,731.3315,1,2,3,4,5,6 +3059.5,83.0,1596.2726,100,929.2697645421688,929.2697645421688,523.3452328167474,523.3452328167474,23813.4986,6.0,739.0761,1,2,3,4,5,6 +3060.0,83.0,1596.2726,100,940.3908046265061,940.3908046265061,523.3452328167474,523.3452328167474,24058.7502,6.0,746.8207,1,2,3,4,5,6 +3060.5,83.0,1596.2726,100,945.0478856385542,945.0478856385542,523.3452328167474,523.3452328167474,24161.4488,6.0,750.06375,1,2,3,4,5,6 +3061.0,83.0,1596.2726,100,949.7049666506024,949.7049666506024,523.3452328167474,523.3452328167474,24264.1474,6.0,753.3068,1,2,3,4,5,6 +3061.5,83.0,1596.2726,100,953.458380433735,953.458380433735,523.3452328167474,523.3452328167474,24347.892050000002,6.0,755.9205,1,2,3,4,5,6 +3062.0,83.0,1596.2726,100,957.2117942168675,957.2117942168675,523.3452328167474,523.3452328167474,24431.6367,6.0,758.5342,1,2,3,4,5,6 +3062.5,83.0,1596.2726,100,977.9673874337349,977.9673874337349,523.3452328167474,523.3452328167474,24901.209300000002,6.0,772.98875,1,2,3,4,5,6 +3063.0,83.0,1596.2726,100,998.7229806506026,998.7229806506026,523.3452328167474,523.3452328167474,25370.7819,6.0,787.4433,1,2,3,4,5,6 +3063.5,83.0,1596.2726,100,1020.1649958433737,1020.1649958433737,523.3452328167474,523.3452328167474,25860.69335,6.0,802.3801000000001,1,2,3,4,5,6 +3064.0,83.0,1596.2726,100,1041.6070110361447,1041.6070110361447,523.3452328167474,523.3452328167474,26350.6048,6.0,817.3169,1,2,3,4,5,6 +3064.5,83.0,1596.2726,100,1048.650595048193,1048.650595048193,523.3452328167474,523.3452328167474,26511.5537,6.0,822.2239999999999,1,2,3,4,5,6 +3065.0,83.0,1596.2726,100,1055.6941790602411,1055.6941790602411,523.3452328167474,523.3452328167474,26672.5026,6.0,827.1311,1,2,3,4,5,6 +3065.5,83.0,1596.2726,100,1044.300669614458,1044.300669614458,523.3452328167474,523.3452328167474,26412.156750000002,6.0,819.1935,1,2,3,4,5,6 +3066.0,83.0,1596.2726,100,1032.9071601686746,1032.9071601686746,523.3452328167474,523.3452328167474,26151.8109,6.0,811.2559,1,2,3,4,5,6 +3066.5,83.0,1596.2726,100,1021.0161773493977,1021.0161773493977,523.3452328167474,523.3452328167474,25880.09905,6.0,802.9717499999999,1,2,3,4,5,6 +3067.0,83.0,1596.2726,100,1009.1251945301204,1009.1251945301204,523.3452328167474,523.3452328167474,25608.3872,6.0,794.6876,1,2,3,4,5,6 +3067.5,83.0,1596.2726,100,1004.5370295542169,1004.5370295542169,523.3452328167474,523.3452328167474,25503.562550000002,6.0,791.4916000000001,1,2,3,4,5,6 +3068.0,83.0,1596.2726,100,999.9488645783133,999.9488645783133,523.3452328167474,523.3452328167474,25398.7379,6.0,788.2956,1,2,3,4,5,6 +3068.5,83.0,1596.2726,100,991.4703665421687,991.4703665421687,523.3452328167474,523.3452328167474,25205.07935,6.0,782.3912,1,2,3,4,5,6 +3069.0,83.0,1596.2726,100,982.991868506024,982.991868506024,523.3452328167474,523.3452328167474,25011.4208,6.0,776.4868,1,2,3,4,5,6 +3069.5,83.0,1596.2726,100,967.9773005783132,967.9773005783132,523.3452328167474,523.3452328167474,24673.8472,6.0,766.031,1,2,3,4,5,6 +3070.0,83.0,1596.2726,100,952.9627326506024,952.9627326506024,523.3452328167474,523.3452328167474,24336.2736,6.0,755.5752,1,2,3,4,5,6 +3070.5,83.0,1596.2726,100,945.2350086506024,945.2350086506024,523.3452328167474,523.3452328167474,24165.71125,6.0,750.19375,1,2,3,4,5,6 +3071.0,83.0,1596.2726,100,937.5072846506025,937.5072846506025,523.3452328167474,523.3452328167474,23995.1489,6.0,744.8123,1,2,3,4,5,6 +3071.5,83.0,1596.2726,100,940.4117989156628,940.4117989156628,523.3452328167474,523.3452328167474,24059.20085,6.0,746.83495,1,2,3,4,5,6 +3072.0,83.0,1596.2726,100,943.3163131807229,943.3163131807229,523.3452328167474,523.3452328167474,24123.2528,6.0,748.8576,1,2,3,4,5,6 +3072.5,83.0,1596.2726,100,942.1283102530122,942.1283102530122,523.3452328167474,523.3452328167474,24097.05335,6.0,748.03025,1,2,3,4,5,6 +3073.0,83.0,1596.2726,100,940.9403073253012,940.9403073253012,523.3452328167474,523.3452328167474,24070.8539,6.0,747.2029,1,2,3,4,5,6 +3073.5,83.0,1596.2726,100,931.6407500240965,931.6407500240965,523.3452328167474,523.3452328167474,23865.77785,6.0,740.72695,1,2,3,4,5,6 +3074.0,83.0,1596.2726,100,922.3411927228916,922.3411927228916,523.3452328167474,523.3452328167474,23660.7018,6.0,734.251,1,2,3,4,5,6 +3074.5,83.0,1596.2726,100,925.8860328072291,925.8860328072291,523.3452328167474,523.3452328167474,23738.8759,6.0,736.7196,1,2,3,4,5,6 +3075.0,83.0,1596.2726,100,929.4308728915663,929.4308728915663,523.3452328167474,523.3452328167474,23817.05,6.0,739.1882,1,2,3,4,5,6 +3075.5,83.0,1596.2726,100,952.2649007349398,952.2649007349398,523.3452328167474,523.3452328167474,24325.7578,6.0,755.08915,1,2,3,4,5,6 +3076.0,83.0,1596.2726,100,975.0989285783132,975.0989285783132,523.3452328167474,523.3452328167474,24834.4656,6.0,770.9901,1,2,3,4,5,6 +3076.5,83.0,1596.2726,100,990.0121762409639,990.0121762409639,523.3452328167474,523.3452328167474,25173.45305,6.0,781.3761999999999,1,2,3,4,5,6 +3077.0,83.0,1596.2726,100,1004.9254239036145,1004.9254239036145,523.3452328167474,523.3452328167474,25512.4405,6.0,791.7623,1,2,3,4,5,6 +3077.5,83.0,1596.2726,100,993.8171629518073,993.8171629518073,523.3452328167474,523.3452328167474,25259.516750000003,6.0,784.0260499999999,1,2,3,4,5,6 +3078.0,83.0,1596.2726,100,982.7089020000001,982.7089020000001,523.3452328167474,523.3452328167474,25006.593,6.0,776.2898,1,2,3,4,5,6 +3078.5,83.0,1596.2726,100,956.250164493976,956.250164493976,523.3452328167474,523.3452328167474,24415.79635,6.0,757.86455,1,2,3,4,5,6 +3079.0,83.0,1596.2726,100,929.7914269879519,929.7914269879519,523.3452328167474,523.3452328167474,23824.9997,6.0,739.4393,1,2,3,4,5,6 +3079.5,83.0,1596.2726,100,905.4375951686748,905.4375951686748,523.3452328167474,523.3452328167474,23290.8307,6.0,722.48015,1,2,3,4,5,6 +3080.0,83.0,1596.2726,100,881.0837633493976,881.0837633493976,523.3452328167474,523.3452328167474,22756.6617,6.0,705.521,1,2,3,4,5,6 +3080.5,83.0,1596.2726,100,862.7429697831325,862.7429697831325,523.3452328167474,523.3452328167474,22387.45865,6.0,692.749,1,2,3,4,5,6 +3081.0,83.0,1596.2726,100,844.4021762168676,844.4021762168676,523.3452328167474,523.3452328167474,22018.2556,6.0,679.977,1,2,3,4,5,6 +3081.5,83.0,1596.2726,100,828.5825229397592,828.5825229397592,523.3452328167474,523.3452328167474,21714.163800000002,6.0,668.96045,1,2,3,4,5,6 +3082.0,83.0,1596.2726,100,812.7628696626507,812.7628696626507,523.3452328167474,523.3452328167474,21410.072,6.0,657.9439,1,2,3,4,5,6 +3082.5,83.0,1596.2726,100,799.164047060241,799.164047060241,523.3452328167474,523.3452328167474,21134.2828,6.0,648.4739500000001,1,2,3,4,5,6 +3083.0,83.0,1596.2726,100,785.5652244578314,785.5652244578314,523.3452328167474,523.3452328167474,20858.4936,6.0,639.004,1,2,3,4,5,6 +3083.5,83.0,1596.2726,100,769.6410561325301,769.6410561325301,523.3452328167474,523.3452328167474,20501.174899999998,6.0,627.9137499999999,1,2,3,4,5,6 +3084.0,83.0,1596.2726,100,753.716887807229,753.716887807229,523.3452328167474,523.3452328167474,20143.8562,6.0,616.8235,1,2,3,4,5,6 +3084.5,83.0,1596.2726,100,727.9696741445783,727.9696741445783,523.3452328167474,523.3452328167474,19566.245799999997,6.0,598.881,1,2,3,4,5,6 +3085.0,83.0,1596.2726,100,702.2224604819278,702.2224604819278,523.3452328167474,523.3452328167474,18988.6354,6.0,580.9385,1,2,3,4,5,6 +3085.5,83.0,1596.2726,100,673.012558301205,673.012558301205,523.3452328167474,523.3452328167474,18362.06725,6.0,560.57995,1,2,3,4,5,6 +3086.0,83.0,1596.2726,100,643.8026561204821,643.8026561204821,523.3452328167474,523.3452328167474,17735.4991,6.0,540.2214,1,2,3,4,5,6 +3086.5,83.0,1596.2726,100,623.2684157349398,623.2684157349398,523.3452328167474,523.3452328167474,17273.89975,6.0,525.90985,1,2,3,4,5,6 +3087.0,83.0,1596.2726,100,602.7341753493976,602.7341753493976,523.3452328167474,523.3452328167474,16812.3004,6.0,511.5983,1,2,3,4,5,6 +3087.5,83.0,1596.2726,100,594.2588720963856,594.2588720963856,523.3452328167474,523.3452328167474,16619.237800000003,6.0,505.69129999999996,1,2,3,4,5,6 +3088.0,83.0,1596.2726,100,585.7835688433736,585.7835688433736,523.3452328167474,523.3452328167474,16426.1752,6.0,499.7843,1,2,3,4,5,6 +3088.5,83.0,1596.2726,100,587.053266939759,587.053266939759,523.3452328167474,523.3452328167474,16455.0943,6.0,500.66909999999996,1,2,3,4,5,6 +3089.0,83.0,1596.2726,100,588.3229650361446,588.3229650361446,523.3452328167474,523.3452328167474,16484.0134,6.0,501.5539,1,2,3,4,5,6 +3089.5,83.0,1596.2726,100,592.1731351084337,592.1731351084337,523.3452328167474,523.3452328167474,16571.72485,6.0,504.23755,1,2,3,4,5,6 +3090.0,83.0,1596.2726,100,596.0233051807229,596.0233051807229,523.3452328167474,523.3452328167474,16659.4363,6.0,506.9212,1,2,3,4,5,6 +3090.5,83.0,1596.2726,100,590.3078381566265,590.3078381566265,523.3452328167474,523.3452328167474,16529.2426,6.0,502.93775,1,2,3,4,5,6 +3091.0,83.0,1596.2726,100,584.5923711325302,584.5923711325302,523.3452328167474,523.3452328167474,16399.0489,6.0,498.9543,1,2,3,4,5,6 +3091.5,83.0,1596.2726,100,567.1237533614459,567.1237533614459,523.3452328167474,523.3452328167474,16002.64205,6.0,486.77914999999996,1,2,3,4,5,6 +3092.0,83.0,1596.2726,100,549.6551355903615,549.6551355903615,523.3452328167474,523.3452328167474,15606.2352,6.0,474.604,1,2,3,4,5,6 +3092.5,83.0,1596.2726,100,538.9421149518073,538.9421149518073,523.3452328167474,523.3452328167474,15365.287049999999,6.0,467.13745,1,2,3,4,5,6 +3093.0,83.0,1596.2726,100,528.2290943132531,528.2290943132531,523.3452328167474,523.3452328167474,15124.3389,6.0,459.6709,1,2,3,4,5,6 +3093.5,83.0,1596.2726,100,524.6614343493976,524.6614343493976,523.3452328167474,523.3452328167474,15044.3193,6.0,457.18435,1,2,3,4,5,6 +3094.0,83.0,1596.2726,100,521.0937743855421,521.0937743855421,523.3452328167474,523.3452328167474,14964.2997,6.0,454.6978,1,2,3,4,5,6 +3094.5,83.0,1596.2726,100,552.0439205783133,552.0439205783133,523.3452328167474,523.3452328167474,15663.8793,6.0,476.269,1,2,3,4,5,6 +3095.0,83.0,1596.2726,100,582.9940667710845,582.9940667710845,523.3452328167474,523.3452328167474,16363.4589,6.0,497.8402,1,2,3,4,5,6 +3095.5,83.0,1596.2726,100,619.861864120482,619.861864120482,523.3452328167474,523.3452328167474,17187.82475,6.0,523.53565,1,2,3,4,5,6 +3096.0,83.0,1596.2726,100,656.7296614698796,656.7296614698796,523.3452328167474,523.3452328167474,18012.1906,6.0,549.2311,1,2,3,4,5,6 +3096.5,83.0,1596.2726,100,673.9865107590362,673.9865107590362,523.3452328167474,523.3452328167474,18372.4444,6.0,561.25875,1,2,3,4,5,6 +3097.0,83.0,1596.2726,100,691.2433600481928,691.2433600481928,523.3452328167474,523.3452328167474,18732.6982,6.0,573.2864,1,2,3,4,5,6 +3097.5,83.0,1596.2726,100,690.8417301686748,690.8417301686748,523.3452328167474,523.3452328167474,18723.3536,6.0,573.00645,1,2,3,4,5,6 +3098.0,83.0,1596.2726,100,690.4401002891566,690.4401002891566,523.3452328167474,523.3452328167474,18714.009,6.0,572.7265,1,2,3,4,5,6 +3098.5,83.0,1596.2726,100,679.758114686747,679.758114686747,523.3452328167474,523.3452328167474,18496.39585,6.0,565.2814000000001,1,2,3,4,5,6 +3099.0,83.0,1596.2726,100,669.0761290843374,669.0761290843374,523.3452328167474,523.3452328167474,18278.7827,6.0,557.8363,1,2,3,4,5,6 +3099.5,83.0,1596.2726,100,643.4466659999999,643.4466659999999,523.3452328167474,523.3452328167474,17717.33475,6.0,539.97355,1,2,3,4,5,6 +3100.0,83.0,1596.2726,100,617.8172029156627,617.8172029156627,523.3452328167474,523.3452328167474,17155.8868,6.0,522.1108,1,2,3,4,5,6 +3100.5,83.0,1596.2726,100,580.5587292289157,580.5587292289157,523.3452328167474,523.3452328167474,16310.365099999999,6.0,496.14285,1,2,3,4,5,6 +3101.0,83.0,1596.2726,100,543.3002555421687,543.3002555421687,523.3452328167474,523.3452328167474,15464.8434,6.0,470.1749,1,2,3,4,5,6 +3101.5,83.0,1596.2726,100,509.80797477108433,509.80797477108433,523.3452328167474,523.3452328167474,14714.7752,6.0,446.83945,1,2,3,4,5,6 +3102.0,83.0,1596.2726,100,476.315694,476.315694,523.3452328167474,523.3452328167474,13964.707,6.0,423.504,1,2,3,4,5,6 +3102.5,83.0,1596.2726,100,454.64045963855426,454.64045963855426,523.3452328167474,523.3452328167474,13513.0245,6.0,408.40985,1,2,3,4,5,6 +3103.0,83.0,1596.2726,100,432.9652252771084,432.9652252771084,523.3452328167474,523.3452328167474,13061.342,6.0,393.3157,1,2,3,4,5,6 +3103.5,83.0,1596.2726,100,413.98593148192776,413.98593148192776,523.3452328167474,523.3452328167474,12655.43115,6.0,380.09925,1,2,3,4,5,6 +3104.0,83.0,1596.2726,100,395.006637686747,395.006637686747,523.3452328167474,523.3452328167474,12249.5203,6.0,366.8828,1,2,3,4,5,6 +3104.5,83.0,1596.2726,100,367.9395221927711,367.9395221927711,523.3452328167474,523.3452328167474,11634.742900000001,6.0,348.0339,1,2,3,4,5,6 +3105.0,83.0,1596.2726,100,340.8724066987952,340.8724066987952,523.3452328167474,523.3452328167474,11019.9655,6.0,329.185,1,2,3,4,5,6 +3105.5,83.0,1596.2726,100,303.7490266987952,303.7490266987952,523.3452328167474,523.3452328167474,10249.241450000001,6.0,303.33299999999997,1,2,3,4,5,6 +3106.0,83.0,1596.2726,100,266.6256466987952,266.6256466987952,523.3452328167474,523.3452328167474,9478.5174,6.0,277.481,1,2,3,4,5,6 +3106.5,83.0,1596.2726,100,226.0505317228916,226.0505317228916,523.3452328167474,523.3452328167474,8613.924500000001,6.0,249.3961,1,2,3,4,5,6 +3107.0,83.0,1596.2726,100,185.47541674698797,185.47541674698797,523.3452328167474,523.3452328167474,7749.3316,6.0,221.3112,1,2,3,4,5,6 +3107.5,83.0,1596.2726,100,160.46619798795183,160.46619798795183,523.3452328167474,523.3452328167474,7204.96975,6.0,204.46305,1,2,3,4,5,6 +3108.0,83.0,1596.2726,100,135.45697922891569,135.45697922891569,523.3452328167474,523.3452328167474,6660.6079,6.0,187.6149,1,2,3,4,5,6 +3108.5,83.0,1596.2726,100,138.2008415421687,138.2008415421687,523.3452328167474,523.3452328167474,6720.35255,6.0,189.44920000000002,1,2,3,4,5,6 +3109.0,83.0,1596.2726,100,140.9447038554217,140.9447038554217,523.3452328167474,523.3452328167474,6780.0972,6.0,191.2835,1,2,3,4,5,6 +3109.5,83.0,1596.2726,100,175.54146679518075,175.54146679518075,523.3452328167474,523.3452328167474,7537.6641,6.0,214.75385,1,2,3,4,5,6 +3110.0,83.0,1596.2726,100,210.13822973493978,210.13822973493978,523.3452328167474,523.3452328167474,8295.231,6.0,238.2242,1,2,3,4,5,6 +3110.5,83.0,1596.2726,100,240.34125307228916,240.34125307228916,523.3452328167474,523.3452328167474,8931.20505,6.0,259.21695,1,2,3,4,5,6 +3111.0,83.0,1596.2726,100,270.54427640963854,270.54427640963854,523.3452328167474,523.3452328167474,9567.1791,6.0,280.2097,1,2,3,4,5,6 +3111.5,83.0,1596.2726,100,291.9342622771085,291.9342622771085,523.3452328167474,523.3452328167474,9988.420549999999,6.0,295.10545,1,2,3,4,5,6 +3112.0,83.0,1596.2726,100,313.32424814457835,313.32424814457835,523.3452328167474,523.3452328167474,10409.662,6.0,310.0012,1,2,3,4,5,6 +3112.5,83.0,1596.2726,100,330.2753110481928,330.2753110481928,523.3452328167474,523.3452328167474,10782.3541,6.0,321.8057,1,2,3,4,5,6 +3113.0,83.0,1596.2726,100,347.22637395180726,347.22637395180726,523.3452328167474,523.3452328167474,11155.0462,6.0,333.6102,1,2,3,4,5,6 +3113.5,83.0,1596.2726,100,354.9513595662651,354.9513595662651,523.3452328167474,523.3452328167474,11331.99575,6.0,338.9896,1,2,3,4,5,6 +3114.0,83.0,1596.2726,100,362.67634518072293,362.67634518072293,523.3452328167474,523.3452328167474,11508.9453,6.0,344.369,1,2,3,4,5,6 +3114.5,83.0,1596.2726,100,353.6971789879519,353.6971789879519,523.3452328167474,523.3452328167474,11303.265800000001,6.0,338.11620000000005,1,2,3,4,5,6 +3115.0,83.0,1596.2726,100,344.71801279518075,344.71801279518075,523.3452328167474,523.3452328167474,11097.5863,6.0,331.8634,1,2,3,4,5,6 +3115.5,83.0,1596.2726,100,328.1311551686747,328.1311551686747,523.3452328167474,523.3452328167474,10735.49545,6.0,320.3124,1,2,3,4,5,6 +3116.0,83.0,1596.2726,100,311.54429754216875,311.54429754216875,523.3452328167474,523.3452328167474,10373.4046,6.0,308.7614,1,2,3,4,5,6 +3116.5,83.0,1596.2726,100,289.3537903012048,289.3537903012048,523.3452328167474,523.3452328167474,9936.330549999999,6.0,293.30854999999997,1,2,3,4,5,6 +3117.0,83.0,1596.2726,100,267.163283060241,267.163283060241,523.3452328167474,523.3452328167474,9499.2565,6.0,277.8557,1,2,3,4,5,6 +3117.5,83.0,1596.2726,100,237.25189778313253,237.25189778313253,523.3452328167474,523.3452328167474,8866.3486,6.0,257.0386,1,2,3,4,5,6 +3118.0,83.0,1596.2726,100,207.3405125060241,207.3405125060241,523.3452328167474,523.3452328167474,8233.4407,6.0,236.2215,1,2,3,4,5,6 +3118.5,83.0,1596.2726,100,187.03218892771085,187.03218892771085,523.3452328167474,523.3452328167474,7786.88025,6.0,222.39325,1,2,3,4,5,6 +3119.0,83.0,1596.2726,100,166.7238653493976,166.7238653493976,523.3452328167474,523.3452328167474,7340.3198,6.0,208.565,1,2,3,4,5,6 +3119.5,83.0,1596.2726,100,126.56087739759036,126.56087739759036,523.3452328167474,523.3452328167474,6491.272,6.0,181.94504999999998,1,2,3,4,5,6 +3120.0,83.0,1596.2726,100,86.39788944578312,86.39788944578312,523.3452328167474,523.3452328167474,5642.2242,6.0,155.3251,1,2,3,4,5,6 +3120.5,83.0,1596.2726,100,66.81386884337348,66.81386884337348,523.3452328167474,523.3452328167474,5240.439399999999,6.0,142.49005,1,2,3,4,5,6 +3121.0,83.0,1596.2726,100,47.229848240963854,47.229848240963854,523.3452328167474,523.3452328167474,4838.6546,6.0,129.655,1,2,3,4,5,6 +3121.5,83.0,1596.2726,100,29.727457048192772,29.727457048192772,523.3452328167474,523.3452328167474,4509.80245,6.0,118.18435,1,2,3,4,5,6 +3122.0,83.0,1596.2726,100,12.225065855421686,12.225065855421686,523.3452328167474,523.3452328167474,4180.9503,6.0,106.7137,1,2,3,4,5,6 +3122.5,83.0,1596.2726,100,-7.044040409638553,-7.044040409638553,523.3452328167474,523.3452328167474,3876.9572500000004,6.0,94.08525,1,2,3,4,5,6 +3123.0,83.0,1596.2726,100,-26.313146674698796,-26.313146674698796,523.3452328167474,523.3452328167474,3572.9642,6.0,81.4568,1,2,3,4,5,6 +3123.5,83.0,1596.2726,100,-38.577006325301205,-38.577006325301205,523.3452328167474,523.3452328167474,3402.4718000000003,6.0,73.41925,1,2,3,4,5,6 +3124.0,83.0,1596.2726,100,-50.84086597590362,-50.84086597590362,523.3452328167474,523.3452328167474,3231.9794,6.0,65.3817,1,2,3,4,5,6 +3124.5,83.0,1596.2726,100,-49.403213566265066,-49.403213566265066,523.3452328167474,523.3452328167474,3251.9665999999997,6.0,66.32395,1,2,3,4,5,6 +3125.0,83.0,1596.2726,100,-47.965561156626514,-47.965561156626514,523.3452328167474,523.3452328167474,3271.9538,6.0,67.2662,1,2,3,4,5,6 +3125.5,83.0,1596.2726,100,-39.65182265060241,-39.65182265060241,523.3452328167474,523.3452328167474,3387.52805,6.0,72.71475000000001,1,2,3,4,5,6 +3126.0,83.0,1596.2726,100,-31.338084144578314,-31.338084144578314,523.3452328167474,523.3452328167474,3503.1023,6.0,78.1633,1,2,3,4,5,6 +3126.5,83.0,1596.2726,100,-24.332837530120482,-24.332837530120482,523.3452328167474,523.3452328167474,3600.4906,6.0,82.75445,1,2,3,4,5,6 +3127.0,83.0,1596.2726,100,-17.327590915662654,-17.327590915662654,523.3452328167474,523.3452328167474,3697.8789,6.0,87.3456,1,2,3,4,5,6 +3127.5,83.0,1596.2726,100,-13.467836493975902,-13.467836493975902,523.3452328167474,523.3452328167474,3751.5354500000003,6.0,89.87515,1,2,3,4,5,6 +3128.0,83.0,1596.2726,100,-9.608082072289156,-9.608082072289156,523.3452328167474,523.3452328167474,3805.192,6.0,92.4047,1,2,3,4,5,6 +3128.5,83.0,1596.2726,100,-7.109305265060241,-7.109305265060241,523.3452328167474,523.3452328167474,3841.0278,6.0,94.04225,1,2,3,4,5,6 +3129.0,83.0,1596.2726,100,-4.610528457831325,-4.610528457831325,523.3452328167474,523.3452328167474,3876.8636,6.0,95.6798,1,2,3,4,5,6 +3129.5,83.0,1596.2726,100,-5.663894096385542,-5.663894096385542,523.3452328167474,523.3452328167474,3862.53695,6.0,94.98945,1,2,3,4,5,6 +3130.0,83.0,1596.2726,100,-6.717259734939759,-6.717259734939759,523.3452328167474,523.3452328167474,3848.2103,6.0,94.2991,1,2,3,4,5,6 +3130.5,83.0,1596.2726,100,-18.57036155421687,-18.57036155421687,523.3452328167474,523.3452328167474,3682.01675,6.0,86.53105,1,2,3,4,5,6 +3131.0,83.0,1596.2726,100,-30.423463373493977,-30.423463373493977,523.3452328167474,523.3452328167474,3515.8232,6.0,78.763,1,2,3,4,5,6 +3131.5,83.0,1596.2726,100,-43.5868826746988,-43.5868826746988,523.3452328167474,523.3452328167474,3332.82435,6.0,70.13585,1,2,3,4,5,6 +3132.0,83.0,1596.2726,100,-56.75030197590362,-56.75030197590362,523.3452328167474,523.3452328167474,3149.8255,6.0,61.5087,1,2,3,4,5,6 +3132.5,83.0,1596.2726,100,-50.80846174698795,-50.80846174698795,523.3452328167474,523.3452328167474,3232.43025,6.0,65.40295,1,2,3,4,5,6 +3133.0,83.0,1596.2726,100,-44.86662151807229,-44.86662151807229,523.3452328167474,523.3452328167474,3315.035,6.0,69.2972,1,2,3,4,5,6 +3133.5,83.0,1596.2726,100,-6.001171915662649,-6.001171915662649,523.3452328167474,523.3452328167474,3953.1077,6.0,94.7687,1,2,3,4,5,6 +3134.0,83.0,1596.2726,100,32.86427768674699,32.86427768674699,523.3452328167474,523.3452328167474,4591.1804,6.0,120.2402,1,2,3,4,5,6 +3134.5,83.0,1596.2726,100,83.25011526506024,83.25011526506024,523.3452328167474,523.3452328167474,5610.8576,6.0,153.38545,1,2,3,4,5,6 +3135.0,83.0,1596.2726,100,133.6359528433735,133.6359528433735,523.3452328167474,523.3452328167474,6630.5348,6.0,186.5307,1,2,3,4,5,6 +3135.5,83.0,1596.2726,100,171.48637420481927,171.48637420481927,523.3452328167474,523.3452328167474,7455.385,6.0,212.0967,1,2,3,4,5,6 +3136.0,83.0,1596.2726,100,209.33679556626507,209.33679556626507,523.3452328167474,523.3452328167474,8280.2352,6.0,237.6627,1,2,3,4,5,6 +3136.5,83.0,1596.2726,100,233.7011245301205,233.7011245301205,523.3452328167474,523.3452328167474,8801.3689,6.0,254.59120000000001,1,2,3,4,5,6 +3137.0,83.0,1596.2726,100,258.0654534939759,258.0654534939759,523.3452328167474,523.3452328167474,9322.5026,6.0,271.5197,1,2,3,4,5,6 +3137.5,83.0,1596.2726,100,272.1407551807229,272.1407551807229,523.3452328167474,523.3452328167474,9602.007399999999,6.0,281.32145,1,2,3,4,5,6 +3138.0,83.0,1596.2726,100,286.2160568674699,286.2160568674699,523.3452328167474,523.3452328167474,9881.5122,6.0,291.1232,1,2,3,4,5,6 +3138.5,83.0,1596.2726,100,322.01086348192774,322.01086348192774,523.3452328167474,523.3452328167474,10639.444449999999,6.0,316.0502,1,2,3,4,5,6 +3139.0,83.0,1596.2726,100,357.8056700963856,357.8056700963856,523.3452328167474,523.3452328167474,11397.3767,6.0,340.9772,1,2,3,4,5,6 +3139.5,83.0,1596.2726,100,380.03040715662655,380.03040715662655,523.3452328167474,523.3452328167474,11906.46685,6.0,356.4538,1,2,3,4,5,6 +3140.0,83.0,1596.2726,100,402.2551442168675,402.2551442168675,523.3452328167474,523.3452328167474,12415.557,6.0,371.9304,1,2,3,4,5,6 +3140.5,83.0,1596.2726,100,408.7793477710843,408.7793477710843,523.3452328167474,523.3452328167474,12564.535,6.0,376.4737,1,2,3,4,5,6 +3141.0,83.0,1596.2726,100,415.3035513253012,415.3035513253012,523.3452328167474,523.3452328167474,12713.513,6.0,381.017,1,2,3,4,5,6 +3141.5,83.0,1596.2726,100,409.8500565180723,409.8500565180723,523.3452328167474,523.3452328167474,12589.0583,6.0,377.21925,1,2,3,4,5,6 +3142.0,83.0,1596.2726,100,404.3965617108434,404.3965617108434,523.3452328167474,523.3452328167474,12464.6036,6.0,373.4215,1,2,3,4,5,6 +3142.5,83.0,1596.2726,100,406.8697802530121,406.8697802530121,523.3452328167474,523.3452328167474,12518.360349999999,6.0,375.14395,1,2,3,4,5,6 +3143.0,83.0,1596.2726,100,409.34299879518073,409.34299879518073,523.3452328167474,523.3452328167474,12572.1171,6.0,376.8664,1,2,3,4,5,6 +3143.5,83.0,1596.2726,100,431.59146853012044,431.59146853012044,523.3452328167474,523.3452328167474,13030.15735,6.0,392.3592,1,2,3,4,5,6 +3144.0,83.0,1596.2726,100,453.8399382650603,453.8399382650603,523.3452328167474,523.3452328167474,13488.1976,6.0,407.852,1,2,3,4,5,6 +3144.5,83.0,1596.2726,100,486.1538004578314,486.1538004578314,523.3452328167474,523.3452328167474,14196.835299999999,6.0,430.3609,1,2,3,4,5,6 +3145.0,83.0,1596.2726,100,518.4676626506024,518.4676626506024,523.3452328167474,523.3452328167474,14905.473,6.0,452.8698,1,2,3,4,5,6 +3145.5,83.0,1596.2726,100,541.052953807229,541.052953807229,523.3452328167474,523.3452328167474,15413.88185,6.0,468.6097,1,2,3,4,5,6 +3146.0,83.0,1596.2726,100,563.6382449638555,563.6382449638555,523.3452328167474,523.3452328167474,15922.2907,6.0,484.3496,1,2,3,4,5,6 +3146.5,83.0,1596.2726,100,572.7876474578314,572.7876474578314,523.3452328167474,523.3452328167474,16130.42005,6.0,490.7264,1,2,3,4,5,6 +3147.0,83.0,1596.2726,100,581.9370499518072,581.9370499518072,523.3452328167474,523.3452328167474,16338.5494,6.0,497.1032,1,2,3,4,5,6 +3147.5,83.0,1596.2726,100,591.679769313253,591.679769313253,523.3452328167474,523.3452328167474,16560.48735,6.0,503.89369999999997,1,2,3,4,5,6 +3148.0,83.0,1596.2726,100,601.4224886746988,601.4224886746988,523.3452328167474,523.3452328167474,16782.4253,6.0,510.6842,1,2,3,4,5,6 +3148.5,83.0,1596.2726,100,617.9591425662652,617.9591425662652,523.3452328167474,523.3452328167474,17158.3415,6.0,522.2097,1,2,3,4,5,6 +3149.0,83.0,1596.2726,100,634.4957964578314,634.4957964578314,523.3452328167474,523.3452328167474,17534.2577,6.0,533.7352,1,2,3,4,5,6 +3149.5,83.0,1596.2726,100,655.2988550240965,655.2988550240965,523.3452328167474,523.3452328167474,17980.18655,6.0,548.2342,1,2,3,4,5,6 +3150.0,83.0,1596.2726,100,676.1019135903616,676.1019135903616,523.3452328167474,523.3452328167474,18426.1154,6.0,562.7332,1,2,3,4,5,6 +3150.5,83.0,1596.2726,100,694.6585832168676,694.6585832168676,523.3452328167474,523.3452328167474,18825.794049999997,6.0,575.6666,1,2,3,4,5,6 +3151.0,83.0,1596.2726,100,713.2152528433736,713.2152528433736,523.3452328167474,523.3452328167474,19225.4727,6.0,588.6,1,2,3,4,5,6 +3151.5,83.0,1596.2726,100,721.7325446746988,721.7325446746988,523.3452328167474,523.3452328167474,19418.63325,6.0,594.53615,1,2,3,4,5,6 +3152.0,83.0,1596.2726,100,730.2498365060242,730.2498365060242,523.3452328167474,523.3452328167474,19611.7938,6.0,600.4723,1,2,3,4,5,6 +3152.5,83.0,1596.2726,100,731.5377905060241,731.5377905060241,523.3452328167474,523.3452328167474,19641.004999999997,6.0,601.37,1,2,3,4,5,6 +3153.0,83.0,1596.2726,100,732.8257445060241,732.8257445060241,523.3452328167474,523.3452328167474,19670.2162,6.0,602.2677,1,2,3,4,5,6 +3153.5,83.0,1596.2726,100,734.1584254698795,734.1584254698795,523.3452328167474,523.3452328167474,19700.4436,6.0,603.19665,1,2,3,4,5,6 +3154.0,83.0,1596.2726,100,735.491106433735,735.491106433735,523.3452328167474,523.3452328167474,19730.671,6.0,604.1256,1,2,3,4,5,6 +3154.5,83.0,1596.2726,100,737.0296227108435,737.0296227108435,523.3452328167474,523.3452328167474,19765.5612,6.0,605.19785,1,2,3,4,5,6 +3155.0,83.0,1596.2726,100,738.5681389879519,738.5681389879519,523.3452328167474,523.3452328167474,19800.4514,6.0,606.2701,1,2,3,4,5,6 +3155.5,83.0,1596.2726,100,739.8871280240965,739.8871280240965,523.3452328167474,523.3452328167474,19830.36865,6.0,607.1895,1,2,3,4,5,6 +3156.0,83.0,1596.2726,100,741.206117060241,741.206117060241,523.3452328167474,523.3452328167474,19860.2859,6.0,608.1089,1,2,3,4,5,6 +3156.5,83.0,1596.2726,100,734.5586861566265,734.5586861566265,523.3452328167474,523.3452328167474,19709.52485,6.0,603.47575,1,2,3,4,5,6 +3157.0,83.0,1596.2726,100,727.9112552530121,727.9112552530121,523.3452328167474,523.3452328167474,19558.7638,6.0,598.8426,1,2,3,4,5,6 +3157.5,83.0,1596.2726,100,714.2444294096387,714.2444294096387,523.3452328167474,523.3452328167474,19251.144650000002,6.0,589.31715,1,2,3,4,5,6 +3158.0,83.0,1596.2726,100,700.5776035662651,700.5776035662651,523.3452328167474,523.3452328167474,18943.5255,6.0,579.7917,1,2,3,4,5,6 +3158.5,83.0,1596.2726,100,683.8369399518072,683.8369399518072,523.3452328167474,523.3452328167474,18591.2325,6.0,568.1242500000001,1,2,3,4,5,6 +3159.0,83.0,1596.2726,100,667.0962763373494,667.0962763373494,523.3452328167474,523.3452328167474,18238.9395,6.0,556.4568,1,2,3,4,5,6 +3159.5,83.0,1596.2726,100,650.9922873614458,650.9922873614458,523.3452328167474,523.3452328167474,17891.8492,6.0,545.2328500000001,1,2,3,4,5,6 +3160.0,83.0,1596.2726,100,634.8882983855423,634.8882983855423,523.3452328167474,523.3452328167474,17544.7589,6.0,534.0089,1,2,3,4,5,6 +3160.5,83.0,1596.2726,100,621.149818120482,621.149818120482,523.3452328167474,523.3452328167474,17231.802300000003,6.0,524.43355,1,2,3,4,5,6 +3161.0,83.0,1596.2726,100,607.4113378554218,607.4113378554218,523.3452328167474,523.3452328167474,16918.8457,6.0,514.8582,1,2,3,4,5,6 +3161.5,83.0,1596.2726,100,596.8904606024097,596.8904606024097,523.3452328167474,523.3452328167474,16679.184500000003,6.0,507.52545,1,2,3,4,5,6 +3162.0,83.0,1596.2726,100,586.3695833493977,586.3695833493977,523.3452328167474,523.3452328167474,16439.5233,6.0,500.1927,1,2,3,4,5,6 +3162.5,83.0,1596.2726,100,579.6769690843374,579.6769690843374,523.3452328167474,523.3452328167474,16287.068650000001,6.0,495.5281,1,2,3,4,5,6 +3163.0,83.0,1596.2726,100,572.9843548192772,572.9843548192772,523.3452328167474,523.3452328167474,16134.614,6.0,490.8635,1,2,3,4,5,6 +3163.5,83.0,1596.2726,100,569.5714136385542,569.5714136385542,523.3452328167474,523.3452328167474,16056.868050000001,6.0,488.48474999999996,1,2,3,4,5,6 +3164.0,83.0,1596.2726,100,566.1584724578314,566.1584724578314,523.3452328167474,523.3452328167474,15979.1221,6.0,486.106,1,2,3,4,5,6 +3164.5,83.0,1596.2726,100,564.3096058192772,564.3096058192772,523.3452328167474,523.3452328167474,15937.008600000001,6.0,484.8175,1,2,3,4,5,6 +3165.0,83.0,1596.2726,100,562.460739180723,562.460739180723,523.3452328167474,523.3452328167474,15894.8951,6.0,483.529,1,2,3,4,5,6 +3165.5,83.0,1596.2726,100,561.2439832048193,561.2439832048193,523.3452328167474,523.3452328167474,15867.17735,6.0,482.68095,1,2,3,4,5,6 +3166.0,83.0,1596.2726,100,560.0272272289156,560.0272272289156,523.3452328167474,523.3452328167474,15839.4596,6.0,481.8329,1,2,3,4,5,6 +3166.5,83.0,1596.2726,100,559.0400392409639,559.0400392409639,523.3452328167474,523.3452328167474,15816.9741,6.0,481.1449,1,2,3,4,5,6 +3167.0,83.0,1596.2726,100,558.052851253012,558.052851253012,523.3452328167474,523.3452328167474,15794.4886,6.0,480.4569,1,2,3,4,5,6 +3167.5,83.0,1596.2726,100,557.6147095662651,557.6147095662651,523.3452328167474,523.3452328167474,15784.509600000001,6.0,480.15160000000003,1,2,3,4,5,6 +3168.0,83.0,1596.2726,100,557.1765678795182,557.1765678795182,523.3452328167474,523.3452328167474,15774.5306,6.0,479.8463,1,2,3,4,5,6 +3168.5,83.0,1596.2726,100,557.4604471807229,557.4604471807229,523.3452328167474,523.3452328167474,15780.99755,6.0,480.04415,1,2,3,4,5,6 +3169.0,83.0,1596.2726,100,557.7443264819277,557.7443264819277,523.3452328167474,523.3452328167474,15787.4645,6.0,480.242,1,2,3,4,5,6 +3169.5,83.0,1596.2726,100,557.7831202771085,557.7831202771085,523.3452328167474,523.3452328167474,15788.3481,6.0,480.26905,1,2,3,4,5,6 +3170.0,83.0,1596.2726,100,557.8219140722892,557.8219140722892,523.3452328167474,523.3452328167474,15789.2317,6.0,480.2961,1,2,3,4,5,6 +3170.5,83.0,1596.2726,100,557.5681570120482,557.5681570120482,523.3452328167474,523.3452328167474,15783.45535,6.0,480.11935000000005,1,2,3,4,5,6 +3171.0,83.0,1596.2726,100,557.3143999518072,557.3143999518072,523.3452328167474,523.3452328167474,15777.679,6.0,479.9426,1,2,3,4,5,6 +3171.5,83.0,1596.2726,100,557.3751008313253,557.3751008313253,523.3452328167474,523.3452328167474,15779.06185,6.0,479.98490000000004,1,2,3,4,5,6 +3172.0,83.0,1596.2726,100,557.4358017108434,557.4358017108434,523.3452328167474,523.3452328167474,15780.4447,6.0,480.0272,1,2,3,4,5,6 +3172.5,83.0,1596.2726,100,557.7488904578314,557.7488904578314,523.3452328167474,523.3452328167474,15787.57275,6.0,480.2453,1,2,3,4,5,6 +3173.0,83.0,1596.2726,100,558.0619792048194,558.0619792048194,523.3452328167474,523.3452328167474,15794.7008,6.0,480.4634,1,2,3,4,5,6 +3173.5,83.0,1596.2726,100,558.2878960120482,558.2878960120482,523.3452328167474,523.3452328167474,15799.8408,6.0,480.62064999999996,1,2,3,4,5,6 +3174.0,83.0,1596.2726,100,558.5138128192771,558.5138128192771,523.3452328167474,523.3452328167474,15804.9808,6.0,480.7779,1,2,3,4,5,6 +3174.5,83.0,1596.2726,100,558.5576269879518,558.5576269879518,523.3452328167474,523.3452328167474,15805.9844,6.0,480.80865,1,2,3,4,5,6 +3175.0,83.0,1596.2726,100,558.6014411566266,558.6014411566266,523.3452328167474,523.3452328167474,15806.988,6.0,480.8394,1,2,3,4,5,6 +3175.5,83.0,1596.2726,100,558.4225333012048,558.4225333012048,523.3452328167474,523.3452328167474,15802.91225,6.0,480.7147,1,2,3,4,5,6 +3176.0,83.0,1596.2726,100,558.2436254457832,558.2436254457832,523.3452328167474,523.3452328167474,15798.8365,6.0,480.59,1,2,3,4,5,6 +3176.5,83.0,1596.2726,100,557.0743348192772,557.0743348192772,523.3452328167474,523.3452328167474,15772.21125,6.0,479.77509999999995,1,2,3,4,5,6 +3177.0,83.0,1596.2726,100,555.9050441927711,555.9050441927711,523.3452328167474,523.3452328167474,15745.586,6.0,478.9602,1,2,3,4,5,6 +3177.5,83.0,1596.2726,100,554.0237733253012,554.0237733253012,523.3452328167474,523.3452328167474,15703.13735,6.0,477.6489,1,2,3,4,5,6 +3178.0,83.0,1596.2726,100,552.1425024578314,552.1425024578314,523.3452328167474,523.3452328167474,15660.6887,6.0,476.3376,1,2,3,4,5,6 +3178.5,83.0,1596.2726,100,549.3297241084338,549.3297241084338,523.3452328167474,523.3452328167474,15597.59785,6.0,474.37710000000004,1,2,3,4,5,6 +3179.0,83.0,1596.2726,100,546.5169457590362,546.5169457590362,523.3452328167474,523.3452328167474,15534.507,6.0,472.4166,1,2,3,4,5,6 +3179.5,83.0,1596.2726,100,543.1345832168674,543.1345832168674,523.3452328167474,523.3452328167474,15458.6441,6.0,470.05920000000003,1,2,3,4,5,6 +3180.0,83.0,1596.2726,100,539.7522206746988,539.7522206746988,523.3452328167474,523.3452328167474,15382.7812,6.0,467.7018,1,2,3,4,5,6 +3180.5,83.0,1596.2726,100,536.7208278795182,536.7208278795182,523.3452328167474,523.3452328167474,15314.7962,6.0,465.5892,1,2,3,4,5,6 +3181.0,83.0,1596.2726,100,533.6894350843373,533.6894350843373,523.3452328167474,523.3452328167474,15246.8112,6.0,463.4766,1,2,3,4,5,6 +3181.5,83.0,1596.2726,100,525.4797552289157,525.4797552289157,523.3452328167474,523.3452328167474,15062.66895,6.0,457.7545,1,2,3,4,5,6 +3182.0,83.0,1596.2726,100,517.270075373494,517.270075373494,523.3452328167474,523.3452328167474,14878.5267,6.0,452.0324,1,2,3,4,5,6 +3182.5,83.0,1596.2726,100,510.688822120482,510.688822120482,523.3452328167474,523.3452328167474,14730.9175,6.0,447.4456,1,2,3,4,5,6 +3183.0,83.0,1596.2726,100,504.10756886746987,504.10756886746987,523.3452328167474,523.3452328167474,14583.3083,6.0,442.8588,1,2,3,4,5,6 +3183.5,83.0,1596.2726,100,499.2957690722892,499.2957690722892,523.3452328167474,523.3452328167474,14475.44525,6.0,439.50699999999995,1,2,3,4,5,6 +3184.0,83.0,1596.2726,100,494.4839692771085,494.4839692771085,523.3452328167474,523.3452328167474,14367.5822,6.0,436.1552,1,2,3,4,5,6 +3184.5,83.0,1596.2726,100,484.41036166265064,484.41036166265064,523.3452328167474,523.3452328167474,14141.83495,6.0,429.1403,1,2,3,4,5,6 +3185.0,83.0,1596.2726,100,474.33675404819274,474.33675404819274,523.3452328167474,523.3452328167474,13916.0877,6.0,422.1254,1,2,3,4,5,6 +3185.5,83.0,1596.2726,100,469.08818175903616,469.08818175903616,523.3452328167474,523.3452328167474,13801.95665,6.0,418.47040000000004,1,2,3,4,5,6 +3186.0,83.0,1596.2726,100,463.8396094698796,463.8396094698796,523.3452328167474,523.3452328167474,13687.8256,6.0,414.8154,1,2,3,4,5,6 +3186.5,83.0,1596.2726,100,450.64104755421687,450.64104755421687,523.3452328167474,523.3452328167474,13418.4839,6.0,405.6245,1,2,3,4,5,6 +3187.0,83.0,1596.2726,100,437.4424856385543,437.4424856385543,523.3452328167474,523.3452328167474,13149.1422,6.0,396.4336,1,2,3,4,5,6 +3187.5,83.0,1596.2726,100,427.6577776987952,427.6577776987952,523.3452328167474,523.3452328167474,12956.8675,6.0,389.61990000000003,1,2,3,4,5,6 +3188.0,83.0,1596.2726,100,417.8730697590362,417.8730697590362,523.3452328167474,523.3452328167474,12764.5928,6.0,382.8062,1,2,3,4,5,6 +3188.5,83.0,1596.2726,100,411.42371540963853,411.42371540963853,523.3452328167474,523.3452328167474,12621.223450000001,6.0,378.31525,1,2,3,4,5,6 +3189.0,83.0,1596.2726,100,404.974361060241,404.974361060241,523.3452328167474,523.3452328167474,12477.8541,6.0,373.8243,1,2,3,4,5,6 +3189.5,83.0,1596.2726,100,391.841064,391.841064,523.3452328167474,523.3452328167474,12177.0136,6.0,364.67859999999996,1,2,3,4,5,6 +3190.0,83.0,1596.2726,100,378.70776693975904,378.70776693975904,523.3452328167474,523.3452328167474,11876.1731,6.0,355.5329,1,2,3,4,5,6 +3190.5,83.0,1596.2726,100,370.68475369879513,370.68475369879513,523.3452328167474,523.3452328167474,11692.397649999999,6.0,349.946,1,2,3,4,5,6 +3191.0,83.0,1596.2726,100,362.66174045783134,362.66174045783134,523.3452328167474,523.3452328167474,11508.6222,6.0,344.3591,1,2,3,4,5,6 +3191.5,83.0,1596.2726,100,359.91422696385547,359.91422696385547,523.3452328167474,523.3452328167474,11445.68695,6.0,342.44585,1,2,3,4,5,6 +3192.0,83.0,1596.2726,100,357.16671346987954,357.16671346987954,523.3452328167474,523.3452328167474,11382.7517,6.0,340.5326,1,2,3,4,5,6 +3192.5,83.0,1596.2726,100,362.7197029518073,362.7197029518073,523.3452328167474,523.3452328167474,11509.954300000001,6.0,344.39965,1,2,3,4,5,6 +3193.0,83.0,1596.2726,100,368.27269243373496,368.27269243373496,523.3452328167474,523.3452328167474,11637.1569,6.0,348.2667,1,2,3,4,5,6 +3193.5,83.0,1596.2726,100,377.6242790602409,377.6242790602409,523.3452328167474,523.3452328167474,11851.365450000001,6.0,354.77875,1,2,3,4,5,6 +3194.0,83.0,1596.2726,100,386.975865686747,386.975865686747,523.3452328167474,523.3452328167474,12065.574,6.0,361.2908,1,2,3,4,5,6 +3194.5,83.0,1596.2726,100,396.7523584698795,396.7523584698795,523.3452328167474,523.3452328167474,12289.51605,6.0,368.09875,1,2,3,4,5,6 +3195.0,83.0,1596.2726,100,406.52885125301214,406.52885125301214,523.3452328167474,523.3452328167474,12513.4581,6.0,374.9067,1,2,3,4,5,6 +3195.5,83.0,1596.2726,100,415.7147655542169,415.7147655542169,523.3452328167474,523.3452328167474,12710.15215,6.0,381.3034,1,2,3,4,5,6 +3196.0,83.0,1596.2726,100,424.90067985542174,424.90067985542174,523.3452328167474,523.3452328167474,12906.8462,6.0,387.7001,1,2,3,4,5,6 +3196.5,83.0,1596.2726,100,428.19130648192777,428.19130648192777,523.3452328167474,523.3452328167474,12970.43675,6.0,389.99145,1,2,3,4,5,6 +3197.0,83.0,1596.2726,100,431.4819331084338,431.4819331084338,523.3452328167474,523.3452328167474,13034.0273,6.0,392.2828,1,2,3,4,5,6 +3197.5,83.0,1596.2726,100,433.3604655903615,433.3604655903615,523.3452328167474,523.3452328167474,13070.3074,6.0,393.591,1,2,3,4,5,6 +3198.0,83.0,1596.2726,100,435.2389980722892,435.2389980722892,523.3452328167474,523.3452328167474,13106.5875,6.0,394.8992,1,2,3,4,5,6 +3198.5,83.0,1596.2726,100,440.9594854698796,440.9594854698796,523.3452328167474,523.3452328167474,13217.79435,6.0,398.8826,1,2,3,4,5,6 +3199.0,83.0,1596.2726,100,446.6799728674699,446.6799728674699,523.3452328167474,523.3452328167474,13329.0012,6.0,402.866,1,2,3,4,5,6 +3199.5,83.0,1596.2726,100,459.420768,459.420768,523.3452328167474,523.3452328167474,13598.1685,6.0,411.7382,1,2,3,4,5,6 +3200.0,83.0,1596.2726,100,472.16156313253015,472.16156313253015,523.3452328167474,523.3452328167474,13867.3358,6.0,420.6104,1,2,3,4,5,6 +3200.5,83.0,1596.2726,100,481.3356110963856,481.3356110963856,523.3452328167474,523.3452328167474,14072.92715,6.0,426.999,1,2,3,4,5,6 +3201.0,83.0,1596.2726,100,490.509659060241,490.509659060241,523.3452328167474,523.3452328167474,14278.5185,6.0,433.3876,1,2,3,4,5,6 +3201.5,83.0,1596.2726,100,488.7876709518073,488.7876709518073,523.3452328167474,523.3452328167474,14239.930349999999,6.0,432.1885,1,2,3,4,5,6 +3202.0,83.0,1596.2726,100,487.06568284337357,487.06568284337357,523.3452328167474,523.3452328167474,14201.3422,6.0,430.9894,1,2,3,4,5,6 +3202.5,83.0,1596.2726,100,473.04286687951804,473.04286687951804,523.3452328167474,523.3452328167474,13891.357049999999,6.0,421.22450000000003,1,2,3,4,5,6 +3203.0,83.0,1596.2726,100,459.0200509156627,459.0200509156627,523.3452328167474,523.3452328167474,13581.3719,6.0,411.4596,1,2,3,4,5,6 +3203.5,83.0,1596.2726,100,449.61643496385545,449.61643496385545,523.3452328167474,523.3452328167474,13392.01,6.0,404.91125,1,2,3,4,5,6 +3204.0,83.0,1596.2726,100,440.2128190120482,440.2128190120482,523.3452328167474,523.3452328167474,13202.6481,6.0,398.3629,1,2,3,4,5,6 +3204.5,83.0,1596.2726,100,441.48753748192775,441.48753748192775,523.3452328167474,523.3452328167474,13227.2634,6.0,399.2505,1,2,3,4,5,6 +3205.0,83.0,1596.2726,100,442.7622559518072,442.7622559518072,523.3452328167474,523.3452328167474,13251.8787,6.0,400.1381,1,2,3,4,5,6 +3205.5,83.0,1596.2726,100,443.32453778313254,443.32453778313254,523.3452328167474,523.3452328167474,13262.74215,6.0,400.5298,1,2,3,4,5,6 +3206.0,83.0,1596.2726,100,443.8868196144578,443.8868196144578,523.3452328167474,523.3452328167474,13273.6056,6.0,400.9215,1,2,3,4,5,6 +3206.5,83.0,1596.2726,100,435.8733907228916,435.8733907228916,523.3452328167474,523.3452328167474,13118.8478,6.0,395.34125,1,2,3,4,5,6 +3207.0,83.0,1596.2726,100,427.8599618313254,427.8599618313254,523.3452328167474,523.3452328167474,12964.09,6.0,389.761,1,2,3,4,5,6 +3207.5,83.0,1596.2726,100,427.3665960361447,427.3665960361447,523.3452328167474,523.3452328167474,12954.56135,6.0,389.41745000000003,1,2,3,4,5,6 +3208.0,83.0,1596.2726,100,426.8732302409639,426.8732302409639,523.3452328167474,523.3452328167474,12945.0327,6.0,389.0739,1,2,3,4,5,6 +3208.5,83.0,1596.2726,100,441.638148686747,441.638148686747,523.3452328167474,523.3452328167474,13236.49105,6.0,399.35540000000003,1,2,3,4,5,6 +3209.0,83.0,1596.2726,100,456.4030671325301,456.4030671325301,523.3452328167474,523.3452328167474,13527.9494,6.0,409.6369,1,2,3,4,5,6 +3209.5,83.0,1596.2726,100,470.52446497590364,470.52446497590364,523.3452328167474,523.3452328167474,13837.532650000001,6.0,419.47065,1,2,3,4,5,6 +3210.0,83.0,1596.2726,100,484.64586281927717,484.64586281927717,523.3452328167474,523.3452328167474,14147.1159,6.0,429.3044,1,2,3,4,5,6 +3210.5,83.0,1596.2726,100,496.0558025783133,496.0558025783133,523.3452328167474,523.3452328167474,14402.8888,6.0,437.25235,1,2,3,4,5,6 +3211.0,83.0,1596.2726,100,507.46574233734947,507.46574233734947,523.3452328167474,523.3452328167474,14658.6617,6.0,445.2003,1,2,3,4,5,6 +3211.5,83.0,1596.2726,100,522.6555669397591,522.6555669397591,523.3452328167474,523.3452328167474,14999.43755,6.0,455.78685,1,2,3,4,5,6 +3212.0,83.0,1596.2726,100,537.8453915421687,537.8453915421687,523.3452328167474,523.3452328167474,15340.2134,6.0,466.3734,1,2,3,4,5,6 +3212.5,83.0,1596.2726,100,556.710585939759,556.710585939759,523.3452328167474,523.3452328167474,15766.93345,6.0,479.52165,1,2,3,4,5,6 +3213.0,83.0,1596.2726,100,575.5757803373493,575.5757803373493,523.3452328167474,523.3452328167474,16193.6535,6.0,492.6699,1,2,3,4,5,6 +3213.5,83.0,1596.2726,100,590.1709188795181,590.1709188795181,523.3452328167474,523.3452328167474,16526.11675,6.0,502.8421,1,2,3,4,5,6 +3214.0,83.0,1596.2726,100,604.7660574216868,604.7660574216868,523.3452328167474,523.3452328167474,16858.58,6.0,513.0143,1,2,3,4,5,6 +3214.5,83.0,1596.2726,100,602.7314369638555,602.7314369638555,523.3452328167474,523.3452328167474,16812.23165,6.0,511.5962,1,2,3,4,5,6 +3215.0,83.0,1596.2726,100,600.6968165060241,600.6968165060241,523.3452328167474,523.3452328167474,16765.8833,6.0,510.1781,1,2,3,4,5,6 +3215.5,83.0,1596.2726,100,578.2164967951808,578.2164967951808,523.3452328167474,523.3452328167474,16255.087500000001,6.0,494.51035,1,2,3,4,5,6 +3216.0,83.0,1596.2726,100,555.7361770843374,555.7361770843374,523.3452328167474,523.3452328167474,15744.2917,6.0,478.8426,1,2,3,4,5,6 +3216.5,83.0,1596.2726,100,526.4888503012048,526.4888503012048,523.3452328167474,523.3452328167474,15086.89595,6.0,458.46095,1,2,3,4,5,6 +3217.0,83.0,1596.2726,100,497.24152351807237,497.24152351807237,523.3452328167474,523.3452328167474,14429.5002,6.0,438.0793,1,2,3,4,5,6 +3217.5,83.0,1596.2726,100,482.14389122891566,482.14389122891566,523.3452328167474,523.3452328167474,14091.103650000001,6.0,427.56385,1,2,3,4,5,6 +3218.0,83.0,1596.2726,100,467.0462589397591,467.0462589397591,523.3452328167474,523.3452328167474,13752.7071,6.0,417.0484,1,2,3,4,5,6 +3218.5,83.0,1596.2726,100,467.6436833855422,467.6436833855422,523.3452328167474,523.3452328167474,13766.09635,6.0,417.46445,1,2,3,4,5,6 +3219.0,83.0,1596.2726,100,468.24110783132534,468.24110783132534,523.3452328167474,523.3452328167474,13779.4856,6.0,417.8805,1,2,3,4,5,6 +3219.5,83.0,1596.2726,100,464.78526527710846,464.78526527710846,523.3452328167474,523.3452328167474,13704.5634,6.0,415.47395,1,2,3,4,5,6 +3220.0,83.0,1596.2726,100,461.32942272289165,461.32942272289165,523.3452328167474,523.3452328167474,13629.6412,6.0,413.0674,1,2,3,4,5,6 +3220.5,83.0,1596.2726,100,450.805350686747,450.805350686747,523.3452328167474,523.3452328167474,13416.806349999999,6.0,405.73900000000003,1,2,3,4,5,6 +3221.0,83.0,1596.2726,100,440.2812786506025,440.2812786506025,523.3452328167474,523.3452328167474,13203.9715,6.0,398.4106,1,2,3,4,5,6 +3221.5,83.0,1596.2726,100,434.10850124096385,434.10850124096385,523.3452328167474,523.3452328167474,13082.337899999999,6.0,394.11204999999995,1,2,3,4,5,6 +3222.0,83.0,1596.2726,100,427.93572383132533,427.93572383132533,523.3452328167474,523.3452328167474,12960.7043,6.0,389.8135,1,2,3,4,5,6 +3222.5,83.0,1596.2726,100,410.22384614457843,410.22384614457843,523.3452328167474,523.3452328167474,12576.543699999998,6.0,377.47965,1,2,3,4,5,6 +3223.0,83.0,1596.2726,100,392.51196845783136,392.51196845783136,523.3452328167474,523.3452328167474,12192.3831,6.0,365.1458,1,2,3,4,5,6 +3223.5,83.0,1596.2726,100,363.28928714457834,363.28928714457834,523.3452328167474,523.3452328167474,11532.0511,6.0,344.79585,1,2,3,4,5,6 +3224.0,83.0,1596.2726,100,334.0666058313253,334.0666058313253,523.3452328167474,523.3452328167474,10871.7191,6.0,324.4459,1,2,3,4,5,6 +3224.5,83.0,1596.2726,100,300.0462730481928,300.0462730481928,523.3452328167474,523.3452328167474,10174.4199,6.0,300.7548,1,2,3,4,5,6 +3225.0,83.0,1596.2726,100,266.0259402650603,266.0259402650603,523.3452328167474,523.3452328167474,9477.1207,6.0,277.0637,1,2,3,4,5,6 +3225.5,83.0,1596.2726,100,241.2923856506024,241.2923856506024,523.3452328167474,523.3452328167474,8959.07775,6.0,259.83945,1,2,3,4,5,6 +3226.0,83.0,1596.2726,100,216.5588310361446,216.5588310361446,523.3452328167474,523.3452328167474,8441.0348,6.0,242.6152,1,2,3,4,5,6 +3226.5,83.0,1596.2726,100,193.83662060240965,193.83662060240965,523.3452328167474,523.3452328167474,7935.9412999999995,6.0,227.05865,1,2,3,4,5,6 +3227.0,83.0,1596.2726,100,171.1144101686747,171.1144101686747,523.3452328167474,523.3452328167474,7430.8478,6.0,211.5021,1,2,3,4,5,6 +3227.5,83.0,1596.2726,100,139.29163178313254,139.29163178313254,523.3452328167474,523.3452328167474,6755.05495,6.0,190.34875,1,2,3,4,5,6 +3228.0,83.0,1596.2726,100,107.46885339759037,107.46885339759037,523.3452328167474,523.3452328167474,6079.2621,6.0,169.1954,1,2,3,4,5,6 +3228.5,83.0,1596.2726,100,71.08438109638554,71.08438109638554,523.3452328167474,523.3452328167474,5341.4619999999995,6.0,145.31915,1,2,3,4,5,6 +3229.0,83.0,1596.2726,100,34.699908795180725,34.699908795180725,523.3452328167474,523.3452328167474,4603.6619,6.0,121.4429,1,2,3,4,5,6 +3229.5,83.0,1596.2726,100,15.151030807228917,15.151030807228917,523.3452328167474,523.3452328167474,4244.51135,6.0,108.6312,1,2,3,4,5,6 +3230.0,83.0,1596.2726,100,-4.397847180722892,-4.397847180722892,523.3452328167474,523.3452328167474,3885.3608,6.0,95.8195,1,2,3,4,5,6 +3230.5,83.0,1596.2726,100,2.288833915662651,2.288833915662651,523.3452328167474,523.3452328167474,4003.12975,6.0,100.2016,1,2,3,4,5,6 +3231.0,83.0,1596.2726,100,8.975515012048193,8.975515012048193,523.3452328167474,523.3452328167474,4120.8987,6.0,104.5837,1,2,3,4,5,6 +3231.5,83.0,1596.2726,100,20.144020445783138,20.144020445783138,523.3452328167474,523.3452328167474,4321.0724,6.0,111.90355,1,2,3,4,5,6 +3232.0,83.0,1596.2726,100,31.312525879518073,31.312525879518073,523.3452328167474,523.3452328167474,4521.2461,6.0,119.2234,1,2,3,4,5,6 +3232.5,83.0,1596.2726,100,30.1710755060241,30.1710755060241,523.3452328167474,523.3452328167474,4500.7177,6.0,118.4753,1,2,3,4,5,6 +3233.0,83.0,1596.2726,100,29.02962513253012,29.02962513253012,523.3452328167474,523.3452328167474,4480.1893,6.0,117.7272,1,2,3,4,5,6 +3233.5,83.0,1596.2726,100,21.077809915662648,21.077809915662648,523.3452328167474,523.3452328167474,4337.17755,6.0,112.5158,1,2,3,4,5,6 +3234.0,83.0,1596.2726,100,13.125994698795182,13.125994698795182,523.3452328167474,523.3452328167474,4194.1658,6.0,107.3044,1,2,3,4,5,6 +3234.5,83.0,1596.2726,100,4.683095674698795,4.683095674698795,523.3452328167474,523.3452328167474,4044.6892,6.0,101.77105,1,2,3,4,5,6 +3235.0,83.0,1596.2726,100,-3.75980334939759,-3.75980334939759,523.3452328167474,523.3452328167474,3895.2126,6.0,96.2377,1,2,3,4,5,6 +3235.5,83.0,1596.2726,100,-1.5412546626506025,-1.5412546626506025,523.3452328167474,523.3452328167474,3935.30335,6.0,97.69175,1,2,3,4,5,6 +3236.0,83.0,1596.2726,100,0.6772940240963856,0.6772940240963856,523.3452328167474,523.3452328167474,3975.3941,6.0,99.1458,1,2,3,4,5,6 +3236.5,83.0,1596.2726,100,19.080157662650603,19.080157662650603,523.3452328167474,523.3452328167474,4311.97125,6.0,111.20635,1,2,3,4,5,6 +3237.0,83.0,1596.2726,100,37.483021301204815,37.483021301204815,523.3452328167474,523.3452328167474,4648.5484,6.0,123.2669,1,2,3,4,5,6 +3237.5,83.0,1596.2726,100,53.78097925301205,53.78097925301205,523.3452328167474,523.3452328167474,4977.0301,6.0,133.9485,1,2,3,4,5,6 +3238.0,83.0,1596.2726,100,70.07893720481928,70.07893720481928,523.3452328167474,523.3452328167474,5305.5118,6.0,144.6301,1,2,3,4,5,6 +3238.5,83.0,1596.2726,100,71.57044453012048,71.57044453012048,523.3452328167474,523.3452328167474,5336.277550000001,6.0,145.6073,1,2,3,4,5,6 +3239.0,83.0,1596.2726,100,73.0619518554217,73.0619518554217,523.3452328167474,523.3452328167474,5367.0433,6.0,146.5845,1,2,3,4,5,6 +3239.5,83.0,1596.2726,100,63.84637171084338,63.84637171084338,523.3452328167474,523.3452328167474,5176.89565,6.0,140.5448,1,2,3,4,5,6 +3240.0,83.0,1596.2726,100,54.63079156626507,54.63079156626507,523.3452328167474,523.3452328167474,4986.748,6.0,134.5051,1,2,3,4,5,6 +3240.5,83.0,1596.2726,100,40.11324061445784,40.11324061445784,523.3452328167474,523.3452328167474,4704.4193,6.0,124.9909,1,2,3,4,5,6 +3241.0,83.0,1596.2726,100,25.595689662650603,25.595689662650603,523.3452328167474,523.3452328167474,4422.0906,6.0,115.4767,1,2,3,4,5,6 +3241.5,83.0,1596.2726,100,8.618155698795182,8.618155698795182,523.3452328167474,523.3452328167474,4128.28485,6.0,104.34995,1,2,3,4,5,6 +3242.0,83.0,1596.2726,100,-8.359378265060242,-8.359378265060242,523.3452328167474,523.3452328167474,3834.4791,6.0,93.2232,1,2,3,4,5,6 +3242.5,83.0,1596.2726,100,-13.882701903614457,-13.882701903614457,523.3452328167474,523.3452328167474,3751.7322,6.0,89.60335,1,2,3,4,5,6 +3243.0,83.0,1596.2726,100,-19.406025542168678,-19.406025542168678,523.3452328167474,523.3452328167474,3668.9853,6.0,85.9835,1,2,3,4,5,6 +3243.5,83.0,1596.2726,100,-10.006060771084336,-10.006060771084336,523.3452328167474,523.3452328167474,3813.06675,6.0,92.14410000000001,1,2,3,4,5,6 +3244.0,83.0,1596.2726,100,-0.6060960000000001,-0.6060960000000001,523.3452328167474,523.3452328167474,3957.1482,6.0,98.3047,1,2,3,4,5,6 +3244.5,83.0,1596.2726,100,13.285733855421686,13.285733855421686,523.3452328167474,523.3452328167474,4203.8381500000005,6.0,107.40905000000001,1,2,3,4,5,6 +3245.0,83.0,1596.2726,100,27.177563710843373,27.177563710843373,523.3452328167474,523.3452328167474,4450.5281,6.0,116.5134,1,2,3,4,5,6 +3245.5,83.0,1596.2726,100,43.61837410843374,43.61837410843374,523.3452328167474,523.3452328167474,4774.6469,6.0,127.28829999999999,1,2,3,4,5,6 +3246.0,83.0,1596.2726,100,60.059184506024096,60.059184506024096,523.3452328167474,523.3452328167474,5098.7657,6.0,138.0632,1,2,3,4,5,6 +3246.5,83.0,1596.2726,100,74.68855286746988,74.68855286746988,523.3452328167474,523.3452328167474,5400.6204,6.0,147.65105,1,2,3,4,5,6 +3247.0,83.0,1596.2726,100,89.31792122891567,89.31792122891567,523.3452328167474,523.3452328167474,5702.4751,6.0,157.2389,1,2,3,4,5,6 +3247.5,83.0,1596.2726,100,90.85096073493978,90.85096073493978,523.3452328167474,523.3452328167474,5734.09915,6.0,158.24335000000002,1,2,3,4,5,6 +3248.0,83.0,1596.2726,100,92.38400024096386,92.38400024096386,523.3452328167474,523.3452328167474,5765.7232,6.0,159.2478,1,2,3,4,5,6 +3248.5,83.0,1596.2726,100,83.55681444578315,83.55681444578315,523.3452328167474,523.3452328167474,5583.5939,6.0,153.46280000000002,1,2,3,4,5,6 +3249.0,83.0,1596.2726,100,74.72962865060241,74.72962865060241,523.3452328167474,523.3452328167474,5401.4646,6.0,147.6778,1,2,3,4,5,6 +3249.5,83.0,1596.2726,100,62.062769927710846,62.062769927710846,523.3452328167474,523.3452328167474,5140.52285,6.0,139.37630000000001,1,2,3,4,5,6 +3250.0,83.0,1596.2726,100,49.39591120481928,49.39591120481928,523.3452328167474,523.3452328167474,4879.5811,6.0,131.0748,1,2,3,4,5,6 +3250.5,83.0,1596.2726,100,37.12155440963856,37.12155440963856,523.3452328167474,523.3452328167474,4642.27275,6.0,123.03040000000001,1,2,3,4,5,6 +3251.0,83.0,1596.2726,100,24.847197614457837,24.847197614457837,523.3452328167474,523.3452328167474,4404.9644,6.0,114.986,1,2,3,4,5,6 +3251.5,83.0,1596.2726,100,16.592790795180726,16.592790795180726,523.3452328167474,523.3452328167474,4256.507,6.0,109.57615000000001,1,2,3,4,5,6 +3252.0,83.0,1596.2726,100,8.338383975903614,8.338383975903614,523.3452328167474,523.3452328167474,4108.0496,6.0,104.1663,1,2,3,4,5,6 +3252.5,83.0,1596.2726,100,4.130854590361446,4.130854590361446,523.3452328167474,523.3452328167474,4034.7441500000004,6.0,101.409,1,2,3,4,5,6 +3253.0,83.0,1596.2726,100,-0.0766747951807229,-0.0766747951807229,523.3452328167474,523.3452328167474,3961.4387,6.0,98.6517,1,2,3,4,5,6 +3253.5,83.0,1596.2726,100,0.12596573493975902,0.12596573493975902,523.3452328167474,523.3452328167474,3965.2715,6.0,98.78450000000001,1,2,3,4,5,6 +3254.0,83.0,1596.2726,100,0.328606265060241,0.328606265060241,523.3452328167474,523.3452328167474,3969.1043,6.0,98.9173,1,2,3,4,5,6 +3254.5,83.0,1596.2726,100,19.814501385542172,19.814501385542172,523.3452328167474,523.3452328167474,4327.24525,6.0,111.68764999999999,1,2,3,4,5,6 +3255.0,83.0,1596.2726,100,39.3003965060241,39.3003965060241,523.3452328167474,523.3452328167474,4685.3862,6.0,124.458,1,2,3,4,5,6 +3255.5,83.0,1596.2726,100,57.876234831325306,57.876234831325306,523.3452328167474,523.3452328167474,5061.1955,6.0,136.63235,1,2,3,4,5,6 +3256.0,83.0,1596.2726,100,76.45207315662651,76.45207315662651,523.3452328167474,523.3452328167474,5437.0048,6.0,148.8067,1,2,3,4,5,6 +3256.5,83.0,1596.2726,100,79.03573991566267,79.03573991566267,523.3452328167474,523.3452328167474,5490.316849999999,6.0,150.50005,1,2,3,4,5,6 +3257.0,83.0,1596.2726,100,81.61940667469881,81.61940667469881,523.3452328167474,523.3452328167474,5543.6289,6.0,152.1934,1,2,3,4,5,6 +3257.5,83.0,1596.2726,100,81.35652166265061,81.35652166265061,523.3452328167474,523.3452328167474,5538.2016,6.0,152.02100000000002,1,2,3,4,5,6 +3258.0,83.0,1596.2726,100,81.09363665060242,81.09363665060242,523.3452328167474,523.3452328167474,5532.7743,6.0,151.8486,1,2,3,4,5,6 +3258.5,83.0,1596.2726,100,95.96535213253011,95.96535213253011,523.3452328167474,523.3452328167474,5840.11255,6.0,161.61065000000002,1,2,3,4,5,6 +3259.0,83.0,1596.2726,100,110.83706761445784,110.83706761445784,523.3452328167474,523.3452328167474,6147.4508,6.0,171.3727,1,2,3,4,5,6 +3259.5,83.0,1596.2726,100,132.94131571084338,132.94131571084338,523.3452328167474,523.3452328167474,6614.47025,6.0,186.04135000000002,1,2,3,4,5,6 +3260.0,83.0,1596.2726,100,155.04556380722894,155.04556380722894,523.3452328167474,523.3452328167474,7081.4897,6.0,200.71,1,2,3,4,5,6 +3260.5,83.0,1596.2726,100,169.19754028915665,169.19754028915665,523.3452328167474,523.3452328167474,7388.58805,6.0,210.1845,1,2,3,4,5,6 +3261.0,83.0,1596.2726,100,183.34951677108438,183.34951677108438,523.3452328167474,523.3452328167474,7695.6864,6.0,219.659,1,2,3,4,5,6 +3261.5,83.0,1596.2726,100,192.3916658313253,192.3916658313253,523.3452328167474,523.3452328167474,7897.374,6.0,225.87085,1,2,3,4,5,6 +3262.0,83.0,1596.2726,100,201.43381489156627,201.43381489156627,523.3452328167474,523.3452328167474,8099.0616,6.0,232.0827,1,2,3,4,5,6 +3262.5,83.0,1596.2726,100,214.70859520481932,214.70859520481932,523.3452328167474,523.3452328167474,8396.4867,6.0,241.32684999999998,1,2,3,4,5,6 +3263.0,83.0,1596.2726,100,227.9833755180723,227.9833755180723,523.3452328167474,523.3452328167474,8693.9118,6.0,250.571,1,2,3,4,5,6 +3263.5,83.0,1596.2726,100,251.94835659036144,251.94835659036144,523.3452328167474,523.3452328167474,9182.7871,6.0,267.2598,1,2,3,4,5,6 +3264.0,83.0,1596.2726,100,275.91333766265063,275.91333766265063,523.3452328167474,523.3452328167474,9671.6624,6.0,283.9486,1,2,3,4,5,6 +3264.5,83.0,1596.2726,100,309.807248313253,309.807248313253,523.3452328167474,523.3452328167474,10378.06365,6.0,307.55174999999997,1,2,3,4,5,6 +3265.0,83.0,1596.2726,100,343.7011589638554,343.7011589638554,523.3452328167474,523.3452328167474,11084.4649,6.0,331.1549,1,2,3,4,5,6 +3265.5,83.0,1596.2726,100,380.6629742168675,380.6629742168675,523.3452328167474,523.3452328167474,11908.6754,6.0,356.89425,1,2,3,4,5,6 +3266.0,83.0,1596.2726,100,417.6247894698795,417.6247894698795,523.3452328167474,523.3452328167474,12732.8859,6.0,382.6336,1,2,3,4,5,6 +3266.5,83.0,1596.2726,100,454.0275176746988,454.0275176746988,523.3452328167474,523.3452328167474,13505.601449999998,6.0,407.98490000000004,1,2,3,4,5,6 +3267.0,83.0,1596.2726,100,490.4302458795181,490.4302458795181,523.3452328167474,523.3452328167474,14278.317,6.0,433.3362,1,2,3,4,5,6 +3267.5,83.0,1596.2726,100,525.0224448433736,525.0224448433736,523.3452328167474,523.3452328167474,15055.43575,6.0,457.4409,1,2,3,4,5,6 +3268.0,83.0,1596.2726,100,559.614643807229,559.614643807229,523.3452328167474,523.3452328167474,15832.5545,6.0,481.5456,1,2,3,4,5,6 +3268.5,83.0,1596.2726,100,589.3206501686747,589.3206501686747,523.3452328167474,523.3452328167474,16507.9993,6.0,502.24979999999994,1,2,3,4,5,6 +3269.0,83.0,1596.2726,100,619.0266565301205,619.0266565301205,523.3452328167474,523.3452328167474,17183.4441,6.0,522.954,1,2,3,4,5,6 +3269.5,83.0,1596.2726,100,648.4341788674698,648.4341788674698,523.3452328167474,523.3452328167474,17824.825100000002,6.0,543.44995,1,2,3,4,5,6 +3270.0,83.0,1596.2726,100,677.8417012048193,677.8417012048193,523.3452328167474,523.3452328167474,18466.2061,6.0,563.9459,1,2,3,4,5,6 +3270.5,83.0,1596.2726,100,713.1139325783133,713.1139325783133,523.3452328167474,523.3452328167474,19244.58065,6.0,588.5269499999999,1,2,3,4,5,6 +3271.0,83.0,1596.2726,100,748.3861639518072,748.3861639518072,523.3452328167474,523.3452328167474,20022.9552,6.0,613.108,1,2,3,4,5,6 +3271.5,83.0,1596.2726,100,775.8215923012049,775.8215923012049,523.3452328167474,523.3452328167474,20620.684999999998,6.0,632.21615,1,2,3,4,5,6 +3272.0,83.0,1596.2726,100,803.2570206506024,803.2570206506024,523.3452328167474,523.3452328167474,21218.4148,6.0,651.3243,1,2,3,4,5,6 +3272.5,83.0,1596.2726,100,807.9469622891567,807.9469622891567,523.3452328167474,523.3452328167474,21313.01045,6.0,654.59025,1,2,3,4,5,6 +3273.0,83.0,1596.2726,100,812.6369039277109,812.6369039277109,523.3452328167474,523.3452328167474,21407.6061,6.0,657.8562,1,2,3,4,5,6 +3273.5,83.0,1596.2726,100,804.0972486144577,804.0972486144577,523.3452328167474,523.3452328167474,21239.8538,6.0,651.90955,1,2,3,4,5,6 +3274.0,83.0,1596.2726,100,795.5575933012049,795.5575933012049,523.3452328167474,523.3452328167474,21072.1015,6.0,645.9629,1,2,3,4,5,6 +3274.5,83.0,1596.2726,100,796.4608041325301,796.4608041325301,523.3452328167474,523.3452328167474,21089.7371,6.0,646.5917999999999,1,2,3,4,5,6 +3275.0,83.0,1596.2726,100,797.3640149638555,797.3640149638555,523.3452328167474,523.3452328167474,21107.3727,6.0,647.2207,1,2,3,4,5,6 +3275.5,83.0,1596.2726,100,821.5740815421686,821.5740815421686,523.3452328167474,523.3452328167474,21580.2992,6.0,664.07995,1,2,3,4,5,6 +3276.0,83.0,1596.2726,100,845.784148120482,845.784148120482,523.3452328167474,523.3452328167474,22053.2257,6.0,680.9392,1,2,3,4,5,6 +3276.5,83.0,1596.2726,100,885.0676579156627,885.0676579156627,523.3452328167474,523.3452328167474,22879.12775,6.0,708.2950000000001,1,2,3,4,5,6 +3277.0,83.0,1596.2726,100,924.3511677108435,924.3511677108435,523.3452328167474,523.3452328167474,23705.0298,6.0,735.6508,1,2,3,4,5,6 +3277.5,83.0,1596.2726,100,952.7632869036145,952.7632869036145,523.3452328167474,523.3452328167474,24338.014349999998,6.0,755.4363000000001,1,2,3,4,5,6 +3278.0,83.0,1596.2726,100,981.1754060963855,981.1754060963855,523.3452328167474,523.3452328167474,24970.9989,6.0,775.2218,1,2,3,4,5,6 +3278.5,83.0,1596.2726,100,984.9183227349399,984.9183227349399,523.3452328167474,523.3452328167474,25055.95365,6.0,777.82825,1,2,3,4,5,6 +3279.0,83.0,1596.2726,100,988.6612393734941,988.6612393734941,523.3452328167474,523.3452328167474,25140.9084,6.0,780.4347,1,2,3,4,5,6 +3279.5,83.0,1596.2726,100,979.3516413253014,979.3516413253014,523.3452328167474,523.3452328167474,24928.829149999998,6.0,773.95185,1,2,3,4,5,6 +3280.0,83.0,1596.2726,100,970.0420432771085,970.0420432771085,523.3452328167474,523.3452328167474,24716.7499,6.0,767.469,1,2,3,4,5,6 +3280.5,83.0,1596.2726,100,963.409673493976,963.409673493976,523.3452328167474,523.3452328167474,24568.421499999997,6.0,762.85015,1,2,3,4,5,6 +3281.0,83.0,1596.2726,100,956.7773037108434,956.7773037108434,523.3452328167474,523.3452328167474,24420.0931,6.0,758.2313,1,2,3,4,5,6 +3281.5,83.0,1596.2726,100,955.996407433735,955.996407433735,523.3452328167474,523.3452328167474,24402.8805,6.0,757.68775,1,2,3,4,5,6 +3282.0,83.0,1596.2726,100,955.2155111566266,955.2155111566266,523.3452328167474,523.3452328167474,24385.6679,6.0,757.1442,1,2,3,4,5,6 +3282.5,83.0,1596.2726,100,957.6202700602411,957.6202700602411,523.3452328167474,523.3452328167474,24438.6901,6.0,758.81855,1,2,3,4,5,6 +3283.0,83.0,1596.2726,100,960.0250289638554,960.0250289638554,523.3452328167474,523.3452328167474,24491.7123,6.0,760.4929,1,2,3,4,5,6 +3283.5,83.0,1596.2726,100,965.5237071325303,965.5237071325303,523.3452328167474,523.3452328167474,24615.0045,6.0,764.3222499999999,1,2,3,4,5,6 +3284.0,83.0,1596.2726,100,971.0223853012048,971.0223853012048,523.3452328167474,523.3452328167474,24738.2967,6.0,768.1516,1,2,3,4,5,6 +3284.5,83.0,1596.2726,100,976.8802483734939,976.8802483734939,523.3452328167474,523.3452328167474,24871.954149999998,6.0,772.23065,1,2,3,4,5,6 +3285.0,83.0,1596.2726,100,982.7381114457831,982.7381114457831,523.3452328167474,523.3452328167474,25005.6116,6.0,776.3097,1,2,3,4,5,6 +3285.5,83.0,1596.2726,100,990.0454932650601,990.0454932650601,523.3452328167474,523.3452328167474,25172.516750000003,6.0,781.3984,1,2,3,4,5,6 +3286.0,83.0,1596.2726,100,997.3528750843374,997.3528750843374,523.3452328167474,523.3452328167474,25339.4219,6.0,786.4871,1,2,3,4,5,6 +3286.5,83.0,1596.2726,100,992.6305292168676,992.6305292168676,523.3452328167474,523.3452328167474,25231.55925,6.0,783.1985,1,2,3,4,5,6 +3287.0,83.0,1596.2726,100,987.9081833493976,987.9081833493976,523.3452328167474,523.3452328167474,25123.6966,6.0,779.9099,1,2,3,4,5,6 +3287.5,83.0,1596.2726,100,984.9899771566265,984.9899771566265,523.3452328167474,523.3452328167474,25057.05055,6.0,777.87795,1,2,3,4,5,6 +3288.0,83.0,1596.2726,100,982.0717709638554,982.0717709638554,523.3452328167474,523.3452328167474,24990.4045,6.0,775.846,1,2,3,4,5,6 +3288.5,83.0,1596.2726,100,989.4380280722892,989.4380280722892,523.3452328167474,523.3452328167474,25158.66055,6.0,780.97595,1,2,3,4,5,6 +3289.0,83.0,1596.2726,100,996.8042851807229,996.8042851807229,523.3452328167474,523.3452328167474,25326.9166,6.0,786.1059,1,2,3,4,5,6 +3289.5,83.0,1596.2726,100,1015.1090233373495,1015.1090233373495,523.3452328167474,523.3452328167474,25745.156600000002,6.0,798.8575000000001,1,2,3,4,5,6 +3290.0,83.0,1596.2726,100,1033.4137614939762,1033.4137614939762,523.3452328167474,523.3452328167474,26163.3966,6.0,811.6091,1,2,3,4,5,6 +3290.5,83.0,1596.2726,100,1047.3229344578315,1047.3229344578315,523.3452328167474,523.3452328167474,26479.29025,6.0,821.29915,1,2,3,4,5,6 +3291.0,83.0,1596.2726,100,1061.2321074216868,1061.2321074216868,523.3452328167474,523.3452328167474,26795.1839,6.0,830.9892,1,2,3,4,5,6 +3291.5,83.0,1596.2726,100,1051.4222976144579,1051.4222976144579,523.3452328167474,523.3452328167474,26572.9548,6.0,824.15485,1,2,3,4,5,6 +3292.0,83.0,1596.2726,100,1041.612487807229,1041.612487807229,523.3452328167474,523.3452328167474,26350.7257,6.0,817.3205,1,2,3,4,5,6 +3292.5,83.0,1596.2726,100,1012.6362611927711,1012.6362611927711,523.3452328167474,523.3452328167474,25690.051099999997,6.0,797.1369,1,2,3,4,5,6 +3293.0,83.0,1596.2726,100,983.6600345783133,983.6600345783133,523.3452328167474,523.3452328167474,25029.3765,6.0,776.9533,1,2,3,4,5,6 +3293.5,83.0,1596.2726,100,960.2468381927712,960.2468381927712,523.3452328167474,523.3452328167474,24504.833749999998,6.0,760.6482000000001,1,2,3,4,5,6 +3294.0,83.0,1596.2726,100,936.833641807229,936.833641807229,523.3452328167474,523.3452328167474,23980.291,6.0,744.3431,1,2,3,4,5,6 +3294.5,83.0,1596.2726,100,935.1874156987952,935.1874156987952,523.3452328167474,523.3452328167474,23943.9906,6.0,743.1968,1,2,3,4,5,6 +3295.0,83.0,1596.2726,100,933.5411895903616,933.5411895903616,523.3452328167474,523.3452328167474,23907.6902,6.0,742.0505,1,2,3,4,5,6 +3295.5,83.0,1596.2726,100,951.7103776626507,951.7103776626507,523.3452328167474,523.3452328167474,24311.9079,6.0,754.703,1,2,3,4,5,6 +3296.0,83.0,1596.2726,100,969.8795657349399,969.8795657349399,523.3452328167474,523.3452328167474,24716.1256,6.0,767.3555,1,2,3,4,5,6 +3296.5,83.0,1596.2726,100,999.4778622650603,999.4778622650603,523.3452328167474,523.3452328167474,25390.2056,6.0,787.9714,1,2,3,4,5,6 +3297.0,83.0,1596.2726,100,1029.0761587951808,1029.0761587951808,523.3452328167474,523.3452328167474,26064.2856,6.0,808.5873,1,2,3,4,5,6 +3297.5,83.0,1596.2726,100,1063.195986253012,1063.195986253012,523.3452328167474,523.3452328167474,26795.7552,6.0,832.35725,1,2,3,4,5,6 +3298.0,83.0,1596.2726,100,1097.3158137108435,1097.3158137108435,523.3452328167474,523.3452328167474,27527.2248,6.0,856.1272,1,2,3,4,5,6 +3298.5,83.0,1596.2726,100,1128.1486657228916,1128.1486657228916,523.3452328167474,523.3452328167474,28222.0925,6.0,877.60745,1,2,3,4,5,6 +3299.0,83.0,1596.2726,100,1158.9815177349399,1158.9815177349399,523.3452328167474,523.3452328167474,28916.9602,6.0,899.0877,1,2,3,4,5,6 +3299.5,83.0,1596.2726,100,1173.6866480963856,1173.6866480963856,523.3452328167474,523.3452328167474,29250.09445,6.0,909.33245,1,2,3,4,5,6 +3300.0,83.0,1596.2726,100,1188.3917784578314,1188.3917784578314,523.3452328167474,523.3452328167474,29583.2287,6.0,919.5772,1,2,3,4,5,6 +3300.5,83.0,1596.2726,100,1186.3010210963857,1186.3010210963857,523.3452328167474,523.3452328167474,29540.53695,6.0,918.12055,1,2,3,4,5,6 +3301.0,83.0,1596.2726,100,1184.2102637349399,1184.2102637349399,523.3452328167474,523.3452328167474,29497.8452,6.0,916.6639,1,2,3,4,5,6 +3301.5,83.0,1596.2726,100,1184.3197991566267,1184.3197991566267,523.3452328167474,523.3452328167474,29499.894350000002,6.0,916.7402,1,2,3,4,5,6 +3302.0,83.0,1596.2726,100,1184.4293345783133,1184.4293345783133,523.3452328167474,523.3452328167474,29501.9435,6.0,916.8165,1,2,3,4,5,6 +3302.5,82.99969999999999,1596.26965,100,1199.3021901043023,1199.3021901043023,523.343341207472,523.343341207472,29801.95545,6.0,927.17215,1,2,3,4,5,6 +3303.0,82.9994,1596.2667,100,1214.175153145685,1214.175153145685,523.341449598197,523.341449598197,30101.9674,6.0,937.5278,1,2,3,4,5,6 +3303.5,82.99324999999999,1596.167,100,1226.3674927900763,1226.3674927900763,523.3026716080544,523.3026716080544,30360.40515,6.0,945.9337499999999,1,2,3,4,5,6 +3304.0,82.9871,1596.0673,100,1238.561639531927,1238.561639531927,523.2638936179121,523.2638936179121,30618.8429,6.0,954.3397,1,2,3,4,5,6 +3304.5,82.96775,1595.6877,100,1239.8631841167203,1239.8631841167203,523.1418848196589,523.1418848196589,30637.767249999997,6.0,955.14455,1,2,3,4,5,6 +3305.0,82.9484,1595.3081,100,1241.1653359437917,1241.1653359437917,523.0198760214059,523.0198760214059,30656.6916,6.0,955.9494,1,2,3,4,5,6 +3305.5,82.91605000000001,1594.6876,100,1241.3083069562526,1241.3083069562526,522.8158974878925,522.8158974878925,30645.05945,6.0,955.9747,1,2,3,4,5,6 +3306.0,82.8837,1594.0671,100,1241.4513895735831,1241.4513895735831,522.6119189543789,522.6119189543789,30633.4273,6.0,956.0,1,2,3,4,5,6 +3306.5,82.83635000000001,1593.1701,100,1241.6470099660353,1241.6470099660353,522.3133599571033,522.3133599571033,30615.4067,6.0,956.0,1,2,3,4,5,6 +3307.0,82.789,1592.2731,100,1241.8428541231322,1241.8428541231322,522.0148009598278,522.0148009598278,30597.3861,6.0,956.0,1,2,3,4,5,6 +3307.5,82.72005,1590.9449,100,1242.0747421695226,1242.0747421695226,521.5800460947347,521.5800460947347,30570.70235,6.0,956.0,1,2,3,4,5,6 +3308.0,82.6511,1589.6167,100,1242.3070171116897,1242.3070171116897,521.1452912296419,521.1452912296419,30544.0186,6.0,956.0,1,2,3,4,5,6 +3308.5,82.56115,1587.8762000000002,100,1242.4615990571838,1242.4615990571838,520.578123715282,520.578123715282,30509.05185,6.0,956.0,1,2,3,4,5,6 +3309.0,82.4712,1586.1357,100,1242.6165182027182,1242.6165182027182,520.0109562009221,520.0109562009221,30474.0851,6.0,956.0,1,2,3,4,5,6 +3309.5,82.36585,1584.10885,100,1242.7249712836087,1242.7249712836087,519.3466860770999,519.3466860770999,30433.36645,6.0,956.0,1,2,3,4,5,6 +3310.0,82.2605,1582.082,100,1242.8337021535247,1242.8337021535247,518.6824159532777,518.6824159532777,30392.6478,6.0,956.0,1,2,3,4,5,6 +3310.5,82.14144999999999,1579.79265,100,1242.9540203027827,1242.9540203027827,517.9317623392194,517.9317623392194,30346.6544,6.0,956.0,1,2,3,4,5,6 +3311.0,82.0224,1577.5033,100,1243.0746877194522,1243.0746877194522,517.1811087251613,517.1811087251613,30300.661,6.0,956.0,1,2,3,4,5,6 +3311.5,81.89189999999999,1574.9789500000002,100,1243.1197381059665,1243.1197381059665,516.3582586904313,516.3582586904313,30249.9461,6.0,956.0,1,2,3,4,5,6 +3312.0,81.7614,1572.4546,100,1243.1649323030183,1243.1649323030183,515.5354086557013,515.5354086557013,30199.2312,6.0,956.0,1,2,3,4,5,6 +3312.5,81.62955,1569.90335,100,1243.0609854519596,1243.0609854519596,514.7040463792328,514.7040463792328,30147.97685,6.0,956.0,1,2,3,4,5,6 +3313.0,81.4977,1567.3521,100,1242.9567022627634,1242.9567022627634,513.8726841027643,513.8726841027643,30096.7225,6.0,956.0,1,2,3,4,5,6 +3313.5,81.37549999999999,1564.99925,100,1242.7866256920083,1242.7866256920083,513.102168591316,513.102168591316,30049.453,6.0,956.0,1,2,3,4,5,6 +3314.0,81.2533,1562.6464,100,1242.6160375517059,1242.6160375517059,512.3316530798677,512.3316530798677,30002.1835,6.0,956.0,1,2,3,4,5,6 +3314.5,81.14314999999999,1560.53725,100,1242.4863800949313,1242.4863800949313,511.63711720764155,511.63711720764155,29959.8108,6.0,956.0,1,2,3,4,5,6 +3315.0,81.033,1558.4281,100,1242.3563701454964,1242.3563701454964,510.94258133541564,510.94258133541564,29917.4381,6.0,956.0,1,2,3,4,5,6 +3315.5,80.92920000000001,1556.4427500000002,100,1242.3195116101479,1242.3195116101479,510.28808452618216,510.28808452618216,29877.55205,6.0,956.0,1,2,3,4,5,6 +3316.0,80.8254,1554.4574,100,1242.2825584036702,1242.2825584036702,509.63358771694857,509.63358771694857,29837.666,6.0,956.0,1,2,3,4,5,6 +3316.5,80.71875,1552.4156,100,1242.3419322648087,1242.3419322648087,508.96112061960036,508.96112061960036,29796.646050000003,6.0,956.0,1,2,3,4,5,6 +3317.0,80.6121,1550.3738,100,1242.4014632294654,1242.4014632294654,508.28865352225216,508.28865352225216,29755.6261,6.0,956.0,1,2,3,4,5,6 +3317.5,80.49754999999999,1548.16395,100,1242.4522637645498,1242.4522637645498,507.5663740473224,507.5663740473224,29711.2305,6.0,956.0,1,2,3,4,5,6 +3318.0,80.383,1545.9541,100,1242.5032090864984,1242.5032090864984,506.84409457239286,506.84409457239286,29666.8349,6.0,956.0,1,2,3,4,5,6 +3318.5,80.26429999999999,1543.6589,100,1242.463272438681,1242.463272438681,506.0956478358223,506.0956478358223,29620.72375,6.0,956.0,1,2,3,4,5,6 +3319.0,80.1456,1541.3637,100,1242.4232174941606,1242.4232174941606,505.34720109925195,505.34720109925195,29574.6126,6.0,956.0,1,2,3,4,5,6 +3319.5,80.03265,1539.17855,100,1242.2653847148633,1242.2653847148633,504.6350102071236,504.6350102071236,29530.71355,6.0,956.0,1,2,3,4,5,6 +3320.0,79.9197,1536.9934,100,1242.1071058074542,1242.1071058074542,503.9228193149953,503.9228193149953,29486.8145,6.0,956.0,1,2,3,4,5,6 +3320.5,79.8209,1535.0952,100,1241.9104531519938,1241.9104531519938,503.2998493270158,503.2998493270158,29448.67925,6.0,956.0,1,2,3,4,5,6 +3321.0,79.7221,1533.197,100,1241.7133130712814,1241.7133130712814,502.67687933903636,502.67687933903636,29410.544,6.0,956.0,1,2,3,4,5,6 +3321.5,79.63515,1531.5405999999998,100,1241.6315726660903,1241.6315726660903,502.1286279174289,502.1286279174289,29377.2667,6.0,956.0,1,2,3,4,5,6 +3322.0,79.5482,1529.8842,100,1241.5496535685286,1241.5496535685286,501.58037649582144,501.58037649582144,29343.9894,6.0,956.0,1,2,3,4,5,6 +3322.5,79.46209999999999,1528.2451,100,1241.5953837867362,1241.5953837867362,501.03748463382726,501.03748463382726,29311.059699999998,6.0,956.0,1,2,3,4,5,6 +3323.0,79.376,1526.606,100,1241.6412132130617,1241.6412132130617,500.494592771833,500.494592771833,29278.13,6.0,956.0,1,2,3,4,5,6 +3323.5,79.28399999999999,1524.81905,100,1241.6691743983654,1241.6691743983654,499.914499260759,499.914499260759,29242.2301,6.0,956.0,1,2,3,4,5,6 +3324.0,79.192,1523.0321,100,1241.6972005505609,1241.6972005505609,499.334405749685,499.334405749685,29206.3302,6.0,956.0,1,2,3,4,5,6 +3324.5,79.1051,1521.32375,100,1241.4718857191258,1241.4718857191258,498.78646959629015,498.78646959629015,29172.00895,6.0,956.0,1,2,3,4,5,6 +3325.0,79.0182,1519.6154,100,1241.2460753092325,1241.2460753092325,498.2385334428953,498.2385334428953,29137.6877,6.0,956.0,1,2,3,4,5,6 +3325.5,78.95949999999999,1518.4724,100,1240.8087436343951,1240.8087436343951,497.8684085613731,497.8684085613731,29114.7254,6.0,956.0,1,2,3,4,5,6 +3326.0,78.9008,1517.3294,100,1240.3707612343603,1240.3707612343603,497.49828367985094,497.49828367985094,29091.7631,6.0,956.0,1,2,3,4,5,6 +3326.5,78.8829,1516.99295,100,1239.9342983460297,1239.9342983460297,497.3854176597615,497.3854176597615,29084.8214,6.0,955.9945,1,2,3,4,5,6 +3327.0,78.865,1516.6565,100,1239.497637329614,1239.497637329614,497.2725516396721,497.2725516396721,29077.8797,6.0,955.989,1,2,3,4,5,6 +3327.5,78.88495,1517.04965,100,1239.0818846307186,1239.0818846307186,497.3983436564757,497.3983436564757,29083.966650000002,6.0,955.9341,1,2,3,4,5,6 +3328.0,78.9049,1517.4428,100,1238.6663421663295,1238.6663421663295,497.5241356732792,497.5241356732792,29090.0536,6.0,955.8792,1,2,3,4,5,6 +3328.5,78.9558,1518.4266,100,1238.2900197578901,1238.2900197578901,497.8450787136451,497.8450787136451,29107.382700000002,6.0,955.80535,1,2,3,4,5,6 +3329.0,79.0067,1519.4104,100,1237.9141822402403,1237.9141822402403,498.16602175401107,498.16602175401107,29124.7118,6.0,955.7315,1,2,3,4,5,6 +3329.5,79.08394999999999,1520.8991999999998,100,1237.589204231706,1237.589204231706,498.65311114238557,498.65311114238557,29152.47515,6.0,955.6664000000001,1,2,3,4,5,6 +3330.0,79.1612,1522.388,100,1237.2648604872088,1237.2648604872088,499.14020053076024,499.14020053076024,29180.2385,6.0,955.6013,1,2,3,4,5,6 +3330.5,79.2618,1524.3236,100,1236.9849003429144,1236.9849003429144,499.7745201743911,499.7745201743911,29217.30315,6.0,955.5461,1,2,3,4,5,6 +3331.0,79.3624,1526.2592,100,1236.7056499551425,1236.7056499551425,500.4088398180221,500.4088398180221,29254.3678,6.0,955.4909,1,2,3,4,5,6 +3331.5,79.48259999999999,1528.5889,100,1236.5106348936752,1236.5106348936752,501.16674460096874,501.16674460096874,29299.69165,6.0,955.446,1,2,3,4,5,6 +3332.0,79.6028,1530.9186,100,1236.3162087765756,1236.3162087765756,501.9246493839155,501.9246493839155,29345.0155,6.0,955.4011,1,2,3,4,5,6 +3332.5,79.7322,1533.4176499999999,100,1236.327987839292,1236.327987839292,502.7405635179696,502.7405635179696,29394.80545,6.0,955.3885,1,2,3,4,5,6 +3333.0,79.8616,1535.9167,100,1236.3397287307043,1236.3397287307043,503.55647765202355,503.55647765202355,29444.5954,6.0,955.3759,1,2,3,4,5,6 +3333.5,79.99105,1538.4068499999998,100,1236.3942268541293,1236.3942268541293,504.3727070542902,504.3727070542902,29494.8464,6.0,955.3827,1,2,3,4,5,6 +3334.0,80.1205,1540.897,100,1236.4485488732596,1236.4485488732596,505.18893645655686,505.18893645655686,29545.0974,6.0,955.3895,1,2,3,4,5,6 +3334.5,80.26920000000001,1543.65805,100,1235.9489611831184,1235.9489611831184,506.1265441206515,506.1265441206515,29599.43355,6.0,955.3551,1,2,3,4,5,6 +3335.0,80.4179,1546.4191,100,1235.451221058993,1235.451221058993,507.06415178474595,507.06415178474595,29653.7697,6.0,955.3207,1,2,3,4,5,6 +3335.5,80.6113,1550.2122,100,1234.8898765185525,1234.8898765185525,508.2836092308515,508.2836092308515,29726.47675,6.0,955.2147,1,2,3,4,5,6 +3336.0,80.8047,1554.0053,100,1234.3312190503768,1234.3312190503768,509.503066676957,509.503066676957,29799.1838,6.0,955.1087,1,2,3,4,5,6 +3336.5,81.0284,1558.32895,100,1234.2437308153683,1234.2437308153683,510.913576659862,510.913576659862,29884.86885,6.0,955.07305,1,2,3,4,5,6 +3337.0,81.2521,1562.6526,100,1234.1567243185098,1234.1567243185098,512.3240866427668,512.3240866427668,29970.5539,6.0,955.0374,1,2,3,4,5,6 +3337.5,81.48035,1567.04605,100,1234.2481500509023,1234.2481500509023,513.7632860330128,513.7632860330128,30059.213799999998,6.0,955.04935,1,2,3,4,5,6 +3338.0,81.7086,1571.4395,100,1234.3390649943824,1234.3390649943824,515.2024854232588,515.2024854232588,30147.8737,6.0,955.0613,1,2,3,4,5,6 +3338.5,81.9376,1575.8366999999998,100,1234.3816514030189,1234.3816514030189,516.6464138366931,516.6464138366931,30236.79075,6.0,955.0788,1,2,3,4,5,6 +3339.0,82.1666,1580.2339,100,1234.424000433266,1234.424000433266,518.0903422501273,518.0903422501273,30325.7078,6.0,955.0963,1,2,3,4,5,6 +3339.5,82.40190000000001,1584.7582,100,1217.8856036814684,1217.8856036814684,519.5739944583415,519.5739944583415,30051.647100000002,6.0,943.6729,1,2,3,4,5,6 +3340.0,82.6372,1589.2825,100,1201.4413893258725,1201.4413893258725,521.0576466665557,521.0576466665557,29777.5864,6.0,932.2495,1,2,3,4,5,6 +3340.5,82.78795,1592.48315,100,905.5723267093822,905.5723267093822,522.0081803273644,522.0081803273644,23345.45635,6.0,725.14425,1,2,3,4,5,6 +3341.0,82.9387,1595.6838,100,610.778811724804,610.778811724804,522.9587139881731,522.9587139881731,16913.3263,6.0,518.039,1,2,3,4,5,6 +3341.5,82.96934999999999,1595.9782,100,464.21413004922914,464.21413004922914,523.1519734024603,523.1519734024603,13729.3922,6.0,415.56385,1,2,3,4,5,6 +3342.0,83.0,1596.2726,100,317.7576943373494,317.7576943373494,523.3452328167474,523.3452328167474,10545.4581,6.0,313.0887,1,2,3,4,5,6 +3342.5,83.0,1596.2726,100,269.85146486746993,269.85146486746993,523.3452328167474,523.3452328167474,9549.1269,6.0,279.72765000000004,1,2,3,4,5,6 +3343.0,83.0,1596.2726,100,221.94523539759038,221.94523539759038,523.3452328167474,523.3452328167474,8552.7957,6.0,246.3666,1,2,3,4,5,6 +3343.5,83.0,1596.2726,100,216.44929561445787,216.44929561445787,523.3452328167474,523.3452328167474,8433.55055,6.0,242.53935,1,2,3,4,5,6 +3344.0,83.0,1596.2726,100,210.95335583132533,210.95335583132533,523.3452328167474,523.3452328167474,8314.3054,6.0,238.7121,1,2,3,4,5,6 +3344.5,83.0,1596.2726,100,232.6071395060241,232.6071395060241,523.3452328167474,523.3452328167474,8778.31245,6.0,253.7914,1,2,3,4,5,6 +3345.0,83.0,1596.2726,100,254.26092318072293,254.26092318072293,523.3452328167474,523.3452328167474,9242.3195,6.0,268.8707,1,2,3,4,5,6 +3345.5,83.0,1596.2726,100,286.5323403975904,286.5323403975904,523.3452328167474,523.3452328167474,9908.847699999998,6.0,291.34385,1,2,3,4,5,6 +3346.0,83.0,1596.2726,100,318.8037576144578,318.8037576144578,523.3452328167474,523.3452328167474,10575.3759,6.0,313.817,1,2,3,4,5,6 +3346.5,83.0,1596.2726,100,377.9912227228916,377.9912227228916,523.3452328167474,523.3452328167474,11857.41915,6.0,355.0333,1,2,3,4,5,6 +3347.0,83.0,1596.2726,100,437.1786878313253,437.1786878313253,523.3452328167474,523.3452328167474,13139.4624,6.0,396.2496,1,2,3,4,5,6 +3347.5,83.0,1596.2726,100,458.6416973132531,458.6416973132531,523.3452328167474,523.3452328167474,13592.3999,6.0,411.19565,1,2,3,4,5,6 +3348.0,83.0,1596.2726,100,480.1047067951808,480.1047067951808,523.3452328167474,523.3452328167474,14045.3374,6.0,426.1417,1,2,3,4,5,6 +3348.5,83.0,1596.2726,100,483.4514703253012,483.4514703253012,523.3452328167474,523.3452328167474,14120.33625,6.0,428.47225000000003,1,2,3,4,5,6 +3349.0,83.0,1596.2726,100,486.7982338554217,486.7982338554217,523.3452328167474,523.3452328167474,14195.3351,6.0,430.8028,1,2,3,4,5,6 +3349.5,83.0,1596.2726,100,488.9747939638555,488.9747939638555,523.3452328167474,523.3452328167474,14244.125950000001,6.0,432.3189,1,2,3,4,5,6 +3350.0,83.0,1596.2726,100,491.1513540722892,491.1513540722892,523.3452328167474,523.3452328167474,14292.9168,6.0,433.835,1,2,3,4,5,6 +3350.5,83.0,1596.2726,100,510.3780153614458,510.3780153614458,523.3452328167474,523.3452328167474,14724.44625,6.0,447.23245,1,2,3,4,5,6 +3351.0,83.0,1596.2726,100,529.6046766506024,529.6046766506024,523.3452328167474,523.3452328167474,15155.9757,6.0,460.6299,1,2,3,4,5,6 +3351.5,83.0,1596.2726,100,565.8905670722892,565.8905670722892,523.3452328167474,523.3452328167474,15977.783950000001,6.0,485.91970000000003,1,2,3,4,5,6 +3352.0,83.0,1596.2726,100,602.176457493976,602.176457493976,523.3452328167474,523.3452328167474,16799.5922,6.0,511.2095,1,2,3,4,5,6 +3352.5,83.0,1596.2726,100,636.140653373494,636.140653373494,523.3452328167474,523.3452328167474,17547.8856,6.0,534.8813,1,2,3,4,5,6 +3353.0,83.0,1596.2726,100,670.1048492530122,670.1048492530122,523.3452328167474,523.3452328167474,18296.179,6.0,558.5531,1,2,3,4,5,6 +3353.5,83.0,1596.2726,100,691.5295213373495,691.5295213373495,523.3452328167474,523.3452328167474,18757.86205,6.0,573.4855,1,2,3,4,5,6 +3354.0,83.0,1596.2726,100,712.9541934216868,712.9541934216868,523.3452328167474,523.3452328167474,19219.5451,6.0,588.4179,1,2,3,4,5,6 +3354.5,83.0,1596.2726,100,733.2638861927712,733.2638861927712,523.3452328167474,523.3452328167474,19680.0709,6.0,602.5706,1,2,3,4,5,6 +3355.0,83.0,1596.2726,100,753.5735789638555,753.5735789638555,523.3452328167474,523.3452328167474,20140.5967,6.0,616.7233,1,2,3,4,5,6 +3355.5,83.0,1596.2726,100,778.2806625180724,778.2806625180724,523.3452328167474,523.3452328167474,20675.6872,6.0,633.9300499999999,1,2,3,4,5,6 +3356.0,83.0,1596.2726,100,802.9877460722893,802.9877460722893,523.3452328167474,523.3452328167474,21210.7777,6.0,651.1368,1,2,3,4,5,6 +3356.5,83.0,1596.2726,100,825.448440686747,825.448440686747,523.3452328167474,523.3452328167474,21655.2726,6.0,666.77775,1,2,3,4,5,6 +3357.0,83.0,1596.2726,100,847.9091353012049,847.9091353012049,523.3452328167474,523.3452328167474,22099.7675,6.0,682.4187,1,2,3,4,5,6 +3357.5,83.0,1596.2726,100,870.0371160722892,870.0371160722892,523.3452328167474,523.3452328167474,22547.506800000003,6.0,697.8279,1,2,3,4,5,6 +3358.0,83.0,1596.2726,100,892.1650968433736,892.1650968433736,523.3452328167474,523.3452328167474,22995.2461,6.0,713.2371,1,2,3,4,5,6 +3358.5,83.0,1596.2726,100,882.0577158072289,882.0577158072289,523.3452328167474,523.3452328167474,22773.20055,6.0,706.1988,1,2,3,4,5,6 +3359.0,83.0,1596.2726,100,871.9503347710844,871.9503347710844,523.3452328167474,523.3452328167474,22551.155,6.0,699.1605,1,2,3,4,5,6 +3359.5,83.0,1596.2726,100,861.2847794819278,861.2847794819278,523.3452328167474,523.3452328167474,22343.4532,6.0,691.7333,1,2,3,4,5,6 +3360.0,83.0,1596.2726,100,850.6192241927711,850.6192241927711,523.3452328167474,523.3452328167474,22135.7514,6.0,684.3061,1,2,3,4,5,6 +3360.5,83.0,1596.2726,100,844.7011166385543,844.7011166385543,523.3452328167474,523.3452328167474,22024.1047,6.0,680.18475,1,2,3,4,5,6 +3361.0,83.0,1596.2726,100,838.7830090843373,838.7830090843373,523.3452328167474,523.3452328167474,21912.458,6.0,676.0634,1,2,3,4,5,6 +3361.5,83.0,1596.2726,100,852.6871616746989,852.6871616746989,523.3452328167474,523.3452328167474,22179.42485,6.0,685.74605,1,2,3,4,5,6 +3362.0,83.0,1596.2726,100,866.5913142650603,866.5913142650603,523.3452328167474,523.3452328167474,22446.3917,6.0,695.4287,1,2,3,4,5,6 +3362.5,83.0,1596.2726,100,871.1867816024096,871.1867816024096,523.3452328167474,523.3452328167474,22542.75835,6.0,698.6286500000001,1,2,3,4,5,6 +3363.0,83.0,1596.2726,100,875.782248939759,875.782248939759,523.3452328167474,523.3452328167474,22639.125,6.0,701.8286,1,2,3,4,5,6 +3363.5,83.0,1596.2726,100,853.6775444457832,853.6775444457832,523.3452328167474,523.3452328167474,22205.163200000003,6.0,686.4357500000001,1,2,3,4,5,6 +3364.0,83.0,1596.2726,100,831.5728399518073,831.5728399518073,523.3452328167474,523.3452328167474,21771.2014,6.0,671.0429,1,2,3,4,5,6 +3364.5,83.0,1596.2726,100,804.3551132530121,804.3551132530121,523.3452328167474,523.3452328167474,21219.3784,6.0,652.0889500000001,1,2,3,4,5,6 +3365.0,83.0,1596.2726,100,777.1373865542168,777.1373865542168,523.3452328167474,523.3452328167474,20667.5554,6.0,633.135,1,2,3,4,5,6 +3365.5,83.0,1596.2726,100,772.5496779759036,772.5496779759036,523.3452328167474,523.3452328167474,20567.13895,6.0,629.9403500000001,1,2,3,4,5,6 +3366.0,83.0,1596.2726,100,767.9619693975905,767.9619693975905,523.3452328167474,523.3452328167474,20466.7225,6.0,626.7457,1,2,3,4,5,6 +3366.5,83.0,1596.2726,100,782.0838236385542,782.0838236385542,523.3452328167474,523.3452328167474,20769.93395,6.0,636.5798500000001,1,2,3,4,5,6 +3367.0,83.0,1596.2726,100,796.2056778795181,796.2056778795181,523.3452328167474,523.3452328167474,21073.1454,6.0,646.414,1,2,3,4,5,6 +3367.5,83.0,1596.2726,100,817.4760875783131,817.4760875783131,523.3452328167474,523.3452328167474,21491.768600000003,6.0,661.22605,1,2,3,4,5,6 +3368.0,83.0,1596.2726,100,838.7464972771085,838.7464972771085,523.3452328167474,523.3452328167474,21910.3918,6.0,676.0381,1,2,3,4,5,6 +3368.5,83.0,1596.2726,100,857.9407543373494,857.9407543373494,523.3452328167474,523.3452328167474,22296.02485,6.0,689.4044,1,2,3,4,5,6 +3369.0,83.0,1596.2726,100,877.1350113975905,877.1350113975905,523.3452328167474,523.3452328167474,22681.6579,6.0,702.7707,1,2,3,4,5,6 +3369.5,83.0,1596.2726,100,906.0382143975904,906.0382143975904,523.3452328167474,523.3452328167474,23310.1125,6.0,722.8981,1,2,3,4,5,6 +3370.0,83.0,1596.2726,100,934.9414173975904,934.9414173975904,523.3452328167474,523.3452328167474,23938.5671,6.0,743.0255,1,2,3,4,5,6 +3370.5,83.0,1596.2726,100,945.5964755421687,945.5964755421687,523.3452328167474,523.3452328167474,24173.53495,6.0,750.4454000000001,1,2,3,4,5,6 +3371.0,83.0,1596.2726,100,956.251533686747,956.251533686747,523.3452328167474,523.3452328167474,24408.5028,6.0,757.8653,1,2,3,4,5,6 +3371.5,83.0,1596.2726,100,957.0913052530121,957.0913052530121,523.3452328167474,523.3452328167474,24427.025999999998,6.0,758.4502500000001,1,2,3,4,5,6 +3372.0,83.0,1596.2726,100,957.9310768192772,957.9310768192772,523.3452328167474,523.3452328167474,24445.5492,6.0,759.0352,1,2,3,4,5,6 +3372.5,83.0,1596.2726,100,955.9644596024098,955.9644596024098,523.3452328167474,523.3452328167474,24402.1758,6.0,757.6655000000001,1,2,3,4,5,6 +3373.0,83.0,1596.2726,100,953.9978423855423,953.9978423855423,523.3452328167474,523.3452328167474,24358.8024,6.0,756.2958,1,2,3,4,5,6 +3373.5,83.0,1596.2726,100,949.6342250240965,949.6342250240965,523.3452328167474,523.3452328167474,24262.577,6.0,753.2572,1,2,3,4,5,6 +3374.0,83.0,1596.2726,100,945.2706076626507,945.2706076626507,523.3452328167474,523.3452328167474,24166.3516,6.0,750.2186,1,2,3,4,5,6 +3374.5,83.0,1596.2726,100,930.6220706024097,930.6220706024097,523.3452328167474,523.3452328167474,23843.317150000003,6.0,740.01775,1,2,3,4,5,6 +3375.0,83.0,1596.2726,100,915.9735335421689,915.9735335421689,523.3452328167474,523.3452328167474,23520.2827,6.0,729.8169,1,2,3,4,5,6 +3375.5,83.0,1596.2726,100,891.6657978795182,891.6657978795182,523.3452328167474,523.3452328167474,22996.1067,6.0,712.8898,1,2,3,4,5,6 +3376.0,83.0,1596.2726,100,867.3580622168676,867.3580622168676,523.3452328167474,523.3452328167474,22471.9307,6.0,695.9627,1,2,3,4,5,6 +3376.5,83.0,1596.2726,100,852.00667286747,852.00667286747,523.3452328167474,523.3452328167474,22172.1239,6.0,685.27215,1,2,3,4,5,6 +3377.0,83.0,1596.2726,100,836.6552835180725,836.6552835180725,523.3452328167474,523.3452328167474,21872.3171,6.0,674.5816,1,2,3,4,5,6 +3377.5,83.0,1596.2726,100,847.5444736265061,847.5444736265061,523.3452328167474,523.3452328167474,22083.497649999998,6.0,682.1646000000001,1,2,3,4,5,6 +3378.0,83.0,1596.2726,100,858.4336637349398,858.4336637349398,523.3452328167474,523.3452328167474,22294.6782,6.0,689.7476,1,2,3,4,5,6 +3378.5,83.0,1596.2726,100,880.7944072771086,880.7944072771086,523.3452328167474,523.3452328167474,22766.1472,6.0,705.31915,1,2,3,4,5,6 +3379.0,83.0,1596.2726,100,903.1551508192771,903.1551508192771,523.3452328167474,523.3452328167474,23237.6162,6.0,720.8907,1,2,3,4,5,6 +3379.5,83.0,1596.2726,100,909.5360455301205,909.5360455301205,523.3452328167474,523.3452328167474,23378.32785,6.0,725.33415,1,2,3,4,5,6 +3380.0,83.0,1596.2726,100,915.9169402409639,915.9169402409639,523.3452328167474,523.3452328167474,23519.0395,6.0,729.7776,1,2,3,4,5,6 +3380.5,83.0,1596.2726,100,903.0757376385544,903.0757376385544,523.3452328167474,523.3452328167474,23235.8575,6.0,720.8352,1,2,3,4,5,6 +3381.0,83.0,1596.2726,100,890.2345350361447,890.2345350361447,523.3452328167474,523.3452328167474,22952.6755,6.0,711.8928,1,2,3,4,5,6 +3381.5,83.0,1596.2726,100,864.4060826024097,864.4060826024097,523.3452328167474,523.3452328167474,22426.89885,6.0,693.90675,1,2,3,4,5,6 +3382.0,83.0,1596.2726,100,838.5776301686749,838.5776301686749,523.3452328167474,523.3452328167474,21901.1222,6.0,675.9207,1,2,3,4,5,6 +3382.5,83.0,1596.2726,100,791.0995016385543,791.0995016385543,523.3452328167474,523.3452328167474,20908.016600000003,6.0,642.85415,1,2,3,4,5,6 +3383.0,83.0,1596.2726,100,743.6213731084338,743.6213731084338,523.3452328167474,523.3452328167474,19914.911,6.0,609.7876,1,2,3,4,5,6 +3383.5,83.0,1596.2726,100,718.9932463373494,718.9932463373494,523.3452328167474,523.3452328167474,19360.04625,6.0,592.6248499999999,1,2,3,4,5,6 +3384.0,83.0,1596.2726,100,694.3651195662651,694.3651195662651,523.3452328167474,523.3452328167474,18805.1815,6.0,575.4621,1,2,3,4,5,6 +3384.5,83.0,1596.2726,100,688.6186175060242,688.6186175060242,523.3452328167474,523.3452328167474,18682.13725,6.0,571.4567999999999,1,2,3,4,5,6 +3385.0,83.0,1596.2726,100,682.8721154457832,682.8721154457832,523.3452328167474,523.3452328167474,18559.093,6.0,567.4515,1,2,3,4,5,6 +3385.5,83.0,1596.2726,100,693.43680686747,693.43680686747,523.3452328167474,523.3452328167474,18788.196649999998,6.0,574.81495,1,2,3,4,5,6 +3386.0,83.0,1596.2726,100,704.0014982891566,704.0014982891566,523.3452328167474,523.3452328167474,19017.3003,6.0,582.1784,1,2,3,4,5,6 +3386.5,83.0,1596.2726,100,713.6917319277109,713.6917319277109,523.3452328167474,523.3452328167474,19236.66825,6.0,588.932,1,2,3,4,5,6 +3387.0,83.0,1596.2726,100,723.3819655662652,723.3819655662652,523.3452328167474,523.3452328167474,19456.0362,6.0,595.6856,1,2,3,4,5,6 +3387.5,83.0,1596.2726,100,725.2070995301206,725.2070995301206,523.3452328167474,523.3452328167474,19497.4293,6.0,596.9576999999999,1,2,3,4,5,6 +3388.0,83.0,1596.2726,100,727.0322334939759,727.0322334939759,523.3452328167474,523.3452328167474,19538.8224,6.0,598.2298,1,2,3,4,5,6 +3388.5,83.0,1596.2726,100,733.2173336385544,733.2173336385544,523.3452328167474,523.3452328167474,19679.09725,6.0,602.5406499999999,1,2,3,4,5,6 +3389.0,83.0,1596.2726,100,739.4024337831326,739.4024337831326,523.3452328167474,523.3452328167474,19819.3721,6.0,606.8515,1,2,3,4,5,6 +3389.5,83.0,1596.2726,100,745.9558467831325,745.9558467831325,523.3452328167474,523.3452328167474,19967.9641,6.0,611.418,1,2,3,4,5,6 +3390.0,83.0,1596.2726,100,752.5092597831326,752.5092597831326,523.3452328167474,523.3452328167474,20116.5561,6.0,615.9845,1,2,3,4,5,6 +3390.5,83.0,1596.2726,100,751.6220228674699,751.6220228674699,523.3452328167474,523.3452328167474,20096.454250000003,6.0,615.36675,1,2,3,4,5,6 +3391.0,83.0,1596.2726,100,750.7347859518072,750.7347859518072,523.3452328167474,523.3452328167474,20076.3524,6.0,614.749,1,2,3,4,5,6 +3391.5,83.0,1596.2726,100,757.8203585421687,757.8203585421687,523.3452328167474,523.3452328167474,20236.913399999998,6.0,619.6833,1,2,3,4,5,6 +3392.0,83.0,1596.2726,100,764.9059311325301,764.9059311325301,523.3452328167474,523.3452328167474,20397.4744,6.0,624.6176,1,2,3,4,5,6 +3392.5,83.0,1596.2726,100,785.1216060000002,785.1216060000002,523.3452328167474,523.3452328167474,20829.219149999997,6.0,638.6954000000001,1,2,3,4,5,6 +3393.0,83.0,1596.2726,100,805.3372808674699,805.3372808674699,523.3452328167474,523.3452328167474,21260.9639,6.0,652.7732,1,2,3,4,5,6 +3393.5,83.0,1596.2726,100,810.2175403012048,810.2175403012048,523.3452328167474,523.3452328167474,21358.377,6.0,656.17165,1,2,3,4,5,6 +3394.0,83.0,1596.2726,100,815.0977997349397,815.0977997349397,523.3452328167474,523.3452328167474,21455.7901,6.0,659.5701,1,2,3,4,5,6 +3394.5,83.0,1596.2726,100,815.0977997349397,815.0977997349397,523.3452328167474,523.3452328167474,21455.7901,6.0,659.5701,1,2,3,4,5,6 +3395.0,83.0,1596.2726,100,815.0977997349397,815.0977997349397,523.3452328167474,523.3452328167474,21455.7901,6.0,659.5701,1,2,3,4,5,6 +3395.5,83.0,1596.2726,100,855.8623197108435,855.8623197108435,523.3452328167474,523.3452328167474,22296.019800000002,6.0,687.9573,1,2,3,4,5,6 +3396.0,83.0,1596.2726,100,896.626839686747,896.626839686747,523.3452328167474,523.3452328167474,23136.2495,6.0,716.3445,1,2,3,4,5,6 +3396.5,83.0,1596.2726,100,927.69291086747,927.69291086747,523.3452328167474,523.3452328167474,23800.595050000004,6.0,737.97795,1,2,3,4,5,6 +3397.0,83.0,1596.2726,100,958.7589820481928,958.7589820481928,523.3452328167474,523.3452328167474,24464.9406,6.0,759.6114,1,2,3,4,5,6 +3397.5,83.0,1596.2726,100,956.9982001445784,956.9982001445784,523.3452328167474,523.3452328167474,24425.92125,6.0,758.3851500000001,1,2,3,4,5,6 +3398.0,83.0,1596.2726,100,955.2374182409638,955.2374182409638,523.3452328167474,523.3452328167474,24386.9019,6.0,757.1589,1,2,3,4,5,6 +3398.5,83.0,1596.2726,100,974.5585538313254,974.5585538313254,523.3452328167474,523.3452328167474,24823.5196,6.0,770.6143500000001,1,2,3,4,5,6 +3399.0,83.0,1596.2726,100,993.8796894216869,993.8796894216869,523.3452328167474,523.3452328167474,25260.1373,6.0,784.0698,1,2,3,4,5,6 +3399.5,83.0,1596.2726,100,1012.7745496626508,1012.7745496626508,523.3452328167474,523.3452328167474,25691.83565,6.0,797.2317499999999,1,2,3,4,5,6 +3400.0,83.0,1596.2726,100,1031.6694099036147,1031.6694099036147,523.3452328167474,523.3452328167474,26123.534,6.0,810.3937,1,2,3,4,5,6 +3400.5,83.0,1596.2726,100,1032.9888553373496,1032.9888553373496,523.3452328167474,523.3452328167474,26153.684549999998,6.0,811.313,1,2,3,4,5,6 +3401.0,83.0,1596.2726,100,1034.3083007710843,1034.3083007710843,523.3452328167474,523.3452328167474,26183.8351,6.0,812.2323,1,2,3,4,5,6 +3401.5,83.0,1596.2726,100,1025.8813756626507,1025.8813756626507,523.3452328167474,523.3452328167474,25991.2722,6.0,806.3612499999999,1,2,3,4,5,6 +3402.0,83.0,1596.2726,100,1017.4544505542169,1017.4544505542169,523.3452328167474,523.3452328167474,25798.7093,6.0,800.4902,1,2,3,4,5,6 +3402.5,83.0,1596.2726,100,1017.3503919036144,1017.3503919036144,523.3452328167474,523.3452328167474,25796.33765,6.0,800.4178999999999,1,2,3,4,5,6 +3403.0,83.0,1596.2726,100,1017.2463332530122,1017.2463332530122,523.3452328167474,523.3452328167474,25793.966,6.0,800.3456,1,2,3,4,5,6 +3403.5,83.0,1596.2726,100,1036.1758797108432,1036.1758797108432,523.3452328167474,523.3452328167474,26218.0306,6.0,813.5332000000001,1,2,3,4,5,6 +3404.0,83.0,1596.2726,100,1055.1054261686747,1055.1054261686747,523.3452328167474,523.3452328167474,26642.0952,6.0,826.7208,1,2,3,4,5,6 +3404.5,83.0,1596.2726,100,1078.9188832409639,1078.9188832409639,523.3452328167474,523.3452328167474,27131.7975,6.0,843.3109,1,2,3,4,5,6 +3405.0,83.0,1596.2726,100,1102.7323403132532,1102.7323403132532,523.3452328167474,523.3452328167474,27621.4998,6.0,859.901,1,2,3,4,5,6 +3405.5,83.0,1596.2726,100,1110.4226397108434,1110.4226397108434,523.3452328167474,523.3452328167474,27790.060250000002,6.0,865.2586,1,2,3,4,5,6 +3406.0,83.0,1596.2726,100,1118.112939108434,1118.112939108434,523.3452328167474,523.3452328167474,27958.6207,6.0,870.6162,1,2,3,4,5,6 +3406.5,83.0,1596.2726,100,1106.9001631084338,1106.9001631084338,523.3452328167474,523.3452328167474,27718.4133,6.0,862.80465,1,2,3,4,5,6 +3407.0,83.0,1596.2726,100,1095.6873871084338,1095.6873871084338,523.3452328167474,523.3452328167474,27478.2059,6.0,854.9931,1,2,3,4,5,6 +3407.5,83.0,1596.2726,100,1069.510703313253,1069.510703313253,523.3452328167474,523.3452328167474,26929.06645,6.0,836.7565,1,2,3,4,5,6 +3408.0,83.0,1596.2726,100,1043.3340195180724,1043.3340195180724,523.3452328167474,523.3452328167474,26379.927,6.0,818.5199,1,2,3,4,5,6 +3408.5,83.0,1596.2726,100,1012.5682579518073,1012.5682579518073,523.3452328167474,523.3452328167474,25683.0824,6.0,797.0894000000001,1,2,3,4,5,6 +3409.0,83.0,1596.2726,100,981.8024963855422,981.8024963855422,523.3452328167474,523.3452328167474,24986.2378,6.0,775.6589,1,2,3,4,5,6 +3409.5,83.0,1596.2726,100,959.9775636144581,959.9775636144581,523.3452328167474,523.3452328167474,24497.814899999998,6.0,760.4605,1,2,3,4,5,6 +3410.0,83.0,1596.2726,100,938.1526308433736,938.1526308433736,523.3452328167474,523.3452328167474,24009.392,6.0,745.2621,1,2,3,4,5,6 +3410.5,83.0,1596.2726,100,921.5292614096387,921.5292614096387,523.3452328167474,523.3452328167474,23642.80975,6.0,733.68605,1,2,3,4,5,6 +3411.0,83.0,1596.2726,100,904.9058919759036,904.9058919759036,523.3452328167474,523.3452328167474,23276.2275,6.0,722.11,1,2,3,4,5,6 +3411.5,83.0,1596.2726,100,885.9325313493976,885.9325313493976,523.3452328167474,523.3452328167474,22867.2549,6.0,708.8974000000001,1,2,3,4,5,6 +3412.0,83.0,1596.2726,100,866.9591707228916,866.9591707228916,523.3452328167474,523.3452328167474,22458.2823,6.0,695.6848,1,2,3,4,5,6 +3412.5,83.0,1596.2726,100,850.5649128795179,850.5649128795179,523.3452328167474,523.3452328167474,22141.1355,6.0,684.26815,1,2,3,4,5,6 +3413.0,83.0,1596.2726,100,834.1706550361446,834.1706550361446,523.3452328167474,523.3452328167474,21823.9887,6.0,672.8515,1,2,3,4,5,6 +3413.5,83.0,1596.2726,100,819.6453453253012,819.6453453253012,523.3452328167474,523.3452328167474,21541.798600000002,6.0,662.7366999999999,1,2,3,4,5,6 +3414.0,83.0,1596.2726,100,805.120035614458,805.120035614458,523.3452328167474,523.3452328167474,21259.6085,6.0,652.6219,1,2,3,4,5,6 +3414.5,83.0,1596.2726,100,787.0243275542169,787.0243275542169,523.3452328167474,523.3452328167474,20874.11625,6.0,640.0202999999999,1,2,3,4,5,6 +3415.0,83.0,1596.2726,100,768.9286194939759,768.9286194939759,523.3452328167474,523.3452328167474,20488.624,6.0,627.4187,1,2,3,4,5,6 +3415.5,83.0,1596.2726,100,750.2487225180724,750.2487225180724,523.3452328167474,523.3452328167474,20065.163849999997,6.0,614.4051,1,2,3,4,5,6 +3416.0,83.0,1596.2726,100,731.5688255421687,731.5688255421687,523.3452328167474,523.3452328167474,19641.7037,6.0,601.3915,1,2,3,4,5,6 +3416.5,83.0,1596.2726,100,714.8879500120482,714.8879500120482,523.3452328167474,523.3452328167474,19266.0395,6.0,589.76575,1,2,3,4,5,6 +3417.0,83.0,1596.2726,100,698.2070744819279,698.2070744819279,523.3452328167474,523.3452328167474,18890.3753,6.0,578.14,1,2,3,4,5,6 +3417.5,83.0,1596.2726,100,686.1796287831326,686.1796287831326,523.3452328167474,523.3452328167474,18636.62335,6.0,569.7570000000001,1,2,3,4,5,6 +3418.0,83.0,1596.2726,100,674.1521830843374,674.1521830843374,523.3452328167474,523.3452328167474,18382.8714,6.0,561.374,1,2,3,4,5,6 +3418.5,83.0,1596.2726,100,671.696764048193,671.696764048193,523.3452328167474,523.3452328167474,18333.2536,6.0,559.6628499999999,1,2,3,4,5,6 +3419.0,83.0,1596.2726,100,669.2413450120482,669.2413450120482,523.3452328167474,523.3452328167474,18283.6358,6.0,557.9517,1,2,3,4,5,6 +3419.5,83.0,1596.2726,100,665.55639086747,665.55639086747,523.3452328167474,523.3452328167474,18208.5213,6.0,555.3832,1,2,3,4,5,6 +3420.0,83.0,1596.2726,100,661.8714367228916,661.8714367228916,523.3452328167474,523.3452328167474,18133.4068,6.0,552.8147,1,2,3,4,5,6 +3420.5,83.0,1596.2726,100,645.0960868915664,645.0960868915664,523.3452328167474,523.3452328167474,17764.2734,6.0,541.1229000000001,1,2,3,4,5,6 +3421.0,83.0,1596.2726,100,628.3207370602411,628.3207370602411,523.3452328167474,523.3452328167474,17395.14,6.0,529.4311,1,2,3,4,5,6 +3421.5,83.0,1596.2726,100,609.3820626506023,609.3820626506023,523.3452328167474,523.3452328167474,16963.735650000002,6.0,516.2317,1,2,3,4,5,6 +3422.0,83.0,1596.2726,100,590.4433882409638,590.4433882409638,523.3452328167474,523.3452328167474,16532.3313,6.0,503.0323,1,2,3,4,5,6 +3422.5,83.0,1596.2726,100,586.3755165180722,586.3755165180722,523.3452328167474,523.3452328167474,16439.6647,6.0,500.197,1,2,3,4,5,6 +3423.0,83.0,1596.2726,100,582.3076447951807,582.3076447951807,523.3452328167474,523.3452328167474,16346.9981,6.0,497.3617,1,2,3,4,5,6 +3423.5,83.0,1596.2726,100,590.8929398674699,590.8929398674699,523.3452328167474,523.3452328167474,16542.56265,6.0,503.34529999999995,1,2,3,4,5,6 +3424.0,83.0,1596.2726,100,599.4782349397591,599.4782349397591,523.3452328167474,523.3452328167474,16738.1272,6.0,509.3289,1,2,3,4,5,6 +3424.5,83.0,1596.2726,100,603.9116811325301,603.9116811325301,523.3452328167474,523.3452328167474,16839.1264,6.0,512.4191000000001,1,2,3,4,5,6 +3425.0,83.0,1596.2726,100,608.3451273253012,608.3451273253012,523.3452328167474,523.3452328167474,16940.1256,6.0,515.5093,1,2,3,4,5,6 +3425.5,83.0,1596.2726,100,606.3091376746988,606.3091376746988,523.3452328167474,523.3452328167474,16893.74625,6.0,514.09025,1,2,3,4,5,6 +3426.0,83.0,1596.2726,100,604.2731480240965,604.2731480240965,523.3452328167474,523.3452328167474,16847.3669,6.0,512.6712,1,2,3,4,5,6 +3426.5,83.0,1596.2726,100,600.5188214457831,600.5188214457831,523.3452328167474,523.3452328167474,16761.83915,6.0,510.05435,1,2,3,4,5,6 +3427.0,83.0,1596.2726,100,596.7644948674699,596.7644948674699,523.3452328167474,523.3452328167474,16676.3114,6.0,507.4375,1,2,3,4,5,6 +3427.5,83.0,1596.2726,100,590.1836980120482,590.1836980120482,523.3452328167474,523.3452328167474,16526.41215,6.0,502.85114999999996,1,2,3,4,5,6 +3428.0,83.0,1596.2726,100,583.6029011566266,583.6029011566266,523.3452328167474,523.3452328167474,16376.5129,6.0,498.2648,1,2,3,4,5,6 +3428.5,83.0,1596.2726,100,574.9340853253012,574.9340853253012,523.3452328167474,523.3452328167474,16179.199700000001,6.0,492.22270000000003,1,2,3,4,5,6 +3429.0,83.0,1596.2726,100,566.265269493976,566.265269493976,523.3452328167474,523.3452328167474,15981.8865,6.0,486.1806,1,2,3,4,5,6 +3429.5,83.0,1596.2726,100,556.3084996626507,556.3084996626507,523.3452328167474,523.3452328167474,15756.350750000001,6.0,479.24120000000005,1,2,3,4,5,6 +3430.0,83.0,1596.2726,100,546.3517298313253,546.3517298313253,523.3452328167474,523.3452328167474,15530.815,6.0,472.3018,1,2,3,4,5,6 +3430.5,83.0,1596.2726,100,549.3493492048193,549.3493492048193,523.3452328167474,523.3452328167474,15598.485850000001,6.0,474.39105,1,2,3,4,5,6 +3431.0,83.0,1596.2726,100,552.3469685783133,552.3469685783133,523.3452328167474,523.3452328167474,15666.1567,6.0,476.4803,1,2,3,4,5,6 +3431.5,83.0,1596.2726,100,568.8630845783133,568.8630845783133,523.3452328167474,523.3452328167474,16041.5646,6.0,487.9915,1,2,3,4,5,6 +3432.0,83.0,1596.2726,100,585.3792005783132,585.3792005783132,523.3452328167474,523.3452328167474,16416.9725,6.0,499.5027,1,2,3,4,5,6 +3432.5,83.0,1596.2726,100,611.5426488433735,611.5426488433735,523.3452328167474,523.3452328167474,17007.7171,6.0,517.7375,1,2,3,4,5,6 +3433.0,83.0,1596.2726,100,637.7060971084338,637.7060971084338,523.3452328167474,523.3452328167474,17598.4617,6.0,535.9723,1,2,3,4,5,6 +3433.5,83.0,1596.2726,100,670.8309778192771,670.8309778192771,523.3452328167474,523.3452328167474,18314.18275,6.0,559.05945,1,2,3,4,5,6 +3434.0,83.0,1596.2726,100,703.9558585301206,703.9558585301206,523.3452328167474,523.3452328167474,19029.9038,6.0,582.1466,1,2,3,4,5,6 +3434.5,83.0,1596.2726,100,731.3187196626507,731.3187196626507,523.3452328167474,523.3452328167474,19643.1417,6.0,601.21405,1,2,3,4,5,6 +3435.0,83.0,1596.2726,100,758.6815807951807,758.6815807951807,523.3452328167474,523.3452328167474,20256.3796,6.0,620.2815,1,2,3,4,5,6 +3435.5,83.0,1596.2726,100,764.5928423855423,764.5928423855423,523.3452328167474,523.3452328167474,20390.35735,6.0,624.39885,1,2,3,4,5,6 +3436.0,83.0,1596.2726,100,770.5041039759037,770.5041039759037,523.3452328167474,523.3452328167474,20524.3351,6.0,628.5162,1,2,3,4,5,6 +3436.5,83.0,1596.2726,100,766.6393291807229,766.6393291807229,523.3452328167474,523.3452328167474,20436.7601,6.0,625.8249000000001,1,2,3,4,5,6 +3437.0,83.0,1596.2726,100,762.7745543855422,762.7745543855422,523.3452328167474,523.3452328167474,20349.1851,6.0,623.1336,1,2,3,4,5,6 +3437.5,83.0,1596.2726,100,768.6917491445785,768.6917491445785,523.3452328167474,523.3452328167474,20483.26705,6.0,627.25415,1,2,3,4,5,6 +3438.0,83.0,1596.2726,100,774.6089439036144,774.6089439036144,523.3452328167474,523.3452328167474,20617.349,6.0,631.3747,1,2,3,4,5,6 +3438.5,83.0,1596.2726,100,788.2639034096386,788.2639034096386,523.3452328167474,523.3452328167474,20907.20195,6.0,640.88355,1,2,3,4,5,6 +3439.0,83.0,1596.2726,100,801.9188629156627,801.9188629156627,523.3452328167474,523.3452328167474,21197.0549,6.0,650.3924,1,2,3,4,5,6 +3439.5,83.0,1596.2726,100,809.8944108072291,809.8944108072291,523.3452328167474,523.3452328167474,21353.5586,6.0,655.9464499999999,1,2,3,4,5,6 +3440.0,83.0,1596.2726,100,817.8699586987952,817.8699586987952,523.3452328167474,523.3452328167474,21510.0623,6.0,661.5005,1,2,3,4,5,6 +3440.5,83.0,1596.2726,100,816.8964626385542,816.8964626385542,523.3452328167474,523.3452328167474,21491.004650000003,6.0,660.8226,1,2,3,4,5,6 +3441.0,83.0,1596.2726,100,815.9229665783133,815.9229665783133,523.3452328167474,523.3452328167474,21471.947,6.0,660.1447,1,2,3,4,5,6 +3441.5,83.0,1596.2726,100,812.6300579638555,812.6300579638555,523.3452328167474,523.3452328167474,21407.4772,6.0,657.8516,1,2,3,4,5,6 +3442.0,83.0,1596.2726,100,809.3371493493977,809.3371493493977,523.3452328167474,523.3452328167474,21343.0074,6.0,655.5585,1,2,3,4,5,6 +3442.5,83.0,1596.2726,100,806.164273301205,806.164273301205,523.3452328167474,523.3452328167474,21280.884149999998,6.0,653.3488,1,2,3,4,5,6 +3443.0,83.0,1596.2726,100,802.9913972530121,802.9913972530121,523.3452328167474,523.3452328167474,21218.7609,6.0,651.1391,1,2,3,4,5,6 +3443.5,83.0,1596.2726,100,790.1647993734941,790.1647993734941,523.3452328167474,523.3452328167474,20946.1095,6.0,642.2072000000001,1,2,3,4,5,6 +3444.0,83.0,1596.2726,100,777.3382014939759,777.3382014939759,523.3452328167474,523.3452328167474,20673.4581,6.0,633.2753,1,2,3,4,5,6 +3444.5,83.0,1596.2726,100,744.2019108433735,744.2019108433735,523.3452328167474,523.3452328167474,19932.12915,6.0,610.18865,1,2,3,4,5,6 +3445.0,83.0,1596.2726,100,711.0656201927711,711.0656201927711,523.3452328167474,523.3452328167474,19190.8002,6.0,587.102,1,2,3,4,5,6 +3445.5,83.0,1596.2726,100,674.0225661686748,674.0225661686748,523.3452328167474,523.3452328167474,18386.3391,6.0,561.28395,1,2,3,4,5,6 +3446.0,83.0,1596.2726,100,636.9795121445783,636.9795121445783,523.3452328167474,523.3452328167474,17581.878,6.0,535.4659,1,2,3,4,5,6 +3446.5,83.0,1596.2726,100,623.9749192048193,623.9749192048193,523.3452328167474,523.3452328167474,17290.896050000003,6.0,526.4022500000001,1,2,3,4,5,6 +3447.0,83.0,1596.2726,100,610.9703262650603,610.9703262650603,523.3452328167474,523.3452328167474,16999.9141,6.0,517.3386,1,2,3,4,5,6 +3447.5,83.0,1596.2726,100,626.1021883734938,626.1021883734938,523.3452328167474,523.3452328167474,17339.990850000002,6.0,527.8851,1,2,3,4,5,6 +3448.0,83.0,1596.2726,100,641.2340504819277,641.2340504819277,523.3452328167474,523.3452328167474,17680.0676,6.0,538.4316,1,2,3,4,5,6 +3448.5,83.0,1596.2726,100,668.1669850843373,668.1669850843373,523.3452328167474,523.3452328167474,18255.1941,6.0,557.2028,1,2,3,4,5,6 +3449.0,83.0,1596.2726,100,695.0999196867471,695.0999196867471,523.3452328167474,523.3452328167474,18830.3206,6.0,575.974,1,2,3,4,5,6 +3449.5,83.0,1596.2726,100,717.0969143493977,717.0969143493977,523.3452328167474,523.3452328167474,19321.351150000002,6.0,591.3053500000001,1,2,3,4,5,6 +3450.0,83.0,1596.2726,100,739.0939090120481,739.0939090120481,523.3452328167474,523.3452328167474,19812.3817,6.0,606.6367,1,2,3,4,5,6 +3450.5,83.0,1596.2726,100,744.2822368192772,744.2822368192772,523.3452328167474,523.3452328167474,19930.0334,6.0,610.25235,1,2,3,4,5,6 +3451.0,83.0,1596.2726,100,749.4705646265062,749.4705646265062,523.3452328167474,523.3452328167474,20047.6851,6.0,613.868,1,2,3,4,5,6 +3451.5,83.0,1596.2726,100,744.7149017349399,744.7149017349399,523.3452328167474,523.3452328167474,19939.841999999997,6.0,610.5538,1,2,3,4,5,6 +3452.0,83.0,1596.2726,100,739.9592388433737,739.9592388433737,523.3452328167474,523.3452328167474,19831.9989,6.0,607.2396,1,2,3,4,5,6 +3452.5,83.0,1596.2726,100,741.4137779638554,741.4137779638554,523.3452328167474,523.3452328167474,19864.9766,6.0,608.25305,1,2,3,4,5,6 +3453.0,83.0,1596.2726,100,742.8683170843374,742.8683170843374,523.3452328167474,523.3452328167474,19897.9543,6.0,609.2665,1,2,3,4,5,6 +3453.5,83.0,1596.2726,100,760.3045306265061,760.3045306265061,523.3452328167474,523.3452328167474,20287.301,6.0,621.4111,1,2,3,4,5,6 +3454.0,83.0,1596.2726,100,777.7407441686747,777.7407441686747,523.3452328167474,523.3452328167474,20676.6477,6.0,633.5557,1,2,3,4,5,6 +3454.5,83.0,1596.2726,100,807.6252019879519,807.6252019879519,523.3452328167474,523.3452328167474,21280.34945,6.0,654.3663,1,2,3,4,5,6 +3455.0,83.0,1596.2726,100,837.5096598072289,837.5096598072289,523.3452328167474,523.3452328167474,21884.0512,6.0,675.1769,1,2,3,4,5,6 +3455.5,83.0,1596.2726,100,860.27751,860.27751,523.3452328167474,523.3452328167474,22339.393649999998,6.0,691.0318500000001,1,2,3,4,5,6 +3456.0,83.0,1596.2726,100,883.045360192771,883.045360192771,523.3452328167474,523.3452328167474,22794.7361,6.0,706.8868,1,2,3,4,5,6 +3456.5,83.0,1596.2726,100,883.8289948554217,883.8289948554217,523.3452328167474,523.3452328167474,22811.72365,6.0,707.4325,1,2,3,4,5,6 +3457.0,83.0,1596.2726,100,884.6126295180724,884.6126295180724,523.3452328167474,523.3452328167474,22828.7112,6.0,707.9782,1,2,3,4,5,6 +3457.5,83.0,1596.2726,100,865.7720805903615,865.7720805903615,523.3452328167474,523.3452328167474,22452.4359,6.0,694.85815,1,2,3,4,5,6 +3458.0,83.0,1596.2726,100,846.9315316626507,846.9315316626507,523.3452328167474,523.3452328167474,22076.1606,6.0,681.7381,1,2,3,4,5,6 +3458.5,83.0,1596.2726,100,827.4132323132532,827.4132323132532,523.3452328167474,523.3452328167474,21695.464050000002,6.0,668.1460500000001,1,2,3,4,5,6 +3459.0,83.0,1596.2726,100,807.8949329638555,807.8949329638555,523.3452328167474,523.3452328167474,21314.7675,6.0,654.554,1,2,3,4,5,6 +3459.5,83.0,1596.2726,100,807.9821049036144,807.9821049036144,523.3452328167474,523.3452328167474,21316.47305,6.0,654.61465,1,2,3,4,5,6 +3460.0,83.0,1596.2726,100,808.0692768433735,808.0692768433735,523.3452328167474,523.3452328167474,21318.1786,6.0,654.6753,1,2,3,4,5,6 +3460.5,83.0,1596.2726,100,810.836415433735,810.836415433735,523.3452328167474,523.3452328167474,21372.3554,6.0,656.60235,1,2,3,4,5,6 +3461.0,83.0,1596.2726,100,813.6035540240964,813.6035540240964,523.3452328167474,523.3452328167474,21426.5322,6.0,658.5294,1,2,3,4,5,6 +3461.5,83.0,1596.2726,100,809.4179317228916,809.4179317228916,523.3452328167474,523.3452328167474,21344.5822,6.0,655.6145,1,2,3,4,5,6 +3462.0,83.0,1596.2726,100,805.2323094216868,805.2323094216868,523.3452328167474,523.3452328167474,21262.6322,6.0,652.6996,1,2,3,4,5,6 +3462.5,83.0,1596.2726,100,790.6709443012048,790.6709443012048,523.3452328167474,523.3452328167474,20955.131,6.0,642.55945,1,2,3,4,5,6 +3463.0,83.0,1596.2726,100,776.1095791807229,776.1095791807229,523.3452328167474,523.3452328167474,20647.6298,6.0,632.4193,1,2,3,4,5,6 +3463.5,83.0,1596.2726,100,751.4919495542168,751.4919495542168,523.3452328167474,523.3452328167474,20091.42655,6.0,615.26925,1,2,3,4,5,6 +3464.0,83.0,1596.2726,100,726.8743199277109,726.8743199277109,523.3452328167474,523.3452328167474,19535.2233,6.0,598.1192,1,2,3,4,5,6 +3464.5,83.0,1596.2726,100,698.4275145180724,698.4275145180724,523.3452328167474,523.3452328167474,18915.465450000003,6.0,578.29295,1,2,3,4,5,6 +3465.0,83.0,1596.2726,100,669.9807091084336,669.9807091084336,523.3452328167474,523.3452328167474,18295.7076,6.0,558.4667,1,2,3,4,5,6 +3465.5,83.0,1596.2726,100,641.61559886747,641.61559886747,523.3452328167474,523.3452328167474,17673.780550000003,6.0,538.6972499999999,1,2,3,4,5,6 +3466.0,83.0,1596.2726,100,613.2504886265061,613.2504886265061,523.3452328167474,523.3452328167474,17051.8535,6.0,518.9278,1,2,3,4,5,6 +3466.5,83.0,1596.2726,100,585.9350928433735,585.9350928433735,523.3452328167474,523.3452328167474,16430.5201,6.0,499.88985,1,2,3,4,5,6 +3467.0,83.0,1596.2726,100,558.6196970602409,558.6196970602409,523.3452328167474,523.3452328167474,15809.1867,6.0,480.8519,1,2,3,4,5,6 +3467.5,83.0,1596.2726,100,540.7143067951808,540.7143067951808,523.3452328167474,523.3452328167474,15405.981950000001,6.0,468.37265,1,2,3,4,5,6 +3468.0,83.0,1596.2726,100,522.8089165301205,522.8089165301205,523.3452328167474,523.3452328167474,15002.7772,6.0,455.8934,1,2,3,4,5,6 +3468.5,83.0,1596.2726,100,490.3170592771084,490.3170592771084,523.3452328167474,523.3452328167474,14287.69065,6.0,433.2618,1,2,3,4,5,6 +3469.0,83.0,1596.2726,100,457.8252020240964,457.8252020240964,523.3452328167474,523.3452328167474,13572.6041,6.0,410.6302,1,2,3,4,5,6 +3469.5,83.0,1596.2726,100,398.0325537108434,398.0325537108434,523.3452328167474,523.3452328167474,12276.5522,6.0,368.9909,1,2,3,4,5,6 +3470.0,83.0,1596.2726,100,338.2399053975904,338.2399053975904,523.3452328167474,523.3452328167474,10980.5003,6.0,327.3516,1,2,3,4,5,6 +3470.5,83.0,1596.2726,100,292.5823468554217,292.5823468554217,523.3452328167474,523.3452328167474,10035.97415,6.0,295.5567,1,2,3,4,5,6 +3471.0,83.0,1596.2726,100,246.92478831325303,246.92478831325303,523.3452328167474,523.3452328167474,9091.448,6.0,263.7618,1,2,3,4,5,6 +3471.5,83.0,1596.2726,100,238.97297309638557,238.97297309638557,523.3452328167474,523.3452328167474,8925.8082,6.0,258.2244,1,2,3,4,5,6 +3472.0,83.0,1596.2726,100,231.02115787951809,231.02115787951809,523.3452328167474,523.3452328167474,8760.1684,6.0,252.687,1,2,3,4,5,6 +3472.5,83.0,1596.2726,100,261.55963344578316,261.55963344578316,523.3452328167474,523.3452328167474,9379.44025,6.0,273.95325,1,2,3,4,5,6 +3473.0,83.0,1596.2726,100,292.0981090120482,292.0981090120482,523.3452328167474,523.3452328167474,9998.7121,6.0,295.2195,1,2,3,4,5,6 +3473.5,83.0,1596.2726,100,326.6442118192771,326.6442118192771,523.3452328167474,523.3452328167474,10736.808,6.0,319.2768,1,2,3,4,5,6 +3474.0,83.0,1596.2726,100,361.190314626506,361.190314626506,523.3452328167474,523.3452328167474,11474.9039,6.0,343.3341,1,2,3,4,5,6 +3474.5,83.0,1596.2726,100,366.7775339277108,366.7775339277108,523.3452328167474,523.3452328167474,11602.8934,6.0,347.22505,1,2,3,4,5,6 +3475.0,83.0,1596.2726,100,372.3647532289157,372.3647532289157,523.3452328167474,523.3452328167474,11730.8829,6.0,351.116,1,2,3,4,5,6 +3475.5,83.0,1596.2726,100,353.8669588915663,353.8669588915663,523.3452328167474,523.3452328167474,11308.967,6.0,338.23429999999996,1,2,3,4,5,6 +3476.0,83.0,1596.2726,100,335.3691645542169,335.3691645542169,523.3452328167474,523.3452328167474,10887.0511,6.0,325.3526,1,2,3,4,5,6 +3476.5,83.0,1596.2726,100,321.68043162650605,321.68043162650605,523.3452328167474,523.3452328167474,10591.47945,6.0,315.82015,1,2,3,4,5,6 +3477.0,83.0,1596.2726,100,307.9916986987952,307.9916986987952,523.3452328167474,523.3452328167474,10295.9078,6.0,306.2877,1,2,3,4,5,6 +3477.5,83.0,1596.2726,100,314.5323325662651,314.5323325662651,523.3452328167474,523.3452328167474,10431.38555,6.0,310.84259999999995,1,2,3,4,5,6 +3478.0,83.0,1596.2726,100,321.072966433735,321.072966433735,523.3452328167474,523.3452328167474,10566.8633,6.0,315.3975,1,2,3,4,5,6 +3478.5,83.0,1596.2726,100,338.1983732168675,338.1983732168675,523.3452328167474,523.3452328167474,10953.69395,6.0,327.3232,1,2,3,4,5,6 +3479.0,83.0,1596.2726,100,355.32378,355.32378,523.3452328167474,523.3452328167474,11340.5246,6.0,339.2489,1,2,3,4,5,6 +3479.5,83.0,1596.2726,100,362.11680173493977,362.11680173493977,523.3452328167474,523.3452328167474,11496.13075,6.0,343.9794,1,2,3,4,5,6 +3480.0,83.0,1596.2726,100,368.90982346987954,368.90982346987954,523.3452328167474,523.3452328167474,11651.7369,6.0,348.7099,1,2,3,4,5,6 +3480.5,83.0,1596.2726,100,353.91168585542175,353.91168585542175,523.3452328167474,523.3452328167474,11310.0934,6.0,338.2656,1,2,3,4,5,6 +3481.0,83.0,1596.2726,100,338.91354824096385,338.91354824096385,523.3452328167474,523.3452328167474,10968.4499,6.0,327.8213,1,2,3,4,5,6 +3481.5,83.0,1596.2726,100,317.02152502409643,317.02152502409643,523.3452328167474,523.3452328167474,10507.03515,6.0,312.57585,1,2,3,4,5,6 +3482.0,83.0,1596.2726,100,295.12950180722896,295.12950180722896,523.3452328167474,523.3452328167474,10045.6204,6.0,297.3304,1,2,3,4,5,6 +3482.5,83.0,1596.2726,100,283.41970883132535,283.41970883132535,523.3452328167474,523.3452328167474,9817.7487,6.0,289.1759,1,2,3,4,5,6 +3483.0,83.0,1596.2726,100,271.7099158554217,271.7099158554217,523.3452328167474,523.3452328167474,9589.877,6.0,281.0214,1,2,3,4,5,6 +3483.5,83.0,1596.2726,100,257.36077561445785,257.36077561445785,523.3452328167474,523.3452328167474,9301.4234,6.0,271.02885000000003,1,2,3,4,5,6 +3484.0,83.0,1596.2726,100,243.01163537349402,243.01163537349402,523.3452328167474,523.3452328167474,9012.9698,6.0,261.0363,1,2,3,4,5,6 +3484.5,83.0,1596.2726,100,209.19987628915666,209.19987628915666,523.3452328167474,523.3452328167474,8271.53225,6.0,237.77345,1,2,3,4,5,6 +3485.0,83.0,1596.2726,100,175.3881172048193,175.3881172048193,523.3452328167474,523.3452328167474,7530.0947,6.0,214.5106,1,2,3,4,5,6 +3485.5,83.0,1596.2726,100,144.54750643373495,144.54750643373495,523.3452328167474,523.3452328167474,6868.2152,6.0,193.87685,1,2,3,4,5,6 +3486.0,83.0,1596.2726,100,113.70689566265061,113.70689566265061,523.3452328167474,523.3452328167474,6206.3357,6.0,173.2431,1,2,3,4,5,6 +3486.5,83.0,1596.2726,100,84.54947920481929,84.54947920481929,523.3452328167474,523.3452328167474,5609.96615,6.0,154.12375,1,2,3,4,5,6 +3487.0,83.0,1596.2726,100,55.39206274698795,55.39206274698795,523.3452328167474,523.3452328167474,5013.5966,6.0,135.0044,1,2,3,4,5,6 +3487.5,83.0,1596.2726,100,28.751679,28.751679,523.3452328167474,523.3452328167474,4511.9819,6.0,117.54490000000001,1,2,3,4,5,6 +3488.0,83.0,1596.2726,100,2.1112952530120483,2.1112952530120483,523.3452328167474,523.3452328167474,4010.3672,6.0,100.0854,1,2,3,4,5,6 +3488.5,83.0,1596.2726,100,-20.49909777108434,-20.49909777108434,523.3452328167474,523.3452328167474,3674.9157,6.0,85.26715,1,2,3,4,5,6 +3489.0,83.0,1596.2726,100,-43.109490795180726,-43.109490795180726,523.3452328167474,523.3452328167474,3339.4642,6.0,70.4489,1,2,3,4,5,6 +3489.5,83.0,1596.2726,100,-62.919884602409645,-62.919884602409645,523.3452328167474,523.3452328167474,3064.06185,6.0,57.46554999999999,1,2,3,4,5,6 +3490.0,83.0,1596.2726,100,-82.73027840963856,-82.73027840963856,523.3452328167474,523.3452328167474,2788.6595,6.0,44.4822,1,2,3,4,5,6 +3490.5,83.0,1596.2726,100,-86.9428281686747,-86.9428281686747,523.3452328167474,523.3452328167474,2730.09715,6.0,41.7214,1,2,3,4,5,6 +3491.0,83.0,1596.2726,100,-91.15537792771084,-91.15537792771084,523.3452328167474,523.3452328167474,2671.5348,6.0,38.9606,1,2,3,4,5,6 +3491.5,83.0,1596.2726,100,-85.99762875903615,-85.99762875903615,523.3452328167474,523.3452328167474,2743.23845,6.0,42.34095,1,2,3,4,5,6 +3492.0,83.0,1596.2726,100,-80.83987959036145,-80.83987959036145,523.3452328167474,523.3452328167474,2814.9421,6.0,45.7213,1,2,3,4,5,6 +3492.5,83.0,1596.2726,100,-80.670099686747,-80.670099686747,523.3452328167474,523.3452328167474,2817.2992000000004,6.0,45.8324,1,2,3,4,5,6 +3493.0,83.0,1596.2726,100,-80.50031978313254,-80.50031978313254,523.3452328167474,523.3452328167474,2819.6563,6.0,45.9435,1,2,3,4,5,6 +3493.5,83.0,1596.2726,100,-91.74002324096386,-91.74002324096386,523.3452328167474,523.3452328167474,2665.54645,6.0,38.57725,1,2,3,4,5,6 +3494.0,83.0,1596.2726,100,-102.9797266987952,-102.9797266987952,523.3452328167474,523.3452328167474,2511.4366,6.0,31.211,1,2,3,4,5,6 +3494.5,83.0,1596.2726,100,-121.16717067469881,-121.16717067469881,523.3452328167474,523.3452328167474,2279.1349,6.0,19.393,1,2,3,4,5,6 +3495.0,83.0,1596.2726,100,-139.3546146506024,-139.3546146506024,523.3452328167474,523.3452328167474,2046.8332,6.0,7.575,1,2,3,4,5,6 +3495.5,83.0,1596.2726,100,-152.47650177108434,-152.47650177108434,523.3452328167474,523.3452328167474,1869.1593,6.0,-0.8592500000000003,1,2,3,4,5,6 +3496.0,83.0,1596.2726,100,-165.5983888915663,-165.5983888915663,523.3452328167474,523.3452328167474,1691.4854,6.0,-9.2935,1,2,3,4,5,6 +3496.5,83.0,1596.2726,100,-166.97762240963857,-166.97762240963857,523.3452328167474,523.3452328167474,1671.0059,6.0,-10.1792,1,2,3,4,5,6 +3497.0,83.0,1596.2726,100,-168.35685592771085,-168.35685592771085,523.3452328167474,523.3452328167474,1650.5264,6.0,-11.0649,1,2,3,4,5,6 +3497.5,83.0,1596.2726,100,-164.23832407228915,-164.23832407228915,523.3452328167474,523.3452328167474,1711.6790999999998,6.0,-8.42015,1,2,3,4,5,6 +3498.0,83.0,1596.2726,100,-160.11979221686747,-160.11979221686747,523.3452328167474,523.3452328167474,1772.8318,6.0,-5.7754,1,2,3,4,5,6 +3498.5,83.0,1596.2726,100,-159.22160175903616,-159.22160175903616,523.3452328167474,523.3452328167474,1786.1759499999998,6.0,-5.1983,1,2,3,4,5,6 +3499.0,83.0,1596.2726,100,-158.3234113012048,-158.3234113012048,523.3452328167474,523.3452328167474,1799.5201,6.0,-4.6212,1,2,3,4,5,6 +3499.5,83.0,1596.2726,100,-161.75825956626508,-161.75825956626508,523.3452328167474,523.3452328167474,1748.51345,6.0,-6.82715,1,2,3,4,5,6 +3500.0,83.0,1596.2726,100,-165.1931078313253,-165.1931078313253,523.3452328167474,523.3452328167474,1697.5068,6.0,-9.0331,1,2,3,4,5,6 +3500.5,83.0,1596.2726,100,-166.89410165060244,-166.89410165060244,523.3452328167474,523.3452328167474,1672.24575,6.0,-10.125599999999999,1,2,3,4,5,6 +3501.0,83.0,1596.2726,100,-168.5950954698795,-168.5950954698795,523.3452328167474,523.3452328167474,1646.9847,6.0,-11.2181,1,2,3,4,5,6 +3501.5,83.0,1596.2726,100,-162.9960098313253,-162.9960098313253,523.3452328167474,523.3452328167474,1729.3991,6.0,-7.6221499999999995,1,2,3,4,5,6 +3502.0,83.0,1596.2726,100,-157.3969241927711,-157.3969241927711,523.3452328167474,523.3452328167474,1811.8135,6.0,-4.0262,1,2,3,4,5,6 +3502.5,83.0,1596.2726,100,-153.330878060241,-153.330878060241,523.3452328167474,523.3452328167474,1869.7655,6.0,-1.4151500000000001,1,2,3,4,5,6 +3503.0,83.0,1596.2726,100,-149.26483192771084,-149.26483192771084,523.3452328167474,523.3452328167474,1927.7175,6.0,1.1959,1,2,3,4,5,6 +3503.5,83.0,1596.2726,100,-154.44129339759036,-154.44129339759036,523.3452328167474,523.3452328167474,1854.00755,6.0,-2.1283,1,2,3,4,5,6 +3504.0,83.0,1596.2726,100,-159.6177548674699,-159.6177548674699,523.3452328167474,523.3452328167474,1780.2976,6.0,-5.4525,1,2,3,4,5,6 +3504.5,83.0,1596.2726,100,-163.60393142168678,-163.60393142168678,523.3452328167474,523.3452328167474,1721.10435,6.0,-8.0125,1,2,3,4,5,6 +3505.0,83.0,1596.2726,100,-167.5901079759036,-167.5901079759036,523.3452328167474,523.3452328167474,1661.9111,6.0,-10.5725,1,2,3,4,5,6 +3505.5,83.0,1596.2726,100,-162.0950809879518,-162.0950809879518,523.3452328167474,523.3452328167474,1740.6381999999999,6.0,-7.043699999999999,1,2,3,4,5,6 +3506.0,83.0,1596.2726,100,-156.600054,-156.600054,523.3452328167474,523.3452328167474,1819.3653,6.0,-3.5149,1,2,3,4,5,6 +3506.5,83.0,1596.2726,100,-135.9252431566265,-135.9252431566265,523.3452328167474,523.3452328167474,2087.9407499999998,6.0,9.8564,1,2,3,4,5,6 +3507.0,83.0,1596.2726,100,-115.250432313253,-115.250432313253,523.3452328167474,523.3452328167474,2356.5162,6.0,23.2277,1,2,3,4,5,6 +3507.5,83.0,1596.2726,100,-77.86553649397591,-77.86553649397591,523.3452328167474,523.3452328167474,2871.9782,6.0,47.69955,1,2,3,4,5,6 +3508.0,83.0,1596.2726,100,-40.4806406746988,-40.4806406746988,523.3452328167474,523.3452328167474,3387.4402,6.0,72.1714,1,2,3,4,5,6 +3508.5,83.0,1596.2726,100,7.025784506024091,7.025784506024091,523.3452328167474,523.3452328167474,4196.493399999999,6.0,103.3061,1,2,3,4,5,6 +3509.0,83.0,1596.2726,100,54.53220968674699,54.53220968674699,523.3452328167474,523.3452328167474,5005.5466,6.0,134.4408,1,2,3,4,5,6 +3509.5,83.0,1596.2726,100,97.6312033373494,97.6312033373494,523.3452328167474,523.3452328167474,5892.11815,6.0,162.8288,1,2,3,4,5,6 +3510.0,83.0,1596.2726,100,140.7301969879518,140.7301969879518,523.3452328167474,523.3452328167474,6778.6897,6.0,191.2168,1,2,3,4,5,6 +3510.5,83.0,1596.2726,100,168.7242559879518,168.7242559879518,523.3452328167474,523.3452328167474,7386.9424500000005,6.0,210.05025,1,2,3,4,5,6 +3511.0,83.0,1596.2726,100,196.71831498795183,196.71831498795183,523.3452328167474,523.3452328167474,7995.1952,6.0,228.8837,1,2,3,4,5,6 +3511.5,83.0,1596.2726,100,201.30830555421687,201.30830555421687,523.3452328167474,523.3452328167474,8097.59365,6.0,232.03750000000002,1,2,3,4,5,6 +3512.0,83.0,1596.2726,100,205.89829612048192,205.89829612048192,523.3452328167474,523.3452328167474,8199.9921,6.0,235.1913,1,2,3,4,5,6 +3512.5,83.0,1596.2726,100,187.9618708192771,187.9618708192771,523.3452328167474,523.3452328167474,7803.44875,6.0,222.978,1,2,3,4,5,6 +3513.0,83.0,1596.2726,100,170.02544551807227,170.02544551807227,523.3452328167474,523.3452328167474,7406.9054,6.0,210.7647,1,2,3,4,5,6 +3513.5,83.0,1596.2726,100,151.95940330120484,151.95940330120484,523.3452328167474,523.3452328167474,7016.9401,6.0,198.6669,1,2,3,4,5,6 +3514.0,83.0,1596.2726,100,133.89336108433736,133.89336108433736,523.3452328167474,523.3452328167474,6626.9748,6.0,186.5691,1,2,3,4,5,6 +3514.5,83.0,1596.2726,100,129.61280808433736,129.61280808433736,523.3452328167474,523.3452328167474,6536.383449999999,6.0,183.709,1,2,3,4,5,6 +3515.0,83.0,1596.2726,100,125.33225508433736,125.33225508433736,523.3452328167474,523.3452328167474,6445.7921,6.0,180.8489,1,2,3,4,5,6 +3515.5,83.0,1596.2726,100,129.00808127710846,129.00808127710846,523.3452328167474,523.3452328167474,6523.13505,6.0,183.3048,1,2,3,4,5,6 +3516.0,83.0,1596.2726,100,132.68390746987953,132.68390746987953,523.3452328167474,523.3452328167474,6600.478,6.0,185.7607,1,2,3,4,5,6 +3516.5,83.0,1596.2726,100,148.48484844578314,148.48484844578314,523.3452328167474,523.3452328167474,6941.2826000000005,6.0,196.34055,1,2,3,4,5,6 +3517.0,83.0,1596.2726,100,164.2857894216868,164.2857894216868,523.3452328167474,523.3452328167474,7282.0872,6.0,206.9204,1,2,3,4,5,6 +3517.5,83.0,1596.2726,100,187.6355465421687,187.6355465421687,523.3452328167474,523.3452328167474,7798.54845,6.0,222.82704999999999,1,2,3,4,5,6 +3518.0,83.0,1596.2726,100,210.9853036626506,210.9853036626506,523.3452328167474,523.3452328167474,8315.0097,6.0,238.7337,1,2,3,4,5,6 +3518.5,83.0,1596.2726,100,255.03588628915665,255.03588628915665,523.3452328167474,523.3452328167474,9228.5366,6.0,269.40999999999997,1,2,3,4,5,6 +3519.0,83.0,1596.2726,100,299.0864689156627,299.0864689156627,523.3452328167474,523.3452328167474,10142.0635,6.0,300.0863,1,2,3,4,5,6 +3519.5,83.0,1596.2726,100,356.40042191566266,356.40042191566266,523.3452328167474,523.3452328167474,11392.34065,6.0,339.9983,1,2,3,4,5,6 +3520.0,83.0,1596.2726,100,413.7143749156627,413.7143749156627,523.3452328167474,523.3452328167474,12642.6178,6.0,379.9103,1,2,3,4,5,6 +3520.5,83.0,1596.2726,100,453.9932878554217,453.9932878554217,523.3452328167474,523.3452328167474,13502.7528,6.0,407.9598,1,2,3,4,5,6 +3521.0,83.0,1596.2726,100,494.2722007951807,494.2722007951807,523.3452328167474,523.3452328167474,14362.8878,6.0,436.0093,1,2,3,4,5,6 +3521.5,83.0,1596.2726,100,556.4536340963856,556.4536340963856,523.3452328167474,523.3452328167474,15758.6384,6.0,479.34495000000004,1,2,3,4,5,6 +3522.0,83.0,1596.2726,100,618.6350673975905,618.6350673975905,523.3452328167474,523.3452328167474,17154.389,6.0,522.6806,1,2,3,4,5,6 +3522.5,83.0,1596.2726,100,687.7464417108434,687.7464417108434,523.3452328167474,523.3452328167474,18678.39255,6.0,570.8436,1,2,3,4,5,6 +3523.0,83.0,1596.2726,100,756.8578160240965,756.8578160240965,523.3452328167474,523.3452328167474,20202.3961,6.0,619.0066,1,2,3,4,5,6 +3523.5,83.0,1596.2726,100,802.1466053132531,802.1466053132531,523.3452328167474,523.3452328167474,21144.65495,6.0,650.5478,1,2,3,4,5,6 +3524.0,83.0,1596.2726,100,847.4353946024097,847.4353946024097,523.3452328167474,523.3452328167474,22086.9138,6.0,682.089,1,2,3,4,5,6 +3524.5,83.0,1596.2726,100,883.0070227951809,883.0070227951809,523.3452328167474,523.3452328167474,22832.321949999998,6.0,706.85995,1,2,3,4,5,6 +3525.0,83.0,1596.2726,100,918.578650987952,918.578650987952,523.3452328167474,523.3452328167474,23577.7301,6.0,731.6309,1,2,3,4,5,6 +3525.5,83.0,1596.2726,100,935.135386373494,935.135386373494,523.3452328167474,523.3452328167474,23942.8433,6.0,743.1605500000001,1,2,3,4,5,6 +3526.0,83.0,1596.2726,100,951.6921217590362,951.6921217590362,523.3452328167474,523.3452328167474,24307.9565,6.0,754.6902,1,2,3,4,5,6 +3526.5,83.0,1596.2726,100,944.7781546626508,944.7781546626508,523.3452328167474,523.3452328167474,24155.490400000002,6.0,749.8756000000001,1,2,3,4,5,6 +3527.0,83.0,1596.2726,100,937.8641875662651,937.8641875662651,523.3452328167474,523.3452328167474,24003.0243,6.0,745.061,1,2,3,4,5,6 +3527.5,83.0,1596.2726,100,892.4644936626506,892.4644936626506,523.3452328167474,523.3452328167474,23053.4862,6.0,713.4458500000001,1,2,3,4,5,6 +3528.0,83.0,1596.2726,100,847.0647997590362,847.0647997590362,523.3452328167474,523.3452328167474,22103.9481,6.0,681.8307,1,2,3,4,5,6 +3528.5,83.0,1596.2726,100,790.2017675783133,790.2017675783133,523.3452328167474,523.3452328167474,20892.8391,6.0,642.22615,1,2,3,4,5,6 +3529.0,83.0,1596.2726,100,733.3387353975903,733.3387353975903,523.3452328167474,523.3452328167474,19681.7301,6.0,602.6216,1,2,3,4,5,6 +3529.5,83.0,1596.2726,100,705.191326807229,705.191326807229,523.3452328167474,523.3452328167474,19062.71525,6.0,583.0055,1,2,3,4,5,6 +3530.0,83.0,1596.2726,100,677.0439182168676,677.0439182168676,523.3452328167474,523.3452328167474,18443.7004,6.0,563.3894,1,2,3,4,5,6 +3530.5,83.0,1596.2726,100,669.095754180723,669.095754180723,523.3452328167474,523.3452328167474,18281.87885,6.0,557.8498,1,2,3,4,5,6 +3531.0,83.0,1596.2726,100,661.1475901445784,661.1475901445784,523.3452328167474,523.3452328167474,18120.0573,6.0,552.3102,1,2,3,4,5,6 +3531.5,83.0,1596.2726,100,657.960109373494,657.960109373494,523.3452328167474,523.3452328167474,18054.449099999998,6.0,550.0889,1,2,3,4,5,6 +3532.0,83.0,1596.2726,100,654.7726286024097,654.7726286024097,523.3452328167474,523.3452328167474,17988.8409,6.0,547.8676,1,2,3,4,5,6 +3532.5,83.0,1596.2726,100,645.777488493976,645.777488493976,523.3452328167474,523.3452328167474,17788.36655,6.0,541.5981,1,2,3,4,5,6 +3533.0,83.0,1596.2726,100,636.7823483855422,636.7823483855422,523.3452328167474,523.3452328167474,17587.8922,6.0,535.3286,1,2,3,4,5,6 +3533.5,83.0,1596.2726,100,623.0854003012047,623.0854003012047,523.3452328167474,523.3452328167474,17275.88975,6.0,525.78245,1,2,3,4,5,6 +3534.0,83.0,1596.2726,100,609.3884522168674,609.3884522168674,523.3452328167474,523.3452328167474,16963.8873,6.0,516.2363,1,2,3,4,5,6 +3534.5,83.0,1596.2726,100,599.4522202771085,599.4522202771085,523.3452328167474,523.3452328167474,16737.5428,6.0,509.31100000000004,1,2,3,4,5,6 +3535.0,83.0,1596.2726,100,589.5159883373495,589.5159883373495,523.3452328167474,523.3452328167474,16511.1983,6.0,502.3857,1,2,3,4,5,6 +3535.5,83.0,1596.2726,100,588.572158120482,588.572158120482,523.3452328167474,523.3452328167474,16489.70085,6.0,501.72794999999996,1,2,3,4,5,6 +3536.0,83.0,1596.2726,100,587.6283279036145,587.6283279036145,523.3452328167474,523.3452328167474,16468.2034,6.0,501.0702,1,2,3,4,5,6 +3536.5,83.0,1596.2726,100,593.6746831807229,593.6746831807229,523.3452328167474,523.3452328167474,16605.93145,6.0,505.28415,1,2,3,4,5,6 +3537.0,83.0,1596.2726,100,599.7210384578315,599.7210384578315,523.3452328167474,523.3452328167474,16743.6595,6.0,509.4981,1,2,3,4,5,6 +3537.5,83.0,1596.2726,100,609.8767976385542,609.8767976385542,523.3452328167474,523.3452328167474,16975.00365,6.0,516.5764,1,2,3,4,5,6 +3538.0,83.0,1596.2726,100,620.0325568192771,620.0325568192771,523.3452328167474,523.3452328167474,17206.3478,6.0,523.6547,1,2,3,4,5,6 +3538.5,83.0,1596.2726,100,628.6931574939758,628.6931574939758,523.3452328167474,523.3452328167474,17403.6315,6.0,529.6909,1,2,3,4,5,6 +3539.0,83.0,1596.2726,100,637.3537581686746,637.3537581686746,523.3452328167474,523.3452328167474,17600.9152,6.0,535.7271,1,2,3,4,5,6 +3539.5,83.0,1596.2726,100,649.4775037590363,649.4775037590363,523.3452328167474,523.3452328167474,17863.5851,6.0,544.1768,1,2,3,4,5,6 +3540.0,83.0,1596.2726,100,661.6012493493977,661.6012493493977,523.3452328167474,523.3452328167474,18126.255,6.0,552.6265,1,2,3,4,5,6 +3540.5,83.0,1596.2726,100,671.9765357710844,671.9765357710844,523.3452328167474,523.3452328167474,18337.41935,6.0,559.85775,1,2,3,4,5,6 +3541.0,83.0,1596.2726,100,682.351822192771,682.351822192771,523.3452328167474,523.3452328167474,18548.5837,6.0,567.089,1,2,3,4,5,6 +3541.5,83.0,1596.2726,100,695.1688357228916,695.1688357228916,523.3452328167474,523.3452328167474,18830.074249999998,6.0,576.022,1,2,3,4,5,6 +3542.0,83.0,1596.2726,100,707.985849253012,707.985849253012,523.3452328167474,523.3452328167474,19111.5648,6.0,584.955,1,2,3,4,5,6 +3542.5,83.0,1596.2726,100,730.8723628192771,730.8723628192771,523.3452328167474,523.3452328167474,19628.17325,6.0,600.90345,1,2,3,4,5,6 +3543.0,83.0,1596.2726,100,753.7588763855422,753.7588763855422,523.3452328167474,523.3452328167474,20144.7817,6.0,616.8519,1,2,3,4,5,6 +3543.5,83.0,1596.2726,100,789.8101784457832,789.8101784457832,523.3452328167474,523.3452328167474,20900.839500000002,6.0,641.9585500000001,1,2,3,4,5,6 +3544.0,83.0,1596.2726,100,825.8614805060242,825.8614805060242,523.3452328167474,523.3452328167474,21656.8973,6.0,667.0652,1,2,3,4,5,6 +3544.5,83.0,1596.2726,100,867.2530907710843,867.2530907710843,523.3452328167474,523.3452328167474,22507.78355,6.0,695.8893,1,2,3,4,5,6 +3545.0,83.0,1596.2726,100,908.6447010361446,908.6447010361446,523.3452328167474,523.3452328167474,23358.6698,6.0,724.7134,1,2,3,4,5,6 +3545.5,83.0,1596.2726,100,945.5266467108434,945.5266467108434,523.3452328167474,523.3452328167474,24180.1905,6.0,750.3976,1,2,3,4,5,6 +3546.0,83.0,1596.2726,100,982.4085923855423,982.4085923855423,523.3452328167474,523.3452328167474,25001.7112,6.0,776.0818,1,2,3,4,5,6 +3546.5,83.0,1596.2726,100,1010.2493017951807,1010.2493017951807,523.3452328167474,523.3452328167474,25635.9792,6.0,795.47435,1,2,3,4,5,6 +3547.0,83.0,1596.2726,100,1038.0900112048193,1038.0900112048193,523.3452328167474,523.3452328167474,26270.2472,6.0,814.8669,1,2,3,4,5,6 +3547.5,83.0,1596.2726,100,1047.665689048193,1047.665689048193,523.3452328167474,523.3452328167474,26489.0519,6.0,821.5379499999999,1,2,3,4,5,6 +3548.0,83.0,1596.2726,100,1057.2413668915665,1057.2413668915665,523.3452328167474,523.3452328167474,26707.8566,6.0,828.209,1,2,3,4,5,6 +3548.5,83.0,1596.2726,100,1047.1472213855423,1047.1472213855423,523.3452328167474,523.3452328167474,26477.20665,6.0,821.1768,1,2,3,4,5,6 +3549.0,83.0,1596.2726,100,1037.053075879518,1037.053075879518,523.3452328167474,523.3452328167474,26246.5567,6.0,814.1446,1,2,3,4,5,6 +3549.5,83.0,1596.2726,100,1024.924766313253,1024.924766313253,523.3452328167474,523.3452328167474,25969.4179,6.0,805.6949500000001,1,2,3,4,5,6 +3550.0,83.0,1596.2726,100,1012.796456746988,1012.796456746988,523.3452328167474,523.3452328167474,25692.2791,6.0,797.2453,1,2,3,4,5,6 +3550.5,83.0,1596.2726,100,1011.8836615662651,1011.8836615662651,523.3452328167474,523.3452328167474,25671.42465,6.0,796.6095,1,2,3,4,5,6 +3551.0,83.0,1596.2726,100,1010.9708663855422,1010.9708663855422,523.3452328167474,523.3452328167474,25650.5702,6.0,795.9737,1,2,3,4,5,6 +3551.5,83.0,1596.2726,100,1016.6908973855421,1016.6908973855421,523.3452328167474,523.3452328167474,25781.27665,6.0,799.95875,1,2,3,4,5,6 +3552.0,83.0,1596.2726,100,1022.4109283855421,1022.4109283855421,523.3452328167474,523.3452328167474,25911.9831,6.0,803.9438,1,2,3,4,5,6 +3552.5,83.0,1596.2726,100,1028.2938933253013,1028.2938933253013,523.3452328167474,523.3452328167474,26046.405899999998,6.0,808.0422,1,2,3,4,5,6 +3553.0,83.0,1596.2726,100,1034.1768582650602,1034.1768582650602,523.3452328167474,523.3452328167474,26180.8287,6.0,812.1406,1,2,3,4,5,6 +3553.5,83.0,1596.2726,100,1032.8752123373495,1032.8752123373495,523.3452328167474,523.3452328167474,26151.0827,6.0,811.2337,1,2,3,4,5,6 +3554.0,83.0,1596.2726,100,1031.5735664096387,1031.5735664096387,523.3452328167474,523.3452328167474,26121.3367,6.0,810.3268,1,2,3,4,5,6 +3554.5,83.0,1596.2726,100,1015.2427478313253,1015.2427478313253,523.3452328167474,523.3452328167474,25748.206850000002,6.0,798.9505,1,2,3,4,5,6 +3555.0,83.0,1596.2726,100,998.9119292530121,998.9119292530121,523.3452328167474,523.3452328167474,25375.077,6.0,787.5742,1,2,3,4,5,6 +3555.5,83.0,1596.2726,100,973.9912516265061,973.9912516265061,523.3452328167474,523.3452328167474,24813.50735,6.0,770.21945,1,2,3,4,5,6 +3556.0,83.0,1596.2726,100,949.0705740000001,949.0705740000001,523.3452328167474,523.3452328167474,24251.9377,6.0,752.8647,1,2,3,4,5,6 +3556.5,83.0,1596.2726,100,916.8452529397592,916.8452529397592,523.3452328167474,523.3452328167474,23549.75065,6.0,730.42395,1,2,3,4,5,6 +3557.0,83.0,1596.2726,100,884.6199318795182,884.6199318795182,523.3452328167474,523.3452328167474,22847.5636,6.0,707.9832,1,2,3,4,5,6 +3557.5,83.0,1596.2726,100,841.7819976506024,841.7819976506024,523.3452328167474,523.3452328167474,21978.59355,6.0,678.152,1,2,3,4,5,6 +3558.0,83.0,1596.2726,100,798.9440634216868,798.9440634216868,523.3452328167474,523.3452328167474,21109.6235,6.0,648.3208,1,2,3,4,5,6 +3558.5,83.0,1596.2726,100,757.1914426626505,757.1914426626505,523.3452328167474,523.3452328167474,20196.4914,6.0,619.23505,1,2,3,4,5,6 +3559.0,83.0,1596.2726,100,715.4388219036146,715.4388219036146,523.3452328167474,523.3452328167474,19283.3593,6.0,590.1493,1,2,3,4,5,6 +3559.5,83.0,1596.2726,100,683.0414389518072,683.0414389518072,523.3452328167474,523.3452328167474,18584.5496,6.0,567.5695499999999,1,2,3,4,5,6 +3560.0,83.0,1596.2726,100,650.644056,650.644056,523.3452328167474,523.3452328167474,17885.7399,6.0,544.9898,1,2,3,4,5,6 +3560.5,83.0,1596.2726,100,626.0036064939759,626.0036064939759,523.3452328167474,523.3452328167474,17333.400849999998,6.0,527.81615,1,2,3,4,5,6 +3561.0,83.0,1596.2726,100,601.3631569879518,601.3631569879518,523.3452328167474,523.3452328167474,16781.0618,6.0,510.6425,1,2,3,4,5,6 +3561.5,83.0,1596.2726,100,586.5676599036145,586.5676599036145,523.3452328167474,523.3452328167474,16444.03385,6.0,500.33065,1,2,3,4,5,6 +3562.0,83.0,1596.2726,100,571.7721628192771,571.7721628192771,523.3452328167474,523.3452328167474,16107.0059,6.0,490.0188,1,2,3,4,5,6 +3562.5,83.0,1596.2726,100,570.2829374819278,570.2829374819278,523.3452328167474,523.3452328167474,16073.0779,6.0,488.98075,1,2,3,4,5,6 +3563.0,83.0,1596.2726,100,568.7937121445783,568.7937121445783,523.3452328167474,523.3452328167474,16039.1499,6.0,487.9427,1,2,3,4,5,6 +3563.5,83.0,1596.2726,100,568.2063284457831,568.2063284457831,523.3452328167474,523.3452328167474,16025.77605,6.0,487.5335,1,2,3,4,5,6 +3564.0,83.0,1596.2726,100,567.618944746988,567.618944746988,523.3452328167474,523.3452328167474,16012.4022,6.0,487.1243,1,2,3,4,5,6 +3564.5,83.0,1596.2726,100,552.1183133855423,552.1183133855423,523.3452328167474,523.3452328167474,15662.6376,6.0,476.3207,1,2,3,4,5,6 +3565.0,83.0,1596.2726,100,536.6176820240964,536.6176820240964,523.3452328167474,523.3452328167474,15312.873,6.0,465.5171,1,2,3,4,5,6 +3565.5,83.0,1596.2726,100,521.9814676987952,521.9814676987952,523.3452328167474,523.3452328167474,14984.39785,6.0,455.31615,1,2,3,4,5,6 +3566.0,83.0,1596.2726,100,507.345253373494,507.345253373494,523.3452328167474,523.3452328167474,14655.9227,6.0,445.1152,1,2,3,4,5,6 +3566.5,83.0,1596.2726,100,495.40132843373493,495.40132843373493,523.3452328167474,523.3452328167474,14388.207999999999,6.0,436.79615,1,2,3,4,5,6 +3567.0,83.0,1596.2726,100,483.45740349397596,483.45740349397596,523.3452328167474,523.3452328167474,14120.4933,6.0,428.4771,1,2,3,4,5,6 +3567.5,83.0,1596.2726,100,471.0128103975904,471.0128103975904,523.3452328167474,523.3452328167474,13846.53505,6.0,419.81105,1,2,3,4,5,6 +3568.0,83.0,1596.2726,100,458.56821730120487,458.56821730120487,523.3452328167474,523.3452328167474,13572.5768,6.0,411.145,1,2,3,4,5,6 +3568.5,83.0,1596.2726,100,444.5148226987952,444.5148226987952,523.3452328167474,523.3452328167474,13293.44785,6.0,401.3586,1,2,3,4,5,6 +3569.0,83.0,1596.2726,100,430.46142809638553,430.46142809638553,523.3452328167474,523.3452328167474,13014.3189,6.0,391.5722,1,2,3,4,5,6 +3569.5,83.0,1596.2726,100,424.69621373493976,424.69621373493976,523.3452328167474,523.3452328167474,12902.97855,6.0,387.5575,1,2,3,4,5,6 +3570.0,83.0,1596.2726,100,418.930999373494,418.930999373494,523.3452328167474,523.3452328167474,12791.6382,6.0,383.5428,1,2,3,4,5,6 +3570.5,83.0,1596.2726,100,427.7508828072289,427.7508828072289,523.3452328167474,523.3452328167474,12961.974900000001,6.0,389.68475,1,2,3,4,5,6 +3571.0,83.0,1596.2726,100,436.5707662409639,436.5707662409639,523.3452328167474,523.3452328167474,13132.3116,6.0,395.8267,1,2,3,4,5,6 +3571.5,83.0,1596.2726,100,456.99684039759046,456.99684039759046,523.3452328167474,523.3452328167474,13560.1561,6.0,410.05100000000004,1,2,3,4,5,6 +3572.0,83.0,1596.2726,100,477.4229145542169,477.4229145542169,523.3452328167474,523.3452328167474,13988.0006,6.0,424.2753,1,2,3,4,5,6 +3572.5,83.0,1596.2726,100,507.3753756144579,507.3753756144579,523.3452328167474,523.3452328167474,14658.8903,6.0,445.14365,1,2,3,4,5,6 +3573.0,83.0,1596.2726,100,537.3278366746988,537.3278366746988,523.3452328167474,523.3452328167474,15329.78,6.0,466.012,1,2,3,4,5,6 +3573.5,83.0,1596.2726,100,569.0013730481928,569.0013730481928,523.3452328167474,523.3452328167474,16047.5893,6.0,488.08765,1,2,3,4,5,6 +3574.0,83.0,1596.2726,100,600.6749094216868,600.6749094216868,523.3452328167474,523.3452328167474,16765.3986,6.0,510.1633,1,2,3,4,5,6 +3574.5,83.0,1596.2726,100,625.5955870481928,625.5955870481928,523.3452328167474,523.3452328167474,17327.32615,6.0,527.532,1,2,3,4,5,6 +3575.0,83.0,1596.2726,100,650.516264674699,650.516264674699,523.3452328167474,523.3452328167474,17889.2537,6.0,544.9007,1,2,3,4,5,6 +3575.5,83.0,1596.2726,100,663.7554459759036,663.7554459759036,523.3452328167474,523.3452328167474,18164.7835,6.0,554.1279,1,2,3,4,5,6 +3576.0,83.0,1596.2726,100,676.9946272771084,676.9946272771084,523.3452328167474,523.3452328167474,18440.3133,6.0,563.3551,1,2,3,4,5,6 +3576.5,83.0,1596.2726,100,678.6403969879518,678.6403969879518,523.3452328167474,523.3452328167474,18473.578500000003,6.0,564.5023,1,2,3,4,5,6 +3577.0,83.0,1596.2726,100,680.2861666987952,680.2861666987952,523.3452328167474,523.3452328167474,18506.8437,6.0,565.6495,1,2,3,4,5,6 +3577.5,83.0,1596.2726,100,675.4693465301206,675.4693465301206,523.3452328167474,523.3452328167474,18409.4959,6.0,562.29225,1,2,3,4,5,6 +3578.0,83.0,1596.2726,100,670.6525263614458,670.6525263614458,523.3452328167474,523.3452328167474,18312.1481,6.0,558.935,1,2,3,4,5,6 +3578.5,83.0,1596.2726,100,672.3859244096385,672.3859244096385,523.3452328167474,523.3452328167474,18347.1842,6.0,560.1433,1,2,3,4,5,6 +3579.0,83.0,1596.2726,100,674.1193224578313,674.1193224578313,523.3452328167474,523.3452328167474,18382.2203,6.0,561.3516,1,2,3,4,5,6 +3579.5,83.0,1596.2726,100,693.752634,693.752634,523.3452328167474,523.3452328167474,18807.11415,6.0,575.0352,1,2,3,4,5,6 +3580.0,83.0,1596.2726,100,713.3859455421688,713.3859455421688,523.3452328167474,523.3452328167474,19232.008,6.0,588.7188,1,2,3,4,5,6 +3580.5,83.0,1596.2726,100,746.5989109879517,746.5989109879517,523.3452328167474,523.3452328167474,19974.0368,6.0,611.8579500000001,1,2,3,4,5,6 +3581.0,83.0,1596.2726,100,779.8118764337349,779.8118764337349,523.3452328167474,523.3452328167474,20716.0656,6.0,634.9971,1,2,3,4,5,6 +3581.5,83.0,1596.2726,100,803.5897344939759,803.5897344939759,523.3452328167474,523.3452328167474,21205.3292,6.0,651.55565,1,2,3,4,5,6 +3582.0,83.0,1596.2726,100,827.3675925542168,827.3675925542168,523.3452328167474,523.3452328167474,21694.5928,6.0,668.1142,1,2,3,4,5,6 +3582.5,83.0,1596.2726,100,854.9449605542168,854.9449605542168,523.3452328167474,523.3452328167474,22253.8297,6.0,687.3184,1,2,3,4,5,6 +3583.0,83.0,1596.2726,100,882.5223285542169,882.5223285542169,523.3452328167474,523.3452328167474,22813.0666,6.0,706.5226,1,2,3,4,5,6 +3583.5,83.0,1596.2726,100,898.8029433975903,898.8029433975903,523.3452328167474,523.3452328167474,23156.860699999997,6.0,717.8598,1,2,3,4,5,6 +3584.0,83.0,1596.2726,100,915.0835582409638,915.0835582409638,523.3452328167474,523.3452328167474,23500.6548,6.0,729.197,1,2,3,4,5,6 +3584.5,83.0,1596.2726,100,914.7709258915663,914.7709258915663,523.3452328167474,523.3452328167474,23493.76335,6.0,728.9793999999999,1,2,3,4,5,6 +3585.0,83.0,1596.2726,100,914.4582935421687,914.4582935421687,523.3452328167474,523.3452328167474,23486.8719,6.0,728.7618,1,2,3,4,5,6 +3585.5,83.0,1596.2726,100,908.4511884578314,908.4511884578314,523.3452328167474,523.3452328167474,23354.4038,6.0,724.5787,1,2,3,4,5,6 +3586.0,83.0,1596.2726,100,902.444083373494,902.444083373494,523.3452328167474,523.3452328167474,23221.9357,6.0,720.3956,1,2,3,4,5,6 +3586.5,83.0,1596.2726,100,895.38041786747,895.38041786747,523.3452328167474,523.3452328167474,23066.163500000002,6.0,715.4766,1,2,3,4,5,6 +3587.0,83.0,1596.2726,100,888.3167523614458,888.3167523614458,523.3452328167474,523.3452328167474,22910.3913,6.0,710.5576,1,2,3,4,5,6 +3587.5,83.0,1596.2726,100,875.4166744698795,875.4166744698795,523.3452328167474,523.3452328167474,22639.40935,6.0,701.5742,1,2,3,4,5,6 +3588.0,83.0,1596.2726,100,862.5165965783133,862.5165965783133,523.3452328167474,523.3452328167474,22368.4274,6.0,692.5908,1,2,3,4,5,6 +3588.5,83.0,1596.2726,100,840.778835746988,840.778835746988,523.3452328167474,523.3452328167474,21949.3954,6.0,677.4532999999999,1,2,3,4,5,6 +3589.0,83.0,1596.2726,100,819.0410749156626,819.0410749156626,523.3452328167474,523.3452328167474,21530.3634,6.0,662.3158,1,2,3,4,5,6 +3589.5,83.0,1596.2726,100,792.7156055060242,792.7156055060242,523.3452328167474,523.3452328167474,20979.38115,6.0,643.9827,1,2,3,4,5,6 +3590.0,83.0,1596.2726,100,766.3901360963856,766.3901360963856,523.3452328167474,523.3452328167474,20428.3989,6.0,625.6496,1,2,3,4,5,6 +3590.5,83.0,1596.2726,100,740.751545060241,740.751545060241,523.3452328167474,523.3452328167474,19848.59205,6.0,607.7861499999999,1,2,3,4,5,6 +3591.0,83.0,1596.2726,100,715.1129540240964,715.1129540240964,523.3452328167474,523.3452328167474,19268.7852,6.0,589.9227,1,2,3,4,5,6 +3591.5,83.0,1596.2726,100,693.8772305421687,693.8772305421687,523.3452328167474,523.3452328167474,18810.5696,6.0,575.1221499999999,1,2,3,4,5,6 +3592.0,83.0,1596.2726,100,672.6415070602409,672.6415070602409,523.3452328167474,523.3452328167474,18352.354,6.0,560.3216,1,2,3,4,5,6 +3592.5,83.0,1596.2726,100,656.1678360361445,656.1678360361445,523.3452328167474,523.3452328167474,18002.43825,6.0,548.8398,1,2,3,4,5,6 +3593.0,83.0,1596.2726,100,639.6941650120483,639.6941650120483,523.3452328167474,523.3452328167474,17652.5225,6.0,537.358,1,2,3,4,5,6 +3593.5,83.0,1596.2726,100,622.5701274216868,622.5701274216868,523.3452328167474,523.3452328167474,17263.298349999997,6.0,525.4232,1,2,3,4,5,6 +3594.0,83.0,1596.2726,100,605.4460898313254,605.4460898313254,523.3452328167474,523.3452328167474,16874.0742,6.0,513.4884,1,2,3,4,5,6 +3594.5,83.0,1596.2726,100,586.2737398554217,586.2737398554217,523.3452328167474,523.3452328167474,16437.59345,6.0,500.12585,1,2,3,4,5,6 +3595.0,83.0,1596.2726,100,567.1013898795181,567.1013898795181,523.3452328167474,523.3452328167474,16001.1127,6.0,486.7633,1,2,3,4,5,6 +3595.5,83.0,1596.2726,100,550.9649966746988,550.9649966746988,523.3452328167474,523.3452328167474,15636.7379,6.0,475.51695,1,2,3,4,5,6 +3596.0,83.0,1596.2726,100,534.8286034698795,534.8286034698795,523.3452328167474,523.3452328167474,15272.3631,6.0,464.2706,1,2,3,4,5,6 +3596.5,83.0,1596.2726,100,524.7034229277108,524.7034229277108,523.3452328167474,523.3452328167474,15045.261750000001,6.0,457.21360000000004,1,2,3,4,5,6 +3597.0,83.0,1596.2726,100,514.5782423855422,514.5782423855422,523.3452328167474,523.3452328167474,14818.1604,6.0,450.1566,1,2,3,4,5,6 +3597.5,83.0,1596.2726,100,511.4158634819278,511.4158634819278,523.3452328167474,523.3452328167474,14747.2358,6.0,447.95265,1,2,3,4,5,6 +3598.0,83.0,1596.2726,100,508.2534845783133,508.2534845783133,523.3452328167474,523.3452328167474,14676.3112,6.0,445.7487,1,2,3,4,5,6 +3598.5,83.0,1596.2726,100,513.4924725180723,513.4924725180723,523.3452328167474,523.3452328167474,14793.81395,6.0,449.40004999999996,1,2,3,4,5,6 +3599.0,83.0,1596.2726,100,518.7314604578313,518.7314604578313,523.3452328167474,523.3452328167474,14911.3167,6.0,453.0514,1,2,3,4,5,6 +3599.5,83.0,1596.2726,100,530.4613349277109,530.4613349277109,523.3452328167474,523.3452328167474,15174.41515,6.0,461.2268,1,2,3,4,5,6 +3600.0,83.0,1596.2726,100,542.1912093975903,542.1912093975903,523.3452328167474,523.3452328167474,15437.5136,6.0,469.4022,1,2,3,4,5,6 +3600.5,83.0,1596.2726,100,553.191304120482,553.191304120482,523.3452328167474,523.3452328167474,15685.9129,6.0,477.0686,1,2,3,4,5,6 +3601.0,83.0,1596.2726,100,564.1913988433735,564.1913988433735,523.3452328167474,523.3452328167474,15934.3122,6.0,484.735,1,2,3,4,5,6 +3601.5,83.0,1596.2726,100,569.4545758554217,569.4545758554217,523.3452328167474,523.3452328167474,16054.210200000001,6.0,488.40345,1,2,3,4,5,6 +3602.0,83.0,1596.2726,100,574.7177528674699,574.7177528674699,523.3452328167474,523.3452328167474,16174.1082,6.0,492.0719,1,2,3,4,5,6 +3602.5,83.0,1596.2726,100,575.2864242650603,575.2864242650603,523.3452328167474,523.3452328167474,16187.060150000001,6.0,492.4682,1,2,3,4,5,6 +3603.0,83.0,1596.2726,100,575.8550956626507,575.8550956626507,523.3452328167474,523.3452328167474,16200.0121,6.0,492.8645,1,2,3,4,5,6 +3603.5,83.0,1596.2726,100,581.3323231445784,581.3323231445784,523.3452328167474,523.3452328167474,16324.7756,6.0,496.6818,1,2,3,4,5,6 +3604.0,83.0,1596.2726,100,586.809550626506,586.809550626506,523.3452328167474,523.3452328167474,16449.5391,6.0,500.4991,1,2,3,4,5,6 +3604.5,83.0,1596.2726,100,583.0100406867471,583.0100406867471,523.3452328167474,523.3452328167474,16362.9976,6.0,497.85125,1,2,3,4,5,6 +3605.0,83.0,1596.2726,100,579.210530746988,579.210530746988,523.3452328167474,523.3452328167474,16276.4561,6.0,495.2034,1,2,3,4,5,6 +3605.5,83.0,1596.2726,100,573.2052512530121,573.2052512530121,523.3452328167474,523.3452328167474,16139.65945,6.0,491.0179,1,2,3,4,5,6 +3606.0,83.0,1596.2726,100,567.1999717590362,567.1999717590362,523.3452328167474,523.3452328167474,16002.8628,6.0,486.8324,1,2,3,4,5,6 +3606.5,83.0,1596.2726,100,565.6313332409638,565.6313332409638,523.3452328167474,523.3452328167474,15967.131300000001,6.0,485.73915,1,2,3,4,5,6 +3607.0,83.0,1596.2726,100,564.0626947228916,564.0626947228916,523.3452328167474,523.3452328167474,15931.3998,6.0,484.6459,1,2,3,4,5,6 +3607.5,83.0,1596.2726,100,566.0142508192771,566.0142508192771,523.3452328167474,523.3452328167474,15975.84975,6.0,486.0059,1,2,3,4,5,6 +3608.0,83.0,1596.2726,100,567.9658069156627,567.9658069156627,523.3452328167474,523.3452328167474,16020.2997,6.0,487.3659,1,2,3,4,5,6 +3608.5,83.0,1596.2726,100,571.5015190481928,571.5015190481928,523.3452328167474,523.3452328167474,16100.846099999999,6.0,489.83035,1,2,3,4,5,6 +3609.0,83.0,1596.2726,100,575.037231180723,575.037231180723,523.3452328167474,523.3452328167474,16181.3925,6.0,492.2948,1,2,3,4,5,6 +3609.5,83.0,1596.2726,100,578.2717209036144,578.2717209036144,523.3452328167474,523.3452328167474,16255.0689,6.0,494.54904999999997,1,2,3,4,5,6 +3610.0,83.0,1596.2726,100,581.506210626506,581.506210626506,523.3452328167474,523.3452328167474,16328.7453,6.0,496.8033,1,2,3,4,5,6 +3610.5,83.0,1596.2726,100,583.6398693614458,583.6398693614458,523.3452328167474,523.3452328167474,16377.346450000001,6.0,498.2903,1,2,3,4,5,6 +3611.0,83.0,1596.2726,100,585.7735280963855,585.7735280963855,523.3452328167474,523.3452328167474,16425.9476,6.0,499.7773,1,2,3,4,5,6 +3611.5,83.0,1596.2726,100,587.2152880843373,587.2152880843373,523.3452328167474,523.3452328167474,16458.786399999997,6.0,500.78205,1,2,3,4,5,6 +3612.0,83.0,1596.2726,100,588.6570480722893,588.6570480722893,523.3452328167474,523.3452328167474,16491.6252,6.0,501.7868,1,2,3,4,5,6 +3612.5,83.0,1596.2726,100,590.346175554217,590.346175554217,523.3452328167474,523.3452328167474,16530.1026,6.0,502.96405000000004,1,2,3,4,5,6 +3613.0,83.0,1596.2726,100,592.0353030361446,592.0353030361446,523.3452328167474,523.3452328167474,16568.58,6.0,504.1413,1,2,3,4,5,6 +3613.5,83.0,1596.2726,100,594.3118142168676,594.3118142168676,523.3452328167474,523.3452328167474,16620.44485,6.0,505.7282,1,2,3,4,5,6 +3614.0,83.0,1596.2726,100,596.5883253975904,596.5883253975904,523.3452328167474,523.3452328167474,16672.3097,6.0,507.3151,1,2,3,4,5,6 +3614.5,83.0,1596.2726,100,599.0638259277109,599.0638259277109,523.3452328167474,523.3452328167474,16728.70115,6.0,509.04044999999996,1,2,3,4,5,6 +3615.0,83.0,1596.2726,100,601.5393264578314,601.5393264578314,523.3452328167474,523.3452328167474,16785.0926,6.0,510.7658,1,2,3,4,5,6 +3615.5,83.0,1596.2726,100,603.927655048193,603.927655048193,523.3452328167474,523.3452328167474,16839.497349999998,6.0,512.4304,1,2,3,4,5,6 +3616.0,83.0,1596.2726,100,606.3159836385541,606.3159836385541,523.3452328167474,523.3452328167474,16893.9021,6.0,514.095,1,2,3,4,5,6 +3616.5,83.0,1596.2726,100,608.2296587349397,608.2296587349397,523.3452328167474,523.3452328167474,16937.492599999998,6.0,515.42875,1,2,3,4,5,6 +3617.0,83.0,1596.2726,100,610.1433338313254,610.1433338313254,523.3452328167474,523.3452328167474,16981.0831,6.0,516.7625,1,2,3,4,5,6 +3617.5,83.0,1596.2726,100,611.267897493976,611.267897493976,523.3452328167474,523.3452328167474,17006.701,6.0,517.5463,1,2,3,4,5,6 +3618.0,83.0,1596.2726,100,612.3924611566266,612.3924611566266,523.3452328167474,523.3452328167474,17032.3189,6.0,518.3301,1,2,3,4,5,6 +3618.5,83.0,1596.2726,100,612.8566175060241,612.8566175060241,523.3452328167474,523.3452328167474,17042.88525,6.0,518.6534,1,2,3,4,5,6 +3619.0,83.0,1596.2726,100,613.3207738554217,613.3207738554217,523.3452328167474,523.3452328167474,17053.4516,6.0,518.9767,1,2,3,4,5,6 +3619.5,83.0,1596.2726,100,613.4115969759036,613.4115969759036,523.3452328167474,523.3452328167474,17055.52145,6.0,519.04,1,2,3,4,5,6 +3620.0,83.0,1596.2726,100,613.5024200963855,613.5024200963855,523.3452328167474,523.3452328167474,17057.5913,6.0,519.1033,1,2,3,4,5,6 +3620.5,83.0,1596.2726,100,613.1172205301203,613.1172205301203,523.3452328167474,523.3452328167474,17048.8178,6.0,518.8349000000001,1,2,3,4,5,6 +3621.0,83.0,1596.2726,100,612.7320209638555,612.7320209638555,523.3452328167474,523.3452328167474,17040.0443,6.0,518.5665,1,2,3,4,5,6 +3621.5,83.0,1596.2726,100,611.6882396746989,611.6882396746989,523.3452328167474,523.3452328167474,17016.27125,6.0,517.8391,1,2,3,4,5,6 +3622.0,83.0,1596.2726,100,610.6444583855422,610.6444583855422,523.3452328167474,523.3452328167474,16992.4982,6.0,517.1117,1,2,3,4,5,6 +3622.5,83.0,1596.2726,100,609.2725272289157,609.2725272289157,523.3452328167474,523.3452328167474,16961.2482,6.0,516.15555,1,2,3,4,5,6 +3623.0,83.0,1596.2726,100,607.9005960722892,607.9005960722892,523.3452328167474,523.3452328167474,16929.9982,6.0,515.1994,1,2,3,4,5,6 +3623.5,83.0,1596.2726,100,606.6888604698795,606.6888604698795,523.3452328167474,523.3452328167474,16902.388400000003,6.0,514.35465,1,2,3,4,5,6 +3624.0,83.0,1596.2726,100,605.4771248674699,605.4771248674699,523.3452328167474,523.3452328167474,16874.7786,6.0,513.5099,1,2,3,4,5,6 +3624.5,83.0,1596.2726,100,604.1996680120483,604.1996680120483,523.3452328167474,523.3452328167474,16845.6803,6.0,512.6196,1,2,3,4,5,6 +3625.0,83.0,1596.2726,100,602.9222111566265,602.9222111566265,523.3452328167474,523.3452328167474,16816.582,6.0,511.7293,1,2,3,4,5,6 +3625.5,83.0,1596.2726,100,600.3741434096386,600.3741434096386,523.3452328167474,523.3452328167474,16758.542849999998,6.0,509.9535,1,2,3,4,5,6 +3626.0,83.0,1596.2726,100,597.8260756626506,597.8260756626506,523.3452328167474,523.3452328167474,16700.5037,6.0,508.1777,1,2,3,4,5,6 +3626.5,83.0,1596.2726,100,593.1731022289157,593.1731022289157,523.3452328167474,523.3452328167474,16594.51225,6.0,504.93475,1,2,3,4,5,6 +3627.0,83.0,1596.2726,100,588.5201287951809,588.5201287951809,523.3452328167474,523.3452328167474,16488.5208,6.0,501.6918,1,2,3,4,5,6 +3627.5,83.0,1596.2726,100,581.7188919036145,581.7188919036145,523.3452328167474,523.3452328167474,16333.587,6.0,496.95140000000004,1,2,3,4,5,6 +3628.0,83.0,1596.2726,100,574.9176550120482,574.9176550120482,523.3452328167474,523.3452328167474,16178.6532,6.0,492.211,1,2,3,4,5,6 +3628.5,83.0,1596.2726,100,565.8166306626506,565.8166306626506,523.3452328167474,523.3452328167474,15971.69065,6.0,485.868,1,2,3,4,5,6 +3629.0,83.0,1596.2726,100,556.715606313253,556.715606313253,523.3452328167474,523.3452328167474,15764.7281,6.0,479.525,1,2,3,4,5,6 +3629.5,83.0,1596.2726,100,546.5922513614458,546.5922513614458,523.3452328167474,523.3452328167474,15536.93685,6.0,472.4693,1,2,3,4,5,6 +3630.0,83.0,1596.2726,100,536.4688964096385,536.4688964096385,523.3452328167474,523.3452328167474,15309.1456,6.0,465.4136,1,2,3,4,5,6 +3630.5,83.0,1596.2726,100,528.4746362168675,528.4746362168675,523.3452328167474,523.3452328167474,15129.8403,6.0,459.84185,1,2,3,4,5,6 +3631.0,83.0,1596.2726,100,520.4803760240965,520.4803760240965,523.3452328167474,523.3452328167474,14950.535,6.0,454.2701,1,2,3,4,5,6 +3631.5,83.0,1596.2726,100,516.2532215421687,516.2532215421687,523.3452328167474,523.3452328167474,14855.728149999999,6.0,451.324,1,2,3,4,5,6 +3632.0,83.0,1596.2726,100,512.026067060241,512.026067060241,523.3452328167474,523.3452328167474,14760.9213,6.0,448.3779,1,2,3,4,5,6 +3632.5,83.0,1596.2726,100,509.5907295180723,509.5907295180723,523.3452328167474,523.3452328167474,14706.294399999999,6.0,446.68045,1,2,3,4,5,6 +3633.0,83.0,1596.2726,100,507.1553919759036,507.1553919759036,523.3452328167474,523.3452328167474,14651.6675,6.0,444.983,1,2,3,4,5,6 +3633.5,83.0,1596.2726,100,504.3887097831325,504.3887097831325,523.3452328167474,523.3452328167474,14589.62595,6.0,443.05510000000004,1,2,3,4,5,6 +3634.0,83.0,1596.2726,100,501.6220275903615,501.6220275903615,523.3452328167474,523.3452328167474,14527.5844,6.0,441.1272,1,2,3,4,5,6 +3634.5,83.0,1596.2726,100,497.2036425180723,497.2036425180723,523.3452328167474,523.3452328167474,14428.545750000001,6.0,438.04965000000004,1,2,3,4,5,6 +3635.0,83.0,1596.2726,100,492.7852574457832,492.7852574457832,523.3452328167474,523.3452328167474,14329.5071,6.0,434.9721,1,2,3,4,5,6 +3635.5,83.0,1596.2726,100,486.90001051807235,486.90001051807235,523.3452328167474,523.3452328167474,14197.6178,6.0,430.8737,1,2,3,4,5,6 +3636.0,83.0,1596.2726,100,481.0147635903615,481.0147635903615,523.3452328167474,523.3452328167474,14065.7285,6.0,426.7753,1,2,3,4,5,6 +3636.5,83.0,1596.2726,100,478.4844953493976,478.4844953493976,523.3452328167474,523.3452328167474,14009.031599999998,6.0,425.0135,1,2,3,4,5,6 +3637.0,83.0,1596.2726,100,475.95422710843377,475.95422710843377,523.3452328167474,523.3452328167474,13952.3347,6.0,423.2517,1,2,3,4,5,6 +3637.5,83.0,1596.2726,100,479.8491241445783,479.8491241445783,523.3452328167474,523.3452328167474,14039.615099999999,6.0,425.9639,1,2,3,4,5,6 +3638.0,83.0,1596.2726,100,483.74402118072294,483.74402118072294,523.3452328167474,523.3452328167474,14126.8955,6.0,428.6761,1,2,3,4,5,6 +3638.5,83.0,1596.2726,100,492.3475721566266,492.3475721566266,523.3452328167474,523.3452328167474,14319.72425,6.0,434.6681,1,2,3,4,5,6 +3639.0,83.0,1596.2726,100,500.95112313253014,500.95112313253014,523.3452328167474,523.3452328167474,14512.553,6.0,440.6601,1,2,3,4,5,6 +3639.5,83.0,1596.2726,100,511.5984225180723,511.5984225180723,523.3452328167474,523.3452328167474,14751.345099999999,6.0,448.0804,1,2,3,4,5,6 +3640.0,83.0,1596.2726,100,522.2457219036145,522.2457219036145,523.3452328167474,523.3452328167474,14990.1372,6.0,455.5007,1,2,3,4,5,6 +3640.5,83.0,1596.2726,100,533.4466315662651,533.4466315662651,523.3452328167474,523.3452328167474,15241.47065,6.0,463.30725,1,2,3,4,5,6 +3641.0,83.0,1596.2726,100,544.6475412289158,544.6475412289158,523.3452328167474,523.3452328167474,15492.8041,6.0,471.1138,1,2,3,4,5,6 +3641.5,83.0,1596.2726,100,558.7716774578314,558.7716774578314,523.3452328167474,523.3452328167474,15812.7049,6.0,480.95795,1,2,3,4,5,6 +3642.0,83.0,1596.2726,100,572.895813686747,572.895813686747,523.3452328167474,523.3452328167474,16132.6057,6.0,490.8021,1,2,3,4,5,6 +3642.5,83.0,1596.2726,100,590.9764606265061,590.9764606265061,523.3452328167474,523.3452328167474,16544.46845,6.0,503.4036,1,2,3,4,5,6 +3643.0,83.0,1596.2726,100,609.0571075662651,609.0571075662651,523.3452328167474,523.3452328167474,16956.3312,6.0,516.0051,1,2,3,4,5,6 +3643.5,83.0,1596.2726,100,629.4795305421687,629.4795305421687,523.3452328167474,523.3452328167474,17415.2815,6.0,530.2390499999999,1,2,3,4,5,6 +3644.0,83.0,1596.2726,100,649.9019535180723,649.9019535180723,523.3452328167474,523.3452328167474,17874.2318,6.0,544.473,1,2,3,4,5,6 +3644.5,83.0,1596.2726,100,673.5725581445784,673.5725581445784,523.3452328167474,523.3452328167474,18374.8757,6.0,560.97045,1,2,3,4,5,6 +3645.0,83.0,1596.2726,100,697.2431627710844,697.2431627710844,523.3452328167474,523.3452328167474,18875.5196,6.0,577.4679,1,2,3,4,5,6 +3645.5,83.0,1596.2726,100,723.2126420602409,723.2126420602409,523.3452328167474,523.3452328167474,19458.285649999998,6.0,595.566,1,2,3,4,5,6 +3646.0,83.0,1596.2726,100,749.1821213493976,749.1821213493976,523.3452328167474,523.3452328167474,20041.0517,6.0,613.6641,1,2,3,4,5,6 +3646.5,83.0,1596.2726,100,765.6854582168676,765.6854582168676,523.3452328167474,523.3452328167474,20415.07775,6.0,625.15855,1,2,3,4,5,6 +3647.0,83.0,1596.2726,100,782.1887950843374,782.1887950843374,523.3452328167474,523.3452328167474,20789.1038,6.0,636.653,1,2,3,4,5,6 +3647.5,83.0,1596.2726,100,777.5476879879518,777.5476879879518,523.3452328167474,523.3452328167474,20683.93885,6.0,633.4211,1,2,3,4,5,6 +3648.0,83.0,1596.2726,100,772.9065808915663,772.9065808915663,523.3452328167474,523.3452328167474,20578.7739,6.0,630.1892,1,2,3,4,5,6 +3648.5,83.0,1596.2726,100,758.5309695903616,758.5309695903616,523.3452328167474,523.3452328167474,20252.951950000002,6.0,620.17615,1,2,3,4,5,6 +3649.0,83.0,1596.2726,100,744.1553582891568,744.1553582891568,523.3452328167474,523.3452328167474,19927.13,6.0,610.1631,1,2,3,4,5,6 +3649.5,83.0,1596.2726,100,738.8515618915662,738.8515618915662,523.3452328167474,523.3452328167474,19806.85715,6.0,606.4669,1,2,3,4,5,6 +3650.0,83.0,1596.2726,100,733.5477654939758,733.5477654939758,523.3452328167474,523.3452328167474,19686.5843,6.0,602.7707,1,2,3,4,5,6 +3650.5,83.0,1596.2726,100,738.3988154819277,738.3988154819277,523.3452328167474,523.3452328167474,19796.60835,6.0,606.1519499999999,1,2,3,4,5,6 +3651.0,83.0,1596.2726,100,743.2498654698796,743.2498654698796,523.3452328167474,523.3452328167474,19906.6324,6.0,609.5332,1,2,3,4,5,6 +3651.5,83.0,1596.2726,100,748.7503692289157,748.7503692289157,523.3452328167474,523.3452328167474,20031.333899999998,6.0,613.3655,1,2,3,4,5,6 +3652.0,83.0,1596.2726,100,754.2508729879518,754.2508729879518,523.3452328167474,523.3452328167474,20156.0354,6.0,617.1978,1,2,3,4,5,6 +3652.5,83.0,1596.2726,100,752.3563665903615,752.3563665903615,523.3452328167474,523.3452328167474,20113.0849,6.0,615.8778500000001,1,2,3,4,5,6 +3653.0,83.0,1596.2726,100,750.4618601927712,750.4618601927712,523.3452328167474,523.3452328167474,20070.1344,6.0,614.5579,1,2,3,4,5,6 +3653.5,83.0,1596.2726,100,740.2778043614458,740.2778043614458,523.3452328167474,523.3452328167474,19839.19645,6.0,607.4608000000001,1,2,3,4,5,6 +3654.0,83.0,1596.2726,100,730.0937485301205,730.0937485301205,523.3452328167474,523.3452328167474,19608.2585,6.0,600.3637,1,2,3,4,5,6 +3654.5,83.0,1596.2726,100,718.6244770843375,718.6244770843375,523.3452328167474,523.3452328167474,19348.1413,6.0,592.36985,1,2,3,4,5,6 +3655.0,83.0,1596.2726,100,707.1552056385543,707.1552056385543,523.3452328167474,523.3452328167474,19088.0241,6.0,584.376,1,2,3,4,5,6 +3655.5,83.0,1596.2726,100,703.2785645060242,703.2785645060242,523.3452328167474,523.3452328167474,19000.10985,6.0,581.67425,1,2,3,4,5,6 +3656.0,83.0,1596.2726,100,699.401923373494,699.401923373494,523.3452328167474,523.3452328167474,18912.1956,6.0,578.9725,1,2,3,4,5,6 +3656.5,83.0,1596.2726,100,705.6477243975904,705.6477243975904,523.3452328167474,523.3452328167474,19053.8424,6.0,583.32555,1,2,3,4,5,6 +3657.0,83.0,1596.2726,100,711.8935254216868,711.8935254216868,523.3452328167474,523.3452328167474,19195.4892,6.0,587.6786,1,2,3,4,5,6 +3657.5,83.0,1596.2726,100,724.8584117710843,724.8584117710843,523.3452328167474,523.3452328167474,19489.516900000002,6.0,596.7145499999999,1,2,3,4,5,6 +3658.0,83.0,1596.2726,100,737.8232981204819,737.8232981204819,523.3452328167474,523.3452328167474,19783.5446,6.0,605.7505,1,2,3,4,5,6 +3658.5,83.0,1596.2726,100,755.4338555421689,755.4338555421689,523.3452328167474,523.3452328167474,20181.39975,6.0,618.0178000000001,1,2,3,4,5,6 +3659.0,83.0,1596.2726,100,773.0444129638555,773.0444129638555,523.3452328167474,523.3452328167474,20579.2549,6.0,630.2851,1,2,3,4,5,6 +3659.5,83.0,1596.2726,100,792.1058583253013,792.1058583253013,523.3452328167474,523.3452328167474,20979.0435,6.0,643.5589,1,2,3,4,5,6 +3660.0,83.0,1596.2726,100,811.1673036867469,811.1673036867469,523.3452328167474,523.3452328167474,21378.8321,6.0,656.8327,1,2,3,4,5,6 +3660.5,83.0,1596.2726,100,827.1791003493978,827.1791003493978,523.3452328167474,523.3452328167474,21687.216549999997,6.0,667.9829,1,2,3,4,5,6 +3661.0,83.0,1596.2726,100,843.1908970120483,843.1908970120483,523.3452328167474,523.3452328167474,21995.601,6.0,679.1331,1,2,3,4,5,6 +3661.5,83.0,1596.2726,100,853.2740889759039,853.2740889759039,523.3452328167474,523.3452328167474,22186.245,6.0,686.1547499999999,1,2,3,4,5,6 +3662.0,83.0,1596.2726,100,863.357280939759,863.357280939759,523.3452328167474,523.3452328167474,22376.889,6.0,693.1764,1,2,3,4,5,6 +3662.5,83.0,1596.2726,100,894.4064654096386,894.4064654096386,523.3452328167474,523.3452328167474,23053.2506,6.0,714.7982,1,2,3,4,5,6 +3663.0,83.0,1596.2726,100,925.4556498795181,925.4556498795181,523.3452328167474,523.3452328167474,23729.6122,6.0,736.42,1,2,3,4,5,6 +3663.5,83.0,1596.2726,100,961.9446372289157,961.9446372289157,523.3452328167474,523.3452328167474,24546.898699999998,6.0,761.83105,1,2,3,4,5,6 +3664.0,83.0,1596.2726,100,998.4336245783134,998.4336245783134,523.3452328167474,523.3452328167474,25364.1852,6.0,787.2421,1,2,3,4,5,6 +3664.5,83.0,1596.2726,100,1017.6967976746989,1017.6967976746989,523.3452328167474,523.3452328167474,25804.30465,6.0,800.6608000000001,1,2,3,4,5,6 +3665.0,83.0,1596.2726,100,1036.9599707710843,1036.9599707710843,523.3452328167474,523.3452328167474,26244.4241,6.0,814.0795,1,2,3,4,5,6 +3665.5,83.0,1596.2726,100,1038.2634422891567,1038.2634422891567,523.3452328167474,523.3452328167474,26274.20515,6.0,814.9875,1,2,3,4,5,6 +3666.0,83.0,1596.2726,100,1039.566913807229,1039.566913807229,523.3452328167474,523.3452328167474,26303.9862,6.0,815.8955,1,2,3,4,5,6 +3666.5,83.0,1596.2726,100,1042.7585021566265,1042.7585021566265,523.3452328167474,523.3452328167474,26375.9533,6.0,818.11915,1,2,3,4,5,6 +3667.0,83.0,1596.2726,100,1045.950090506024,1045.950090506024,523.3452328167474,523.3452328167474,26447.9204,6.0,820.3428,1,2,3,4,5,6 +3667.5,82.98895,1596.10535,100,1109.2965174881715,1109.2965174881715,523.275558541776,523.275558541776,27820.980649999998,6.0,864.30315,1,2,3,4,5,6 +3668.0,82.9779,1595.9381,100,1172.6598159027885,1172.6598159027885,523.2058842668047,523.2058842668047,29194.0409,6.0,908.2635,1,2,3,4,5,6 +3668.5,82.9385,1595.1846,100,1205.4058162855608,1205.4058162855608,522.957452915323,522.957452915323,29874.71385,6.0,930.838,1,2,3,4,5,6 +3669.0,82.8991,1594.4311,100,1238.1829434818956,1238.1829434818956,522.7090215638412,522.7090215638412,30555.3868,6.0,953.4125,1,2,3,4,5,6 +3669.5,82.8245,1592.98025,100,1240.343252721115,1240.343252721115,522.2386413907313,522.2386413907313,30568.1474,6.0,954.68295,1,2,3,4,5,6 +3670.0,82.7499,1591.5294,100,1242.5074570482864,1242.5074570482864,521.7682612176213,521.7682612176213,30580.908,6.0,955.9534,1,2,3,4,5,6 +3670.5,82.64725,1589.5376999999999,100,1242.7136891185125,1242.7136891185125,521.1210155772764,521.1210155772764,30541.6639,6.0,955.9766999999999,1,2,3,4,5,6 +3671.0,82.5446,1587.546,100,1242.9204341168288,1242.9204341168288,520.4737699369313,520.4737699369313,30502.4198,6.0,956.0,1,2,3,4,5,6 +3671.5,82.4265,1585.26845,100,1242.9953448708848,1242.9953448708848,519.7291064189113,519.7291064189113,30456.66305,6.0,956.0,1,2,3,4,5,6 +3672.0,82.3084,1582.9909,100,1243.0704705959536,1243.0704705959536,518.9844429008913,518.9844429008913,30410.9063,6.0,956.0,1,2,3,4,5,6 +3672.5,82.18235,1580.5610000000001,100,1243.0941392768643,1243.0941392768643,518.1896517370774,518.1896517370774,30362.08975,6.0,956.0,1,2,3,4,5,6 +3673.0,82.0563,1578.1311,100,1243.11788067461,1243.11788067461,517.3948605732635,517.3948605732635,30313.2732,6.0,956.0,1,2,3,4,5,6 +3673.5,81.92625,1575.62825,100,1243.10991491738,1243.10991491738,516.5748479524464,516.5748479524464,30262.991,6.0,956.0,1,2,3,4,5,6 +3674.0,81.7962,1573.1254,100,1243.1019238302022,1243.1019238302022,515.7548353316294,515.7548353316294,30212.7088,6.0,956.0,1,2,3,4,5,6 +3674.5,81.6635,1570.5751,100,1243.1017752974096,1243.1017752974096,514.9181134955476,514.9181134955476,30161.47285,6.0,956.0,1,2,3,4,5,6 +3675.0,81.5308,1568.0248,100,1243.101626281111,1243.101626281111,514.0813916594659,514.0813916594659,30110.2369,6.0,956.0,1,2,3,4,5,6 +3675.5,81.3959,1565.42445,100,1243.0796941614994,1243.0796941614994,513.2307980220324,513.2307980220324,30057.9954,6.0,956.0,1,2,3,4,5,6 +3676.0,81.261,1562.8241,100,1243.0576892236131,1243.0576892236131,512.3802043845989,512.3802043845989,30005.7539,6.0,956.0,1,2,3,4,5,6 +3676.5,81.1276,1560.252,100,1242.9734059185778,1242.9734059185778,511.5390687935416,511.5390687935416,29954.0804,6.0,956.0,1,2,3,4,5,6 +3677.0,80.9942,1557.6799,100,1242.8888449790231,1242.8888449790231,510.69793320248436,510.69793320248436,29902.4069,6.0,956.0,1,2,3,4,5,6 +3677.5,80.8661,1555.21925,100,1242.7970332314776,1242.7970332314776,509.89021604195636,509.89021604195636,29852.9726,6.0,956.0,1,2,3,4,5,6 +3678.0,80.738,1552.7586,100,1242.7049301444179,1242.7049301444179,509.08249888142836,509.08249888142836,29803.5383,6.0,956.0,1,2,3,4,5,6 +3678.5,80.61425,1550.38115,100,1242.64886110086,1242.64886110086,508.30221005539136,508.30221005539136,29755.7752,6.0,956.0,1,2,3,4,5,6 +3679.0,80.4905,1548.0037,100,1242.5926196507664,1242.5926196507664,507.5219212293543,507.5219212293543,29708.0121,6.0,956.0,1,2,3,4,5,6 +3679.5,80.3712,1545.6984499999999,100,1242.4895604395604,1242.4895604395604,506.76969127423337,506.76969127423337,29661.699350000003,6.0,956.0,1,2,3,4,5,6 +3680.0,80.2519,1543.3932,100,1242.3861948190636,1242.3861948190636,506.01746131911244,506.01746131911244,29615.3866,6.0,956.0,1,2,3,4,5,6 +3680.5,80.14420000000001,1541.31135,100,1242.1750316180085,1242.1750316180085,505.33837358930083,505.33837358930083,29573.561650000003,6.0,956.0,1,2,3,4,5,6 +3681.0,80.0365,1539.2295,100,1241.9633001193204,1241.9633001193204,504.6592858594893,504.6592858594893,29531.7367,6.0,956.0,1,2,3,4,5,6 +3681.5,79.94665,1537.5081,100,1241.7528324201198,1241.7528324201198,504.09274888155454,504.09274888155454,29497.153550000003,6.0,956.0,1,2,3,4,5,6 +3682.0,79.8568,1535.7867,100,1241.5418911100871,1241.5418911100871,503.5262119036197,503.5262119036197,29462.5704,6.0,956.0,1,2,3,4,5,6 +3682.5,79.7809,1534.34015,100,1241.4391447827736,1241.4391447827736,503.0476347569837,503.0476347569837,29433.509100000003,6.0,956.0,1,2,3,4,5,6 +3683.0,79.705,1532.8936,100,1241.3362027727244,1241.3362027727244,502.5690576103476,502.5690576103476,29404.4478,6.0,956.0,1,2,3,4,5,6 +3683.5,79.63374999999999,1531.5305,100,1241.3204179634893,1241.3204179634893,502.1198004074778,502.1198004074778,29377.063000000002,6.0,956.0,1,2,3,4,5,6 +3684.0,79.5625,1530.1674,100,1241.3046048829538,1241.3046048829538,501.670543204608,501.670543204608,29349.6782,6.0,956.0,1,2,3,4,5,6 +3684.5,79.4921,1528.8037,100,1241.2650066610393,1241.2650066610393,501.2266455613514,501.2266455613514,29322.28155,6.0,956.0,1,2,3,4,5,6 +3685.0,79.4217,1527.44,100,1241.2253382387935,1241.2253382387935,500.7827479180948,500.7827479180948,29294.8849,6.0,956.0,1,2,3,4,5,6 +3685.5,79.35820000000001,1526.20225,100,1241.0657478496234,1241.0657478496234,500.3823572881688,500.3823572881688,29270.018799999998,6.0,956.0,1,2,3,4,5,6 +3686.0,79.2947,1524.9645,100,1240.9059018572489,1240.9059018572489,499.9819666582427,499.9819666582427,29245.1527,6.0,956.0,1,2,3,4,5,6 +3686.5,79.24860000000001,1524.0722500000002,100,1240.6593215526837,1240.6593215526837,499.6912893662807,499.6912893662807,29227.22675,6.0,956.0,1,2,3,4,5,6 +3687.0,79.2025,1523.18,100,1240.4124542028346,1240.4124542028346,499.40061207431853,499.40061207431853,29209.3008,6.0,956.0,1,2,3,4,5,6 +3687.5,79.17955,1522.7408,100,1240.1615221101915,1240.1615221101915,499.25590396476264,499.25590396476264,29200.47715,6.0,956.0,1,2,3,4,5,6 +3688.0,79.1566,1522.3016,100,1239.91044451126,1239.91044451126,499.11119585520663,499.11119585520663,29191.6535,6.0,956.0,1,2,3,4,5,6 +3688.5,79.15585,1522.2921999999999,100,1239.6872185820757,1239.6872185820757,499.10646683201855,499.10646683201855,29191.0923,6.0,955.9887,1,2,3,4,5,6 +3689.0,79.1551,1522.2828,100,1239.4639884227295,1239.4639884227295,499.1017378088304,499.1017378088304,29190.5311,6.0,955.9774,1,2,3,4,5,6 +3689.5,79.17320000000001,1522.6331,100,1239.2399599106766,1239.2399599106766,499.21586490177003,499.21586490177003,29196.3398,6.0,955.94015,1,2,3,4,5,6 +3690.0,79.1913,1522.9834,100,1239.016033806744,1239.016033806744,499.3299919947095,499.3299919947095,29202.1485,6.0,955.9029,1,2,3,4,5,6 +3690.5,79.2247,1523.63485,100,1238.8389040286677,1238.8389040286677,499.54059116068635,499.54059116068635,29213.983500000002,6.0,955.86495,1,2,3,4,5,6 +3691.0,79.2581,1524.2863,100,1238.6619235384142,1238.6619235384142,499.7511903266633,499.7511903266633,29225.8185,6.0,955.827,1,2,3,4,5,6 +3691.5,79.2995,1525.097,100,1238.6329136375386,1238.6329136375386,500.0122324066465,500.0122324066465,29241.50095,6.0,955.80865,1,2,3,4,5,6 +3692.0,79.3409,1525.9077,100,1238.6039340113357,1238.6039340113357,500.2732744866298,500.2732744866298,29257.1834,6.0,955.7903,1,2,3,4,5,6 +3692.5,79.38175000000001,1526.6912499999999,100,1238.654668988779,1238.654668988779,500.53084861627514,500.53084861627514,29273.061,6.0,955.7944,1,2,3,4,5,6 +3693.0,79.4226,1527.4748,100,1238.7053517764466,1238.7053517764466,500.78842274592046,500.78842274592046,29288.9386,6.0,955.7985,1,2,3,4,5,6 +3693.5,79.46485,1528.2687999999998,100,1238.6330975519365,1238.6330975519365,501.054824385517,501.054824385517,29304.78385,6.0,955.7953,1,2,3,4,5,6 +3694.0,79.5071,1529.0628,100,1238.560920119084,1238.560920119084,501.3212260251134,501.3212260251134,29320.6291,6.0,955.7921,1,2,3,4,5,6 +3694.5,79.56285,1530.119,100,1238.2977206321798,1238.2977206321798,501.6727500820957,501.6727500820957,29340.7076,6.0,955.7574999999999,1,2,3,4,5,6 +3695.0,79.6186,1531.1752,100,1238.03488973682,1238.03488973682,502.0242741390782,502.0242741390782,29360.7861,6.0,955.7229,1,2,3,4,5,6 +3695.5,79.69890000000001,1532.7181,100,1237.675855764634,1237.675855764634,502.5305948884178,502.5305948884178,29389.8108,6.0,955.66315,1,2,3,4,5,6 +3696.0,79.7792,1534.261,100,1237.3175445479524,1237.3175445479524,503.0369156377572,503.0369156377572,29418.8355,6.0,955.6034,1,2,3,4,5,6 +3696.5,79.8868,1536.3368500000001,100,1236.992933500904,1236.992933500904,503.7153728311437,503.7153728311437,29458.5061,6.0,955.54175,1,2,3,4,5,6 +3697.0,79.9944,1538.4127,100,1236.6691957187002,1236.6691957187002,504.3938300245304,504.3938300245304,29498.1767,6.0,955.4801,1,2,3,4,5,6 +3697.5,80.12525,1540.9362500000002,100,1236.4286727716917,1236.4286727716917,505.21888693674816,505.21888693674816,29547.28905,6.0,955.432,1,2,3,4,5,6 +3698.0,80.2561,1543.4598,100,1236.1889341246335,1236.1889341246335,506.0439438489658,506.0439438489658,29596.4014,6.0,955.3839,1,2,3,4,5,6 +3698.5,80.40270000000001,1546.29645,100,1236.0843085866513,1236.0843085866513,506.96831024813383,506.96831024813383,29652.4583,6.0,955.3557000000001,1,2,3,4,5,6 +3699.0,80.5493,1549.1331,100,1235.9800638863403,1235.9800638863403,507.8926766473017,507.8926766473017,29708.5152,6.0,955.3275,1,2,3,4,5,6 +3699.5,80.69715,1552.00495,100,1236.1419932302447,1236.1419932302447,508.8249247517829,508.8249247517829,29766.46755,6.0,955.33525,1,2,3,4,5,6 +3700.0,80.845,1554.8768,100,1236.3033302987199,1236.3033302987199,509.75717285626433,509.75717285626433,29824.4199,6.0,955.343,1,2,3,4,5,6 +3700.5,80.97370000000001,1557.3685500000001,100,1236.728428699689,1236.728428699689,510.56867323534294,510.56867323534294,29876.23165,6.0,955.39615,1,2,3,4,5,6 +3701.0,81.1024,1559.8603,100,1237.1521779380141,1237.1521779380141,511.38017361442144,511.38017361442144,29928.0434,6.0,955.4493,1,2,3,4,5,6 +3701.5,81.20125,1561.74855,100,1237.580276436631,1237.580276436631,512.0034588706135,512.0034588706135,29968.31025,6.0,955.51995,1,2,3,4,5,6 +3702.0,81.3001,1563.6368,100,1238.0073339147184,1238.0073339147184,512.6267441268054,512.6267441268054,30008.5771,6.0,955.5906,1,2,3,4,5,6 +3702.5,81.37604999999999,1565.07815,100,1238.2390817445678,1238.2390817445678,513.1056365416538,513.1056365416538,30039.1412,6.0,955.6393499999999,1,2,3,4,5,6 +3703.0,81.452,1566.5195,100,1238.4703973874189,1238.4703973874189,513.5845289565025,513.5845289565025,30069.7053,6.0,955.6881,1,2,3,4,5,6 +3703.5,81.51885,1567.7952,100,1238.5347223617605,1238.5347223617605,514.0060425566688,514.0060425566688,30095.93605,6.0,955.7063,1,2,3,4,5,6 +3704.0,81.5857,1569.0709,100,1238.5989419224202,1238.5989419224202,514.4275561568351,514.4275561568351,30122.1668,6.0,955.7245,1,2,3,4,5,6 +3704.5,81.65065,1570.32495,100,1238.6334234203894,1238.6334234203894,514.8370895649248,514.8370895649248,30147.50415,6.0,955.72885,1,2,3,4,5,6 +3705.0,81.7156,1571.579,100,1238.6678501045087,1238.6678501045087,515.2466229730145,515.2466229730145,30172.8415,6.0,955.7332,1,2,3,4,5,6 +3705.5,81.77595,1572.7508,100,1238.7936724305864,1238.7936724305864,515.6271517055505,515.6271517055505,30196.772149999997,6.0,955.74505,1,2,3,4,5,6 +3706.0,81.8363,1573.9226,100,1238.9193091818672,1238.9193091818672,516.0076804380865,516.0076804380865,30220.7028,6.0,955.7569,1,2,3,4,5,6 +3706.5,81.88589999999999,1574.8756,100,1239.1033362520286,1239.1033362520286,516.3204265049264,516.3204265049264,30240.658499999998,6.0,955.7814,1,2,3,4,5,6 +3707.0,81.9355,1575.8286,100,1239.2871405190667,1239.2871405190667,516.6331725717663,516.6331725717663,30260.6142,6.0,955.8059,1,2,3,4,5,6 +3707.5,81.97495,1576.574,100,1239.3852834920913,1239.3852834920913,516.8819191914606,516.8819191914606,30276.2676,6.0,955.8264999999999,1,2,3,4,5,6 +3708.0,82.0144,1577.3194,100,1239.4833320490059,1239.4833320490059,517.1306658111548,517.1306658111548,30291.921,6.0,955.8471,1,2,3,4,5,6 +3708.5,82.05269999999999,1578.04545,100,1239.4398461842204,1239.4398461842204,517.3721612619606,517.3721612619606,30306.528449999998,6.0,955.8477,1,2,3,4,5,6 +3709.0,82.091,1578.7715,100,1239.396400896566,1239.396400896566,517.6136567127663,517.6136567127663,30321.1359,6.0,955.8483,1,2,3,4,5,6 +3709.5,82.1338,1579.60315,100,1239.3505855932635,1239.3505855932635,517.8835263027008,517.8835263027008,30337.52805,6.0,955.83875,1,2,3,4,5,6 +3710.0,82.1766,1580.4348,100,1239.3048180138876,1239.3048180138876,518.1533958926351,518.1533958926351,30353.9202,6.0,955.8292,1,2,3,4,5,6 +3710.5,82.221,1581.29395,100,1239.3349590250666,1239.3349590250666,518.433354065371,518.433354065371,30371.15395,6.0,955.8284,1,2,3,4,5,6 +3711.0,82.2654,1582.1531,100,1239.3650675010394,1239.3650675010394,518.7133122381066,518.7133122381066,30388.3877,6.0,955.8276,1,2,3,4,5,6 +3711.5,82.3072,1582.9555,100,1239.4186465825594,1239.4186465825594,518.9768764637903,518.9768764637903,30404.71985,6.0,955.8340000000001,1,2,3,4,5,6 +3712.0,82.349,1583.7579,100,1239.4721712710539,1239.4721712710539,519.2404406894739,519.2404406894739,30421.052,6.0,955.8404,1,2,3,4,5,6 +3712.5,82.38955,1584.52995,100,1239.4704230694306,1239.4704230694306,519.496123209844,519.496123209844,30436.64995,6.0,955.84305,1,2,3,4,5,6 +3713.0,82.4301,1585.302,100,1239.4686765878,1239.4686765878,519.7518057302141,519.7518057302141,30452.2479,6.0,955.8457,1,2,3,4,5,6 +3713.5,82.4745,1586.14995,100,1239.3911592310349,1239.3911592310349,520.0317639029498,520.0317639029498,30469.022449999997,6.0,955.8378,1,2,3,4,5,6 +3714.0,82.5189,1586.9979,100,1239.313725292024,1239.313725292024,520.3117220756856,520.3117220756856,30485.797,6.0,955.8299,1,2,3,4,5,6 +3714.5,82.57215,1588.01925,100,1239.1902606266156,1239.1902606266156,520.6474827220409,520.6474827220409,30505.769549999997,6.0,955.8133499999999,1,2,3,4,5,6 +3715.0,82.6254,1589.0406,100,1239.066955100974,1239.066955100974,520.9832433683962,520.9832433683962,30525.7421,6.0,955.7968,1,2,3,4,5,6 +3715.5,82.68795,1590.2536,100,1238.9835880076844,1238.9835880076844,521.377643902284,521.377643902284,30549.56615,6.0,955.78025,1,2,3,4,5,6 +3716.0,82.7505,1591.4666,100,1238.900346946544,1238.900346946544,521.7720444361718,521.7720444361718,30573.3902,6.0,955.7637,1,2,3,4,5,6 +3716.5,82.8201,1592.8015500000001,100,1237.132414124108,1237.132414124108,522.2108977880276,522.2108977880276,30560.815000000002,6.0,954.56945,1,2,3,4,5,6 +3717.0,82.8897,1594.1365,100,1235.367450262216,1235.367450262216,522.6497511398837,522.6497511398837,30548.2398,6.0,953.3752,1,2,3,4,5,6 +3717.5,82.93545,1595.1141,100,1163.9916065566654,1163.9916065566654,522.938221554358,522.938221554358,29005.499649999998,6.0,903.2397,1,2,3,4,5,6 +3718.0,82.9812,1596.0917,100,1092.6944660959348,1092.6944660959348,523.2266919688324,523.2266919688324,27462.7595,6.0,853.1042,1,2,3,4,5,6 +3718.5,82.9906,1596.18215,100,1058.6368919733077,1058.6368919733077,523.2859623927899,523.2859623927899,26712.2298,6.0,829.2819,1,2,3,4,5,6 +3719.0,83.0,1596.2726,100,1024.5870320963857,1024.5870320963857,523.3452328167474,523.3452328167474,25961.7001,6.0,805.4596,1,2,3,4,5,6 +3719.5,83.0,1596.2726,100,1011.4592118072289,1011.4592118072289,523.3452328167474,523.3452328167474,25661.743499999997,6.0,796.3143,1,2,3,4,5,6 +3720.0,83.0,1596.2726,100,998.3313915180723,998.3313915180723,523.3452328167474,523.3452328167474,25361.7869,6.0,787.169,1,2,3,4,5,6 +3720.5,83.0,1596.2726,100,1002.694552481928,1002.694552481928,523.3452328167474,523.3452328167474,25461.47705,6.0,790.20845,1,2,3,4,5,6 +3721.0,83.0,1596.2726,100,1007.0577134457832,1007.0577134457832,523.3452328167474,523.3452328167474,25561.1672,6.0,793.2479,1,2,3,4,5,6 +3721.5,83.0,1596.2726,100,1032.4991407228915,1032.4991407228915,523.3452328167474,523.3452328167474,26129.56945,6.0,810.9718,1,2,3,4,5,6 +3722.0,83.0,1596.2726,100,1057.940568,1057.940568,523.3452328167474,523.3452328167474,26697.9717,6.0,828.6957,1,2,3,4,5,6 +3722.5,83.0,1596.2726,100,1082.717023987952,1082.717023987952,523.3452328167474,523.3452328167474,27210.00445,6.0,845.9569,1,2,3,4,5,6 +3723.0,83.0,1596.2726,100,1107.4934799759037,1107.4934799759037,523.3452328167474,523.3452328167474,27722.0372,6.0,863.2181,1,2,3,4,5,6 +3723.5,83.0,1596.2726,100,1128.2472476024097,1128.2472476024097,523.3452328167474,523.3452328167474,28202.61265,6.0,877.6765,1,2,3,4,5,6 +3724.0,83.0,1596.2726,100,1149.0010152289158,1149.0010152289158,523.3452328167474,523.3452328167474,28683.1881,6.0,892.1349,1,2,3,4,5,6 +3724.5,83.0,1596.2726,100,1153.7982103012048,1153.7982103012048,523.3452328167474,523.3452328167474,28795.7229,6.0,895.47705,1,2,3,4,5,6 +3725.0,83.0,1596.2726,100,1158.595405373494,1158.595405373494,523.3452328167474,523.3452328167474,28908.2577,6.0,898.8192,1,2,3,4,5,6 +3725.5,83.0,1596.2726,100,1144.2129481084337,1144.2129481084337,523.3452328167474,523.3452328167474,28570.87315,6.0,888.7993,1,2,3,4,5,6 +3726.0,83.0,1596.2726,100,1129.8304908433736,1129.8304908433736,523.3452328167474,523.3452328167474,28233.4886,6.0,878.7794,1,2,3,4,5,6 +3726.5,83.0,1596.2726,100,1113.0021988915664,1113.0021988915664,523.3452328167474,523.3452328167474,27860.4963,6.0,867.05555,1,2,3,4,5,6 +3727.0,83.0,1596.2726,100,1096.173906939759,1096.173906939759,523.3452328167474,523.3452328167474,27487.504,6.0,855.3317,1,2,3,4,5,6 +3727.5,83.0,1596.2726,100,1077.041263554217,1077.041263554217,523.3452328167474,523.3452328167474,27099.58345,6.0,842.0025499999999,1,2,3,4,5,6 +3728.0,83.0,1596.2726,100,1057.9086201686748,1057.9086201686748,523.3452328167474,523.3452328167474,26711.6629,6.0,828.6734,1,2,3,4,5,6 +3728.5,83.0,1596.2726,100,1047.5483948674698,1047.5483948674698,523.3452328167474,523.3452328167474,26480.6497,6.0,821.45595,1,2,3,4,5,6 +3729.0,83.0,1596.2726,100,1037.1881695662653,1037.1881695662653,523.3452328167474,523.3452328167474,26249.6365,6.0,814.2385,1,2,3,4,5,6 +3729.5,83.0,1596.2726,100,1035.8198895903615,1035.8198895903615,523.3452328167474,523.3452328167474,26218.372,6.0,813.28525,1,2,3,4,5,6 +3730.0,83.0,1596.2726,100,1034.4516096144578,1034.4516096144578,523.3452328167474,523.3452328167474,26187.1075,6.0,812.332,1,2,3,4,5,6 +3730.5,83.0,1596.2726,100,1036.6240621445784,1036.6240621445784,523.3452328167474,523.3452328167474,26236.7464,6.0,813.84545,1,2,3,4,5,6 +3731.0,83.0,1596.2726,100,1038.7965146746988,1038.7965146746988,523.3452328167474,523.3452328167474,26286.3853,6.0,815.3589,1,2,3,4,5,6 +3731.5,83.0,1596.2726,100,1050.693887060241,1050.693887060241,523.3452328167474,523.3452328167474,26550.4779,6.0,823.6475,1,2,3,4,5,6 +3732.0,83.0,1596.2726,100,1062.5912594457834,1062.5912594457834,523.3452328167474,523.3452328167474,26814.5705,6.0,831.9361,1,2,3,4,5,6 +3732.5,83.0,1596.2726,100,1081.349656807229,1081.349656807229,523.3452328167474,523.3452328167474,27190.672400000003,6.0,845.0043000000001,1,2,3,4,5,6 +3733.0,83.0,1596.2726,100,1100.1080541686747,1100.1080541686747,523.3452328167474,523.3452328167474,27566.7743,6.0,858.0725,1,2,3,4,5,6 +3733.5,83.0,1596.2726,100,1116.1627522048195,1116.1627522048195,523.3452328167474,523.3452328167474,27928.12325,6.0,869.25725,1,2,3,4,5,6 +3734.0,83.0,1596.2726,100,1132.217450240964,1132.217450240964,523.3452328167474,523.3452328167474,28289.4722,6.0,880.442,1,2,3,4,5,6 +3734.5,83.0,1596.2726,100,1141.019534168675,1141.019534168675,523.3452328167474,523.3452328167474,28495.95555,6.0,886.5743,1,2,3,4,5,6 +3735.0,83.0,1596.2726,100,1149.8216180963857,1149.8216180963857,523.3452328167474,523.3452328167474,28702.4389,6.0,892.7066,1,2,3,4,5,6 +3735.5,83.0,1596.2726,100,1151.3720007108434,1151.3720007108434,523.3452328167474,523.3452328167474,28738.8043,6.0,893.7865999999999,1,2,3,4,5,6 +3736.0,83.0,1596.2726,100,1152.922383325301,1152.922383325301,523.3452328167474,523.3452328167474,28775.1697,6.0,894.8666,1,2,3,4,5,6 +3736.5,83.0,1596.2726,100,1149.8047313855423,1149.8047313855423,523.3452328167474,523.3452328167474,28702.0419,6.0,892.6948,1,2,3,4,5,6 +3737.0,83.0,1596.2726,100,1146.6870794457832,1146.6870794457832,523.3452328167474,523.3452328167474,28628.9141,6.0,890.523,1,2,3,4,5,6 +3737.5,83.0,1596.2726,100,1139.7370569397592,1139.7370569397592,523.3452328167474,523.3452328167474,28465.883,6.0,885.6812,1,2,3,4,5,6 +3738.0,83.0,1596.2726,100,1132.787034433735,1132.787034433735,523.3452328167474,523.3452328167474,28302.8519,6.0,880.8394,1,2,3,4,5,6 +3738.5,83.0,1596.2726,100,1114.178335481928,1114.178335481928,523.3452328167474,523.3452328167474,27893.01055,6.0,867.8751,1,2,3,4,5,6 +3739.0,83.0,1596.2726,100,1095.5696365301205,1095.5696365301205,523.3452328167474,523.3452328167474,27483.1692,6.0,854.9108,1,2,3,4,5,6 +3739.5,83.0,1596.2726,100,1061.6364756867472,1061.6364756867472,523.3452328167474,523.3452328167474,26757.800499999998,6.0,831.2710500000001,1,2,3,4,5,6 +3740.0,83.0,1596.2726,100,1027.7033148433736,1027.7033148433736,523.3452328167474,523.3452328167474,26032.4318,6.0,807.6313,1,2,3,4,5,6 +3740.5,83.0,1596.2726,100,992.0623142168675,992.0623142168675,523.3452328167474,523.3452328167474,25224.767549999997,6.0,782.80745,1,2,3,4,5,6 +3741.0,83.0,1596.2726,100,956.4213135903615,956.4213135903615,523.3452328167474,523.3452328167474,24417.1033,6.0,757.9836,1,2,3,4,5,6 +3741.5,83.0,1596.2726,100,924.9385514096385,924.9385514096385,523.3452328167474,523.3452328167474,23722.54045,6.0,736.0598,1,2,3,4,5,6 +3742.0,83.0,1596.2726,100,893.4557892289157,893.4557892289157,523.3452328167474,523.3452328167474,23027.9776,6.0,714.136,1,2,3,4,5,6 +3742.5,83.0,1596.2726,100,869.6811259518074,869.6811259518074,523.3452328167474,523.3452328167474,22537.41265,6.0,697.58015,1,2,3,4,5,6 +3743.0,83.0,1596.2726,100,845.9064626746989,845.9064626746989,523.3452328167474,523.3452328167474,22046.8477,6.0,681.0243,1,2,3,4,5,6 +3743.5,83.0,1596.2726,100,840.4529678674699,840.4529678674699,523.3452328167474,523.3452328167474,21943.964999999997,6.0,677.22645,1,2,3,4,5,6 +3744.0,83.0,1596.2726,100,834.999473060241,834.999473060241,523.3452328167474,523.3452328167474,21841.0823,6.0,673.4286,1,2,3,4,5,6 +3744.5,83.0,1596.2726,100,840.1225360120483,840.1225360120483,523.3452328167474,523.3452328167474,21937.7323,6.0,676.99635,1,2,3,4,5,6 +3745.0,83.0,1596.2726,100,845.2455989638554,845.2455989638554,523.3452328167474,523.3452328167474,22034.3823,6.0,680.5641,1,2,3,4,5,6 +3745.5,83.0,1596.2726,100,849.7009522409639,849.7009522409639,523.3452328167474,523.3452328167474,22118.4323,6.0,683.6667500000001,1,2,3,4,5,6 +3746.0,83.0,1596.2726,100,854.1563055180724,854.1563055180724,523.3452328167474,523.3452328167474,22202.4823,6.0,686.7694,1,2,3,4,5,6 +3746.5,83.0,1596.2726,100,876.3609610843374,876.3609610843374,523.3452328167474,523.3452328167474,22674.966350000002,6.0,702.2320500000001,1,2,3,4,5,6 +3747.0,83.0,1596.2726,100,898.5656166506025,898.5656166506025,523.3452328167474,523.3452328167474,23147.4504,6.0,717.6947,1,2,3,4,5,6 +3747.5,83.0,1596.2726,100,935.6383365180724,935.6383365180724,523.3452328167474,523.3452328167474,23964.9277,6.0,743.51145,1,2,3,4,5,6 +3748.0,83.0,1596.2726,100,972.7110563855422,972.7110563855422,523.3452328167474,523.3452328167474,24782.405,6.0,769.3282,1,2,3,4,5,6 +3748.5,83.0,1596.2726,100,1008.3776152771085,1008.3776152771085,523.3452328167474,523.3452328167474,25587.0083,6.0,794.1714,1,2,3,4,5,6 +3749.0,83.0,1596.2726,100,1044.0441741686748,1044.0441741686748,523.3452328167474,523.3452328167474,26391.6116,6.0,819.0146,1,2,3,4,5,6 +3749.5,83.0,1596.2726,100,1079.7892334457833,1079.7892334457833,523.3452328167474,523.3452328167474,27158.129800000002,6.0,843.91705,1,2,3,4,5,6 +3750.0,83.0,1596.2726,100,1115.5342927228917,1115.5342927228917,523.3452328167474,523.3452328167474,27924.648,6.0,868.8195,1,2,3,4,5,6 +3750.5,83.0,1596.2726,100,1146.1179516506024,1146.1179516506024,523.3452328167474,523.3452328167474,28622.84675,6.0,890.1261999999999,1,2,3,4,5,6 +3751.0,83.0,1596.2726,100,1176.7016105783134,1176.7016105783134,523.3452328167474,523.3452328167474,29321.0455,6.0,911.4329,1,2,3,4,5,6 +3751.5,83.0,1596.2726,100,1182.6165233493975,1182.6165233493975,523.3452328167474,523.3452328167474,29449.367850000002,6.0,915.55375,1,2,3,4,5,6 +3752.0,83.0,1596.2726,100,1188.5314361204819,1188.5314361204819,523.3452328167474,523.3452328167474,29577.6902,6.0,919.6746,1,2,3,4,5,6 +3752.5,83.0,1596.2726,100,1168.0387279156628,1168.0387279156628,523.3452328167474,523.3452328167474,29113.377050000003,6.0,905.39805,1,2,3,4,5,6 +3753.0,83.0,1596.2726,100,1147.5460197108434,1147.5460197108434,523.3452328167474,523.3452328167474,28649.0639,6.0,891.1215,1,2,3,4,5,6 +3753.5,83.0,1596.2726,100,1127.0209072771086,1127.0209072771086,523.3452328167474,523.3452328167474,28173.7439,6.0,876.8223,1,2,3,4,5,6 +3754.0,83.0,1596.2726,100,1106.4957948433737,1106.4957948433737,523.3452328167474,523.3452328167474,27698.4239,6.0,862.5231,1,2,3,4,5,6 +3754.5,83.0,1596.2726,100,1090.6957666626508,1090.6957666626508,523.3452328167474,523.3452328167474,27380.357450000003,6.0,851.5155,1,2,3,4,5,6 +3755.0,83.0,1596.2726,100,1074.895738481928,1074.895738481928,523.3452328167474,523.3452328167474,27062.291,6.0,840.5079,1,2,3,4,5,6 +3755.5,83.0,1596.2726,100,1049.6208963253014,1049.6208963253014,523.3452328167474,523.3452328167474,26509.2498,6.0,822.90005,1,2,3,4,5,6 +3756.0,83.0,1596.2726,100,1024.3460541686748,1024.3460541686748,523.3452328167474,523.3452328167474,25956.2086,6.0,805.2922,1,2,3,4,5,6 +3756.5,83.0,1596.2726,100,983.2689018433737,983.2689018433737,523.3452328167474,523.3452328167474,25029.6731,6.0,776.6834,1,2,3,4,5,6 +3757.0,83.0,1596.2726,100,942.1917495180724,942.1917495180724,523.3452328167474,523.3452328167474,24103.1376,6.0,748.0746,1,2,3,4,5,6 +3757.5,83.0,1596.2726,100,893.6511273975905,893.6511273975905,523.3452328167474,523.3452328167474,23075.0696,6.0,714.27235,1,2,3,4,5,6 +3758.0,83.0,1596.2726,100,845.1105052771086,845.1105052771086,523.3452328167474,523.3452328167474,22047.0016,6.0,680.4701,1,2,3,4,5,6 +3758.5,83.0,1596.2726,100,809.9642396385543,809.9642396385543,523.3452328167474,523.3452328167474,21329.759599999998,6.0,655.9953,1,2,3,4,5,6 +3759.0,83.0,1596.2726,100,774.817974,774.817974,523.3452328167474,523.3452328167474,20612.5176,6.0,631.5205,1,2,3,4,5,6 +3759.5,83.0,1596.2726,100,761.1917675421688,761.1917675421688,523.3452328167474,523.3452328167474,20308.4928,6.0,622.03015,1,2,3,4,5,6 +3760.0,83.0,1596.2726,100,747.5655610843374,747.5655610843374,523.3452328167474,523.3452328167474,20004.468,6.0,612.5398,1,2,3,4,5,6 +3760.5,83.0,1596.2726,100,736.4458901927711,736.4458901927711,523.3452328167474,523.3452328167474,19752.3061,6.0,604.79045,1,2,3,4,5,6 +3761.0,83.0,1596.2726,100,725.3262193012049,725.3262193012049,523.3452328167474,523.3452328167474,19500.1442,6.0,597.0411,1,2,3,4,5,6 +3761.5,83.0,1596.2726,100,699.953708060241,699.953708060241,523.3452328167474,523.3452328167474,18946.7981,6.0,579.35725,1,2,3,4,5,6 +3762.0,83.0,1596.2726,100,674.5811968192771,674.5811968192771,523.3452328167474,523.3452328167474,18393.452,6.0,561.6734,1,2,3,4,5,6 +3762.5,83.0,1596.2726,100,646.1558420963856,646.1558420963856,523.3452328167474,523.3452328167474,17773.6816,6.0,541.8619,1,2,3,4,5,6 +3763.0,83.0,1596.2726,100,617.7304873734939,617.7304873734939,523.3452328167474,523.3452328167474,17153.9112,6.0,522.0504,1,2,3,4,5,6 +3763.5,83.0,1596.2726,100,599.2500361445783,599.2500361445783,523.3452328167474,523.3452328167474,16732.9358,6.0,509.17004999999995,1,2,3,4,5,6 +3764.0,83.0,1596.2726,100,580.7695849156627,580.7695849156627,523.3452328167474,523.3452328167474,16311.9604,6.0,496.2897,1,2,3,4,5,6 +3764.5,83.0,1596.2726,100,571.5567431566266,571.5567431566266,523.3452328167474,523.3452328167474,16102.09995,6.0,489.86875,1,2,3,4,5,6 +3765.0,83.0,1596.2726,100,562.3439013975905,562.3439013975905,523.3452328167474,523.3452328167474,15892.2395,6.0,483.4478,1,2,3,4,5,6 +3765.5,83.0,1596.2726,100,556.5307652891566,556.5307652891566,523.3452328167474,523.3452328167474,15760.60355,6.0,479.3962,1,2,3,4,5,6 +3766.0,83.0,1596.2726,100,550.717629180723,550.717629180723,523.3452328167474,523.3452328167474,15628.9676,6.0,475.3446,1,2,3,4,5,6 +3766.5,83.0,1596.2726,100,535.4844468072289,535.4844468072289,523.3452328167474,523.3452328167474,15287.201949999999,6.0,464.72810000000004,1,2,3,4,5,6 +3767.0,83.0,1596.2726,100,520.251264433735,520.251264433735,523.3452328167474,523.3452328167474,14945.4363,6.0,454.1116,1,2,3,4,5,6 +3767.5,83.0,1596.2726,100,494.2160638915663,494.2160638915663,523.3452328167474,523.3452328167474,14367.68105,6.0,435.97505,1,2,3,4,5,6 +3768.0,83.0,1596.2726,100,468.1808633493976,468.1808633493976,523.3452328167474,523.3452328167474,13789.9258,6.0,417.8385,1,2,3,4,5,6 +3768.5,83.0,1596.2726,100,444.3893133614458,444.3893133614458,523.3452328167474,523.3452328167474,13299.74285,6.0,401.27094999999997,1,2,3,4,5,6 +3769.0,83.0,1596.2726,100,420.597763373494,420.597763373494,523.3452328167474,523.3452328167474,12809.5599,6.0,384.7034,1,2,3,4,5,6 +3769.5,83.0,1596.2726,100,403.5221039277109,403.5221039277109,523.3452328167474,523.3452328167474,12431.50445,6.0,372.8128,1,2,3,4,5,6 +3770.0,83.0,1596.2726,100,386.4464444819277,386.4464444819277,523.3452328167474,523.3452328167474,12053.449,6.0,360.9222,1,2,3,4,5,6 +3770.5,83.0,1596.2726,100,378.02636533734943,378.02636533734943,523.3452328167474,523.3452328167474,11860.5771,6.0,355.05875,1,2,3,4,5,6 +3771.0,83.0,1596.2726,100,369.60628619277117,369.60628619277117,523.3452328167474,523.3452328167474,11667.7052,6.0,349.1953,1,2,3,4,5,6 +3771.5,83.0,1596.2726,100,373.8580861445783,373.8580861445783,523.3452328167474,523.3452328167474,11765.0979,6.0,352.1561,1,2,3,4,5,6 +3772.0,83.0,1596.2726,100,378.10988609638554,378.10988609638554,523.3452328167474,523.3452328167474,11862.4906,6.0,355.1169,1,2,3,4,5,6 +3772.5,83.0,1596.2726,100,385.79744710843374,385.79744710843374,523.3452328167474,523.3452328167474,12038.58365,6.0,360.47024999999996,1,2,3,4,5,6 +3773.0,83.0,1596.2726,100,393.485008120482,393.485008120482,523.3452328167474,523.3452328167474,12214.6767,6.0,365.8236,1,2,3,4,5,6 +3773.5,83.0,1596.2726,100,387.5851564698795,387.5851564698795,523.3452328167474,523.3452328167474,12079.533800000001,6.0,361.71515,1,2,3,4,5,6 +3774.0,83.0,1596.2726,100,381.6853048192771,381.6853048192771,523.3452328167474,523.3452328167474,11944.3909,6.0,357.6067,1,2,3,4,5,6 +3774.5,83.0,1596.2726,100,356.27171779518073,356.27171779518073,523.3452328167474,523.3452328167474,11372.265650000001,6.0,339.909,1,2,3,4,5,6 +3775.0,83.0,1596.2726,100,330.85813077108435,330.85813077108435,523.3452328167474,523.3452328167474,10800.1404,6.0,322.2113,1,2,3,4,5,6 +3775.5,83.0,1596.2726,100,294.4261931204819,294.4261931204819,523.3452328167474,523.3452328167474,10053.77815,6.0,296.84085,1,2,3,4,5,6 +3776.0,83.0,1596.2726,100,257.99425546987953,257.99425546987953,523.3452328167474,523.3452328167474,9307.4159,6.0,271.4704,1,2,3,4,5,6 +3776.5,83.0,1596.2726,100,224.98301775903616,224.98301775903616,523.3452328167474,523.3452328167474,8598.63355,6.0,248.55475,1,2,3,4,5,6 +3777.0,83.0,1596.2726,100,191.97178004819276,191.97178004819276,523.3452328167474,523.3452328167474,7889.8512,6.0,225.6391,1,2,3,4,5,6 +3777.5,83.0,1596.2726,100,174.43561543373497,174.43561543373497,523.3452328167474,523.3452328167474,7505.2753,6.0,213.7944,1,2,3,4,5,6 +3778.0,83.0,1596.2726,100,156.89945081927712,156.89945081927712,523.3452328167474,523.3452328167474,7120.6994,6.0,201.9497,1,2,3,4,5,6 +3778.5,83.0,1596.2726,100,161.46114473493978,161.46114473493978,523.3452328167474,523.3452328167474,7219.71575,6.0,204.99935,1,2,3,4,5,6 +3779.0,83.0,1596.2726,100,166.02283865060244,166.02283865060244,523.3452328167474,523.3452328167474,7318.7321,6.0,208.049,1,2,3,4,5,6 +3779.5,83.0,1596.2726,100,192.8503454096386,192.8503454096386,523.3452328167474,523.3452328167474,7908.632,6.0,226.42335,1,2,3,4,5,6 +3780.0,83.0,1596.2726,100,219.67785216867472,219.67785216867472,523.3452328167474,523.3452328167474,8498.5319,6.0,244.7977,1,2,3,4,5,6 +3780.5,83.0,1596.2726,100,257.58577962650605,257.58577962650605,523.3452328167474,523.3452328167474,9280.1206,6.0,271.19085,1,2,3,4,5,6 +3781.0,83.0,1596.2726,100,295.49370708433736,295.49370708433736,523.3452328167474,523.3452328167474,10061.7093,6.0,297.584,1,2,3,4,5,6 +3781.5,83.0,1596.2726,100,314.1046880240964,314.1046880240964,523.3452328167474,523.3452328167474,10442.17215,6.0,310.54435,1,2,3,4,5,6 +3782.0,83.0,1596.2726,100,332.7156689638555,332.7156689638555,523.3452328167474,523.3452328167474,10822.635,6.0,323.5047,1,2,3,4,5,6 +3782.5,83.0,1596.2726,100,363.06702151807235,363.06702151807235,523.3452328167474,523.3452328167474,11514.174200000001,6.0,344.64070000000004,1,2,3,4,5,6 +3783.0,83.0,1596.2726,100,393.41837407228917,393.41837407228917,523.3452328167474,523.3452328167474,12205.7134,6.0,365.7767,1,2,3,4,5,6 +3783.5,83.0,1596.2726,100,413.4802429518072,413.4802429518072,523.3452328167474,523.3452328167474,12639.762,6.0,379.747,1,2,3,4,5,6 +3784.0,83.0,1596.2726,100,433.5421118313253,433.5421118313253,523.3452328167474,523.3452328167474,13073.8106,6.0,393.7173,1,2,3,4,5,6 +3784.5,83.0,1596.2726,100,437.1974001325301,437.1974001325301,523.3452328167474,523.3452328167474,13144.40485,6.0,396.26279999999997,1,2,3,4,5,6 +3785.0,83.0,1596.2726,100,440.85268843373495,440.85268843373495,523.3452328167474,523.3452328167474,13214.9991,6.0,398.8083,1,2,3,4,5,6 +3785.5,83.0,1596.2726,100,438.52506072289157,438.52506072289157,523.3452328167474,523.3452328167474,13170.0472,6.0,397.1874,1,2,3,4,5,6 +3786.0,83.0,1596.2726,100,436.19743301204824,436.19743301204824,523.3452328167474,523.3452328167474,13125.0953,6.0,395.5665,1,2,3,4,5,6 +3786.5,83.0,1596.2726,100,441.78602150602404,441.78602150602404,523.3452328167474,523.3452328167474,13236.7561,6.0,399.4583,1,2,3,4,5,6 +3787.0,83.0,1596.2726,100,447.37461,447.37461,523.3452328167474,523.3452328167474,13348.4169,6.0,403.3501,1,2,3,4,5,6 +3787.5,83.0,1596.2726,100,473.0948962048193,473.0948962048193,523.3452328167474,523.3452328167474,13906.60765,6.0,421.2631,1,2,3,4,5,6 +3788.0,83.0,1596.2726,100,498.81518240963857,498.81518240963857,523.3452328167474,523.3452328167474,14464.7984,6.0,439.1761,1,2,3,4,5,6 +3788.5,83.0,1596.2726,100,531.4124675060241,531.4124675060241,523.3452328167474,523.3452328167474,15198.3938,6.0,461.89255,1,2,3,4,5,6 +3789.0,83.0,1596.2726,100,564.0097526024097,564.0097526024097,523.3452328167474,523.3452328167474,15931.9892,6.0,484.609,1,2,3,4,5,6 +3789.5,83.0,1596.2726,100,586.7885563373493,586.7885563373493,523.3452328167474,523.3452328167474,16449.971299999997,6.0,500.48484999999994,1,2,3,4,5,6 +3790.0,83.0,1596.2726,100,609.5673600722893,609.5673600722893,523.3452328167474,523.3452328167474,16967.9534,6.0,516.3607,1,2,3,4,5,6 +3790.5,83.0,1596.2726,100,632.2585354698796,632.2585354698796,523.3452328167474,523.3452328167474,17473.4937,6.0,532.1759,1,2,3,4,5,6 +3791.0,83.0,1596.2726,100,654.94971086747,654.94971086747,523.3452328167474,523.3452328167474,17979.034,6.0,547.9911,1,2,3,4,5,6 +3791.5,83.0,1596.2726,100,693.8808817228916,693.8808817228916,523.3452328167474,523.3452328167474,18825.3219,6.0,575.1225,1,2,3,4,5,6 +3792.0,83.0,1596.2726,100,732.8120525783132,732.8120525783132,523.3452328167474,523.3452328167474,19671.6098,6.0,602.2539,1,2,3,4,5,6 +3792.5,83.0,1596.2726,100,776.2725131204821,776.2725131204821,523.3452328167474,523.3452328167474,20603.32495,6.0,632.52575,1,2,3,4,5,6 +3793.0,83.0,1596.2726,100,819.7329736626506,819.7329736626506,523.3452328167474,523.3452328167474,21535.0401,6.0,662.7976,1,2,3,4,5,6 +3793.5,83.0,1596.2726,100,843.28172013253,843.28172013253,523.3452328167474,523.3452328167474,21992.02305,6.0,679.1964499999999,1,2,3,4,5,6 +3794.0,83.0,1596.2726,100,866.8304666024096,866.8304666024096,523.3452328167474,523.3452328167474,22449.006,6.0,695.5953,1,2,3,4,5,6 +3794.5,83.0,1596.2726,100,869.3945082650603,869.3945082650603,523.3452328167474,523.3452328167474,22499.3329,6.0,697.3807999999999,1,2,3,4,5,6 +3795.0,83.0,1596.2726,100,871.9585499277109,871.9585499277109,523.3452328167474,523.3452328167474,22549.6598,6.0,699.1663,1,2,3,4,5,6 +3795.5,83.0,1596.2726,100,872.9763165542169,872.9763165542169,523.3452328167474,523.3452328167474,22572.1055,6.0,699.8751,1,2,3,4,5,6 +3796.0,83.0,1596.2726,100,873.9940831807229,873.9940831807229,523.3452328167474,523.3452328167474,22594.5512,6.0,700.5839,1,2,3,4,5,6 +3796.5,83.0,1596.2726,100,887.5363124819278,887.5363124819278,523.3452328167474,523.3452328167474,22893.1878,6.0,710.0143,1,2,3,4,5,6 +3797.0,83.0,1596.2726,100,901.0785417831326,901.0785417831326,523.3452328167474,523.3452328167474,23191.8244,6.0,719.4447,1,2,3,4,5,6 +3797.5,83.0,1596.2726,100,929.0438477349398,929.0438477349398,523.3452328167474,523.3452328167474,23810.7727,6.0,738.91895,1,2,3,4,5,6 +3798.0,83.0,1596.2726,100,957.009153686747,957.009153686747,523.3452328167474,523.3452328167474,24429.721,6.0,758.3932,1,2,3,4,5,6 +3798.5,83.0,1596.2726,100,985.9068799156627,985.9068799156627,523.3452328167474,523.3452328167474,25083.954400000002,6.0,778.5191,1,2,3,4,5,6 +3799.0,83.0,1596.2726,100,1014.8046061445784,1014.8046061445784,523.3452328167474,523.3452328167474,25738.1878,6.0,798.645,1,2,3,4,5,6 +3799.5,83.0,1596.2726,100,1023.246592373494,1023.246592373494,523.3452328167474,523.3452328167474,25931.07805,6.0,804.5260000000001,1,2,3,4,5,6 +3800.0,83.0,1596.2726,100,1031.6885786024097,1031.6885786024097,523.3452328167474,523.3452328167474,26123.9683,6.0,810.407,1,2,3,4,5,6 +3800.5,83.0,1596.2726,100,1019.6889731566266,1019.6889731566266,523.3452328167474,523.3452328167474,25849.7913,6.0,802.04765,1,2,3,4,5,6 +3801.0,83.0,1596.2726,100,1007.6893677108434,1007.6893677108434,523.3452328167474,523.3452328167474,25575.6143,6.0,793.6883,1,2,3,4,5,6 +3801.5,83.0,1596.2726,100,998.9589382048193,998.9589382048193,523.3452328167474,523.3452328167474,25376.162949999998,6.0,787.6073,1,2,3,4,5,6 +3802.0,83.0,1596.2726,100,990.2285086987952,990.2285086987952,523.3452328167474,523.3452328167474,25176.7116,6.0,781.5263,1,2,3,4,5,6 +3802.5,83.0,1596.2726,100,999.605197192771,999.605197192771,523.3452328167474,523.3452328167474,25390.928549999997,6.0,788.0575,1,2,3,4,5,6 +3803.0,83.0,1596.2726,100,1008.981885686747,1008.981885686747,523.3452328167474,523.3452328167474,25605.1455,6.0,794.5887,1,2,3,4,5,6 +3803.5,83.0,1596.2726,100,1031.6328980963856,1031.6328980963856,523.3452328167474,523.3452328167474,26116.9041,6.0,810.3685,1,2,3,4,5,6 +3804.0,83.0,1596.2726,100,1054.2839105060243,1054.2839105060243,523.3452328167474,523.3452328167474,26628.6627,6.0,826.1483,1,2,3,4,5,6 +3804.5,83.0,1596.2726,100,1070.2254219397591,1070.2254219397591,523.3452328167474,523.3452328167474,26956.84925,6.0,837.2545,1,2,3,4,5,6 +3805.0,83.0,1596.2726,100,1086.166933373494,1086.166933373494,523.3452328167474,523.3452328167474,27285.0358,6.0,848.3607,1,2,3,4,5,6 +3805.5,83.0,1596.2726,100,1079.7239685903614,1079.7239685903614,523.3452328167474,523.3452328167474,27158.7252,6.0,843.87185,1,2,3,4,5,6 +3806.0,83.0,1596.2726,100,1073.281003807229,1073.281003807229,523.3452328167474,523.3452328167474,27032.4146,6.0,839.383,1,2,3,4,5,6 +3806.5,83.0,1596.2726,100,1059.7364925180723,1059.7364925180723,523.3452328167474,523.3452328167474,26743.89575,6.0,829.9471000000001,1,2,3,4,5,6 +3807.0,83.0,1596.2726,100,1046.1919812289157,1046.1919812289157,523.3452328167474,523.3452328167474,26455.3769,6.0,820.5112,1,2,3,4,5,6 +3807.5,83.0,1596.2726,100,1044.4521936144577,1044.4521936144577,523.3452328167474,523.3452328167474,26415.615550000002,6.0,819.29895,1,2,3,4,5,6 +3808.0,83.0,1596.2726,100,1042.712406,1042.712406,523.3452328167474,523.3452328167474,26375.8542,6.0,818.0867,1,2,3,4,5,6 +3808.5,83.0,1596.2726,100,1042.9588606987954,1042.9588606987954,523.3452328167474,523.3452328167474,26381.48635,6.0,818.2583999999999,1,2,3,4,5,6 +3809.0,83.0,1596.2726,100,1043.2053153975905,1043.2053153975905,523.3452328167474,523.3452328167474,26387.1185,6.0,818.4301,1,2,3,4,5,6 +3809.5,83.0,1596.2726,100,1032.5064430843374,1032.5064430843374,523.3452328167474,523.3452328167474,26142.655850000003,6.0,810.97675,1,2,3,4,5,6 +3810.0,83.0,1596.2726,100,1021.8075707710843,1021.8075707710843,523.3452328167474,523.3452328167474,25898.1932,6.0,803.5234,1,2,3,4,5,6 +3810.5,83.0,1596.2726,100,1012.2839222530121,1012.2839222530121,523.3452328167474,523.3452328167474,25680.579400000002,6.0,796.8886,1,2,3,4,5,6 +3811.0,83.0,1596.2726,100,1002.7602737349398,1002.7602737349398,523.3452328167474,523.3452328167474,25462.9656,6.0,790.2538,1,2,3,4,5,6 +3811.5,83.0,1596.2726,100,1008.1941434457832,1008.1941434457832,523.3452328167474,523.3452328167474,25587.1289,6.0,794.0394,1,2,3,4,5,6 +3812.0,83.0,1596.2726,100,1013.6280131566265,1013.6280131566265,523.3452328167474,523.3452328167474,25711.2922,6.0,797.825,1,2,3,4,5,6 +3812.5,83.0,1596.2726,100,1019.362648879518,1019.362648879518,523.3452328167474,523.3452328167474,25842.3265,6.0,801.8201,1,2,3,4,5,6 +3813.0,83.0,1596.2726,100,1025.0972846024097,1025.0972846024097,523.3452328167474,523.3452328167474,25973.3608,6.0,805.8152,1,2,3,4,5,6 +3813.5,83.0,1596.2726,100,1014.1770594578314,1014.1770594578314,523.3452328167474,523.3452328167474,25723.85,6.0,798.2079,1,2,3,4,5,6 +3814.0,83.0,1596.2726,100,1003.256834313253,1003.256834313253,523.3452328167474,523.3452328167474,25474.3392,6.0,790.6006,1,2,3,4,5,6 +3814.5,83.0,1596.2726,100,993.1718167590362,993.1718167590362,523.3452328167474,523.3452328167474,25243.966249999998,6.0,783.5768,1,2,3,4,5,6 +3815.0,83.0,1596.2726,100,983.0867992048193,983.0867992048193,523.3452328167474,523.3452328167474,25013.5933,6.0,776.553,1,2,3,4,5,6 +3815.5,83.0,1596.2726,100,990.7346536265061,990.7346536265061,523.3452328167474,523.3452328167474,25188.28205,6.0,781.87905,1,2,3,4,5,6 +3816.0,83.0,1596.2726,100,998.3825080481929,998.3825080481929,523.3452328167474,523.3452328167474,25362.9708,6.0,787.2051,1,2,3,4,5,6 +3816.5,83.0,1596.2726,100,1028.2916113373494,1028.2916113373494,523.3452328167474,523.3452328167474,26032.4993,6.0,808.0413000000001,1,2,3,4,5,6 +3817.0,83.0,1596.2726,100,1058.2007146265062,1058.2007146265062,523.3452328167474,523.3452328167474,26702.0278,6.0,828.8775,1,2,3,4,5,6 +3817.5,83.0,1596.2726,100,1065.433247240964,1065.433247240964,523.3452328167474,523.3452328167474,26860.57595,6.0,833.916,1,2,3,4,5,6 +3818.0,83.0,1596.2726,100,1072.6657798554218,1072.6657798554218,523.3452328167474,523.3452328167474,27019.1241,6.0,838.9545,1,2,3,4,5,6 +3818.5,83.0,1596.2726,100,1049.7267805662652,1049.7267805662652,523.3452328167474,523.3452328167474,26515.559500000003,6.0,822.9738,1,2,3,4,5,6 +3819.0,83.0,1596.2726,100,1026.7877812771085,1026.7877812771085,523.3452328167474,523.3452328167474,26011.9949,6.0,806.9931,1,2,3,4,5,6 +3819.5,83.0,1596.2726,100,1000.0903478313254,1000.0903478313254,523.3452328167474,523.3452328167474,25403.3538,6.0,788.39765,1,2,3,4,5,6 +3820.0,83.0,1596.2726,100,973.3929143855422,973.3929143855422,523.3452328167474,523.3452328167474,24794.7127,6.0,769.8022,1,2,3,4,5,6 +3820.5,83.0,1596.2726,100,956.3382492289156,956.3382492289156,523.3452328167474,523.3452328167474,24414.51555,6.0,757.9257,1,2,3,4,5,6 +3821.0,83.0,1596.2726,100,939.2835840722892,939.2835840722892,523.3452328167474,523.3452328167474,24034.3184,6.0,746.0492,1,2,3,4,5,6 +3821.5,83.0,1596.2726,100,926.25343286747,926.25343286747,523.3452328167474,523.3452328167474,23746.98175,6.0,736.9756,1,2,3,4,5,6 +3822.0,83.0,1596.2726,100,913.2232816626506,913.2232816626506,523.3452328167474,523.3452328167474,23459.6451,6.0,727.902,1,2,3,4,5,6 +3822.5,83.0,1596.2726,100,900.009658626506,900.009658626506,523.3452328167474,523.3452328167474,23168.245600000002,6.0,718.70015,1,2,3,4,5,6 +3823.0,83.0,1596.2726,100,886.7960355903616,886.7960355903616,523.3452328167474,523.3452328167474,22876.8461,6.0,709.4983,1,2,3,4,5,6 +3823.5,83.0,1596.2726,100,872.4313778313253,872.4313778313253,523.3452328167474,523.3452328167474,22578.56345,6.0,699.4952499999999,1,2,3,4,5,6 +3824.0,83.0,1596.2726,100,858.0667200722893,858.0667200722893,523.3452328167474,523.3452328167474,22280.2808,6.0,689.4922,1,2,3,4,5,6 +3824.5,83.0,1596.2726,100,836.1792608313253,836.1792608313253,523.3452328167474,523.3452328167474,21857.8982,6.0,674.25025,1,2,3,4,5,6 +3825.0,83.0,1596.2726,100,814.2918015903615,814.2918015903615,523.3452328167474,523.3452328167474,21435.5156,6.0,659.0083,1,2,3,4,5,6 +3825.5,83.0,1596.2726,100,786.8623064096386,786.8623064096386,523.3452328167474,523.3452328167474,20854.452250000002,6.0,639.90625,1,2,3,4,5,6 +3826.0,83.0,1596.2726,100,759.4328112289157,759.4328112289157,523.3452328167474,523.3452328167474,20273.3889,6.0,620.8042,1,2,3,4,5,6 +3826.5,83.0,1596.2726,100,739.0770223012048,739.0770223012048,523.3452328167474,523.3452328167474,19811.8644,6.0,606.6208,1,2,3,4,5,6 +3827.0,83.0,1596.2726,100,718.721233373494,718.721233373494,523.3452328167474,523.3452328167474,19350.3399,6.0,592.4374,1,2,3,4,5,6 +3827.5,83.0,1596.2726,100,710.8912763132531,710.8912763132531,523.3452328167474,523.3452328167474,19172.76795,6.0,586.9802999999999,1,2,3,4,5,6 +3828.0,83.0,1596.2726,100,703.0613192530121,703.0613192530121,523.3452328167474,523.3452328167474,18995.196,6.0,581.5232,1,2,3,4,5,6 +3828.5,83.0,1596.2726,100,707.826566493976,707.826566493976,523.3452328167474,523.3452328167474,19103.2587,6.0,584.84415,1,2,3,4,5,6 +3829.0,83.0,1596.2726,100,712.5918137349398,712.5918137349398,523.3452328167474,523.3452328167474,19211.3214,6.0,588.1651,1,2,3,4,5,6 +3829.5,83.0,1596.2726,100,726.2965205783132,726.2965205783132,523.3452328167474,523.3452328167474,19522.13065,6.0,597.7168,1,2,3,4,5,6 +3830.0,83.0,1596.2726,100,740.0012274216868,740.0012274216868,523.3452328167474,523.3452328167474,19832.9399,6.0,607.2685,1,2,3,4,5,6 +3830.5,83.0,1596.2726,100,747.0502882048194,747.0502882048194,523.3452328167474,523.3452328167474,19992.76045,6.0,612.1800499999999,1,2,3,4,5,6 +3831.0,83.0,1596.2726,100,754.0993489879519,754.0993489879519,523.3452328167474,523.3452328167474,20152.581,6.0,617.0916,1,2,3,4,5,6 +3831.5,83.0,1596.2726,100,738.0172670963857,738.0172670963857,523.3452328167474,523.3452328167474,19788.2225,6.0,605.8845,1,2,3,4,5,6 +3832.0,83.0,1596.2726,100,721.9351852048193,721.9351852048193,523.3452328167474,523.3452328167474,19423.864,6.0,594.6774,1,2,3,4,5,6 +3832.5,83.0,1596.2726,100,691.0918360481928,691.0918360481928,523.3452328167474,523.3452328167474,18756.3719,6.0,573.1804999999999,1,2,3,4,5,6 +3833.0,83.0,1596.2726,100,660.2484868915664,660.2484868915664,523.3452328167474,523.3452328167474,18088.8798,6.0,551.6836,1,2,3,4,5,6 +3833.5,83.0,1596.2726,100,643.1125829638554,643.1125829638554,523.3452328167474,523.3452328167474,17715.3112,6.0,539.74045,1,2,3,4,5,6 +3834.0,83.0,1596.2726,100,625.9766790361447,625.9766790361447,523.3452328167474,523.3452328167474,17341.7426,6.0,527.7973,1,2,3,4,5,6 +3834.5,83.0,1596.2726,100,643.3316538072288,643.3316538072288,523.3452328167474,523.3452328167474,17720.36105,6.0,539.8932,1,2,3,4,5,6 +3835.0,83.0,1596.2726,100,660.6866285783134,660.6866285783134,523.3452328167474,523.3452328167474,18098.9795,6.0,551.9891,1,2,3,4,5,6 +3835.5,83.0,1596.2726,100,702.9654757590362,702.9654757590362,523.3452328167474,523.3452328167474,19025.33545,6.0,581.4535000000001,1,2,3,4,5,6 +3836.0,83.0,1596.2726,100,745.2443229397591,745.2443229397591,523.3452328167474,523.3452328167474,19951.6914,6.0,610.9179,1,2,3,4,5,6 +3836.5,83.0,1596.2726,100,776.5075578795181,776.5075578795181,523.3452328167474,523.3452328167474,20631.2038,6.0,632.69265,1,2,3,4,5,6 +3837.0,83.0,1596.2726,100,807.7707928192773,807.7707928192773,523.3452328167474,523.3452328167474,21310.7162,6.0,654.4674,1,2,3,4,5,6 +3837.5,83.0,1596.2726,100,812.7532853132531,812.7532853132531,523.3452328167474,523.3452328167474,21409.070099999997,6.0,657.937,1,2,3,4,5,6 +3838.0,83.0,1596.2726,100,817.7357778072289,817.7357778072289,523.3452328167474,523.3452328167474,21507.424,6.0,661.4066,1,2,3,4,5,6 +3838.5,83.0,1596.2726,100,809.6630172289157,809.6630172289157,523.3452328167474,523.3452328167474,21348.682999999997,6.0,655.78525,1,2,3,4,5,6 +3839.0,83.0,1596.2726,100,801.5902566506023,801.5902566506023,523.3452328167474,523.3452328167474,21189.942,6.0,650.1639,1,2,3,4,5,6 +3839.5,83.0,1596.2726,100,782.79808586747,782.79808586747,523.3452328167474,523.3452328167474,20783.475749999998,6.0,637.0762500000001,1,2,3,4,5,6 +3840.0,83.0,1596.2726,100,764.0059150843374,764.0059150843374,523.3452328167474,523.3452328167474,20377.0095,6.0,623.9886,1,2,3,4,5,6 +3840.5,83.0,1596.2726,100,733.699289493976,733.699289493976,523.3452328167474,523.3452328167474,19696.492700000003,6.0,602.87125,1,2,3,4,5,6 +3841.0,83.0,1596.2726,100,703.3926639036144,703.3926639036144,523.3452328167474,523.3452328167474,19015.9759,6.0,581.7539,1,2,3,4,5,6 +3841.5,83.0,1596.2726,100,673.4246853253013,673.4246853253013,523.3452328167474,523.3452328167474,18372.256,6.0,560.86725,1,2,3,4,5,6 +3842.0,83.0,1596.2726,100,643.456706746988,643.456706746988,523.3452328167474,523.3452328167474,17728.5361,6.0,539.9806,1,2,3,4,5,6 +3842.5,83.0,1596.2726,100,628.5242903855423,628.5242903855423,523.3452328167474,523.3452328167474,17394.083700000003,6.0,529.5731499999999,1,2,3,4,5,6 +3843.0,83.0,1596.2726,100,613.5918740240963,613.5918740240963,523.3452328167474,523.3452328167474,17059.6313,6.0,519.1657,1,2,3,4,5,6 +3843.5,83.0,1596.2726,100,598.9944534939759,598.9944534939759,523.3452328167474,523.3452328167474,16727.1109,6.0,508.9918,1,2,3,4,5,6 +3844.0,83.0,1596.2726,100,584.3970329638555,584.3970329638555,523.3452328167474,523.3452328167474,16394.5905,6.0,498.8179,1,2,3,4,5,6 +3844.5,83.0,1596.2726,100,564.9983097831325,564.9983097831325,523.3452328167474,523.3452328167474,15954.83325,6.0,485.2978,1,2,3,4,5,6 +3845.0,83.0,1596.2726,100,545.5995866024097,545.5995866024097,523.3452328167474,523.3452328167474,15515.076,6.0,471.7777,1,2,3,4,5,6 +3845.5,83.0,1596.2726,100,515.9602142891567,515.9602142891567,523.3452328167474,523.3452328167474,14852.8864,6.0,451.1258,1,2,3,4,5,6 +3846.0,83.0,1596.2726,100,486.3208419759036,486.3208419759036,523.3452328167474,523.3452328167474,14190.6968,6.0,430.4739,1,2,3,4,5,6 +3846.5,83.0,1596.2726,100,447.84241753012043,447.84241753012043,523.3452328167474,523.3452328167474,13369.8553,6.0,403.6773,1,2,3,4,5,6 +3847.0,83.0,1596.2726,100,409.3639930843373,409.3639930843373,523.3452328167474,523.3452328167474,12549.0138,6.0,376.8807,1,2,3,4,5,6 +3847.5,83.0,1596.2726,100,377.6311250240964,377.6311250240964,523.3452328167474,523.3452328167474,11836.81695,6.0,354.783,1,2,3,4,5,6 +3848.0,83.0,1596.2726,100,345.8982569638554,345.8982569638554,523.3452328167474,523.3452328167474,11124.6201,6.0,332.6853,1,2,3,4,5,6 +3848.5,83.0,1596.2726,100,343.21053155421686,343.21053155421686,523.3452328167474,523.3452328167474,11063.04845,6.0,330.81345,1,2,3,4,5,6 +3849.0,83.0,1596.2726,100,340.52280614457834,340.52280614457834,523.3452328167474,523.3452328167474,11001.4768,6.0,328.9416,1,2,3,4,5,6 +3849.5,83.0,1596.2726,100,367.89068765060244,367.89068765060244,523.3452328167474,523.3452328167474,11622.1263,6.0,347.99985000000004,1,2,3,4,5,6 +3850.0,83.0,1596.2726,100,395.25856915662655,395.25856915662655,523.3452328167474,523.3452328167474,12242.7758,6.0,367.0581,1,2,3,4,5,6 +3850.5,83.0,1596.2726,100,428.9279321927711,428.9279321927711,523.3452328167474,523.3452328167474,12957.9379,6.0,390.50415,1,2,3,4,5,6 +3851.0,83.0,1596.2726,100,462.59729522891575,462.59729522891575,523.3452328167474,523.3452328167474,13673.1,6.0,413.9502,1,2,3,4,5,6 +3851.5,83.0,1596.2726,100,484.53678379518084,484.53678379518084,523.3452328167474,523.3452328167474,14154.80105,6.0,429.23095,1,2,3,4,5,6 +3852.0,83.0,1596.2726,100,506.47627236144587,506.47627236144587,523.3452328167474,523.3452328167474,14636.5021,6.0,444.5117,1,2,3,4,5,6 +3852.5,83.0,1596.2726,100,521.3607669759037,521.3607669759037,523.3452328167474,523.3452328167474,14970.312600000001,6.0,454.8846,1,2,3,4,5,6 +3853.0,83.0,1596.2726,100,536.2452615903615,536.2452615903615,523.3452328167474,523.3452328167474,15304.1231,6.0,465.2575,1,2,3,4,5,6 +3853.5,83.0,1596.2726,100,547.8938972891567,547.8938972891567,523.3452328167474,523.3452328167474,15566.408650000001,6.0,473.3763,1,2,3,4,5,6 +3854.0,83.0,1596.2726,100,559.5425329879519,559.5425329879519,523.3452328167474,523.3452328167474,15828.6942,6.0,481.4951,1,2,3,4,5,6 +3854.5,83.0,1596.2726,100,558.901294373494,558.901294373494,523.3452328167474,523.3452328167474,15814.164799999999,6.0,481.04814999999996,1,2,3,4,5,6 +3855.0,83.0,1596.2726,100,558.2600557590362,558.2600557590362,523.3452328167474,523.3452328167474,15799.6354,6.0,480.6012,1,2,3,4,5,6 +3855.5,83.0,1596.2726,100,548.7259100963856,548.7259100963856,523.3452328167474,523.3452328167474,15584.9231,6.0,473.95619999999997,1,2,3,4,5,6 +3856.0,83.0,1596.2726,100,539.191764433735,539.191764433735,523.3452328167474,523.3452328167474,15370.2108,6.0,467.3112,1,2,3,4,5,6 +3856.5,83.0,1596.2726,100,527.0164459156628,527.0164459156628,523.3452328167474,523.3452328167474,15097.1411,6.0,458.82574999999997,1,2,3,4,5,6 +3857.0,83.0,1596.2726,100,514.8411273975904,514.8411273975904,523.3452328167474,523.3452328167474,14824.0714,6.0,450.3403,1,2,3,4,5,6 +3857.5,83.0,1596.2726,100,492.14995200000004,492.14995200000004,523.3452328167474,523.3452328167474,14321.8538,6.0,434.53425000000004,1,2,3,4,5,6 +3858.0,83.0,1596.2726,100,469.45877660240967,469.45877660240967,523.3452328167474,523.3452328167474,13819.6362,6.0,418.7282,1,2,3,4,5,6 +3858.5,83.0,1596.2726,100,441.17946910843375,441.17946910843375,523.3452328167474,523.3452328167474,13229.1718,6.0,399.03589999999997,1,2,3,4,5,6 +3859.0,83.0,1596.2726,100,412.90016161445783,412.90016161445783,523.3452328167474,523.3452328167474,12638.7074,6.0,379.3436,1,2,3,4,5,6 +3859.5,83.0,1596.2726,100,392.1180973373494,392.1180973373494,523.3452328167474,523.3452328167474,12173.00775,6.0,364.87145,1,2,3,4,5,6 +3860.0,83.0,1596.2726,100,371.33603306024094,371.33603306024094,523.3452328167474,523.3452328167474,11707.3081,6.0,350.3993,1,2,3,4,5,6 +3860.5,83.0,1596.2726,100,358.42363243373495,358.42363243373495,523.3452328167474,523.3452328167474,11411.53385,6.0,341.4076,1,2,3,4,5,6 +3861.0,83.0,1596.2726,100,345.5112318072289,345.5112318072289,523.3452328167474,523.3452328167474,11115.7596,6.0,332.4159,1,2,3,4,5,6 +3861.5,83.0,1596.2726,100,334.3002813975904,334.3002813975904,523.3452328167474,523.3452328167474,10863.4784,6.0,324.6086,1,2,3,4,5,6 +3862.0,83.0,1596.2726,100,323.0893309879518,323.0893309879518,523.3452328167474,523.3452328167474,10611.1972,6.0,316.8013,1,2,3,4,5,6 +3862.5,83.0,1596.2726,100,305.1013327590362,305.1013327590362,523.3452328167474,523.3452328167474,10250.41045,6.0,304.27470000000005,1,2,3,4,5,6 +3863.0,83.0,1596.2726,100,287.1133345301205,287.1133345301205,523.3452328167474,523.3452328167474,9889.6237,6.0,291.7481,1,2,3,4,5,6 +3863.5,83.0,1596.2726,100,265.9164048433735,265.9164048433735,523.3452328167474,523.3452328167474,9473.1042,6.0,276.98705,1,2,3,4,5,6 +3864.0,83.0,1596.2726,100,244.71947515662652,244.71947515662652,523.3452328167474,523.3452328167474,9056.5847,6.0,262.226,1,2,3,4,5,6 +3864.5,83.0,1596.2726,100,235.28345497590365,235.28345497590365,523.3452328167474,523.3452328167474,8853.817599999998,6.0,255.6548,1,2,3,4,5,6 +3865.0,83.0,1596.2726,100,225.84743479518076,225.84743479518076,523.3452328167474,523.3452328167474,8651.0505,6.0,249.0836,1,2,3,4,5,6 +3865.5,83.0,1596.2726,100,228.24808612048196,228.24808612048196,523.3452328167474,523.3452328167474,8705.33255,6.0,250.75545,1,2,3,4,5,6 +3866.0,83.0,1596.2726,100,230.64873744578315,230.64873744578315,523.3452328167474,523.3452328167474,8759.6146,6.0,252.4273,1,2,3,4,5,6 +3866.5,83.0,1596.2726,100,234.38252613253013,234.38252613253013,523.3452328167474,523.3452328167474,8844.0362,6.0,255.02745,1,2,3,4,5,6 +3867.0,83.0,1596.2726,100,238.11631481927714,238.11631481927714,523.3452328167474,523.3452328167474,8928.4578,6.0,257.6276,1,2,3,4,5,6 +3867.5,83.0,1596.2726,100,239.62881643373495,239.62881643373495,523.3452328167474,523.3452328167474,8961.4527,6.0,258.681,1,2,3,4,5,6 +3868.0,83.0,1596.2726,100,241.14131804819277,241.14131804819277,523.3452328167474,523.3452328167474,8994.4476,6.0,259.7344,1,2,3,4,5,6 +3868.5,83.0,1596.2726,100,245.32739674698797,245.32739674698797,523.3452328167474,523.3452328167474,9076.1724,6.0,262.6495,1,2,3,4,5,6 +3869.0,83.0,1596.2726,100,249.51347544578317,249.51347544578317,523.3452328167474,523.3452328167474,9157.8972,6.0,265.5646,1,2,3,4,5,6 +3869.5,83.0,1596.2726,100,255.33071913253016,255.33071913253016,523.3452328167474,523.3452328167474,9271.1153,6.0,269.6157,1,2,3,4,5,6 +3870.0,83.0,1596.2726,100,261.14796281927715,261.14796281927715,523.3452328167474,523.3452328167474,9384.3334,6.0,273.6668,1,2,3,4,5,6 +3870.5,83.0,1596.2726,100,257.7970917108434,257.7970917108434,523.3452328167474,523.3452328167474,9319.11495,6.0,271.33320000000003,1,2,3,4,5,6 +3871.0,83.0,1596.2726,100,254.44622060240965,254.44622060240965,523.3452328167474,523.3452328167474,9253.8965,6.0,268.9996,1,2,3,4,5,6 +3871.5,83.0,1596.2726,100,238.54578495180724,238.54578495180724,523.3452328167474,523.3452328167474,8916.15975,6.0,257.9269,1,2,3,4,5,6 +3872.0,83.0,1596.2726,100,222.64534930120485,222.64534930120485,523.3452328167474,523.3452328167474,8578.423,6.0,246.8542,1,2,3,4,5,6 +3872.5,83.0,1596.2726,100,212.45536030120482,212.45536030120482,523.3452328167474,523.3452328167474,8348.1442,6.0,239.75799999999998,1,2,3,4,5,6 +3873.0,83.0,1596.2726,100,202.26537130120482,202.26537130120482,523.3452328167474,523.3452328167474,8117.8654,6.0,232.6618,1,2,3,4,5,6 +3873.5,83.0,1596.2726,100,225.072471686747,225.072471686747,523.3452328167474,523.3452328167474,8608.8739,6.0,248.54415,1,2,3,4,5,6 +3874.0,83.0,1596.2726,100,247.87957207228916,247.87957207228916,523.3452328167474,523.3452328167474,9099.8824,6.0,264.4265,1,2,3,4,5,6 +3874.5,83.0,1596.2726,100,296.81589090361445,296.81589090361445,523.3452328167474,523.3452328167474,10121.98825,6.0,298.50505,1,2,3,4,5,6 +3875.0,83.0,1596.2726,100,345.7522097349398,345.7522097349398,523.3452328167474,523.3452328167474,11144.0941,6.0,332.5836,1,2,3,4,5,6 +3875.5,83.0,1596.2726,100,386.56328226506025,386.56328226506025,523.3452328167474,523.3452328167474,12039.4814,6.0,361.00295,1,2,3,4,5,6 +3876.0,83.0,1596.2726,100,427.37435479518075,427.37435479518075,523.3452328167474,523.3452328167474,12934.8687,6.0,389.4223,1,2,3,4,5,6 +3876.5,83.0,1596.2726,100,446.92049439759035,446.92049439759035,523.3452328167474,523.3452328167474,13338.591100000001,6.0,403.03364999999997,1,2,3,4,5,6 +3877.0,83.0,1596.2726,100,466.466634,466.466634,523.3452328167474,523.3452328167474,13742.3135,6.0,416.645,1,2,3,4,5,6 +3877.5,83.0,1596.2726,100,476.6785300843374,476.6785300843374,523.3452328167474,523.3452328167474,13969.86345,6.0,423.75615,1,2,3,4,5,6 +3878.0,83.0,1596.2726,100,486.8904261686747,486.8904261686747,523.3452328167474,523.3452328167474,14197.4134,6.0,430.8673,1,2,3,4,5,6 +3878.5,83.0,1596.2726,100,501.9675205662651,501.9675205662651,523.3452328167474,523.3452328167474,14535.446199999998,6.0,441.37145,1,2,3,4,5,6 +3879.0,83.0,1596.2726,100,517.0446149638555,517.0446149638555,523.3452328167474,523.3452328167474,14873.479,6.0,451.8756,1,2,3,4,5,6 +3879.5,83.0,1596.2726,100,538.0393605180724,538.0393605180724,523.3452328167474,523.3452328167474,15345.879649999999,6.0,466.5083,1,2,3,4,5,6 +3880.0,83.0,1596.2726,100,559.0341060722892,559.0341060722892,523.3452328167474,523.3452328167474,15818.2803,6.0,481.141,1,2,3,4,5,6 +3880.5,83.0,1596.2726,100,569.3870290120483,569.3870290120483,523.3452328167474,523.3452328167474,16053.3927,6.0,488.35654999999997,1,2,3,4,5,6 +3881.0,83.0,1596.2726,100,579.7399519518073,579.7399519518073,523.3452328167474,523.3452328167474,16288.5051,6.0,495.5721,1,2,3,4,5,6 +3881.5,83.0,1596.2726,100,570.0615846506025,570.0615846506025,523.3452328167474,523.3452328167474,16068.44635,6.0,488.82669999999996,1,2,3,4,5,6 +3882.0,83.0,1596.2726,100,560.3832173493977,560.3832173493977,523.3452328167474,523.3452328167474,15848.3876,6.0,482.0813,1,2,3,4,5,6 +3882.5,83.0,1596.2726,100,550.6345648192771,550.6345648192771,523.3452328167474,523.3452328167474,15628.3056,6.0,475.28684999999996,1,2,3,4,5,6 +3883.0,83.0,1596.2726,100,540.8859122891566,540.8859122891566,523.3452328167474,523.3452328167474,15408.2236,6.0,468.4924,1,2,3,4,5,6 +3883.5,83.0,1596.2726,100,558.2486458192772,558.2486458192772,523.3452328167474,523.3452328167474,15801.666,6.0,480.59355,1,2,3,4,5,6 +3884.0,83.0,1596.2726,100,575.6113793493976,575.6113793493976,523.3452328167474,523.3452328167474,16195.1084,6.0,492.6947,1,2,3,4,5,6 +3884.5,83.0,1596.2726,100,617.8820113734942,617.8820113734942,523.3452328167474,523.3452328167474,17139.45915,6.0,522.1558,1,2,3,4,5,6 +3885.0,83.0,1596.2726,100,660.1526433975905,660.1526433975905,523.3452328167474,523.3452328167474,18083.8099,6.0,551.6169,1,2,3,4,5,6 +3885.5,83.0,1596.2726,100,695.5325846024098,695.5325846024098,523.3452328167474,523.3452328167474,18855.3217,6.0,576.2756999999999,1,2,3,4,5,6 +3886.0,83.0,1596.2726,100,730.912525807229,730.912525807229,523.3452328167474,523.3452328167474,19626.8335,6.0,600.9345,1,2,3,4,5,6 +3886.5,83.0,1596.2726,100,739.1728657951808,739.1728657951808,523.3452328167474,523.3452328167474,19814.1723,6.0,606.69175,1,2,3,4,5,6 +3887.0,83.0,1596.2726,100,747.4332057831326,747.4332057831326,523.3452328167474,523.3452328167474,20001.5111,6.0,612.449,1,2,3,4,5,6 +3887.5,83.0,1596.2726,100,747.8015186385543,747.8015186385543,523.3452328167474,523.3452328167474,20009.84375,6.0,612.70505,1,2,3,4,5,6 +3888.0,83.0,1596.2726,100,748.169831493976,748.169831493976,523.3452328167474,523.3452328167474,20018.1764,6.0,612.9611,1,2,3,4,5,6 +3888.5,83.0,1596.2726,100,765.6904785903615,765.6904785903615,523.3452328167474,523.3452328167474,20405.30625,6.0,625.16315,1,2,3,4,5,6 +3889.0,83.0,1596.2726,100,783.2111256867471,783.2111256867471,523.3452328167474,523.3452328167474,20792.4361,6.0,637.3652,1,2,3,4,5,6 +3889.5,83.0,1596.2726,100,821.6023781927711,821.6023781927711,523.3452328167474,523.3452328167474,21566.8727,6.0,664.0996,1,2,3,4,5,6 +3890.0,83.0,1596.2726,100,859.9936306987953,859.9936306987953,523.3452328167474,523.3452328167474,22341.3093,6.0,690.834,1,2,3,4,5,6 +3890.5,83.0,1596.2726,100,906.9710910722894,906.9710910722894,523.3452328167474,523.3452328167474,23352.28485,6.0,723.54775,1,2,3,4,5,6 +3891.0,83.0,1596.2726,100,953.9485514457832,953.9485514457832,523.3452328167474,523.3452328167474,24363.2604,6.0,756.2615,1,2,3,4,5,6 +3891.5,83.0,1596.2726,100,985.7895857349398,985.7895857349398,523.3452328167474,523.3452328167474,25083.00325,6.0,778.4374,1,2,3,4,5,6 +3892.0,83.0,1596.2726,100,1017.6306200240965,1017.6306200240965,523.3452328167474,523.3452328167474,25802.7461,6.0,800.6133,1,2,3,4,5,6 +3892.5,83.0,1596.2726,100,1027.119125927711,1027.119125927711,523.3452328167474,523.3452328167474,26019.560250000002,6.0,807.2237,1,2,3,4,5,6 +3893.0,83.0,1596.2726,100,1036.6076318313253,1036.6076318313253,523.3452328167474,523.3452328167474,26236.3744,6.0,813.8341,1,2,3,4,5,6 +3893.5,83.0,1596.2726,100,1044.1810934457833,1044.1810934457833,523.3452328167474,523.3452328167474,26408.06155,6.0,819.1101000000001,1,2,3,4,5,6 +3894.0,83.0,1596.2726,100,1051.754555060241,1051.754555060241,523.3452328167474,523.3452328167474,26579.7487,6.0,824.3861,1,2,3,4,5,6 +3894.5,83.0,1596.2726,100,1069.6366690481927,1069.6366690481927,523.3452328167474,523.3452328167474,26948.48405,6.0,836.8441,1,2,3,4,5,6 +3895.0,83.0,1596.2726,100,1087.5187830361447,1087.5187830361447,523.3452328167474,523.3452328167474,27317.2194,6.0,849.3021,1,2,3,4,5,6 +3895.5,83.0,1596.2726,100,1108.9242864216867,1108.9242864216867,523.3452328167474,523.3452328167474,27781.21525,6.0,864.2148,1,2,3,4,5,6 +3896.0,83.0,1596.2726,100,1130.329789807229,1130.329789807229,523.3452328167474,523.3452328167474,28245.2111,6.0,879.1275,1,2,3,4,5,6 +3896.5,83.0,1596.2726,100,1143.365874180723,1143.365874180723,523.3452328167474,523.3452328167474,28551.00015,6.0,888.20905,1,2,3,4,5,6 +3897.0,83.0,1596.2726,100,1156.401958554217,1156.401958554217,523.3452328167474,523.3452328167474,28856.7892,6.0,897.2906,1,2,3,4,5,6 +3897.5,83.0,1596.2726,100,1149.0890999638555,1149.0890999638555,523.3452328167474,523.3452328167474,28685.245049999998,6.0,892.196,1,2,3,4,5,6 +3898.0,83.0,1596.2726,100,1141.776241373494,1141.776241373494,523.3452328167474,523.3452328167474,28513.7009,6.0,887.1014,1,2,3,4,5,6 +3898.5,83.0,1596.2726,100,1115.9788239759037,1115.9788239759037,523.3452328167474,523.3452328167474,27943.96015,6.0,869.1292000000001,1,2,3,4,5,6 +3899.0,83.0,1596.2726,100,1090.1814065783133,1090.1814065783133,523.3452328167474,523.3452328167474,27374.2194,6.0,851.157,1,2,3,4,5,6 +3899.5,83.0,1596.2726,100,1055.4344888313253,1055.4344888313253,523.3452328167474,523.3452328167474,26623.43275,6.0,826.95075,1,2,3,4,5,6 +3900.0,83.0,1596.2726,100,1020.6875710843374,1020.6875710843374,523.3452328167474,523.3452328167474,25872.6461,6.0,802.7445,1,2,3,4,5,6 +3900.5,83.0,1596.2726,100,981.3492935783132,981.3492935783132,523.3452328167474,523.3452328167474,24985.1855,6.0,775.34645,1,2,3,4,5,6 +3901.0,83.0,1596.2726,100,942.0110160722892,942.0110160722892,523.3452328167474,523.3452328167474,24097.7249,6.0,747.9484,1,2,3,4,5,6 +3901.5,83.0,1596.2726,100,901.9447844096385,901.9447844096385,523.3452328167474,523.3452328167474,23235.80975,6.0,720.04765,1,2,3,4,5,6 +3902.0,83.0,1596.2726,100,861.8785527469879,861.8785527469879,523.3452328167474,523.3452328167474,22373.8946,6.0,692.1469,1,2,3,4,5,6 +3902.5,83.0,1596.2726,100,830.5495965542169,830.5495965542169,523.3452328167474,523.3452328167474,21755.18595,6.0,670.3300999999999,1,2,3,4,5,6 +3903.0,83.0,1596.2726,100,799.2206403614458,799.2206403614458,523.3452328167474,523.3452328167474,21136.4773,6.0,648.5133,1,2,3,4,5,6 +3903.5,83.0,1596.2726,100,785.2206442771085,785.2206442771085,523.3452328167474,523.3452328167474,20838.52525,6.0,638.76425,1,2,3,4,5,6 +3904.0,83.0,1596.2726,100,771.2206481927711,771.2206481927711,523.3452328167474,523.3452328167474,20540.5732,6.0,629.0152,1,2,3,4,5,6 +3904.5,83.0,1596.2726,100,757.6478402530121,757.6478402530121,523.3452328167474,523.3452328167474,20232.91715,6.0,619.56045,1,2,3,4,5,6 +3905.0,83.0,1596.2726,100,744.075032313253,744.075032313253,523.3452328167474,523.3452328167474,19925.2611,6.0,610.1057,1,2,3,4,5,6 +3905.5,83.0,1596.2726,100,729.2612793253013,729.2612793253013,523.3452328167474,523.3452328167474,19589.33365,6.0,599.7820999999999,1,2,3,4,5,6 +3906.0,83.0,1596.2726,100,714.4475263373495,714.4475263373495,523.3452328167474,523.3452328167474,19253.4062,6.0,589.4585,1,2,3,4,5,6 +3906.5,83.0,1596.2726,100,697.1838310843374,697.1838310843374,523.3452328167474,523.3452328167474,18879.20465,6.0,577.4266,1,2,3,4,5,6 +3907.0,83.0,1596.2726,100,679.9201358313253,679.9201358313253,523.3452328167474,523.3452328167474,18505.0031,6.0,565.3947,1,2,3,4,5,6 +3907.5,83.0,1596.2726,100,661.6656014096386,661.6656014096386,523.3452328167474,523.3452328167474,18119.90625,6.0,552.6718,1,2,3,4,5,6 +3908.0,83.0,1596.2726,100,643.4110669879518,643.4110669879518,523.3452328167474,523.3452328167474,17734.8094,6.0,539.9489,1,2,3,4,5,6 +3908.5,83.0,1596.2726,100,643.9902355301205,643.9902355301205,523.3452328167474,523.3452328167474,17748.592449999996,6.0,540.3525,1,2,3,4,5,6 +3909.0,83.0,1596.2726,100,644.5694040722893,644.5694040722893,523.3452328167474,523.3452328167474,17762.3755,6.0,540.7561,1,2,3,4,5,6 +3909.5,83.0,1596.2726,100,653.0866959036146,653.0866959036146,523.3452328167474,523.3452328167474,17945.82865,6.0,546.6922500000001,1,2,3,4,5,6 +3910.0,83.0,1596.2726,100,661.6039877349397,661.6039877349397,523.3452328167474,523.3452328167474,18129.2818,6.0,552.6284,1,2,3,4,5,6 +3910.5,83.0,1596.2726,100,643.4147181686747,643.4147181686747,523.3452328167474,523.3452328167474,17726.41315,6.0,539.9511500000001,1,2,3,4,5,6 +3911.0,83.0,1596.2726,100,625.2254486024096,625.2254486024096,523.3452328167474,523.3452328167474,17323.5445,6.0,527.2739,1,2,3,4,5,6 +3911.5,83.0,1596.2726,100,585.877586746988,585.877586746988,523.3452328167474,523.3452328167474,16430.63725,6.0,499.84985,1,2,3,4,5,6 +3912.0,83.0,1596.2726,100,546.5297248915663,546.5297248915663,523.3452328167474,523.3452328167474,15537.73,6.0,472.4258,1,2,3,4,5,6 +3912.5,83.0,1596.2726,100,510.80657269879526,510.80657269879526,523.3452328167474,523.3452328167474,14739.50555,6.0,447.53610000000003,1,2,3,4,5,6 +3913.0,83.0,1596.2726,100,475.08342050602414,475.08342050602414,523.3452328167474,523.3452328167474,13941.2811,6.0,422.6464,1,2,3,4,5,6 +3913.5,83.0,1596.2726,100,450.86468237349396,450.86468237349396,523.3452328167474,523.3452328167474,13437.6663,6.0,405.781,1,2,3,4,5,6 +3914.0,83.0,1596.2726,100,426.64594424096384,426.64594424096384,523.3452328167474,523.3452328167474,12934.0515,6.0,388.9156,1,2,3,4,5,6 +3914.5,83.0,1596.2726,100,415.4491421566266,415.4491421566266,523.3452328167474,523.3452328167474,12697.68145,6.0,381.1185,1,2,3,4,5,6 +3915.0,83.0,1596.2726,100,404.2523400722892,404.2523400722892,523.3452328167474,523.3452328167474,12461.3114,6.0,373.3214,1,2,3,4,5,6 +3915.5,83.0,1596.2726,100,406.69954395180736,406.69954395180736,523.3452328167474,523.3452328167474,12517.011050000001,6.0,375.02549999999997,1,2,3,4,5,6 +3916.0,83.0,1596.2726,100,409.14674783132534,409.14674783132534,523.3452328167474,523.3452328167474,12572.7107,6.0,376.7296,1,2,3,4,5,6 +3916.5,83.0,1596.2726,100,417.6553681084338,417.6553681084338,523.3452328167474,523.3452328167474,12752.01985,6.0,382.6547,1,2,3,4,5,6 +3917.0,83.0,1596.2726,100,426.1639883855422,426.1639883855422,523.3452328167474,523.3452328167474,12931.329,6.0,388.5798,1,2,3,4,5,6 +3917.5,83.0,1596.2726,100,427.48480301204825,427.48480301204825,523.3452328167474,523.3452328167474,12956.83565,6.0,389.4995,1,2,3,4,5,6 +3918.0,83.0,1596.2726,100,428.8056176385543,428.8056176385543,523.3452328167474,523.3452328167474,12982.3423,6.0,390.4192,1,2,3,4,5,6 +3918.5,83.0,1596.2726,100,418.6420996987952,418.6420996987952,523.3452328167474,523.3452328167474,12767.9428,6.0,383.34164999999996,1,2,3,4,5,6 +3919.0,83.0,1596.2726,100,408.4785817590362,408.4785817590362,523.3452328167474,523.3452328167474,12553.5433,6.0,376.2641,1,2,3,4,5,6 +3919.5,83.0,1596.2726,100,392.2262635662651,392.2262635662651,523.3452328167474,523.3452328167474,12183.5491,6.0,364.94665,1,2,3,4,5,6 +3920.0,83.0,1596.2726,100,375.973945373494,375.973945373494,523.3452328167474,523.3452328167474,11813.5549,6.0,353.6292,1,2,3,4,5,6 +3920.5,83.0,1596.2726,100,365.27461666265066,365.27461666265066,523.3452328167474,523.3452328167474,11568.467499999999,6.0,346.17845,1,2,3,4,5,6 +3921.0,83.0,1596.2726,100,354.57528795180724,354.57528795180724,523.3452328167474,523.3452328167474,11323.3801,6.0,338.7277,1,2,3,4,5,6 +3921.5,83.0,1596.2726,100,363.21717632530124,363.21717632530124,523.3452328167474,523.3452328167474,11521.3395,6.0,344.74575000000004,1,2,3,4,5,6 +3922.0,83.0,1596.2726,100,371.8590646987952,371.8590646987952,523.3452328167474,523.3452328167474,11719.2989,6.0,350.7638,1,2,3,4,5,6 +3922.5,83.0,1596.2726,100,396.7993674216867,396.7993674216867,523.3452328167474,523.3452328167474,12272.0835,6.0,368.13115,1,2,3,4,5,6 +3923.0,83.0,1596.2726,100,421.7396701445783,421.7396701445783,523.3452328167474,523.3452328167474,12824.8681,6.0,385.4985,1,2,3,4,5,6 +3923.5,83.0,1596.2726,100,441.7312537951807,441.7312537951807,523.3452328167474,523.3452328167474,13233.11465,6.0,399.4199,1,2,3,4,5,6 +3924.0,83.0,1596.2726,100,461.7228374457831,461.7228374457831,523.3452328167474,523.3452328167474,13641.3612,6.0,413.3413,1,2,3,4,5,6 +3924.5,83.0,1596.2726,100,467.16537871084336,467.16537871084336,523.3452328167474,523.3452328167474,13759.34895,6.0,417.13125,1,2,3,4,5,6 +3925.0,83.0,1596.2726,100,472.60791997590366,472.60791997590366,523.3452328167474,523.3452328167474,13877.3367,6.0,420.9212,1,2,3,4,5,6 +3925.5,83.0,1596.2726,100,472.738449686747,472.738449686747,523.3452328167474,523.3452328167474,13880.26645,6.0,421.01225,1,2,3,4,5,6 +3926.0,83.0,1596.2726,100,472.8689793975904,472.8689793975904,523.3452328167474,523.3452328167474,13883.1962,6.0,421.1033,1,2,3,4,5,6 +3926.5,83.0,1596.2726,100,480.77606765060244,480.77606765060244,523.3452328167474,523.3452328167474,14060.39965,6.0,426.60974999999996,1,2,3,4,5,6 +3927.0,83.0,1596.2726,100,488.6831559036145,488.6831559036145,523.3452328167474,523.3452328167474,14237.6031,6.0,432.1162,1,2,3,4,5,6 +3927.5,83.0,1596.2726,100,499.8142367349398,499.8142367349398,523.3452328167474,523.3452328167474,14487.14375,6.0,439.8705,1,2,3,4,5,6 +3928.0,83.0,1596.2726,100,510.9453175662651,510.9453175662651,523.3452328167474,523.3452328167474,14736.6844,6.0,447.6248,1,2,3,4,5,6 +3928.5,83.0,1596.2726,100,544.3677695060242,544.3677695060242,523.3452328167474,523.3452328167474,15492.28075,6.0,470.919,1,2,3,4,5,6 +3929.0,83.0,1596.2726,100,577.7902214457831,577.7902214457831,523.3452328167474,523.3452328167474,16247.8771,6.0,494.2132,1,2,3,4,5,6 +3929.5,83.0,1596.2726,100,625.5198250481927,625.5198250481927,523.3452328167474,523.3452328167474,17306.02955,6.0,527.47925,1,2,3,4,5,6 +3930.0,83.0,1596.2726,100,673.2494286506026,673.2494286506026,523.3452328167474,523.3452328167474,18364.182,6.0,560.7453,1,2,3,4,5,6 +3930.5,83.0,1596.2726,100,710.7539006385543,710.7539006385543,523.3452328167474,523.3452328167474,19193.23255,6.0,586.88045,1,2,3,4,5,6 +3931.0,83.0,1596.2726,100,748.2583726265061,748.2583726265061,523.3452328167474,523.3452328167474,20022.2831,6.0,613.0156,1,2,3,4,5,6 +3931.5,83.0,1596.2726,100,765.3390524457833,765.3390524457833,523.3452328167474,523.3452328167474,20408.3135,6.0,624.9148,1,2,3,4,5,6 +3932.0,83.0,1596.2726,100,782.4197322650602,782.4197322650602,523.3452328167474,523.3452328167474,20794.3439,6.0,636.814,1,2,3,4,5,6 +3932.5,83.0,1596.2726,100,779.8077688554216,779.8077688554216,523.3452328167474,523.3452328167474,20735.15655,6.0,634.9951,1,2,3,4,5,6 +3933.0,83.0,1596.2726,100,777.1958054457831,777.1958054457831,523.3452328167474,523.3452328167474,20675.9692,6.0,633.1762,1,2,3,4,5,6 +3933.5,83.0,1596.2726,100,772.8075426144578,772.8075426144578,523.3452328167474,523.3452328167474,20576.52665,6.0,630.12015,1,2,3,4,5,6 +3934.0,83.0,1596.2726,100,768.4192797831325,768.4192797831325,523.3452328167474,523.3452328167474,20477.0841,6.0,627.0641,1,2,3,4,5,6 +3934.5,83.0,1596.2726,100,765.4006661204819,765.4006661204819,523.3452328167474,523.3452328167474,20408.682800000002,6.0,624.962,1,2,3,4,5,6 +3935.0,83.0,1596.2726,100,762.3820524578314,762.3820524578314,523.3452328167474,523.3452328167474,20340.2815,6.0,622.8599,1,2,3,4,5,6 +3935.5,83.0,1596.2726,100,763.2063065060241,763.2063065060241,523.3452328167474,523.3452328167474,20358.9615,6.0,623.434,1,2,3,4,5,6 +3936.0,83.0,1596.2726,100,764.0305605542168,764.0305605542168,523.3452328167474,523.3452328167474,20377.6415,6.0,624.0081,1,2,3,4,5,6 +3936.5,83.0,1596.2726,100,770.2060763493977,770.2060763493977,523.3452328167474,523.3452328167474,20517.5805,6.0,628.30865,1,2,3,4,5,6 +3937.0,83.0,1596.2726,100,776.3815921445785,776.3815921445785,523.3452328167474,523.3452328167474,20657.5195,6.0,632.6092,1,2,3,4,5,6 +3937.5,83.0,1596.2726,100,781.6278824457831,781.6278824457831,523.3452328167474,523.3452328167474,20776.39635,6.0,636.26245,1,2,3,4,5,6 +3938.0,83.0,1596.2726,100,786.8741727469879,786.8741727469879,523.3452328167474,523.3452328167474,20895.2732,6.0,639.9157,1,2,3,4,5,6 +3938.5,83.0,1596.2726,100,789.6728027710844,789.6728027710844,523.3452328167474,523.3452328167474,20953.247949999997,6.0,641.8646,1,2,3,4,5,6 +3939.0,83.0,1596.2726,100,792.4714327951808,792.4714327951808,523.3452328167474,523.3452328167474,21011.2227,6.0,643.8135,1,2,3,4,5,6 +3939.5,83.0,1596.2726,100,788.654579746988,788.654579746988,523.3452328167474,523.3452328167474,20928.13895,6.0,641.15555,1,2,3,4,5,6 +3940.0,83.0,1596.2726,100,784.8377266987952,784.8377266987952,523.3452328167474,523.3452328167474,20845.0552,6.0,638.4976,1,2,3,4,5,6 +3940.5,83.0,1596.2726,100,767.7771283734941,767.7771283734941,523.3452328167474,523.3452328167474,20460.44425,6.0,626.6152999999999,1,2,3,4,5,6 +3941.0,83.0,1596.2726,100,750.7165300481928,750.7165300481928,523.3452328167474,523.3452328167474,20075.8333,6.0,614.733,1,2,3,4,5,6 +3941.5,83.0,1596.2726,100,723.7936361927711,723.7936361927711,523.3452328167474,523.3452328167474,19471.8415,6.0,595.9706,1,2,3,4,5,6 +3942.0,83.0,1596.2726,100,696.8707423373494,696.8707423373494,523.3452328167474,523.3452328167474,18867.8497,6.0,577.2082,1,2,3,4,5,6 +3942.5,83.0,1596.2726,100,675.41823,675.41823,523.3452328167474,523.3452328167474,18417.76905,6.0,562.2565500000001,1,2,3,4,5,6 +3943.0,83.0,1596.2726,100,653.9657176626507,653.9657176626507,523.3452328167474,523.3452328167474,17967.6884,6.0,547.3049,1,2,3,4,5,6 +3943.5,83.0,1596.2726,100,654.9962634216868,654.9962634216868,523.3452328167474,523.3452328167474,17990.158900000002,6.0,548.02325,1,2,3,4,5,6 +3944.0,83.0,1596.2726,100,656.0268091807228,656.0268091807228,523.3452328167474,523.3452328167474,18012.6294,6.0,548.7416,1,2,3,4,5,6 +3944.5,83.0,1596.2726,100,676.3825981084337,676.3825981084337,523.3452328167474,523.3452328167474,18438.09485,6.0,562.929,1,2,3,4,5,6 +3945.0,83.0,1596.2726,100,696.7383870361447,696.7383870361447,523.3452328167474,523.3452328167474,18863.5603,6.0,577.1164,1,2,3,4,5,6 +3945.5,83.0,1596.2726,100,716.9892045180725,716.9892045180725,523.3452328167474,523.3452328167474,19316.937100000003,6.0,591.23015,1,2,3,4,5,6 +3946.0,83.0,1596.2726,100,737.2400220000001,737.2400220000001,523.3452328167474,523.3452328167474,19770.3139,6.0,605.3439,1,2,3,4,5,6 +3946.5,83.0,1596.2726,100,746.174917626506,746.174917626506,523.3452328167474,523.3452328167474,19972.9095,6.0,611.5699999999999,1,2,3,4,5,6 +3947.0,83.0,1596.2726,100,755.1098132530121,755.1098132530121,523.3452328167474,523.3452328167474,20175.5051,6.0,617.7961,1,2,3,4,5,6 +3947.5,83.0,1596.2726,100,756.3197232650604,756.3197232650604,523.3452328167474,523.3452328167474,20202.92265,6.0,618.6387,1,2,3,4,5,6 +3948.0,83.0,1596.2726,100,757.5296332771084,757.5296332771084,523.3452328167474,523.3452328167474,20230.3402,6.0,619.4813,1,2,3,4,5,6 +3948.5,83.0,1596.2726,100,756.3580606626507,756.3580606626507,523.3452328167474,523.3452328167474,20203.790999999997,6.0,618.6654000000001,1,2,3,4,5,6 +3949.0,83.0,1596.2726,100,755.1864880481929,755.1864880481929,523.3452328167474,523.3452328167474,20177.2418,6.0,617.8495,1,2,3,4,5,6 +3949.5,83.0,1596.2726,100,755.3726982650603,755.3726982650603,523.3452328167474,523.3452328167474,20181.45545,6.0,617.9789499999999,1,2,3,4,5,6 +3950.0,83.0,1596.2726,100,755.5589084819277,755.5589084819277,523.3452328167474,523.3452328167474,20185.6691,6.0,618.1084,1,2,3,4,5,6 +3950.5,83.0,1596.2726,100,759.4670410481928,759.4670410481928,523.3452328167474,523.3452328167474,20274.225599999998,6.0,620.8299,1,2,3,4,5,6 +3951.0,83.0,1596.2726,100,763.3751736144579,763.3751736144579,523.3452328167474,523.3452328167474,20362.7821,6.0,623.5514,1,2,3,4,5,6 +3951.5,83.0,1596.2726,100,761.1488661686748,761.1488661686748,523.3452328167474,523.3452328167474,20312.3326,6.0,622.001,1,2,3,4,5,6 +3952.0,83.0,1596.2726,100,758.9225587228917,758.9225587228917,523.3452328167474,523.3452328167474,20261.8831,6.0,620.4506,1,2,3,4,5,6 +3952.5,83.0,1596.2726,100,743.4812590481929,743.4812590481929,523.3452328167474,523.3452328167474,19911.7844,6.0,609.6915,1,2,3,4,5,6 +3953.0,83.0,1596.2726,100,728.039959373494,728.039959373494,523.3452328167474,523.3452328167474,19561.6857,6.0,598.9324,1,2,3,4,5,6 +3953.5,83.0,1596.2726,100,699.8040096506024,699.8040096506024,523.3452328167474,523.3452328167474,18945.6002,6.0,579.25295,1,2,3,4,5,6 +3954.0,83.0,1596.2726,100,671.5680599277108,671.5680599277108,523.3452328167474,523.3452328167474,18329.5147,6.0,559.5735,1,2,3,4,5,6 +3954.5,83.0,1596.2726,100,639.7315896144579,639.7315896144579,523.3452328167474,523.3452328167474,17629.692450000002,6.0,537.3845,1,2,3,4,5,6 +3955.0,83.0,1596.2726,100,607.8951193012048,607.8951193012048,523.3452328167474,523.3452328167474,16929.8702,6.0,515.1955,1,2,3,4,5,6 +3955.5,83.0,1596.2726,100,589.7651814216867,589.7651814216867,523.3452328167474,523.3452328167474,16516.8834,6.0,502.55960000000005,1,2,3,4,5,6 +3956.0,83.0,1596.2726,100,571.6352435421687,571.6352435421687,523.3452328167474,523.3452328167474,16103.8966,6.0,489.9237,1,2,3,4,5,6 +3956.5,83.0,1596.2726,100,572.996677554217,572.996677554217,523.3452328167474,523.3452328167474,16134.901600000001,6.0,490.87235,1,2,3,4,5,6 +3957.0,83.0,1596.2726,100,574.358111566265,574.358111566265,523.3452328167474,523.3452328167474,16165.9066,6.0,491.821,1,2,3,4,5,6 +3957.5,83.0,1596.2726,100,585.8812379277109,585.8812379277109,523.3452328167474,523.3452328167474,16428.40435,6.0,499.8525,1,2,3,4,5,6 +3958.0,83.0,1596.2726,100,597.4043642891567,597.4043642891567,523.3452328167474,523.3452328167474,16690.9021,6.0,507.884,1,2,3,4,5,6 +3958.5,83.0,1596.2726,100,608.8362111325301,608.8362111325301,523.3452328167474,523.3452328167474,16951.305099999998,6.0,515.85135,1,2,3,4,5,6 +3959.0,83.0,1596.2726,100,620.2680579759037,620.2680579759037,523.3452328167474,523.3452328167474,17211.7081,6.0,523.8187,1,2,3,4,5,6 +3959.5,83.0,1596.2726,100,627.7452196987953,627.7452196987953,523.3452328167474,523.3452328167474,17382.031349999997,6.0,529.03,1,2,3,4,5,6 +3960.0,83.0,1596.2726,100,635.2223814216869,635.2223814216869,523.3452328167474,523.3452328167474,17552.3546,6.0,534.2413,1,2,3,4,5,6 +3960.5,83.0,1596.2726,100,635.1178663734942,635.1178663734942,523.3452328167474,523.3452328167474,17549.9798,6.0,534.1686500000001,1,2,3,4,5,6 +3961.0,83.0,1596.2726,100,635.0133513253013,635.0133513253013,523.3452328167474,523.3452328167474,17547.605,6.0,534.096,1,2,3,4,5,6 +3961.5,83.0,1596.2726,100,624.7380159759035,624.7380159759035,523.3452328167474,523.3452328167474,17313.542,6.0,526.9345000000001,1,2,3,4,5,6 +3962.0,83.0,1596.2726,100,614.462680626506,614.462680626506,523.3452328167474,523.3452328167474,17079.479,6.0,519.773,1,2,3,4,5,6 +3962.5,83.0,1596.2726,100,601.6178268433736,601.6178268433736,523.3452328167474,523.3452328167474,16786.8772,6.0,510.82045000000005,1,2,3,4,5,6 +3963.0,83.0,1596.2726,100,588.772973060241,588.772973060241,523.3452328167474,523.3452328167474,16494.2754,6.0,501.8679,1,2,3,4,5,6 +3963.5,83.0,1596.2726,100,578.8413050963856,578.8413050963856,523.3452328167474,523.3452328167474,16268.03335,6.0,494.9457,1,2,3,4,5,6 +3964.0,83.0,1596.2726,100,568.9096371325302,568.9096371325302,523.3452328167474,523.3452328167474,16041.7913,6.0,488.0235,1,2,3,4,5,6 +3964.5,83.0,1596.2726,100,564.421879626506,564.421879626506,523.3452328167474,523.3452328167474,15939.57055,6.0,484.8959,1,2,3,4,5,6 +3965.0,83.0,1596.2726,100,559.9341221204819,559.9341221204819,523.3452328167474,523.3452328167474,15837.3498,6.0,481.7683,1,2,3,4,5,6 +3965.5,83.0,1596.2726,100,550.567474373494,550.567474373494,523.3452328167474,523.3452328167474,15626.551800000001,6.0,475.24005,1,2,3,4,5,6 +3966.0,83.0,1596.2726,100,541.2008266265061,541.2008266265061,523.3452328167474,523.3452328167474,15415.7538,6.0,468.7118,1,2,3,4,5,6 +3966.5,83.0,1596.2726,100,528.2478066144579,528.2478066144579,523.3452328167474,523.3452328167474,15124.9909,6.0,459.68385,1,2,3,4,5,6 +3967.0,83.0,1596.2726,100,515.2947866024097,515.2947866024097,523.3452328167474,523.3452328167474,14834.228,6.0,450.6559,1,2,3,4,5,6 +3967.5,83.0,1596.2726,100,510.6235572650603,510.6235572650603,523.3452328167474,523.3452328167474,14729.4611,6.0,447.40035,1,2,3,4,5,6 +3968.0,83.0,1596.2726,100,505.9523279277109,505.9523279277109,523.3452328167474,523.3452328167474,14624.6942,6.0,444.1448,1,2,3,4,5,6 +3968.5,83.0,1596.2726,100,519.3895857831325,519.3895857831325,523.3452328167474,523.3452328167474,14926.2192,6.0,453.50995,1,2,3,4,5,6 +3969.0,83.0,1596.2726,100,532.8268436385542,532.8268436385542,523.3452328167474,523.3452328167474,15227.7442,6.0,462.8751,1,2,3,4,5,6 +3969.5,83.0,1596.2726,100,555.7918575903614,555.7918575903614,523.3452328167474,523.3452328167474,15746.92985,6.0,478.88104999999996,1,2,3,4,5,6 +3970.0,83.0,1596.2726,100,578.7568715421687,578.7568715421687,523.3452328167474,523.3452328167474,16266.1155,6.0,494.887,1,2,3,4,5,6 +3970.5,83.0,1596.2726,100,584.0022490481928,584.0022490481928,523.3452328167474,523.3452328167474,16385.60005,6.0,498.5428,1,2,3,4,5,6 +3971.0,83.0,1596.2726,100,589.2476265542168,589.2476265542168,523.3452328167474,523.3452328167474,16505.0846,6.0,502.1986,1,2,3,4,5,6 +3971.5,83.0,1596.2726,100,574.167337373494,574.167337373494,523.3452328167474,523.3452328167474,16162.118349999999,6.0,491.68805,1,2,3,4,5,6 +3972.0,83.0,1596.2726,100,559.0870481927711,559.0870481927711,523.3452328167474,523.3452328167474,15819.1521,6.0,481.1775,1,2,3,4,5,6 +3972.5,83.0,1596.2726,100,545.8455849036145,545.8455849036145,523.3452328167474,523.3452328167474,15520.804349999999,6.0,471.94865000000004,1,2,3,4,5,6 +3973.0,83.0,1596.2726,100,532.6041216144579,532.6041216144579,523.3452328167474,523.3452328167474,15222.4566,6.0,462.7198,1,2,3,4,5,6 +3973.5,83.0,1596.2726,100,519.8761056144579,519.8761056144579,523.3452328167474,523.3452328167474,14937.018,6.0,453.85,1,2,3,4,5,6 +3974.0,83.0,1596.2726,100,507.1480896144579,507.1480896144579,523.3452328167474,523.3452328167474,14651.5794,6.0,444.9802,1,2,3,4,5,6 +3974.5,83.0,1596.2726,100,478.97603555421693,478.97603555421693,523.3452328167474,523.3452328167474,14037.81175,6.0,425.3591,1,2,3,4,5,6 +3975.0,83.0,1596.2726,100,450.8039814939759,450.8039814939759,523.3452328167474,523.3452328167474,13424.0441,6.0,405.738,1,2,3,4,5,6 +3975.5,83.0,1596.2726,100,409.1458350361446,409.1458350361446,523.3452328167474,523.3452328167474,12521.600849999999,6.0,376.72875,1,2,3,4,5,6 +3976.0,83.0,1596.2726,100,367.4876885783133,367.4876885783133,523.3452328167474,523.3452328167474,11619.1576,6.0,347.7195,1,2,3,4,5,6 +3976.5,83.0,1596.2726,100,331.27117059036146,331.27117059036146,523.3452328167474,523.3452328167474,10833.63375,6.0,322.49905,1,2,3,4,5,6 +3977.0,83.0,1596.2726,100,295.05465260240965,295.05465260240965,523.3452328167474,523.3452328167474,10048.1099,6.0,297.2786,1,2,3,4,5,6 +3977.5,83.0,1596.2726,100,283.1499778554217,283.1499778554217,523.3452328167474,523.3452328167474,9814.47895,6.0,288.98845,1,2,3,4,5,6 +3978.0,83.0,1596.2726,100,271.24530310843375,271.24530310843375,523.3452328167474,523.3452328167474,9580.848,6.0,280.6983,1,2,3,4,5,6 +3978.5,83.0,1596.2726,100,276.3788632048193,276.3788632048193,523.3452328167474,523.3452328167474,9680.7513,6.0,284.27315,1,2,3,4,5,6 +3979.0,83.0,1596.2726,100,281.5124233012048,281.5124233012048,523.3452328167474,523.3452328167474,9780.6546,6.0,287.848,1,2,3,4,5,6 +3979.5,83.0,1596.2726,100,282.47724780722893,282.47724780722893,523.3452328167474,523.3452328167474,9799.42515,6.0,288.51975000000004,1,2,3,4,5,6 +3980.0,83.0,1596.2726,100,283.442072313253,283.442072313253,523.3452328167474,523.3452328167474,9818.1957,6.0,289.1915,1,2,3,4,5,6 +3980.5,83.0,1596.2726,100,271.0262322650603,271.0262322650603,523.3452328167474,523.3452328167474,9575.97205,6.0,280.54535,1,2,3,4,5,6 +3981.0,83.0,1596.2726,100,258.61039221686747,258.61039221686747,523.3452328167474,523.3452328167474,9333.7484,6.0,271.8992,1,2,3,4,5,6 +3981.5,83.0,1596.2726,100,238.55628209638556,238.55628209638556,523.3452328167474,523.3452328167474,8909.36665,6.0,257.93405,1,2,3,4,5,6 +3982.0,83.0,1596.2726,100,218.50217197590362,218.50217197590362,523.3452328167474,523.3452328167474,8484.9849,6.0,243.9689,1,2,3,4,5,6 +3982.5,83.0,1596.2726,100,200.60043289156627,200.60043289156627,523.3452328167474,523.3452328167474,8083.9936,6.0,231.61860000000001,1,2,3,4,5,6 +3983.0,83.0,1596.2726,100,182.69869380722892,182.69869380722892,523.3452328167474,523.3452328167474,7683.0023,6.0,219.2683,1,2,3,4,5,6 +3983.5,83.0,1596.2726,100,172.7542467108434,172.7542467108434,523.3452328167474,523.3452328167474,7465.99125,6.0,212.5845,1,2,3,4,5,6 +3984.0,83.0,1596.2726,100,162.80979961445786,162.80979961445786,523.3452328167474,523.3452328167474,7248.9802,6.0,205.9007,1,2,3,4,5,6 +3984.5,83.0,1596.2726,100,166.6234578795181,166.6234578795181,523.3452328167474,523.3452328167474,7331.75755,6.0,208.4502,1,2,3,4,5,6 +3985.0,83.0,1596.2726,100,170.4371161445783,170.4371161445783,523.3452328167474,523.3452328167474,7414.5349,6.0,210.9997,1,2,3,4,5,6 +3985.5,83.0,1596.2726,100,191.94393979518074,191.94393979518074,523.3452328167474,523.3452328167474,7891.078949999999,6.0,225.73899999999998,1,2,3,4,5,6 +3986.0,83.0,1596.2726,100,213.45076344578314,213.45076344578314,523.3452328167474,523.3452328167474,8367.623,6.0,240.4783,1,2,3,4,5,6 +3986.5,83.0,1596.2726,100,248.6070698313253,248.6070698313253,523.3452328167474,523.3452328167474,9096.61115,6.0,264.9468,1,2,3,4,5,6 +3987.0,83.0,1596.2726,100,283.76337621686747,283.76337621686747,523.3452328167474,523.3452328167474,9825.5993,6.0,289.4153,1,2,3,4,5,6 +3987.5,83.0,1596.2726,100,315.6149076506025,315.6149076506025,523.3452328167474,523.3452328167474,10493.070749999999,6.0,311.59630000000004,1,2,3,4,5,6 +3988.0,83.0,1596.2726,100,347.4664390843374,347.4664390843374,523.3452328167474,523.3452328167474,11160.5422,6.0,333.7773,1,2,3,4,5,6 +3988.5,83.0,1596.2726,100,361.83520442168674,361.83520442168674,523.3452328167474,523.3452328167474,11489.6808,6.0,343.78330000000005,1,2,3,4,5,6 +3989.0,83.0,1596.2726,100,376.20396975903617,376.20396975903617,523.3452328167474,523.3452328167474,11818.8194,6.0,353.7893,1,2,3,4,5,6 +3989.5,83.0,1596.2726,100,384.38672215662655,384.38672215662655,523.3452328167474,523.3452328167474,12006.2611,6.0,359.48765000000003,1,2,3,4,5,6 +3990.0,83.0,1596.2726,100,392.5694745542168,392.5694745542168,523.3452328167474,523.3452328167474,12193.7028,6.0,365.186,1,2,3,4,5,6 +3990.5,83.0,1596.2726,100,412.9763800120482,412.9763800120482,523.3452328167474,523.3452328167474,12630.118149999998,6.0,379.39635,1,2,3,4,5,6 +3991.0,83.0,1596.2726,100,433.3832854698796,433.3832854698796,523.3452328167474,523.3452328167474,13066.5335,6.0,393.6067,1,2,3,4,5,6 +3991.5,83.0,1596.2726,100,468.66373200000004,468.66373200000004,523.3452328167474,523.3452328167474,13823.1807,6.0,418.17865,1,2,3,4,5,6 +3992.0,83.0,1596.2726,100,503.94417853012055,503.94417853012055,523.3452328167474,523.3452328167474,14579.8279,6.0,442.7506,1,2,3,4,5,6 +3992.5,83.0,1596.2726,100,552.6641649036145,552.6641649036145,523.3452328167474,523.3452328167474,15678.81845,6.0,476.70405000000005,1,2,3,4,5,6 +3993.0,83.0,1596.2726,100,601.3841512771083,601.3841512771083,523.3452328167474,523.3452328167474,16777.809,6.0,510.6575,1,2,3,4,5,6 +3993.5,83.0,1596.2726,100,660.8148763012048,660.8148763012048,523.3452328167474,523.3452328167474,18091.6794,6.0,552.07655,1,2,3,4,5,6 +3994.0,83.0,1596.2726,100,720.2456013253012,720.2456013253012,523.3452328167474,523.3452328167474,19405.5498,6.0,593.4956,1,2,3,4,5,6 +3994.5,83.0,1596.2726,100,776.4509645783133,776.4509645783133,523.3452328167474,523.3452328167474,20597.969100000002,6.0,632.64645,1,2,3,4,5,6 +3995.0,83.0,1596.2726,100,832.6563278313254,832.6563278313254,523.3452328167474,523.3452328167474,21790.3884,6.0,671.7973,1,2,3,4,5,6 +3995.5,83.0,1596.2726,100,875.3281333373495,875.3281333373495,523.3452328167474,523.3452328167474,22677.6838,6.0,701.5128,1,2,3,4,5,6 +3996.0,83.0,1596.2726,100,917.9999388433736,917.9999388433736,523.3452328167474,523.3452328167474,23564.9792,6.0,731.2283,1,2,3,4,5,6 +3996.5,83.0,1596.2726,100,954.6080459638555,954.6080459638555,523.3452328167474,523.3452328167474,24383.1887,6.0,756.72215,1,2,3,4,5,6 +3997.0,83.0,1596.2726,100,991.2161530843374,991.2161530843374,523.3452328167474,523.3452328167474,25201.3982,6.0,782.216,1,2,3,4,5,6 +3997.5,83.0,1596.2726,100,1020.9655172168675,1020.9655172168675,523.3452328167474,523.3452328167474,25876.41865,6.0,802.9391,1,2,3,4,5,6 +3998.0,83.0,1596.2726,100,1050.7148813493977,1050.7148813493977,523.3452328167474,523.3452328167474,26551.4391,6.0,823.6622,1,2,3,4,5,6 +3998.5,83.0,1596.2726,100,1064.4027014819278,1064.4027014819278,523.3452328167474,523.3452328167474,26841.214050000002,6.0,833.1979,1,2,3,4,5,6 +3999.0,83.0,1596.2726,100,1078.0905216144579,1078.0905216144579,523.3452328167474,523.3452328167474,27130.989,6.0,842.7336,1,2,3,4,5,6 +3999.5,83.0,1596.2726,100,1077.2790466987954,1077.2790466987954,523.3452328167474,523.3452328167474,27115.51325,6.0,842.1683,1,2,3,4,5,6 +4000.0,83.0,1596.2726,100,1076.4675717831326,1076.4675717831326,523.3452328167474,523.3452328167474,27100.0375,6.0,841.603,1,2,3,4,5,6 +4000.5,83.0,1596.2726,100,1063.6072004819277,1063.6072004819277,523.3452328167474,523.3452328167474,26827.96585,6.0,832.6437,1,2,3,4,5,6 +4001.0,83.0,1596.2726,100,1050.746829180723,1050.746829180723,523.3452328167474,523.3452328167474,26555.8942,6.0,823.6844,1,2,3,4,5,6 +4001.5,83.0,1596.2726,100,1029.3043575903616,1029.3043575903616,523.3452328167474,523.3452328167474,26067.725599999998,6.0,808.7465,1,2,3,4,5,6 +4002.0,83.0,1596.2726,100,1007.8618860000001,1007.8618860000001,523.3452328167474,523.3452328167474,25579.557,6.0,793.8086,1,2,3,4,5,6 +4002.5,83.0,1596.2726,100,992.4917843493978,992.4917843493978,523.3452328167474,523.3452328167474,25228.449050000003,6.0,783.10375,1,2,3,4,5,6 +4003.0,83.0,1596.2726,100,977.1216826987952,977.1216826987952,523.3452328167474,523.3452328167474,24877.3411,6.0,772.3989,1,2,3,4,5,6 +4003.5,83.0,1596.2726,100,981.5117711204821,981.5117711204821,523.3452328167474,523.3452328167474,24977.610500000003,6.0,775.45595,1,2,3,4,5,6 +4004.0,83.0,1596.2726,100,985.9018595421688,985.9018595421688,523.3452328167474,523.3452328167474,25077.8799,6.0,778.513,1,2,3,4,5,6 +4004.5,83.0,1596.2726,100,1009.1429940361446,1009.1429940361446,523.3452328167474,523.3452328167474,25608.86865,6.0,794.7022,1,2,3,4,5,6 +4005.0,83.0,1596.2726,100,1032.3841285301205,1032.3841285301205,523.3452328167474,523.3452328167474,26139.8574,6.0,810.8914,1,2,3,4,5,6 +4005.5,83.0,1596.2726,100,1059.5840557228917,1059.5840557228917,523.3452328167474,523.3452328167474,26719.367850000002,6.0,829.84065,1,2,3,4,5,6 +4006.0,83.0,1596.2726,100,1086.7839829156626,1086.7839829156626,523.3452328167474,523.3452328167474,27298.8783,6.0,848.7899,1,2,3,4,5,6 +4006.5,83.0,1596.2726,100,1095.0653171927713,1095.0653171927713,523.3452328167474,523.3452328167474,27463.06615,6.0,854.55955,1,2,3,4,5,6 +4007.0,83.0,1596.2726,100,1103.3466514698796,1103.3466514698796,523.3452328167474,523.3452328167474,27627.254,6.0,860.3292,1,2,3,4,5,6 +4007.5,83.0,1596.2726,100,1077.3817361566264,1077.3817361566264,523.3452328167474,523.3452328167474,27088.6377,6.0,842.24005,1,2,3,4,5,6 +4008.0,83.0,1596.2726,100,1051.4168208433737,1051.4168208433737,523.3452328167474,523.3452328167474,26550.0214,6.0,824.1509,1,2,3,4,5,6 +4008.5,83.0,1596.2726,100,998.2620190843376,998.2620190843376,523.3452328167474,523.3452328167474,25360.023549999998,6.0,787.1279999999999,1,2,3,4,5,6 +4009.0,83.0,1596.2726,100,945.1072173253013,945.1072173253013,523.3452328167474,523.3452328167474,24170.0257,6.0,750.1051,1,2,3,4,5,6 +4009.5,83.0,1596.2726,100,911.3232984939759,911.3232984939759,523.3452328167474,523.3452328167474,23421.3784,6.0,726.5789,1,2,3,4,5,6 +4010.0,83.0,1596.2726,100,877.5393796626507,877.5393796626507,523.3452328167474,523.3452328167474,22672.7311,6.0,703.0527,1,2,3,4,5,6 +4010.5,83.0,1596.2726,100,867.4904175180723,867.4904175180723,523.3452328167474,523.3452328167474,22473.2501,6.0,696.05465,1,2,3,4,5,6 +4011.0,83.0,1596.2726,100,857.441455373494,857.441455373494,523.3452328167474,523.3452328167474,22273.7691,6.0,689.0566,1,2,3,4,5,6 +4011.5,83.0,1596.2726,100,826.6031265903615,826.6031265903615,523.3452328167474,523.3452328167474,21675.52765,6.0,667.5817999999999,1,2,3,4,5,6 +4012.0,83.0,1596.2726,100,795.7647978072289,795.7647978072289,523.3452328167474,523.3452328167474,21077.2862,6.0,646.107,1,2,3,4,5,6 +4012.5,83.0,1596.2726,100,799.9527020963856,799.9527020963856,523.3452328167474,523.3452328167474,21159.27545,6.0,649.0233000000001,1,2,3,4,5,6 +4013.0,83.0,1596.2726,100,804.1406063855422,804.1406063855422,523.3452328167474,523.3452328167474,21241.2647,6.0,651.9396,1,2,3,4,5,6 +4013.5,83.0,1596.2726,100,805.6581283734942,805.6581283734942,523.3452328167474,523.3452328167474,21270.97255,6.0,652.99625,1,2,3,4,5,6 +4014.0,83.0,1596.2726,100,807.1756503614458,807.1756503614458,523.3452328167474,523.3452328167474,21300.6804,6.0,654.0529,1,2,3,4,5,6 +4014.5,83.0,1596.2726,100,796.100706433735,796.100706433735,523.3452328167474,523.3452328167474,21073.1751,6.0,646.34085,1,2,3,4,5,6 +4015.0,83.0,1596.2726,100,785.0257625060241,785.0257625060241,523.3452328167474,523.3452328167474,20845.6698,6.0,638.6288,1,2,3,4,5,6 +4015.5,83.0,1596.2726,100,770.9294665301206,770.9294665301206,523.3452328167474,523.3452328167474,20530.0981,6.0,628.81205,1,2,3,4,5,6 +4016.0,83.0,1596.2726,100,756.8331705542168,756.8331705542168,523.3452328167474,523.3452328167474,20214.5264,6.0,618.9953,1,2,3,4,5,6 +4016.5,83.0,1596.2726,100,741.3402979518073,741.3402979518073,523.3452328167474,523.3452328167474,19863.240599999997,6.0,608.1997,1,2,3,4,5,6 +4017.0,83.0,1596.2726,100,725.8474253493976,725.8474253493976,523.3452328167474,523.3452328167474,19511.9548,6.0,597.4041,1,2,3,4,5,6 +4017.5,83.0,1596.2726,100,699.8939199759036,699.8939199759036,523.3452328167474,523.3452328167474,18945.9075,6.0,579.31535,1,2,3,4,5,6 +4018.0,83.0,1596.2726,100,673.9404146024098,673.9404146024098,523.3452328167474,523.3452328167474,18379.8602,6.0,561.2266,1,2,3,4,5,6 +4018.5,83.0,1596.2726,100,642.3303174939758,642.3303174939758,523.3452328167474,523.3452328167474,17687.0353,6.0,539.19535,1,2,3,4,5,6 +4019.0,83.0,1596.2726,100,610.7202203855421,610.7202203855421,523.3452328167474,523.3452328167474,16994.2104,6.0,517.1641,1,2,3,4,5,6 +4019.5,83.0,1596.2726,100,584.12502,584.12502,523.3452328167474,523.3452328167474,16389.21655,6.0,498.62815,1,2,3,4,5,6 +4020.0,83.0,1596.2726,100,557.5298196144579,557.5298196144579,523.3452328167474,523.3452328167474,15784.2227,6.0,480.0922,1,2,3,4,5,6 +4020.5,83.0,1596.2726,100,537.5250004337349,537.5250004337349,523.3452328167474,523.3452328167474,15334.1833,6.0,466.14959999999996,1,2,3,4,5,6 +4021.0,83.0,1596.2726,100,517.5201812530121,517.5201812530121,523.3452328167474,523.3452328167474,14884.1439,6.0,452.207,1,2,3,4,5,6 +4021.5,83.0,1596.2726,100,508.2457258192771,508.2457258192771,523.3452328167474,523.3452328167474,14676.14935,6.0,445.7437,1,2,3,4,5,6 +4022.0,83.0,1596.2726,100,498.9712703855422,498.9712703855422,523.3452328167474,523.3452328167474,14468.1548,6.0,439.2804,1,2,3,4,5,6 +4022.5,83.0,1596.2726,100,506.0367614819278,506.0367614819278,523.3452328167474,523.3452328167474,14626.60525,6.0,444.20415,1,2,3,4,5,6 +4023.0,83.0,1596.2726,100,513.1022525783134,513.1022525783134,523.3452328167474,523.3452328167474,14785.0557,6.0,449.1279,1,2,3,4,5,6 +4023.5,83.0,1596.2726,100,525.550953253012,525.550953253012,523.3452328167474,523.3452328167474,15064.51655,6.0,457.8044,1,2,3,4,5,6 +4024.0,83.0,1596.2726,100,537.9996539277108,537.9996539277108,523.3452328167474,523.3452328167474,15343.9774,6.0,466.4809,1,2,3,4,5,6 +4024.5,83.0,1596.2726,100,553.8918744216868,553.8918744216868,523.3452328167474,523.3452328167474,15702.85295,6.0,477.5572,1,2,3,4,5,6 +4025.0,83.0,1596.2726,100,569.7840949156626,569.7840949156626,523.3452328167474,523.3452328167474,16061.7285,6.0,488.6335,1,2,3,4,5,6 +4025.5,83.0,1596.2726,100,566.4149679036145,566.4149679036145,523.3452328167474,523.3452328167474,15985.1156,6.0,486.28520000000003,1,2,3,4,5,6 +4026.0,83.0,1596.2726,100,563.0458408915663,563.0458408915663,523.3452328167474,523.3452328167474,15908.5027,6.0,483.9369,1,2,3,4,5,6 +4026.5,83.0,1596.2726,100,550.9166185301206,550.9166185301206,523.3452328167474,523.3452328167474,15634.82555,6.0,475.48325,1,2,3,4,5,6 +4027.0,83.0,1596.2726,100,538.7873961686747,538.7873961686747,523.3452328167474,523.3452328167474,15361.1484,6.0,467.0296,1,2,3,4,5,6 +4027.5,83.0,1596.2726,100,532.4904786144579,532.4904786144579,523.3452328167474,523.3452328167474,15219.91905,6.0,462.641,1,2,3,4,5,6 +4028.0,83.0,1596.2726,100,526.193561060241,526.193561060241,523.3452328167474,523.3452328167474,15078.6897,6.0,458.2524,1,2,3,4,5,6 +4028.5,83.0,1596.2726,100,531.7392481807229,531.7392481807229,523.3452328167474,523.3452328167474,15203.06545,6.0,462.11725,1,2,3,4,5,6 +4029.0,83.0,1596.2726,100,537.2849353012049,537.2849353012049,523.3452328167474,523.3452328167474,15327.4412,6.0,465.9821,1,2,3,4,5,6 +4029.5,83.0,1596.2726,100,545.1765060361446,545.1765060361446,523.3452328167474,523.3452328167474,15504.5125,6.0,471.48249999999996,1,2,3,4,5,6 +4030.0,83.0,1596.2726,100,553.0680767710844,553.0680767710844,523.3452328167474,523.3452328167474,15681.5838,6.0,476.9829,1,2,3,4,5,6 +4030.5,83.0,1596.2726,100,551.468859614458,551.468859614458,523.3452328167474,523.3452328167474,15645.72175,6.0,475.86834999999996,1,2,3,4,5,6 +4031.0,83.0,1596.2726,100,549.8696424578314,549.8696424578314,523.3452328167474,523.3452328167474,15609.8597,6.0,474.7538,1,2,3,4,5,6 +4031.5,83.0,1596.2726,100,542.3231083012048,542.3231083012048,523.3452328167474,523.3452328167474,15440.5218,6.0,469.4939,1,2,3,4,5,6 +4032.0,83.0,1596.2726,100,534.7765741445784,534.7765741445784,523.3452328167474,523.3452328167474,15271.1839,6.0,464.234,1,2,3,4,5,6 +4032.5,83.0,1596.2726,100,529.6270401325302,529.6270401325302,523.3452328167474,523.3452328167474,15155.683949999999,6.0,460.6449,1,2,3,4,5,6 +4033.0,83.0,1596.2726,100,524.477506120482,524.477506120482,523.3452328167474,523.3452328167474,15040.184,6.0,457.0558,1,2,3,4,5,6 +4033.5,83.0,1596.2726,100,521.9025109156627,521.9025109156627,523.3452328167474,523.3452328167474,14982.4385,6.0,455.2614,1,2,3,4,5,6 +4034.0,83.0,1596.2726,100,519.3275157108434,519.3275157108434,523.3452328167474,523.3452328167474,14924.693,6.0,453.467,1,2,3,4,5,6 +4034.5,83.0,1596.2726,100,515.1993995060241,515.1993995060241,523.3452328167474,523.3452328167474,14832.096399999999,6.0,450.58965,1,2,3,4,5,6 +4035.0,83.0,1596.2726,100,511.0712833012048,511.0712833012048,523.3452328167474,523.3452328167474,14739.4998,6.0,447.7123,1,2,3,4,5,6 +4035.5,83.0,1596.2726,100,501.48236992771086,501.48236992771086,523.3452328167474,523.3452328167474,14524.5163,6.0,441.03185,1,2,3,4,5,6 +4036.0,83.0,1596.2726,100,491.89345655421687,491.89345655421687,523.3452328167474,523.3452328167474,14309.5328,6.0,434.3514,1,2,3,4,5,6 +4036.5,83.0,1596.2726,100,479.26310963855417,479.26310963855417,523.3452328167474,523.3452328167474,14027.18215,6.0,425.5559,1,2,3,4,5,6 +4037.0,83.0,1596.2726,100,466.6327627228915,466.6327627228915,523.3452328167474,523.3452328167474,13744.8315,6.0,416.7604,1,2,3,4,5,6 +4037.5,83.0,1596.2726,100,458.01688901204824,458.01688901204824,523.3452328167474,523.3452328167474,13562.46475,6.0,410.7609,1,2,3,4,5,6 +4038.0,83.0,1596.2726,100,449.40101530120484,449.40101530120484,523.3452328167474,523.3452328167474,13380.098,6.0,404.7614,1,2,3,4,5,6 +4038.5,83.0,1596.2726,100,449.8505669277109,449.8505669277109,523.3452328167474,523.3452328167474,13389.20015,6.0,405.0742,1,2,3,4,5,6 +4039.0,83.0,1596.2726,100,450.3001185542169,450.3001185542169,523.3452328167474,523.3452328167474,13398.3023,6.0,405.387,1,2,3,4,5,6 +4039.5,83.0,1596.2726,100,460.9382899879518,460.9382899879518,523.3452328167474,523.3452328167474,13626.267899999999,6.0,412.79515000000004,1,2,3,4,5,6 +4040.0,83.0,1596.2726,100,471.5764614216868,471.5764614216868,523.3452328167474,523.3452328167474,13854.2335,6.0,420.2033,1,2,3,4,5,6 +4040.5,83.0,1596.2726,100,484.746726686747,484.746726686747,523.3452328167474,523.3452328167474,14149.3843,6.0,429.3749,1,2,3,4,5,6 +4041.0,83.0,1596.2726,100,497.91699195180723,497.91699195180723,523.3452328167474,523.3452328167474,14444.5351,6.0,438.5465,1,2,3,4,5,6 +4041.5,83.0,1596.2726,100,505.23532731325304,505.23532731325304,523.3452328167474,523.3452328167474,14608.64155,6.0,443.64599999999996,1,2,3,4,5,6 +4042.0,83.0,1596.2726,100,512.5536626746988,512.5536626746988,523.3452328167474,523.3452328167474,14772.748,6.0,448.7455,1,2,3,4,5,6 +4042.5,83.0,1596.2726,100,516.0825288433736,516.0825288433736,523.3452328167474,523.3452328167474,14851.8947,6.0,451.2049,1,2,3,4,5,6 +4043.0,83.0,1596.2726,100,519.6113950120482,519.6113950120482,523.3452328167474,523.3452328167474,14931.0414,6.0,453.6643,1,2,3,4,5,6 +4043.5,83.0,1596.2726,100,521.944499493976,521.944499493976,523.3452328167474,523.3452328167474,14983.375049999999,6.0,455.29055000000005,1,2,3,4,5,6 +4044.0,83.0,1596.2726,100,524.2776039759036,524.2776039759036,523.3452328167474,523.3452328167474,15035.7087,6.0,456.9168,1,2,3,4,5,6 +4044.5,83.0,1596.2726,100,527.5997220361446,527.5997220361446,523.3452328167474,523.3452328167474,15110.2206,6.0,459.23220000000003,1,2,3,4,5,6 +4045.0,83.0,1596.2726,100,530.9218400963856,530.9218400963856,523.3452328167474,523.3452328167474,15184.7325,6.0,461.5476,1,2,3,4,5,6 +4045.5,83.0,1596.2726,100,534.6118146144579,534.6118146144579,523.3452328167474,523.3452328167474,15267.4992,6.0,464.1195,1,2,3,4,5,6 +4046.0,83.0,1596.2726,100,538.3017891325302,538.3017891325302,523.3452328167474,523.3452328167474,15350.2659,6.0,466.6914,1,2,3,4,5,6 +4046.5,83.0,1596.2726,100,540.0319923975903,540.0319923975903,523.3452328167474,523.3452328167474,15389.0735,6.0,467.8973,1,2,3,4,5,6 +4047.0,83.0,1596.2726,100,541.7621956626506,541.7621956626506,523.3452328167474,523.3452328167474,15427.8811,6.0,469.1032,1,2,3,4,5,6 +4047.5,83.0,1596.2726,100,536.0996707590361,536.0996707590361,523.3452328167474,523.3452328167474,15300.871650000001,6.0,465.1565,1,2,3,4,5,6 +4048.0,83.0,1596.2726,100,530.4371458554217,530.4371458554217,523.3452328167474,523.3452328167474,15173.8622,6.0,461.2098,1,2,3,4,5,6 +4048.5,83.0,1596.2726,100,524.9708719156628,524.9708719156628,523.3452328167474,523.3452328167474,15051.260549999999,6.0,457.40004999999996,1,2,3,4,5,6 +4049.0,83.0,1596.2726,100,519.5045979759037,519.5045979759037,523.3452328167474,523.3452328167474,14928.6589,6.0,453.5903,1,2,3,4,5,6 +4049.5,83.0,1596.2726,100,522.7144422289157,522.7144422289157,523.3452328167474,523.3452328167474,15000.65215,6.0,455.8274,1,2,3,4,5,6 +4050.0,83.0,1596.2726,100,525.9242864819278,525.9242864819278,523.3452328167474,523.3452328167474,15072.6454,6.0,458.0645,1,2,3,4,5,6 +4050.5,83.0,1596.2726,100,535.8135094698795,535.8135094698795,523.3452328167474,523.3452328167474,15294.59935,6.0,464.957,1,2,3,4,5,6 +4051.0,83.0,1596.2726,100,545.7027324578314,545.7027324578314,523.3452328167474,523.3452328167474,15516.5533,6.0,471.8495,1,2,3,4,5,6 +4051.5,83.0,1596.2726,100,558.6215226506024,558.6215226506024,523.3452328167474,523.3452328167474,15809.14,6.0,480.85339999999997,1,2,3,4,5,6 +4052.0,83.0,1596.2726,100,571.5403128433736,571.5403128433736,523.3452328167474,523.3452328167474,16101.7267,6.0,489.8573,1,2,3,4,5,6 +4052.5,83.0,1596.2726,100,585.5973586265061,585.5973586265061,523.3452328167474,523.3452328167474,16421.9315,6.0,499.6544,1,2,3,4,5,6 +4053.0,83.0,1596.2726,100,599.6544044096386,599.6544044096386,523.3452328167474,523.3452328167474,16742.1363,6.0,509.4515,1,2,3,4,5,6 +4053.5,83.0,1596.2726,100,612.9145799999999,612.9145799999999,523.3452328167474,523.3452328167474,17044.19885,6.0,518.69355,1,2,3,4,5,6 +4054.0,83.0,1596.2726,100,626.1747555903614,626.1747555903614,523.3452328167474,523.3452328167474,17346.2614,6.0,527.9356,1,2,3,4,5,6 +4054.5,83.0,1596.2726,100,638.3140186987952,638.3140186987952,523.3452328167474,523.3452328167474,17619.5537,6.0,536.3963,1,2,3,4,5,6 +4055.0,83.0,1596.2726,100,650.4532818072289,650.4532818072289,523.3452328167474,523.3452328167474,17892.846,6.0,544.857,1,2,3,4,5,6 +4055.5,83.0,1596.2726,100,662.4309801686748,662.4309801686748,523.3452328167474,523.3452328167474,18140.4519,6.0,553.20495,1,2,3,4,5,6 +4056.0,83.0,1596.2726,100,674.4086785301205,674.4086785301205,523.3452328167474,523.3452328167474,18388.0578,6.0,561.5529,1,2,3,4,5,6 +4056.5,83.0,1596.2726,100,685.5634920361447,685.5634920361447,523.3452328167474,523.3452328167474,18621.363749999997,6.0,569.32745,1,2,3,4,5,6 +4057.0,83.0,1596.2726,100,696.7183055421688,696.7183055421688,523.3452328167474,523.3452328167474,18854.6697,6.0,577.102,1,2,3,4,5,6 +4057.5,83.0,1596.2726,100,705.9649207228917,705.9649207228917,523.3452328167474,523.3452328167474,19062.711499999998,6.0,583.5468,1,2,3,4,5,6 +4058.0,83.0,1596.2726,100,715.2115359036145,715.2115359036145,523.3452328167474,523.3452328167474,19270.7533,6.0,589.9916,1,2,3,4,5,6 +4058.5,83.0,1596.2726,100,722.7535060843373,722.7535060843373,523.3452328167474,523.3452328167474,19441.79645,6.0,595.2480499999999,1,2,3,4,5,6 +4059.0,83.0,1596.2726,100,730.2954762650603,730.2954762650603,523.3452328167474,523.3452328167474,19612.8396,6.0,600.5045,1,2,3,4,5,6 +4059.5,83.0,1596.2726,100,736.4527361566265,736.4527361566265,523.3452328167474,523.3452328167474,19752.47435,6.0,604.7957,1,2,3,4,5,6 +4060.0,83.0,1596.2726,100,742.6099960481928,742.6099960481928,523.3452328167474,523.3452328167474,19892.1091,6.0,609.0869,1,2,3,4,5,6 +4060.5,83.0,1596.2726,100,747.4491796987952,747.4491796987952,523.3452328167474,523.3452328167474,20001.83825,6.0,612.4590499999999,1,2,3,4,5,6 +4061.0,83.0,1596.2726,100,752.2883633493976,752.2883633493976,523.3452328167474,523.3452328167474,20111.5674,6.0,615.8312,1,2,3,4,5,6 +4061.5,83.0,1596.2726,100,755.838223807229,755.838223807229,523.3452328167474,523.3452328167474,20192.0042,6.0,618.30315,1,2,3,4,5,6 +4062.0,83.0,1596.2726,100,759.3880842650603,759.3880842650603,523.3452328167474,523.3452328167474,20272.441,6.0,620.7751,1,2,3,4,5,6 +4062.5,83.0,1596.2726,100,761.0397871445784,761.0397871445784,523.3452328167474,523.3452328167474,20309.86635,6.0,621.92525,1,2,3,4,5,6 +4063.0,83.0,1596.2726,100,762.6914900240963,762.6914900240963,523.3452328167474,523.3452328167474,20347.2917,6.0,623.0754,1,2,3,4,5,6 +4063.5,83.0,1596.2726,100,763.9607317228915,763.9607317228915,523.3452328167474,523.3452328167474,20376.055800000002,6.0,623.95935,1,2,3,4,5,6 +4064.0,83.0,1596.2726,100,765.2299734216867,765.2299734216867,523.3452328167474,523.3452328167474,20404.8199,6.0,624.8433,1,2,3,4,5,6 +4064.5,83.0,1596.2726,100,765.375564253012,765.375564253012,523.3452328167474,523.3452328167474,20408.1241,6.0,624.94485,1,2,3,4,5,6 +4065.0,83.0,1596.2726,100,765.5211550843375,765.5211550843375,523.3452328167474,523.3452328167474,20411.4283,6.0,625.0464,1,2,3,4,5,6 +4065.5,83.0,1596.2726,100,765.0679522771085,765.0679522771085,523.3452328167474,523.3452328167474,20401.14975,6.0,624.7304999999999,1,2,3,4,5,6 +4066.0,83.0,1596.2726,100,764.6147494698796,764.6147494698796,523.3452328167474,523.3452328167474,20390.8712,6.0,624.4146,1,2,3,4,5,6 +4066.5,83.0,1596.2726,100,763.5180260602411,763.5180260602411,523.3452328167474,523.3452328167474,20366.019800000002,6.0,623.6509,1,2,3,4,5,6 +4067.0,83.0,1596.2726,100,762.4213026506025,762.4213026506025,523.3452328167474,523.3452328167474,20341.1684,6.0,622.8872,1,2,3,4,5,6 +4067.5,83.0,1596.2726,100,760.8193471084338,760.8193471084338,523.3452328167474,523.3452328167474,20304.877950000002,6.0,621.7719500000001,1,2,3,4,5,6 +4068.0,83.0,1596.2726,100,759.2173915662651,759.2173915662651,523.3452328167474,523.3452328167474,20268.5875,6.0,620.6567,1,2,3,4,5,6 +4068.5,83.0,1596.2726,100,757.6419070843374,757.6419070843374,523.3452328167474,523.3452328167474,20232.8813,6.0,619.55935,1,2,3,4,5,6 +4069.0,83.0,1596.2726,100,756.0664226024097,756.0664226024097,523.3452328167474,523.3452328167474,20197.1751,6.0,618.462,1,2,3,4,5,6 +4069.5,83.0,1596.2726,100,754.6210114337349,754.6210114337349,523.3452328167474,523.3452328167474,20164.4263,6.0,617.4556,1,2,3,4,5,6 +4070.0,83.0,1596.2726,100,753.1756002650602,753.1756002650602,523.3452328167474,523.3452328167474,20131.6775,6.0,616.4492,1,2,3,4,5,6 +4070.5,83.0,1596.2726,100,750.9077606385542,750.9077606385542,523.3452328167474,523.3452328167474,20080.27125,6.0,614.8694,1,2,3,4,5,6 +4071.0,83.0,1596.2726,100,748.6399210120483,748.6399210120483,523.3452328167474,523.3452328167474,20028.865,6.0,613.2896,1,2,3,4,5,6 +4071.5,83.0,1596.2726,100,744.5387322650604,744.5387322650604,523.3452328167474,523.3452328167474,19935.85905,6.0,610.43135,1,2,3,4,5,6 +4072.0,83.0,1596.2726,100,740.4375435180723,740.4375435180723,523.3452328167474,523.3452328167474,19842.8531,6.0,607.5731,1,2,3,4,5,6 +4072.5,83.0,1596.2726,100,736.1779848072289,736.1779848072289,523.3452328167474,523.3452328167474,19746.2503,6.0,604.60435,1,2,3,4,5,6 +4073.0,83.0,1596.2726,100,731.9184260963855,731.9184260963855,523.3452328167474,523.3452328167474,19649.6475,6.0,601.6356,1,2,3,4,5,6 +4073.5,83.0,1596.2726,100,721.4509473614459,721.4509473614459,523.3452328167474,523.3452328167474,19412.2494,6.0,594.33995,1,2,3,4,5,6 +4074.0,83.0,1596.2726,100,710.9834686265061,710.9834686265061,523.3452328167474,523.3452328167474,19174.8513,6.0,587.0443,1,2,3,4,5,6 +4074.5,83.0,1596.2726,100,700.1773428795183,700.1773428795183,523.3452328167474,523.3452328167474,18935.244,6.0,579.5128500000001,1,2,3,4,5,6 +4075.0,83.0,1596.2726,100,689.3712171325302,689.3712171325302,523.3452328167474,523.3452328167474,18695.6367,6.0,571.9814,1,2,3,4,5,6 +4075.5,83.0,1596.2726,100,679.9899646626507,679.9899646626507,523.3452328167474,523.3452328167474,18503.449950000002,6.0,565.44295,1,2,3,4,5,6 +4076.0,83.0,1596.2726,100,670.6087121927712,670.6087121927712,523.3452328167474,523.3452328167474,18311.2632,6.0,558.9045,1,2,3,4,5,6 +4076.5,83.0,1596.2726,100,664.8457798192771,664.8457798192771,523.3452328167474,523.3452328167474,18194.80345,6.0,554.88805,1,2,3,4,5,6 +4077.0,83.0,1596.2726,100,659.0828474457832,659.0828474457832,523.3452328167474,523.3452328167474,18078.3437,6.0,550.8716,1,2,3,4,5,6 +4077.5,83.0,1596.2726,100,656.2641359277108,656.2641359277108,523.3452328167474,523.3452328167474,18021.37985,6.0,548.9070999999999,1,2,3,4,5,6 +4078.0,83.0,1596.2726,100,653.4454244096386,653.4454244096386,523.3452328167474,523.3452328167474,17964.416,6.0,546.9426,1,2,3,4,5,6 +4078.5,83.0,1596.2726,100,652.1875926506025,652.1875926506025,523.3452328167474,523.3452328167474,17937.2706,6.0,546.06585,1,2,3,4,5,6 +4079.0,83.0,1596.2726,100,650.9297608915663,650.9297608915663,523.3452328167474,523.3452328167474,17910.1252,6.0,545.1891,1,2,3,4,5,6 +4079.5,83.0,1596.2726,100,645.4278879397591,645.4278879397591,523.3452328167474,523.3452328167474,17784.8163,6.0,541.35445,1,2,3,4,5,6 +4080.0,83.0,1596.2726,100,639.9260149879518,639.9260149879518,523.3452328167474,523.3452328167474,17659.5074,6.0,537.5198,1,2,3,4,5,6 +4080.5,83.0,1596.2726,100,633.449733180723,633.449733180723,523.3452328167474,523.3452328167474,17511.9845,6.0,533.0061499999999,1,2,3,4,5,6 +4081.0,83.0,1596.2726,100,626.973451373494,626.973451373494,523.3452328167474,523.3452328167474,17364.4616,6.0,528.4925,1,2,3,4,5,6 +4081.5,83.0,1596.2726,100,622.2880737108435,622.2880737108435,523.3452328167474,523.3452328167474,17257.72965,6.0,525.22685,1,2,3,4,5,6 +4082.0,83.0,1596.2726,100,617.6026960481929,617.6026960481929,523.3452328167474,523.3452328167474,17150.9977,6.0,521.9612,1,2,3,4,5,6 +4082.5,83.0,1596.2726,100,619.0293949156628,619.0293949156628,523.3452328167474,523.3452328167474,17183.4966,6.0,522.9555499999999,1,2,3,4,5,6 +4083.0,83.0,1596.2726,100,620.4560937831327,620.4560937831327,523.3452328167474,523.3452328167474,17215.9955,6.0,523.9499,1,2,3,4,5,6 +4083.5,83.0,1596.2726,100,627.3778196385543,627.3778196385543,523.3452328167474,523.3452328167474,17373.67185,6.0,528.7742499999999,1,2,3,4,5,6 +4084.0,83.0,1596.2726,100,634.299545493976,634.299545493976,523.3452328167474,523.3452328167474,17531.3482,6.0,533.5986,1,2,3,4,5,6 +4084.5,83.0,1596.2726,100,644.1618410240965,644.1618410240965,523.3452328167474,523.3452328167474,17750.85705,6.0,540.4722,1,2,3,4,5,6 +4085.0,83.0,1596.2726,100,654.0241365542169,654.0241365542169,523.3452328167474,523.3452328167474,17970.3659,6.0,547.3458,1,2,3,4,5,6 +4085.5,83.0,1596.2726,100,664.5687464819279,664.5687464819279,523.3452328167474,523.3452328167474,18186.333749999998,6.0,554.6949500000001,1,2,3,4,5,6 +4086.0,83.0,1596.2726,100,675.1133564096386,675.1133564096386,523.3452328167474,523.3452328167474,18402.3016,6.0,562.0441,1,2,3,4,5,6 +4086.5,83.0,1596.2726,100,687.4958794337349,687.4958794337349,523.3452328167474,523.3452328167474,18664.291599999997,6.0,570.67435,1,2,3,4,5,6 +4087.0,83.0,1596.2726,100,699.8784024578314,699.8784024578314,523.3452328167474,523.3452328167474,18926.2816,6.0,579.3046,1,2,3,4,5,6 +4087.5,83.0,1596.2726,100,716.405472,716.405472,523.3452328167474,523.3452328167474,19299.458899999998,6.0,590.82335,1,2,3,4,5,6 +4088.0,83.0,1596.2726,100,732.9325415421687,732.9325415421687,523.3452328167474,523.3452328167474,19672.6362,6.0,602.3421,1,2,3,4,5,6 +4088.5,83.0,1596.2726,100,751.6165460963855,751.6165460963855,523.3452328167474,523.3452328167474,20096.1747,6.0,615.35815,1,2,3,4,5,6 +4089.0,83.0,1596.2726,100,770.3005506506024,770.3005506506024,523.3452328167474,523.3452328167474,20519.7132,6.0,628.3742,1,2,3,4,5,6 +4089.5,83.0,1596.2726,100,784.9563900722892,784.9563900722892,523.3452328167474,523.3452328167474,20833.59405,6.0,638.58025,1,2,3,4,5,6 +4090.0,83.0,1596.2726,100,799.6122294939759,799.6122294939759,523.3452328167474,523.3452328167474,21147.4749,6.0,648.7863,1,2,3,4,5,6 +4090.5,83.0,1596.2726,100,830.3168337831327,830.3168337831327,523.3452328167474,523.3452328167474,21742.3028,6.0,670.16805,1,2,3,4,5,6 +4091.0,83.0,1596.2726,100,861.0214380722892,861.0214380722892,523.3452328167474,523.3452328167474,22337.1307,6.0,691.5498,1,2,3,4,5,6 +4091.5,83.0,1596.2726,100,871.0918509036145,871.0918509036145,523.3452328167474,523.3452328167474,22544.86965,6.0,698.56245,1,2,3,4,5,6 +4092.0,83.0,1596.2726,100,881.1622637349399,881.1622637349399,523.3452328167474,523.3452328167474,22752.6086,6.0,705.5751,1,2,3,4,5,6 +4092.5,83.0,1596.2726,100,894.7674759036145,894.7674759036145,523.3452328167474,523.3452328167474,23052.63815,6.0,715.0495000000001,1,2,3,4,5,6 +4093.0,83.0,1596.2726,100,908.3726880722892,908.3726880722892,523.3452328167474,523.3452328167474,23352.6677,6.0,724.5239,1,2,3,4,5,6 +4093.5,83.0,1596.2726,100,896.7021452891568,896.7021452891568,523.3452328167474,523.3452328167474,23095.30385,6.0,716.3968,1,2,3,4,5,6 +4094.0,83.0,1596.2726,100,885.0316025060241,885.0316025060241,523.3452328167474,523.3452328167474,22837.94,6.0,708.2697,1,2,3,4,5,6 +4094.5,83.0,1596.2726,100,875.0885246024097,875.0885246024097,523.3452328167474,523.3452328167474,22624.6832,6.0,701.3458,1,2,3,4,5,6 +4095.0,83.0,1596.2726,100,865.1454466987951,865.1454466987951,523.3452328167474,523.3452328167474,22411.4264,6.0,694.4219,1,2,3,4,5,6 +4095.5,83.0,1596.2726,100,866.8085595180722,866.8085595180722,523.3452328167474,523.3452328167474,22444.06175,6.0,695.5801,1,2,3,4,5,6 +4096.0,83.0,1596.2726,100,868.4716723373494,868.4716723373494,523.3452328167474,523.3452328167474,22476.6971,6.0,696.7383,1,2,3,4,5,6 +4096.5,83.0,1596.2726,100,872.4551105060242,872.4551105060242,523.3452328167474,523.3452328167474,22562.57535,6.0,699.51215,1,2,3,4,5,6 +4097.0,83.0,1596.2726,100,876.4385486746988,876.4385486746988,523.3452328167474,523.3452328167474,22648.4536,6.0,702.286,1,2,3,4,5,6 +4097.5,83.0,1596.2726,100,879.4945869397591,879.4945869397591,523.3452328167474,523.3452328167474,22715.843650000003,6.0,704.41405,1,2,3,4,5,6 +4098.0,83.0,1596.2726,100,882.5506252048194,882.5506252048194,523.3452328167474,523.3452328167474,22783.2337,6.0,706.5421,1,2,3,4,5,6 +4098.5,83.0,1596.2726,100,877.6493714819278,877.6493714819278,523.3452328167474,523.3452328167474,22678.88755,6.0,703.12895,1,2,3,4,5,6 +4099.0,83.0,1596.2726,100,872.7481177590362,872.7481177590362,523.3452328167474,523.3452328167474,22574.5414,6.0,699.7158,1,2,3,4,5,6 +4099.5,83.0,1596.2726,100,857.4067691566265,857.4067691566265,523.3452328167474,523.3452328167474,22274.4669,6.0,689.03275,1,2,3,4,5,6 +4100.0,83.0,1596.2726,100,842.065420554217,842.065420554217,523.3452328167474,523.3452328167474,21974.3924,6.0,678.3497,1,2,3,4,5,6 +4100.5,83.0,1596.2726,100,833.6161319638554,833.6161319638554,523.3452328167474,523.3452328167474,21813.600449999998,6.0,672.4658,1,2,3,4,5,6 +4101.0,83.0,1596.2726,100,825.166843373494,825.166843373494,523.3452328167474,523.3452328167474,21652.8085,6.0,666.5819,1,2,3,4,5,6 +4101.5,83.0,1596.2726,100,827.8194261686748,827.8194261686748,523.3452328167474,523.3452328167474,21703.805,6.0,668.4291000000001,1,2,3,4,5,6 +4102.0,83.0,1596.2726,100,830.4720089638555,830.4720089638555,523.3452328167474,523.3452328167474,21754.8015,6.0,670.2763,1,2,3,4,5,6 +4102.5,83.0,1596.2726,100,840.2631064698795,840.2631064698795,523.3452328167474,523.3452328167474,21939.94405,6.0,677.0943500000001,1,2,3,4,5,6 +4103.0,83.0,1596.2726,100,850.0542039759036,850.0542039759036,523.3452328167474,523.3452328167474,22125.0866,6.0,683.9124,1,2,3,4,5,6 +4103.5,83.0,1596.2726,100,860.9187486144579,860.9187486144579,523.3452328167474,523.3452328167474,22342.788099999998,6.0,691.4784,1,2,3,4,5,6 +4104.0,83.0,1596.2726,100,871.7832932530121,871.7832932530121,523.3452328167474,523.3452328167474,22560.4896,6.0,699.0444,1,2,3,4,5,6 +4104.5,83.0,1596.2726,100,896.0937673012049,896.0937673012049,523.3452328167474,523.3452328167474,23089.24235,6.0,715.9734,1,2,3,4,5,6 +4105.0,83.0,1596.2726,100,920.4042413493977,920.4042413493977,523.3452328167474,523.3452328167474,23617.9951,6.0,732.9024,1,2,3,4,5,6 +4105.5,83.0,1596.2726,100,936.5940330722892,936.5940330722892,523.3452328167474,523.3452328167474,23975.02,6.0,744.17665,1,2,3,4,5,6 +4106.0,83.0,1596.2726,100,952.7838247951807,952.7838247951807,523.3452328167474,523.3452328167474,24332.0449,6.0,755.4509,1,2,3,4,5,6 +4106.5,83.0,1596.2726,100,963.720480253012,963.720480253012,523.3452328167474,523.3452328167474,24576.8283,6.0,763.0669,1,2,3,4,5,6 +4107.0,83.0,1596.2726,100,974.6571357108434,974.6571357108434,523.3452328167474,523.3452328167474,24821.6117,6.0,770.6829,1,2,3,4,5,6 +4107.5,83.0,1596.2726,100,1003.1313249759037,1003.1313249759037,523.3452328167474,523.3452328167474,25471.83885,6.0,790.51595,1,2,3,4,5,6 +4108.0,83.0,1596.2726,100,1031.6055142409639,1031.6055142409639,523.3452328167474,523.3452328167474,26122.066,6.0,810.349,1,2,3,4,5,6 +4108.5,83.0,1596.2726,100,1063.1987246385543,1063.1987246385543,523.3452328167474,523.3452328167474,26797.9629,6.0,832.35925,1,2,3,4,5,6 +4109.0,83.0,1596.2726,100,1094.7919350361447,1094.7919350361447,523.3452328167474,523.3452328167474,27473.8598,6.0,854.3695,1,2,3,4,5,6 +4109.5,83.0,1596.2726,100,1124.9411034578316,1124.9411034578316,523.3452328167474,523.3452328167474,28149.086199999998,6.0,875.3733500000001,1,2,3,4,5,6 +4110.0,83.0,1596.2726,100,1155.0902718795182,1155.0902718795182,523.3452328167474,523.3452328167474,28824.3126,6.0,896.3772,1,2,3,4,5,6 +4110.5,82.99985000000001,1596.27095,100,1182.2453267084213,1182.2453267084213,523.3442870121099,523.3442870121099,29415.75815,6.0,915.2922,1,2,3,4,5,6 +4111.0,82.9997,1596.2693,100,1209.4004796884806,1209.4004796884806,523.3433412074722,523.3433412074722,30007.2037,6.0,934.2072,1,2,3,4,5,6 +4111.5,82.9947,1596.19285,100,1223.7718201403222,1223.7718201403222,523.3118143862181,523.3118143862181,30309.2324,6.0,944.14355,1,2,3,4,5,6 +4112.0,82.9897,1596.1164,100,1238.1448922938628,1238.1448922938628,523.2802875649642,523.2802875649642,30611.2611,6.0,954.0799,1,2,3,4,5,6 +4112.5,82.97104999999999,1595.78025,100,1239.6773606577237,1239.6773606577237,523.1626925216866,523.1626925216866,30635.10235,6.0,955.0074,1,2,3,4,5,6 +4113.0,82.9524,1595.4441,100,1241.210518104359,1241.210518104359,523.045097478409,523.045097478409,30658.9436,6.0,955.9349,1,2,3,4,5,6 +4113.5,82.9014,1594.45395,100,1241.7163823288874,1241.7163823288874,522.723523901618,522.723523901618,30640.126,6.0,955.96745,1,2,3,4,5,6 +4114.0,82.8504,1593.4638,100,1242.2228693404013,1242.2228693404013,522.4019503248271,522.4019503248271,30621.3084,6.0,956.0,1,2,3,4,5,6 +4114.5,82.768,1591.8755,100,1242.3698404335007,1242.3698404335007,521.8823883105608,521.8823883105608,30589.3987,6.0,956.0,1,2,3,4,5,6 +4115.0,82.6856,1590.2872,100,1242.5171044534961,1242.5171044534961,521.3628262962945,521.3628262962945,30557.489,6.0,956.0,1,2,3,4,5,6 +4115.5,82.57575,1588.1766,100,1242.8896670148315,1242.8896670148315,520.6701820333437,520.6701820333437,30515.08735,6.0,956.0,1,2,3,4,5,6 +4116.0,82.4659,1586.066,100,1243.2632221318142,1243.2632221318142,519.9775377703929,519.9775377703929,30472.6857,6.0,956.0,1,2,3,4,5,6 +4116.5,82.3321,1583.4614000000001,100,1243.3038706288314,1243.3038706288314,519.1338800336353,519.1338800336353,30420.35875,6.0,956.0,1,2,3,4,5,6 +4117.0,82.1983,1580.8568,100,1243.3446514587285,1243.3446514587285,518.2902222968777,518.2902222968777,30368.0318,6.0,956.0,1,2,3,4,5,6 +4117.5,82.06065000000001,1578.2029499999999,100,1243.291103714143,1243.291103714143,517.4222889077546,517.4222889077546,30314.716249999998,6.0,956.0,1,2,3,4,5,6 +4118.0,81.923,1575.5491,100,1243.2373760238272,1243.2373760238272,516.5543555186313,516.5543555186313,30261.4007,6.0,956.0,1,2,3,4,5,6 +4118.5,81.78915,1572.97135,100,1243.139139494664,1243.139139494664,515.7103825136612,515.7103825136612,30209.612849999998,6.0,956.0,1,2,3,4,5,6 +4119.0,81.6553,1570.3936,100,1243.0405809053423,1243.0405809053423,514.866409508691,514.866409508691,30157.825,6.0,956.0,1,2,3,4,5,6 +4119.5,81.5284,1567.9532,100,1242.9314573449253,1242.9314573449253,514.0662587852639,514.0662587852639,30108.79735,6.0,956.0,1,2,3,4,5,6 +4120.0,81.4015,1565.5128,100,1242.8219935504874,1242.8219935504874,513.2661080618369,513.2661080618369,30059.7697,6.0,956.0,1,2,3,4,5,6 +4120.5,81.28245,1563.22035,100,1242.7072830112772,1242.7072830112772,512.5154544477788,512.5154544477788,30013.71425,6.0,956.0,1,2,3,4,5,6 +4121.0,81.1634,1560.9279,100,1242.5922359585727,1242.5922359585727,511.76480083372036,511.76480083372036,29967.6588,6.0,956.0,1,2,3,4,5,6 +4121.5,81.05494999999999,1558.8341,100,1242.4255946120504,1242.4255946120504,511.0809840807207,511.0809840807207,29925.59435,6.0,956.0,1,2,3,4,5,6 +4122.0,80.9465,1556.7403,100,1242.2585067421076,1242.2585067421076,510.397167327721,510.397167327721,29883.5299,6.0,956.0,1,2,3,4,5,6 +4122.5,80.8528,1554.9380999999998,100,1242.0634957230916,1242.0634957230916,509.8063546974207,509.8063546974207,29847.3234,6.0,956.0,1,2,3,4,5,6 +4123.0,80.7591,1553.1359,100,1241.8680321846084,1241.8680321846084,509.21554206712034,509.21554206712034,29811.1169,6.0,956.0,1,2,3,4,5,6 +4123.5,80.68115,1551.6404499999999,100,1241.6992256927424,1241.6992256927424,508.72403892377014,508.72403892377014,29781.0734,6.0,956.0,1,2,3,4,5,6 +4124.0,80.6032,1550.145,100,1241.5300927010342,1241.5300927010342,508.23253578042,508.23253578042,29751.0299,6.0,956.0,1,2,3,4,5,6 +4124.5,80.53999999999999,1548.9256500000001,100,1241.3595233921033,1241.3595233921033,507.8340367597691,507.8340367597691,29726.5337,6.0,956.0,1,2,3,4,5,6 +4125.0,80.4768,1547.7063,100,1241.188686180365,1241.188686180365,507.43553773911833,507.43553773911833,29702.0375,6.0,956.0,1,2,3,4,5,6 +4125.5,80.4281,1546.7717,100,1241.0316942834659,1241.0316942834659,507.12846650010414,507.12846650010414,29683.261,6.0,956.0,1,2,3,4,5,6 +4126.0,80.3794,1545.8371,100,1240.8745121511233,1240.8745121511233,506.82139526108995,506.82139526108995,29664.4845,6.0,956.0,1,2,3,4,5,6 +4126.5,80.35285,1545.3017,100,1240.5363545288064,1240.5363545288064,506.65398784023114,506.65398784023114,29653.728349999998,6.0,956.0,1,2,3,4,5,6 +4127.0,80.3263,1544.7663,100,1240.1979733661328,1240.1979733661328,506.4865804193723,506.4865804193723,29642.9722,6.0,956.0,1,2,3,4,5,6 +4127.5,80.3264,1544.79155,100,1239.9596920315112,1239.9596920315112,506.48721095579737,506.48721095579737,29643.03095,6.0,955.9864,1,2,3,4,5,6 +4128.0,80.3265,1544.8168,100,1239.7214112901722,1239.7214112901722,506.4878414922224,506.4878414922224,29643.0897,6.0,955.9728,1,2,3,4,5,6 +4128.5,80.3433,1545.1532000000002,100,1239.5913702573832,1239.5913702573832,506.59377161163593,506.59377161163593,29648.93445,6.0,955.94515,1,2,3,4,5,6 +4129.0,80.3601,1545.4896,100,1239.4613835970836,1239.4613835970836,506.69970173104946,506.69970173104946,29654.7792,6.0,955.9175,1,2,3,4,5,6 +4129.5,80.38835,1546.01505,100,1239.2892279913697,1239.2892279913697,506.87782827113466,506.87782827113466,29664.56085,6.0,955.894,1,2,3,4,5,6 +4130.0,80.4166,1546.5405,100,1239.1171933406783,1239.1171933406783,507.0559548112199,507.0559548112199,29674.3425,6.0,955.8705,1,2,3,4,5,6 +4130.5,80.46000000000001,1547.37545,100,1238.893726510067,1238.893726510067,507.32960761970486,507.32960761970486,29689.906750000002,6.0,955.8338,1,2,3,4,5,6 +4131.0,80.5034,1548.2104,100,1238.6705006248185,1238.6705006248185,507.6032604281896,507.6032604281896,29705.471,6.0,955.7971,1,2,3,4,5,6 +4131.5,80.56625,1549.4161,100,1238.4024335872653,1238.4024335872653,507.9995525713527,507.9995525713527,29728.2748,6.0,955.7541,1,2,3,4,5,6 +4132.0,80.6291,1550.6218,100,1238.134784463674,1238.134784463674,508.39584471451576,508.39584471451576,29751.0786,6.0,955.7111,1,2,3,4,5,6 +4132.5,80.71345,1552.2460999999998,100,1237.8677528714236,1237.8677528714236,508.9277021890711,508.9277021890711,29782.187100000003,6.0,955.6649,1,2,3,4,5,6 +4133.0,80.7978,1553.8704,100,1237.6012788219482,1237.6012788219482,509.4595596636264,509.4595596636264,29813.2956,6.0,955.6187,1,2,3,4,5,6 +4133.5,80.9024,1555.8858,100,1237.3777631565938,1237.3777631565938,510.1191007642605,510.1191007642605,29852.446900000003,6.0,955.5781,1,2,3,4,5,6 +4134.0,81.007,1557.9012,100,1237.1548247188516,1237.1548247188516,510.7786418648947,510.7786418648947,29891.5982,6.0,955.5375,1,2,3,4,5,6 +4134.5,81.12880000000001,1560.2474,100,1236.980725599294,1236.980725599294,511.5466352306427,511.5466352306427,29937.690000000002,6.0,955.5059,1,2,3,4,5,6 +4135.0,81.2506,1562.5936,100,1236.807148451827,1236.807148451827,512.3146285963905,512.3146285963905,29983.7818,6.0,955.4743,1,2,3,4,5,6 +4135.5,81.38685000000001,1565.21705,100,1236.6733168441833,1236.6733168441833,513.1737344755627,513.1737344755627,30035.70835,6.0,955.45065,1,2,3,4,5,6 +4136.0,81.5231,1567.8405,100,1236.5399325835256,1236.5399325835256,514.0328403547347,514.0328403547347,30087.6349,6.0,955.427,1,2,3,4,5,6 +4136.5,81.67025000000001,1570.67705,100,1236.4687903857277,1236.4687903857277,514.9606747042407,514.9606747042407,30144.1474,6.0,955.41265,1,2,3,4,5,6 +4137.0,81.8174,1573.5136,100,1236.397904088861,1236.397904088861,515.8885090537465,515.8885090537465,30200.6599,6.0,955.3983,1,2,3,4,5,6 +4137.5,81.9718,1576.48355,100,1236.3699635362402,1236.3699635362402,516.8620572940706,516.8620572940706,30260.1628,6.0,955.39335,1,2,3,4,5,6 +4138.0,82.1262,1579.4535,100,1236.342128041965,1236.342128041965,517.8356055343947,517.8356055343947,30319.6657,6.0,955.3884,1,2,3,4,5,6 +4138.5,82.2871,1582.5439999999999,100,1236.29499818319,1236.29499818319,518.8501386423491,518.8501386423491,30381.6397,6.0,955.38495,1,2,3,4,5,6 +4139.0,82.448,1585.6345,100,1236.2480522753733,1236.2480522753733,519.8646717503035,519.8646717503035,30443.6137,6.0,955.3815,1,2,3,4,5,6 +4139.5,82.61105,1588.8328999999999,100,1220.1970280125963,1220.1970280125963,520.8927613913971,520.8927613913971,30148.987399999998,6.0,944.15965,1,2,3,4,5,6 +4140.0,82.7741,1592.0313,100,1204.2092389769264,1204.2092389769264,521.9208510324908,521.9208510324908,29854.3611,6.0,932.9378,1,2,3,4,5,6 +4140.5,82.8709,1593.997,100,1038.7692075022715,1038.7692075022715,522.5312102919687,522.5312102919687,26297.3631,6.0,816.8565000000001,1,2,3,4,5,6 +4141.0,82.9677,1595.9627,100,873.71522011578,873.71522011578,523.1415695514464,523.1415695514464,22740.3651,6.0,700.7752,1,2,3,4,5,6 +4141.5,82.98384999999999,1596.1176500000001,100,824.0816827732143,824.0816827732143,523.2434011840969,523.2434011840969,21677.2487,6.0,666.0255,1,2,3,4,5,6 +4142.0,83.0,1596.2726,100,774.4674606506024,774.4674606506024,523.3452328167474,523.3452328167474,20614.1323,6.0,631.2758,1,2,3,4,5,6 +4142.5,83.0,1596.2726,100,765.888098746988,765.888098746988,523.3452328167474,523.3452328167474,20419.7311,6.0,625.30155,1,2,3,4,5,6 +4143.0,83.0,1596.2726,100,757.3087368433736,757.3087368433736,523.3452328167474,523.3452328167474,20225.3299,6.0,619.3273,1,2,3,4,5,6 +4143.5,83.0,1596.2726,100,751.6284124337351,751.6284124337351,523.3452328167474,523.3452328167474,20096.578849999998,6.0,615.3705500000001,1,2,3,4,5,6 +4144.0,83.0,1596.2726,100,745.9480880240965,745.9480880240965,523.3452328167474,523.3452328167474,19967.8278,6.0,611.4138,1,2,3,4,5,6 +4144.5,83.0,1596.2726,100,743.4867358192771,743.4867358192771,523.3452328167474,523.3452328167474,19912.002650000002,6.0,609.6982,1,2,3,4,5,6 +4145.0,83.0,1596.2726,100,741.0253836144578,741.0253836144578,523.3452328167474,523.3452328167474,19856.1775,6.0,607.9826,1,2,3,4,5,6 +4145.5,83.0,1596.2726,100,740.2253186385542,740.2253186385542,523.3452328167474,523.3452328167474,19838.0279,6.0,607.4248500000001,1,2,3,4,5,6 +4146.0,83.0,1596.2726,100,739.4252536626507,739.4252536626507,523.3452328167474,523.3452328167474,19819.8783,6.0,606.8671,1,2,3,4,5,6 +4146.5,83.0,1596.2726,100,737.7521000963856,737.7521000963856,523.3452328167474,523.3452328167474,19781.93305,6.0,605.70095,1,2,3,4,5,6 +4147.0,83.0,1596.2726,100,736.0789465301206,736.0789465301206,523.3452328167474,523.3452328167474,19743.9878,6.0,604.5348,1,2,3,4,5,6 +4147.5,83.0,1596.2726,100,733.0320362168674,733.0320362168674,523.3452328167474,523.3452328167474,19674.8951,6.0,602.4114999999999,1,2,3,4,5,6 +4148.0,83.0,1596.2726,100,729.9851259036145,729.9851259036145,523.3452328167474,523.3452328167474,19605.8024,6.0,600.2882,1,2,3,4,5,6 +4148.5,83.0,1596.2726,100,726.6662026265061,726.6662026265061,523.3452328167474,523.3452328167474,19530.5282,6.0,597.9748999999999,1,2,3,4,5,6 +4149.0,83.0,1596.2726,100,723.3472793493977,723.3472793493977,523.3452328167474,523.3452328167474,19455.254,6.0,595.6616,1,2,3,4,5,6 +4149.5,83.0,1596.2726,100,721.1716320361446,721.1716320361446,523.3452328167474,523.3452328167474,19405.913650000002,6.0,594.1453,1,2,3,4,5,6 +4150.0,83.0,1596.2726,100,718.9959847228916,718.9959847228916,523.3452328167474,523.3452328167474,19356.5733,6.0,592.629,1,2,3,4,5,6 +4150.5,83.0,1596.2726,100,718.4236621445783,718.4236621445783,523.3452328167474,523.3452328167474,19343.59455,6.0,592.2301,1,2,3,4,5,6 +4151.0,83.0,1596.2726,100,717.8513395662651,717.8513395662651,523.3452328167474,523.3452328167474,19330.6158,6.0,591.8312,1,2,3,4,5,6 +4151.5,83.0,1596.2726,100,714.4817561566265,714.4817561566265,523.3452328167474,523.3452328167474,19254.1901,6.0,589.48255,1,2,3,4,5,6 +4152.0,83.0,1596.2726,100,711.112172746988,711.112172746988,523.3452328167474,523.3452328167474,19177.7644,6.0,587.1339,1,2,3,4,5,6 +4152.5,83.0,1596.2726,100,709.4472343373494,709.4472343373494,523.3452328167474,523.3452328167474,19140.004999999997,6.0,585.9735000000001,1,2,3,4,5,6 +4153.0,83.0,1596.2726,100,707.7822959277108,707.7822959277108,523.3452328167474,523.3452328167474,19102.2456,6.0,584.8131,1,2,3,4,5,6 +4153.5,83.0,1596.2726,100,707.1223450120483,707.1223450120483,523.3452328167474,523.3452328167474,19087.284,6.0,584.3533,1,2,3,4,5,6 +4154.0,83.0,1596.2726,100,706.4623940963855,706.4623940963855,523.3452328167474,523.3452328167474,19072.3224,6.0,583.8935,1,2,3,4,5,6 +4154.5,83.0,1596.2726,100,705.8074635542167,705.8074635542167,523.3452328167474,523.3452328167474,19057.4704,6.0,583.43705,1,2,3,4,5,6 +4155.0,83.0,1596.2726,100,705.1525330120483,705.1525330120483,523.3452328167474,523.3452328167474,19042.6184,6.0,582.9806,1,2,3,4,5,6 +4155.5,83.0,1596.2726,100,704.0302513373495,704.0302513373495,523.3452328167474,523.3452328167474,19017.1668,6.0,582.19845,1,2,3,4,5,6 +4156.0,83.0,1596.2726,100,702.9079696626507,702.9079696626507,523.3452328167474,523.3452328167474,18991.7152,6.0,581.4163,1,2,3,4,5,6 +4156.5,83.0,1596.2726,100,701.1047427831326,701.1047427831326,523.3452328167474,523.3452328167474,18950.8121,6.0,580.1592499999999,1,2,3,4,5,6 +4157.0,83.0,1596.2726,100,699.3015159036145,699.3015159036145,523.3452328167474,523.3452328167474,18909.909,6.0,578.9022,1,2,3,4,5,6 +4157.5,83.0,1596.2726,100,696.7233259156627,696.7233259156627,523.3452328167474,523.3452328167474,18851.64805,6.0,577.10545,1,2,3,4,5,6 +4158.0,83.0,1596.2726,100,694.1451359277108,694.1451359277108,523.3452328167474,523.3452328167474,18793.3871,6.0,575.3087,1,2,3,4,5,6 +4158.5,83.0,1596.2726,100,690.7554710240963,690.7554710240963,523.3452328167474,523.3452328167474,18721.650999999998,6.0,572.9462000000001,1,2,3,4,5,6 +4159.0,83.0,1596.2726,100,687.3658061204819,687.3658061204819,523.3452328167474,523.3452328167474,18649.9149,6.0,570.5837,1,2,3,4,5,6 +4159.5,83.0,1596.2726,100,683.1742506506024,683.1742506506024,523.3452328167474,523.3452328167474,18565.21085,6.0,567.66245,1,2,3,4,5,6 +4160.0,83.0,1596.2726,100,678.9826951807229,678.9826951807229,523.3452328167474,523.3452328167474,18480.5068,6.0,564.7412,1,2,3,4,5,6 +4160.5,83.0,1596.2726,100,673.8327047710844,673.8327047710844,523.3452328167474,523.3452328167474,18376.42425,6.0,561.1517,1,2,3,4,5,6 +4161.0,83.0,1596.2726,100,668.6827143614458,668.6827143614458,523.3452328167474,523.3452328167474,18272.3417,6.0,557.5622,1,2,3,4,5,6 +4161.5,83.0,1596.2726,100,662.515870120482,662.515870120482,523.3452328167474,523.3452328167474,18146.8853,6.0,553.2642,1,2,3,4,5,6 +4162.0,83.0,1596.2726,100,656.3490258795181,656.3490258795181,523.3452328167474,523.3452328167474,18021.4289,6.0,548.9662,1,2,3,4,5,6 +4162.5,83.0,1596.2726,100,649.5888647710844,649.5888647710844,523.3452328167474,523.3452328167474,17873.52715,6.0,544.2545,1,2,3,4,5,6 +4163.0,83.0,1596.2726,100,642.8287036626506,642.8287036626506,523.3452328167474,523.3452328167474,17725.6254,6.0,539.5428,1,2,3,4,5,6 +4163.5,83.0,1596.2726,100,635.957637939759,635.957637939759,523.3452328167474,523.3452328167474,17569.11375,6.0,534.7541000000001,1,2,3,4,5,6 +4164.0,83.0,1596.2726,100,629.0865722168675,629.0865722168675,523.3452328167474,523.3452328167474,17412.6021,6.0,529.9654,1,2,3,4,5,6 +4164.5,83.0,1596.2726,100,621.9494266987952,621.9494266987952,523.3452328167474,523.3452328167474,17250.022,6.0,524.991,1,2,3,4,5,6 +4165.0,83.0,1596.2726,100,614.8122811807228,614.8122811807228,523.3452328167474,523.3452328167474,17087.4419,6.0,520.0166,1,2,3,4,5,6 +4165.5,83.0,1596.2726,100,606.8910446024096,606.8910446024096,523.3452328167474,523.3452328167474,16907.002050000003,6.0,514.4958,1,2,3,4,5,6 +4166.0,83.0,1596.2726,100,598.9698080240963,598.9698080240963,523.3452328167474,523.3452328167474,16726.5622,6.0,508.975,1,2,3,4,5,6 +4166.5,83.0,1596.2726,100,590.3420679759037,590.3420679759037,523.3452328167474,523.3452328167474,16530.0275,6.0,502.96175000000005,1,2,3,4,5,6 +4167.0,83.0,1596.2726,100,581.7143279277109,581.7143279277109,523.3452328167474,523.3452328167474,16333.4928,6.0,496.9485,1,2,3,4,5,6 +4167.5,83.0,1596.2726,100,573.4466855783133,573.4466855783133,523.3452328167474,523.3452328167474,16145.15395,6.0,491.18600000000004,1,2,3,4,5,6 +4168.0,83.0,1596.2726,100,565.1790432289157,565.1790432289157,523.3452328167474,523.3452328167474,15956.8151,6.0,485.4235,1,2,3,4,5,6 +4168.5,83.0,1596.2726,100,559.5283846626506,559.5283846626506,523.3452328167474,523.3452328167474,15828.357250000001,6.0,481.4854,1,2,3,4,5,6 +4169.0,83.0,1596.2726,100,553.8777260963856,553.8777260963856,523.3452328167474,523.3452328167474,15699.8994,6.0,477.5473,1,2,3,4,5,6 +4169.5,83.0,1596.2726,100,546.9505234698796,546.9505234698796,523.3452328167474,523.3452328167474,15544.3843,6.0,472.71915,1,2,3,4,5,6 +4170.0,83.0,1596.2726,100,540.0233208433735,540.0233208433735,523.3452328167474,523.3452328167474,15388.8692,6.0,467.891,1,2,3,4,5,6 +4170.5,83.0,1596.2726,100,533.8633225662651,533.8633225662651,523.3452328167474,523.3452328167474,15250.70375,6.0,463.5976,1,2,3,4,5,6 +4171.0,83.0,1596.2726,100,527.7033242891566,527.7033242891566,523.3452328167474,523.3452328167474,15112.5383,6.0,459.3042,1,2,3,4,5,6 +4171.5,83.0,1596.2726,100,528.2354838795181,528.2354838795181,523.3452328167474,523.3452328167474,15124.4778,6.0,459.6752,1,2,3,4,5,6 +4172.0,83.0,1596.2726,100,528.7676434698795,528.7676434698795,523.3452328167474,523.3452328167474,15136.4173,6.0,460.0462,1,2,3,4,5,6 +4172.5,83.0,1596.2726,100,534.3621651325302,534.3621651325302,523.3452328167474,523.3452328167474,15261.89605,6.0,463.94534999999996,1,2,3,4,5,6 +4173.0,83.0,1596.2726,100,539.9566867951808,539.9566867951808,523.3452328167474,523.3452328167474,15387.3748,6.0,467.8445,1,2,3,4,5,6 +4173.5,83.0,1596.2726,100,547.5648346265061,547.5648346265061,523.3452328167474,523.3452328167474,15558.4528,6.0,473.14705,1,2,3,4,5,6 +4174.0,83.0,1596.2726,100,555.1729824578314,555.1729824578314,523.3452328167474,523.3452328167474,15729.5308,6.0,478.4496,1,2,3,4,5,6 +4174.5,83.0,1596.2726,100,563.7938765421686,563.7938765421686,523.3452328167474,523.3452328167474,15925.58565,6.0,484.4581,1,2,3,4,5,6 +4175.0,83.0,1596.2726,100,572.4147706265061,572.4147706265061,523.3452328167474,523.3452328167474,16121.6405,6.0,490.4666,1,2,3,4,5,6 +4175.5,83.0,1596.2726,100,580.8795767349399,580.8795767349399,523.3452328167474,523.3452328167474,16314.463899999999,6.0,496.3663,1,2,3,4,5,6 +4176.0,83.0,1596.2726,100,589.3443828433735,589.3443828433735,523.3452328167474,523.3452328167474,16507.2873,6.0,502.266,1,2,3,4,5,6 +4176.5,83.0,1596.2726,100,594.303599060241,594.303599060241,523.3452328167474,523.3452328167474,16620.2566,6.0,505.72245,1,2,3,4,5,6 +4177.0,83.0,1596.2726,100,599.2628152771084,599.2628152771084,523.3452328167474,523.3452328167474,16733.2259,6.0,509.1789,1,2,3,4,5,6 +4177.5,83.0,1596.2726,100,602.920385566265,602.920385566265,523.3452328167474,523.3452328167474,16816.5435,6.0,511.72814999999997,1,2,3,4,5,6 +4178.0,83.0,1596.2726,100,606.5779558554218,606.5779558554218,523.3452328167474,523.3452328167474,16899.8611,6.0,514.2774,1,2,3,4,5,6 +4178.5,83.0,1596.2726,100,613.8451746867471,613.8451746867471,523.3452328167474,523.3452328167474,17065.40285,6.0,519.3423499999999,1,2,3,4,5,6 +4179.0,83.0,1596.2726,100,621.1123935180724,621.1123935180724,523.3452328167474,523.3452328167474,17230.9446,6.0,524.4073,1,2,3,4,5,6 +4179.5,83.0,1596.2726,100,630.2996770120483,630.2996770120483,523.3452328167474,523.3452328167474,17440.226649999997,6.0,530.8106,1,2,3,4,5,6 +4180.0,83.0,1596.2726,100,639.486960506024,639.486960506024,523.3452328167474,523.3452328167474,17649.5087,6.0,537.2139,1,2,3,4,5,6 +4180.5,83.0,1596.2726,100,643.8245632048194,643.8245632048194,523.3452328167474,523.3452328167474,17748.31975,6.0,540.2371499999999,1,2,3,4,5,6 +4181.0,83.0,1596.2726,100,648.1621659036146,648.1621659036146,523.3452328167474,523.3452328167474,17847.1308,6.0,543.2604,1,2,3,4,5,6 +4181.5,83.0,1596.2726,100,644.6967390000001,644.6967390000001,523.3452328167474,523.3452328167474,17768.18615,6.0,540.845,1,2,3,4,5,6 +4182.0,83.0,1596.2726,100,641.2313120963855,641.2313120963855,523.3452328167474,523.3452328167474,17689.2415,6.0,538.4296,1,2,3,4,5,6 +4182.5,83.0,1596.2726,100,635.9425768192772,635.9425768192772,523.3452328167474,523.3452328167474,17568.764600000002,6.0,534.7434000000001,1,2,3,4,5,6 +4183.0,83.0,1596.2726,100,630.6538415421688,630.6538415421688,523.3452328167474,523.3452328167474,17448.2877,6.0,531.0572,1,2,3,4,5,6 +4183.5,83.0,1596.2726,100,630.1855776144578,630.1855776144578,523.3452328167474,523.3452328167474,17437.6239,6.0,530.73095,1,2,3,4,5,6 +4184.0,83.0,1596.2726,100,629.7173136867469,629.7173136867469,523.3452328167474,523.3452328167474,17426.9601,6.0,530.4047,1,2,3,4,5,6 +4184.5,83.0,1596.2726,100,635.934818060241,635.934818060241,523.3452328167474,523.3452328167474,17568.5953,6.0,534.7382,1,2,3,4,5,6 +4185.0,83.0,1596.2726,100,642.1523224337349,642.1523224337349,523.3452328167474,523.3452328167474,17710.2305,6.0,539.0717,1,2,3,4,5,6 +4185.5,83.0,1596.2726,100,645.022606879518,645.022606879518,523.3452328167474,523.3452328167474,17775.60755,6.0,541.072,1,2,3,4,5,6 +4186.0,83.0,1596.2726,100,647.8928913253012,647.8928913253012,523.3452328167474,523.3452328167474,17840.9846,6.0,543.0723,1,2,3,4,5,6 +4186.5,83.0,1596.2726,100,650.2018067349397,650.2018067349397,523.3452328167474,523.3452328167474,17891.07355,6.0,544.6817000000001,1,2,3,4,5,6 +4187.0,83.0,1596.2726,100,652.5107221445783,652.5107221445783,523.3452328167474,523.3452328167474,17941.1625,6.0,546.2911,1,2,3,4,5,6 +4187.5,83.0,1596.2726,100,663.9279642650604,663.9279642650604,523.3452328167474,523.3452328167474,18174.07445,6.0,554.2484,1,2,3,4,5,6 +4188.0,83.0,1596.2726,100,675.3452063855422,675.3452063855422,523.3452328167474,523.3452328167474,18406.9864,6.0,562.2057,1,2,3,4,5,6 +4188.5,83.0,1596.2726,100,689.2972807228916,689.2972807228916,523.3452328167474,523.3452328167474,18703.5733,6.0,571.92995,1,2,3,4,5,6 +4189.0,83.0,1596.2726,100,703.249355060241,703.249355060241,523.3452328167474,523.3452328167474,19000.1602,6.0,581.6542,1,2,3,4,5,6 +4189.5,83.0,1596.2726,100,713.1102813975903,713.1102813975903,523.3452328167474,523.3452328167474,19223.4383,6.0,588.5266999999999,1,2,3,4,5,6 +4190.0,83.0,1596.2726,100,722.9712077349398,722.9712077349398,523.3452328167474,523.3452328167474,19446.7164,6.0,595.3992,1,2,3,4,5,6 +4190.5,83.0,1596.2726,100,731.786527192771,731.786527192771,523.3452328167474,523.3452328167474,19646.64165,6.0,601.54325,1,2,3,4,5,6 +4191.0,83.0,1596.2726,100,740.6018466506024,740.6018466506024,523.3452328167474,523.3452328167474,19846.5669,6.0,607.6873,1,2,3,4,5,6 +4191.5,83.0,1596.2726,100,750.2030827590362,750.2030827590362,523.3452328167474,523.3452328167474,20064.22375,6.0,614.37625,1,2,3,4,5,6 +4192.0,83.0,1596.2726,100,759.80431886747,759.80431886747,523.3452328167474,523.3452328167474,20281.8806,6.0,621.0652,1,2,3,4,5,6 +4192.5,83.0,1596.2726,100,769.1102657349398,769.1102657349398,523.3452328167474,523.3452328167474,20492.745300000002,6.0,627.5454,1,2,3,4,5,6 +4193.0,83.0,1596.2726,100,778.4162126024097,778.4162126024097,523.3452328167474,523.3452328167474,20703.61,6.0,634.0256,1,2,3,4,5,6 +4193.5,83.0,1596.2726,100,781.8665783855422,781.8665783855422,523.3452328167474,523.3452328167474,20781.80055,6.0,636.4285500000001,1,2,3,4,5,6 +4194.0,83.0,1596.2726,100,785.3169441686748,785.3169441686748,523.3452328167474,523.3452328167474,20859.9911,6.0,638.8315,1,2,3,4,5,6 +4194.5,83.0,1596.2726,100,776.3683566144579,776.3683566144579,523.3452328167474,523.3452328167474,20657.21875,6.0,632.59995,1,2,3,4,5,6 +4195.0,83.0,1596.2726,100,767.419769060241,767.419769060241,523.3452328167474,523.3452328167474,20454.4464,6.0,626.3684,1,2,3,4,5,6 +4195.5,83.0,1596.2726,100,747.8905161686748,747.8905161686748,523.3452328167474,523.3452328167474,20011.7069,6.0,612.7623,1,2,3,4,5,6 +4196.0,83.0,1596.2726,100,728.3612632771085,728.3612632771085,523.3452328167474,523.3452328167474,19568.9674,6.0,599.1562,1,2,3,4,5,6 +4196.5,83.0,1596.2726,100,708.3349934096386,708.3349934096386,523.3452328167474,523.3452328167474,19123.5239,6.0,585.1985,1,2,3,4,5,6 +4197.0,83.0,1596.2726,100,688.3087235421687,688.3087235421687,523.3452328167474,523.3452328167474,18678.0804,6.0,571.2408,1,2,3,4,5,6 +4197.5,83.0,1596.2726,100,676.8129810361446,676.8129810361446,523.3452328167474,523.3452328167474,18441.20585,6.0,563.2287,1,2,3,4,5,6 +4198.0,83.0,1596.2726,100,665.3172385301206,665.3172385301206,523.3452328167474,523.3452328167474,18204.3313,6.0,555.2166,1,2,3,4,5,6 +4198.5,83.0,1596.2726,100,658.6625052650603,658.6625052650603,523.3452328167474,523.3452328167474,18067.0888,6.0,550.57835,1,2,3,4,5,6 +4199.0,83.0,1596.2726,100,652.007772,652.007772,523.3452328167474,523.3452328167474,17929.8463,6.0,545.9401,1,2,3,4,5,6 +4199.5,83.0,1596.2726,100,640.4335291084338,640.4335291084338,523.3452328167474,523.3452328167474,17668.6297,6.0,537.8733500000001,1,2,3,4,5,6 +4200.0,83.0,1596.2726,100,628.8592862168675,628.8592862168675,523.3452328167474,523.3452328167474,17407.4131,6.0,529.8066,1,2,3,4,5,6 +4200.5,83.0,1596.2726,100,613.8150524457831,613.8150524457831,523.3452328167474,523.3452328167474,17064.711900000002,6.0,519.3212,1,2,3,4,5,6 +4201.0,83.0,1596.2726,100,598.7708186746988,598.7708186746988,523.3452328167474,523.3452328167474,16722.0107,6.0,508.8358,1,2,3,4,5,6 +4201.5,83.0,1596.2726,100,584.2217762891568,584.2217762891568,523.3452328167474,523.3452328167474,16390.684849999998,6.0,498.6957,1,2,3,4,5,6 +4202.0,83.0,1596.2726,100,569.6727339036146,569.6727339036146,523.3452328167474,523.3452328167474,16059.359,6.0,488.5556,1,2,3,4,5,6 +4202.5,83.0,1596.2726,100,550.1663008915663,550.1663008915663,523.3452328167474,523.3452328167474,15619.1101,6.0,474.96035,1,2,3,4,5,6 +4203.0,83.0,1596.2726,100,530.6598678795181,530.6598678795181,523.3452328167474,523.3452328167474,15178.8612,6.0,461.3651,1,2,3,4,5,6 +4203.5,83.0,1596.2726,100,512.4943309879518,512.4943309879518,523.3452328167474,523.3452328167474,14771.493050000001,6.0,448.70645,1,2,3,4,5,6 +4204.0,83.0,1596.2726,100,494.3287940963856,494.3287940963856,523.3452328167474,523.3452328167474,14364.1249,6.0,436.0478,1,2,3,4,5,6 +4204.5,83.0,1596.2726,100,466.61313762650605,466.61313762650605,523.3452328167474,523.3452328167474,13775.6244,6.0,416.74735,1,2,3,4,5,6 +4205.0,83.0,1596.2726,100,438.8974811566265,438.8974811566265,523.3452328167474,523.3452328167474,13187.1239,6.0,397.4469,1,2,3,4,5,6 +4205.5,83.0,1596.2726,100,416.80327380722895,416.80327380722895,523.3452328167474,523.3452328167474,12714.91625,6.0,382.06135,1,2,3,4,5,6 +4206.0,83.0,1596.2726,100,394.7090664578313,394.7090664578313,523.3452328167474,523.3452328167474,12242.7086,6.0,366.6758,1,2,3,4,5,6 +4206.5,83.0,1596.2726,100,368.3936377951808,368.3936377951808,523.3452328167474,523.3452328167474,11644.20225,6.0,348.35024999999996,1,2,3,4,5,6 +4207.0,83.0,1596.2726,100,342.07820913253016,342.07820913253016,523.3452328167474,523.3452328167474,11045.6959,6.0,330.0247,1,2,3,4,5,6 +4207.5,83.0,1596.2726,100,308.2678192409639,308.2678192409639,523.3452328167474,523.3452328167474,10344.40655,6.0,306.4799,1,2,3,4,5,6 +4208.0,83.0,1596.2726,100,274.4574293493976,274.4574293493976,523.3452328167474,523.3452328167474,9643.1172,6.0,282.9351,1,2,3,4,5,6 +4208.5,83.0,1596.2726,100,245.14848889156627,245.14848889156627,523.3452328167474,523.3452328167474,9033.94375,6.0,262.5247,1,2,3,4,5,6 +4209.0,83.0,1596.2726,100,215.83954843373496,215.83954843373496,523.3452328167474,523.3452328167474,8424.7703,6.0,242.1143,1,2,3,4,5,6 +4209.5,83.0,1596.2726,100,204.13797061445783,204.13797061445783,523.3452328167474,523.3452328167474,8160.192,6.0,233.96544999999998,1,2,3,4,5,6 +4210.0,83.0,1596.2726,100,192.43639279518075,192.43639279518075,523.3452328167474,523.3452328167474,7895.6137,6.0,225.8166,1,2,3,4,5,6 +4210.5,83.0,1596.2726,100,192.53132349397592,192.53132349397592,523.3452328167474,523.3452328167474,7897.7678,6.0,225.88295,1,2,3,4,5,6 +4211.0,83.0,1596.2726,100,192.6262541927711,192.6262541927711,523.3452328167474,523.3452328167474,7899.9219,6.0,225.9493,1,2,3,4,5,6 +4211.5,83.0,1596.2726,100,190.21464932530125,190.21464932530125,523.3452328167474,523.3452328167474,7846.21545,6.0,224.29514999999998,1,2,3,4,5,6 +4212.0,83.0,1596.2726,100,187.80304445783133,187.80304445783133,523.3452328167474,523.3452328167474,7792.509,6.0,222.641,1,2,3,4,5,6 +4212.5,83.0,1596.2726,100,181.81282608433736,181.81282608433736,523.3452328167474,523.3452328167474,7661.970499999999,6.0,218.6205,1,2,3,4,5,6 +4213.0,83.0,1596.2726,100,175.82260771084339,175.82260771084339,523.3452328167474,523.3452328167474,7531.432,6.0,214.6,1,2,3,4,5,6 +4213.5,83.0,1596.2726,100,170.41566545783135,170.41566545783135,523.3452328167474,523.3452328167474,7414.0751,6.0,210.9855,1,2,3,4,5,6 +4214.0,83.0,1596.2726,100,165.0087232048193,165.0087232048193,523.3452328167474,523.3452328167474,7296.7182,6.0,207.371,1,2,3,4,5,6 +4214.5,83.0,1596.2726,100,163.37345063855423,163.37345063855423,523.3452328167474,523.3452328167474,7261.2164,6.0,206.27755000000002,1,2,3,4,5,6 +4215.0,83.0,1596.2726,100,161.73817807228917,161.73817807228917,523.3452328167474,523.3452328167474,7225.7146,6.0,205.1841,1,2,3,4,5,6 +4215.5,83.0,1596.2726,100,167.3244845783133,167.3244845783133,523.3452328167474,523.3452328167474,7346.976000000001,6.0,208.9189,1,2,3,4,5,6 +4216.0,83.0,1596.2726,100,172.91079108433735,172.91079108433735,523.3452328167474,523.3452328167474,7468.2374,6.0,212.6537,1,2,3,4,5,6 +4216.5,83.0,1596.2726,100,183.0971289036145,183.0971289036145,523.3452328167474,523.3452328167474,7691.94335,6.0,219.5437,1,2,3,4,5,6 +4217.0,83.0,1596.2726,100,193.2834667228916,193.2834667228916,523.3452328167474,523.3452328167474,7915.6493,6.0,226.4337,1,2,3,4,5,6 +4217.5,83.0,1596.2726,100,195.33406109638554,195.33406109638554,523.3452328167474,523.3452328167474,7961.5796,6.0,227.8483,1,2,3,4,5,6 +4218.0,83.0,1596.2726,100,197.3846554698795,197.3846554698795,523.3452328167474,523.3452328167474,8007.5099,6.0,229.2629,1,2,3,4,5,6 +4218.5,83.0,1596.2726,100,190.5227176987952,190.5227176987952,523.3452328167474,523.3452328167474,7855.043900000001,6.0,224.56705,1,2,3,4,5,6 +4219.0,83.0,1596.2726,100,183.66077992771085,183.66077992771085,523.3452328167474,523.3452328167474,7702.5779,6.0,219.8712,1,2,3,4,5,6 +4219.5,83.0,1596.2726,100,171.89576284337352,171.89576284337352,523.3452328167474,523.3452328167474,7446.70165,6.0,211.9904,1,2,3,4,5,6 +4220.0,83.0,1596.2726,100,160.13074575903613,160.13074575903613,523.3452328167474,523.3452328167474,7190.8254,6.0,204.1096,1,2,3,4,5,6 +4220.5,83.0,1596.2726,100,145.41146707228916,145.41146707228916,523.3452328167474,523.3452328167474,6875.47515,6.0,194.28215,1,2,3,4,5,6 +4221.0,83.0,1596.2726,100,130.69218838554218,130.69218838554218,523.3452328167474,523.3452328167474,6560.1249,6.0,184.4547,1,2,3,4,5,6 +4221.5,83.0,1596.2726,100,120.28267214457831,120.28267214457831,523.3452328167474,523.3452328167474,6343.35665,6.0,177.58235000000002,1,2,3,4,5,6 +4222.0,83.0,1596.2726,100,109.87315590361446,109.87315590361446,523.3452328167474,523.3452328167474,6126.5884,6.0,170.71,1,2,3,4,5,6 +4222.5,83.0,1596.2726,100,111.2364155060241,111.2364155060241,523.3452328167474,523.3452328167474,6154.7197,6.0,171.60354999999998,1,2,3,4,5,6 +4223.0,83.0,1596.2726,100,112.59967510843373,112.59967510843373,523.3452328167474,523.3452328167474,6182.851,6.0,172.4971,1,2,3,4,5,6 +4223.5,83.0,1596.2726,100,121.4761518433735,121.4761518433735,523.3452328167474,523.3452328167474,6367.329299999999,6.0,178.3567,1,2,3,4,5,6 +4224.0,83.0,1596.2726,100,130.35262857831327,130.35262857831327,523.3452328167474,523.3452328167474,6551.8076,6.0,184.2163,1,2,3,4,5,6 +4224.5,83.0,1596.2726,100,140.4417537108434,140.4417537108434,523.3452328167474,523.3452328167474,6767.19715,6.0,190.95425,1,2,3,4,5,6 +4225.0,83.0,1596.2726,100,150.5308788433735,150.5308788433735,523.3452328167474,523.3452328167474,6982.5867,6.0,197.6922,1,2,3,4,5,6 +4225.5,83.0,1596.2726,100,162.0343801084337,162.0343801084337,523.3452328167474,523.3452328167474,7232.21145,6.0,205.38235,1,2,3,4,5,6 +4226.0,83.0,1596.2726,100,173.537881373494,173.537881373494,523.3452328167474,523.3452328167474,7481.8362,6.0,213.0725,1,2,3,4,5,6 +4226.5,83.0,1596.2726,100,182.0643011566265,182.0643011566265,523.3452328167474,523.3452328167474,7668.294,6.0,218.81529999999998,1,2,3,4,5,6 +4227.0,83.0,1596.2726,100,190.59072093975902,190.59072093975902,523.3452328167474,523.3452328167474,7854.7518,6.0,224.5581,1,2,3,4,5,6 +4227.5,83.0,1596.2726,100,191.1867761927711,191.1867761927711,523.3452328167474,523.3452328167474,7867.8002,6.0,224.95999999999998,1,2,3,4,5,6 +4228.0,83.0,1596.2726,100,191.78283144578313,191.78283144578313,523.3452328167474,523.3452328167474,7880.8486,6.0,225.3619,1,2,3,4,5,6 +4228.5,83.0,1596.2726,100,189.3817237228916,189.3817237228916,523.3452328167474,523.3452328167474,7827.2471000000005,6.0,223.711,1,2,3,4,5,6 +4229.0,83.0,1596.2726,100,186.98061600000003,186.98061600000003,523.3452328167474,523.3452328167474,7773.6456,6.0,222.0601,1,2,3,4,5,6 +4229.5,83.0,1596.2726,100,173.75010625301206,173.75010625301206,523.3452328167474,523.3452328167474,7486.4564,6.0,213.21485,1,2,3,4,5,6 +4230.0,83.0,1596.2726,100,160.5195965060241,160.5195965060241,523.3452328167474,523.3452328167474,7199.2672,6.0,204.3696,1,2,3,4,5,6 +4230.5,83.0,1596.2726,100,151.59611081927713,151.59611081927713,523.3452328167474,523.3452328167474,7005.76045,6.0,198.4041,1,2,3,4,5,6 +4231.0,83.0,1596.2726,100,142.67262513253013,142.67262513253013,523.3452328167474,523.3452328167474,6812.2537,6.0,192.4386,1,2,3,4,5,6 +4231.5,83.0,1596.2726,100,139.38975726506024,139.38975726506024,523.3452328167474,523.3452328167474,6742.36535,6.0,190.2439,1,2,3,4,5,6 +4232.0,83.0,1596.2726,100,136.10688939759038,136.10688939759038,523.3452328167474,523.3452328167474,6672.477,6.0,188.0492,1,2,3,4,5,6 +4232.5,83.0,1596.2726,100,136.98089078313254,136.98089078313254,523.3452328167474,523.3452328167474,6691.18555,6.0,188.63345,1,2,3,4,5,6 +4233.0,83.0,1596.2726,100,137.8548921686747,137.8548921686747,523.3452328167474,523.3452328167474,6709.8941,6.0,189.2177,1,2,3,4,5,6 +4233.5,83.0,1596.2726,100,149.29312857831326,149.29312857831326,523.3452328167474,523.3452328167474,6956.8784,6.0,196.8644,1,2,3,4,5,6 +4234.0,83.0,1596.2726,100,160.7313649879518,160.7313649879518,523.3452328167474,523.3452328167474,7203.8627,6.0,204.5111,1,2,3,4,5,6 +4234.5,83.0,1596.2726,100,179.0329083614458,179.0329083614458,523.3452328167474,523.3452328167474,7606.1718,6.0,216.902,1,2,3,4,5,6 +4235.0,83.0,1596.2726,100,197.3344517349398,197.3344517349398,523.3452328167474,523.3452328167474,8008.4809,6.0,229.2929,1,2,3,4,5,6 +4235.5,83.0,1596.2726,100,207.76222387951807,207.76222387951807,523.3452328167474,523.3452328167474,8243.19845,6.0,236.52205,1,2,3,4,5,6 +4236.0,83.0,1596.2726,100,218.1899960240964,218.1899960240964,523.3452328167474,523.3452328167474,8477.916,6.0,243.7512,1,2,3,4,5,6 +4236.5,83.0,1596.2726,100,219.09046846987954,219.09046846987954,523.3452328167474,523.3452328167474,8498.28105,6.0,244.3784,1,2,3,4,5,6 +4237.0,83.0,1596.2726,100,219.99094091566266,219.99094091566266,523.3452328167474,523.3452328167474,8518.6461,6.0,245.0056,1,2,3,4,5,6 +4237.5,83.0,1596.2726,100,224.59690539759035,224.59690539759035,523.3452328167474,523.3452328167474,8622.6713,6.0,248.21314999999998,1,2,3,4,5,6 +4238.0,83.0,1596.2726,100,229.2028698795181,229.2028698795181,523.3452328167474,523.3452328167474,8726.6965,6.0,251.4207,1,2,3,4,5,6 +4238.5,83.0,1596.2726,100,243.6802578433735,243.6802578433735,523.3452328167474,523.3452328167474,9026.41275,6.0,261.50245,1,2,3,4,5,6 +4239.0,83.0,1596.2726,100,258.1576458072289,258.1576458072289,523.3452328167474,523.3452328167474,9326.129,6.0,271.5842,1,2,3,4,5,6 +4239.5,83.0,1596.2726,100,269.2809678795181,269.2809678795181,523.3452328167474,523.3452328167474,9542.6097,6.0,279.33025,1,2,3,4,5,6 +4240.0,83.0,1596.2726,100,280.40428995180724,280.40428995180724,523.3452328167474,523.3452328167474,9759.0904,6.0,287.0763,1,2,3,4,5,6 +4240.5,83.0,1596.2726,100,292.1213852891566,292.1213852891566,523.3452328167474,523.3452328167474,9987.093099999998,6.0,295.23595,1,2,3,4,5,6 +4241.0,83.0,1596.2726,100,303.83848062650605,303.83848062650605,523.3452328167474,523.3452328167474,10215.0958,6.0,303.3956,1,2,3,4,5,6 +4241.5,83.0,1596.2726,100,313.79433766265066,313.79433766265066,523.3452328167474,523.3452328167474,10418.7822,6.0,310.32865000000004,1,2,3,4,5,6 +4242.0,83.0,1596.2726,100,323.7501946987952,323.7501946987952,523.3452328167474,523.3452328167474,10622.4686,6.0,317.2617,1,2,3,4,5,6 +4242.5,83.0,1596.2726,100,339.55752524096386,339.55752524096386,523.3452328167474,523.3452328167474,10981.9719,6.0,328.26975000000004,1,2,3,4,5,6 +4243.0,83.0,1596.2726,100,355.36485578313255,355.36485578313255,523.3452328167474,523.3452328167474,11341.4752,6.0,339.2778,1,2,3,4,5,6 +4243.5,83.0,1596.2726,100,380.0541398313253,380.0541398313253,523.3452328167474,523.3452328167474,11899.60735,6.0,356.4706,1,2,3,4,5,6 +4244.0,83.0,1596.2726,100,404.7434238795181,404.7434238795181,523.3452328167474,523.3452328167474,12457.7395,6.0,373.6634,1,2,3,4,5,6 +4244.5,83.0,1596.2726,100,435.3572050481928,435.3572050481928,523.3452328167474,523.3452328167474,13102.146700000001,6.0,394.9815,1,2,3,4,5,6 +4245.0,83.0,1596.2726,100,465.9709862168675,465.9709862168675,523.3452328167474,523.3452328167474,13746.5539,6.0,416.2996,1,2,3,4,5,6 +4245.5,83.0,1596.2726,100,498.26111573493984,498.26111573493984,523.3452328167474,523.3452328167474,14461.8419,6.0,438.7946,1,2,3,4,5,6 +4246.0,83.0,1596.2726,100,530.5512452530121,530.5512452530121,523.3452328167474,523.3452328167474,15177.1299,6.0,461.2896,1,2,3,4,5,6 +4246.5,83.0,1596.2726,100,560.2412776987952,560.2412776987952,523.3452328167474,523.3452328167474,15848.89905,6.0,481.9825,1,2,3,4,5,6 +4247.0,83.0,1596.2726,100,589.9313101445782,589.9313101445782,523.3452328167474,523.3452328167474,16520.6682,6.0,502.6754,1,2,3,4,5,6 +4247.5,83.0,1596.2726,100,607.5605798674699,607.5605798674699,523.3452328167474,523.3452328167474,16919.5033,6.0,514.9621500000001,1,2,3,4,5,6 +4248.0,83.0,1596.2726,100,625.1898495903615,625.1898495903615,523.3452328167474,523.3452328167474,17318.3384,6.0,527.2489,1,2,3,4,5,6 +4248.5,83.0,1596.2726,100,654.2267770843373,654.2267770843373,523.3452328167474,523.3452328167474,17946.84375,6.0,547.48665,1,2,3,4,5,6 +4249.0,83.0,1596.2726,100,683.2637045783133,683.2637045783133,523.3452328167474,523.3452328167474,18575.3491,6.0,567.7244,1,2,3,4,5,6 +4249.5,83.0,1596.2726,100,706.5354177108436,706.5354177108436,523.3452328167474,523.3452328167474,19088.542,6.0,583.9438,1,2,3,4,5,6 +4250.0,83.0,1596.2726,100,729.8071308433736,729.8071308433736,523.3452328167474,523.3452328167474,19601.7349,6.0,600.1632,1,2,3,4,5,6 +4250.5,83.0,1596.2726,100,747.5349824457832,747.5349824457832,523.3452328167474,523.3452328167474,20000.1599,6.0,612.51465,1,2,3,4,5,6 +4251.0,83.0,1596.2726,100,765.2628340481929,765.2628340481929,523.3452328167474,523.3452328167474,20398.5849,6.0,624.8661,1,2,3,4,5,6 +4251.5,83.0,1596.2726,100,788.5925096746988,788.5925096746988,523.3452328167474,523.3452328167474,20896.09905,6.0,641.1123,1,2,3,4,5,6 +4252.0,83.0,1596.2726,100,811.9221853012049,811.9221853012049,523.3452328167474,523.3452328167474,21393.6132,6.0,657.3585,1,2,3,4,5,6 +4252.5,83.0,1596.2726,100,814.3319645783133,814.3319645783133,523.3452328167474,523.3452328167474,21440.79365,6.0,659.03665,1,2,3,4,5,6 +4253.0,83.0,1596.2726,100,816.7417438554218,816.7417438554218,523.3452328167474,523.3452328167474,21487.9741,6.0,660.7148,1,2,3,4,5,6 +4253.5,83.0,1596.2726,100,813.8335784096386,813.8335784096386,523.3452328167474,523.3452328167474,21431.0359,6.0,658.68955,1,2,3,4,5,6 +4254.0,83.0,1596.2726,100,810.9254129638555,810.9254129638555,523.3452328167474,523.3452328167474,21374.0977,6.0,656.6643,1,2,3,4,5,6 +4254.5,83.0,1596.2726,100,816.5829174939759,816.5829174939759,523.3452328167474,523.3452328167474,21484.08975,6.0,660.604,1,2,3,4,5,6 +4255.0,83.0,1596.2726,100,822.2404220240965,822.2404220240965,523.3452328167474,523.3452328167474,21594.0818,6.0,664.5437,1,2,3,4,5,6 +4255.5,83.0,1596.2726,100,840.716765674699,840.716765674699,523.3452328167474,523.3452328167474,21951.3062,6.0,677.4102,1,2,3,4,5,6 +4256.0,83.0,1596.2726,100,859.1931093253014,859.1931093253014,523.3452328167474,523.3452328167474,22308.5306,6.0,690.2767,1,2,3,4,5,6 +4256.5,83.0,1596.2726,100,878.8067957710845,878.8067957710845,523.3452328167474,523.3452328167474,22720.870349999997,6.0,703.93525,1,2,3,4,5,6 +4257.0,83.0,1596.2726,100,898.4204822168675,898.4204822168675,523.3452328167474,523.3452328167474,23133.2101,6.0,717.5938,1,2,3,4,5,6 +4257.5,83.0,1596.2726,100,904.4586223373495,904.4586223373495,523.3452328167474,523.3452328167474,23266.355949999997,6.0,721.7982999999999,1,2,3,4,5,6 +4258.0,83.0,1596.2726,100,910.4967624578313,910.4967624578313,523.3452328167474,523.3452328167474,23399.5018,6.0,726.0028,1,2,3,4,5,6 +4258.5,83.0,1596.2726,100,902.5102610240964,902.5102610240964,523.3452328167474,523.3452328167474,23223.38085,6.0,720.4412,1,2,3,4,5,6 +4259.0,83.0,1596.2726,100,894.5237595903616,894.5237595903616,523.3452328167474,523.3452328167474,23047.2599,6.0,714.8796,1,2,3,4,5,6 +4259.5,83.0,1596.2726,100,882.723143493976,882.723143493976,523.3452328167474,523.3452328167474,22789.6719,6.0,706.6622,1,2,3,4,5,6 +4260.0,83.0,1596.2726,100,870.9225273975904,870.9225273975904,523.3452328167474,523.3452328167474,22532.0839,6.0,698.4448,1,2,3,4,5,6 +4260.5,83.0,1596.2726,100,863.8045505783134,863.8045505783134,523.3452328167474,523.3452328167474,22391.1481,6.0,693.4880499999999,1,2,3,4,5,6 +4261.0,83.0,1596.2726,100,856.6865737590362,856.6865737590362,523.3452328167474,523.3452328167474,22250.2123,6.0,688.5313,1,2,3,4,5,6 +4261.5,83.0,1596.2726,100,854.3671612048192,854.3671612048192,523.3452328167474,523.3452328167474,22206.4562,6.0,686.9160999999999,1,2,3,4,5,6 +4262.0,83.0,1596.2726,100,852.0477486506024,852.0477486506024,523.3452328167474,523.3452328167474,22162.7001,6.0,685.3009,1,2,3,4,5,6 +4262.5,83.0,1596.2726,100,851.2358173373494,851.2358173373494,523.3452328167474,523.3452328167474,22147.3791,6.0,684.7353,1,2,3,4,5,6 +4263.0,83.0,1596.2726,100,850.4238860240964,850.4238860240964,523.3452328167474,523.3452328167474,22132.0581,6.0,684.1697,1,2,3,4,5,6 +4263.5,83.0,1596.2726,100,851.3029077831326,851.3029077831326,523.3452328167474,523.3452328167474,22148.64445,6.0,684.782,1,2,3,4,5,6 +4264.0,83.0,1596.2726,100,852.1819295421687,852.1819295421687,523.3452328167474,523.3452328167474,22165.2308,6.0,685.3943,1,2,3,4,5,6 +4264.5,83.0,1596.2726,100,853.4803806867469,853.4803806867469,523.3452328167474,523.3452328167474,22189.72215,6.0,686.29835,1,2,3,4,5,6 +4265.0,83.0,1596.2726,100,854.7788318313253,854.7788318313253,523.3452328167474,523.3452328167474,22214.2135,6.0,687.2024,1,2,3,4,5,6 +4265.5,83.0,1596.2726,100,853.4128338433735,853.4128338433735,523.3452328167474,523.3452328167474,22188.44455,6.0,686.2511999999999,1,2,3,4,5,6 +4266.0,83.0,1596.2726,100,852.0468358554218,852.0468358554218,523.3452328167474,523.3452328167474,22162.6756,6.0,685.3,1,2,3,4,5,6 +4266.5,83.0,1596.2726,100,850.0062822289157,850.0062822289157,523.3452328167474,523.3452328167474,22124.187749999997,6.0,683.87925,1,2,3,4,5,6 +4267.0,83.0,1596.2726,100,847.9657286024096,847.9657286024096,523.3452328167474,523.3452328167474,22085.6999,6.0,682.4585,1,2,3,4,5,6 +4267.5,83.0,1596.2726,100,848.2550846746988,848.2550846746988,523.3452328167474,523.3452328167474,22091.1593,6.0,682.66,1,2,3,4,5,6 +4268.0,83.0,1596.2726,100,848.544440746988,848.544440746988,523.3452328167474,523.3452328167474,22096.6187,6.0,682.8615,1,2,3,4,5,6 +4268.5,83.0,1596.2726,100,851.9509923614459,851.9509923614459,523.3452328167474,523.3452328167474,22160.87515,6.0,685.2335,1,2,3,4,5,6 +4269.0,83.0,1596.2726,100,855.3575439759037,855.3575439759037,523.3452328167474,523.3452328167474,22225.1316,6.0,687.6055,1,2,3,4,5,6 +4269.5,83.0,1596.2726,100,860.336841686747,860.336841686747,523.3452328167474,523.3452328167474,22319.243000000002,6.0,691.0731499999999,1,2,3,4,5,6 +4270.0,83.0,1596.2726,100,865.3161393975904,865.3161393975904,523.3452328167474,523.3452328167474,22413.3544,6.0,694.5408,1,2,3,4,5,6 +4270.5,83.0,1596.2726,100,864.3230182409638,864.3230182409638,523.3452328167474,523.3452328167474,22394.6341,6.0,693.84925,1,2,3,4,5,6 +4271.0,83.0,1596.2726,100,863.3298970843374,863.3298970843374,523.3452328167474,523.3452328167474,22375.9138,6.0,693.1577,1,2,3,4,5,6 +4271.5,83.0,1596.2726,100,851.9728994457832,851.9728994457832,523.3452328167474,523.3452328167474,22161.14835,6.0,685.2489499999999,1,2,3,4,5,6 +4272.0,83.0,1596.2726,100,840.615901807229,840.615901807229,523.3452328167474,523.3452328167474,21946.3829,6.0,677.3402,1,2,3,4,5,6 +4272.5,83.0,1596.2726,100,826.6948625060242,826.6948625060242,523.3452328167474,523.3452328167474,21678.334450000002,6.0,667.64585,1,2,3,4,5,6 +4273.0,83.0,1596.2726,100,812.7738232048193,812.7738232048193,523.3452328167474,523.3452328167474,21410.286,6.0,657.9515,1,2,3,4,5,6 +4273.5,83.0,1596.2726,100,808.6055440120482,808.6055440120482,523.3452328167474,523.3452328167474,21328.67675,6.0,655.0487499999999,1,2,3,4,5,6 +4274.0,83.0,1596.2726,100,804.4372648192772,804.4372648192772,523.3452328167474,523.3452328167474,21247.0675,6.0,652.146,1,2,3,4,5,6 +4274.5,83.0,1596.2726,100,813.9992507349399,813.9992507349399,523.3452328167474,523.3452328167474,21433.2789,6.0,658.80495,1,2,3,4,5,6 +4275.0,83.0,1596.2726,100,823.5612366506025,823.5612366506025,523.3452328167474,523.3452328167474,21619.4903,6.0,665.4639,1,2,3,4,5,6 +4275.5,83.0,1596.2726,100,842.2192265421688,842.2192265421688,523.3452328167474,523.3452328167474,21979.934650000003,6.0,678.4567,1,2,3,4,5,6 +4276.0,83.0,1596.2726,100,860.8772164337349,860.8772164337349,523.3452328167474,523.3452328167474,22340.379,6.0,691.4495,1,2,3,4,5,6 +4276.5,83.0,1596.2726,100,883.2767537710845,883.2767537710845,523.3452328167474,523.3452328167474,22816.79335,6.0,707.0478499999999,1,2,3,4,5,6 +4277.0,83.0,1596.2726,100,905.6762911084338,905.6762911084338,523.3452328167474,523.3452328167474,23293.2077,6.0,722.6462,1,2,3,4,5,6 +4277.5,83.0,1596.2726,100,929.2661133614458,929.2661133614458,523.3452328167474,523.3452328167474,23814.3474,6.0,739.0734,1,2,3,4,5,6 +4278.0,83.0,1596.2726,100,952.855935614458,952.855935614458,523.3452328167474,523.3452328167474,24335.4871,6.0,755.5006,1,2,3,4,5,6 +4278.5,83.0,1596.2726,100,972.3792553373494,972.3792553373494,523.3452328167474,523.3452328167474,24775.2197,6.0,769.0963999999999,1,2,3,4,5,6 +4279.0,83.0,1596.2726,100,991.902575060241,991.902575060241,523.3452328167474,523.3452328167474,25214.9523,6.0,782.6922,1,2,3,4,5,6 +4279.5,83.0,1596.2726,100,1000.3194594216868,1000.3194594216868,523.3452328167474,523.3452328167474,25407.23165,6.0,788.5545500000001,1,2,3,4,5,6 +4280.0,83.0,1596.2726,100,1008.7363437831326,1008.7363437831326,523.3452328167474,523.3452328167474,25599.511,6.0,794.4169,1,2,3,4,5,6 +4280.5,83.0,1596.2726,100,1011.6171253734941,1011.6171253734941,523.3452328167474,523.3452328167474,25665.33365,6.0,796.42375,1,2,3,4,5,6 +4281.0,83.0,1596.2726,100,1014.4979069638556,1014.4979069638556,523.3452328167474,523.3452328167474,25731.1563,6.0,798.4306,1,2,3,4,5,6 +4281.5,83.0,1596.2726,100,1023.461099240964,1023.461099240964,523.3452328167474,523.3452328167474,25935.9695,6.0,804.6750999999999,1,2,3,4,5,6 +4282.0,83.0,1596.2726,100,1032.4242915180723,1032.4242915180723,523.3452328167474,523.3452328167474,26140.7827,6.0,810.9196,1,2,3,4,5,6 +4282.5,83.0,1596.2726,100,1048.519608939759,1048.519608939759,523.3452328167474,523.3452328167474,26499.21475,6.0,822.1325999999999,1,2,3,4,5,6 +4283.0,83.0,1596.2726,100,1064.614926361446,1064.614926361446,523.3452328167474,523.3452328167474,26857.6468,6.0,833.3456,1,2,3,4,5,6 +4283.5,83.0,1596.2726,100,1081.032916879518,1081.032916879518,523.3452328167474,523.3452328167474,27183.387049999998,6.0,844.78355,1,2,3,4,5,6 +4284.0,83.0,1596.2726,100,1097.4509073975903,1097.4509073975903,523.3452328167474,523.3452328167474,27509.1273,6.0,856.2215,1,2,3,4,5,6 +4284.5,83.0,1596.2726,100,1111.0702678915663,1111.0702678915663,523.3452328167474,523.3452328167474,27811.009749999997,6.0,865.70965,1,2,3,4,5,6 +4285.0,83.0,1596.2726,100,1124.6896283855422,1124.6896283855422,523.3452328167474,523.3452328167474,28112.8922,6.0,875.1978,1,2,3,4,5,6 +4285.5,83.0,1596.2726,100,1143.1098351325302,1143.1098351325302,523.3452328167474,523.3452328167474,28542.8522,6.0,888.0307,1,2,3,4,5,6 +4286.0,83.0,1596.2726,100,1161.530041879518,1161.530041879518,523.3452328167474,523.3452328167474,28972.8122,6.0,900.8636,1,2,3,4,5,6 +4286.5,82.99975,1596.27005,100,1186.9818903671398,1186.9818903671398,523.3436564756847,523.3436564756847,29520.2591,6.0,918.5902,1,2,3,4,5,6 +4287.0,82.9995,1596.2675,100,1212.4338921800734,1212.4338921800734,523.342080134622,523.342080134622,30067.706,6.0,936.3168,1,2,3,4,5,6 +4287.5,82.99485,1596.1909,100,1225.4675127553098,1225.4675127553098,523.3127601908558,523.3127601908558,30343.86715,6.0,945.3318999999999,1,2,3,4,5,6 +4288.0,82.9902,1596.1143,100,1238.5025938966292,1238.5025938966292,523.2834402470895,523.2834402470895,30620.0283,6.0,954.347,1,2,3,4,5,6 +4288.5,82.97575,1595.83385,100,1239.7609924827434,1239.7609924827434,523.1923277336654,523.1923277336654,30640.771500000003,6.0,955.1466,1,2,3,4,5,6 +4289.0,82.9613,1595.5534,100,1241.0198294385457,1241.0198294385457,523.1012152202412,523.1012152202412,30661.5147,6.0,955.9462,1,2,3,4,5,6 +4289.5,82.93584999999999,1595.0655000000002,100,1241.1658835352869,1241.1658835352869,522.9407437000583,522.9407437000583,30652.59985,6.0,955.9730999999999,1,2,3,4,5,6 +4290.0,82.9104,1594.5776,100,1241.3120272969377,1241.3120272969377,522.7802721798753,522.7802721798753,30643.685,6.0,956.0,1,2,3,4,5,6 +4290.5,82.87434999999999,1593.8794,100,1241.4058734940304,1241.4058734940304,522.5529637986339,522.5529637986339,30629.65805,6.0,956.0,1,2,3,4,5,6 +4291.0,82.8383,1593.1812,100,1241.4998013720706,1241.4998013720706,522.3256554173923,522.3256554173923,30615.6311,6.0,956.0,1,2,3,4,5,6 +4291.5,82.7961,1592.35645,100,1241.5007389840823,1241.5007389840823,522.0595690460085,522.0595690460085,30599.0612,6.0,956.0,1,2,3,4,5,6 +4292.0,82.7539,1591.5317,100,1241.5016775523568,1241.5016775523568,521.7934826746246,521.7934826746246,30582.4913,6.0,956.0,1,2,3,4,5,6 +4292.5,82.71350000000001,1590.7509,100,1241.4311757572823,1241.4311757572823,521.5387459588922,521.5387459588922,30566.805050000003,6.0,956.0,1,2,3,4,5,6 +4293.0,82.6731,1589.9701,100,1241.3606050577514,1241.3606050577514,521.2840092431596,521.2840092431596,30551.1188,6.0,956.0,1,2,3,4,5,6 +4293.5,82.63815,1589.3016499999999,100,1241.3025316515434,1241.3025316515434,521.0636367625939,521.0636367625939,30537.689599999998,6.0,956.0,1,2,3,4,5,6 +4294.0,82.6032,1588.6332,100,1241.244409102795,1241.244409102795,520.8432642820283,520.8432642820283,30524.2604,6.0,956.0,1,2,3,4,5,6 +4294.5,82.57095000000001,1588.01945,100,1241.2378642004237,1241.2378642004237,520.63991628494,520.63991628494,30511.93005,6.0,956.0,1,2,3,4,5,6 +4295.0,82.5387,1587.4057,100,1241.231314183528,1241.231314183528,520.4365682878515,520.4365682878515,30499.5997,6.0,956.0,1,2,3,4,5,6 +4295.5,82.50485,1586.75785,100,1241.2639813780645,1241.2639813780645,520.2231317079617,520.2231317079617,30486.584649999997,6.0,956.0,1,2,3,4,5,6 +4296.0,82.471,1586.11,100,1241.2966753889248,1241.2966753889248,520.0096951280719,520.0096951280719,30473.5696,6.0,956.0,1,2,3,4,5,6 +4296.5,82.4332,1585.38125,100,1241.3305167214185,1241.3305167214185,519.7713523593916,519.7713523593916,30458.92905,6.0,956.0,1,2,3,4,5,6 +4297.0,82.3954,1584.6525,100,1241.3643891042464,1241.3643891042464,519.5330095907112,519.5330095907112,30444.2885,6.0,956.0,1,2,3,4,5,6 +4297.5,82.3543,1583.85905,100,1241.3753601572719,1241.3753601572719,519.2738591200031,519.2738591200031,30428.3484,6.0,956.0,1,2,3,4,5,6 +4298.0,82.3132,1583.0656,100,1241.3863421662625,1241.3863421662625,519.0147086492951,519.0147086492951,30412.4083,6.0,956.0,1,2,3,4,5,6 +4298.5,82.2721,1582.2681,100,1241.3485289788398,1241.3485289788398,518.755558178587,518.755558178587,30396.38625,6.0,956.0,1,2,3,4,5,6 +4299.0,82.231,1581.4706,100,1241.3106779924847,1241.3106779924847,518.496407707879,518.496407707879,30380.3642,6.0,956.0,1,2,3,4,5,6 +4299.5,82.1953,1580.7776,100,1241.2092147847866,1241.2092147847866,518.2713062041254,518.2713062041254,30366.44145,6.0,956.0,1,2,3,4,5,6 +4300.0,82.1596,1580.0846,100,1241.107663401477,1241.107663401477,518.0462047003716,518.0462047003716,30352.5187,6.0,956.0,1,2,3,4,5,6 +4300.5,82.1325,1579.5697,100,1241.0162897269654,1241.0162897269654,517.8753293291747,517.8753293291747,30342.1743,6.0,956.0,1,2,3,4,5,6 +4301.0,82.1054,1579.0548,100,1240.9248557342146,1240.9248557342146,517.7044539579781,517.7044539579781,30331.8299,6.0,956.0,1,2,3,4,5,6 +4301.5,82.08345,1578.64075,100,1240.9105721068008,1240.9105721068008,517.566051212673,517.566051212673,30323.511850000003,6.0,956.0,1,2,3,4,5,6 +4302.0,82.0615,1578.2267,100,1240.896280838152,1240.896280838152,517.4276484673677,517.4276484673677,30315.1938,6.0,956.0,1,2,3,4,5,6 +4302.5,82.0414,1577.8290499999998,100,1240.8600030350533,1240.8600030350533,517.3009106459265,517.3009106459265,30307.20475,6.0,956.0,1,2,3,4,5,6 +4303.0,82.0213,1577.4314,100,1240.823707451601,1240.823707451601,517.1741728244854,517.1741728244854,30299.2157,6.0,956.0,1,2,3,4,5,6 +4303.5,82.011,1577.2109500000001,100,1240.6211105827272,1240.6211105827272,517.109227572702,517.109227572702,30294.723850000002,6.0,955.9980499999999,1,2,3,4,5,6 +4304.0,82.0007,1576.9905,100,1240.4184628180005,1240.4184628180005,517.0442823209188,517.0442823209188,30290.232,6.0,955.9961,1,2,3,4,5,6 +4304.5,82.0146,1577.24915,100,1240.0493470674735,1240.0493470674735,517.131926884005,517.131926884005,30294.3574,6.0,955.9636499999999,1,2,3,4,5,6 +4305.0,82.0285,1577.5078,100,1239.68035641271,1239.68035641271,517.2195714470912,517.2195714470912,30298.4828,6.0,955.9312,1,2,3,4,5,6 +4305.5,82.0744,1578.3929,100,1239.2635320514075,1239.2635320514075,517.508987666203,517.508987666203,30314.230900000002,6.0,955.86955,1,2,3,4,5,6 +4306.0,82.1203,1579.278,100,1238.8471736464678,1238.8471736464678,517.7984038853149,517.7984038853149,30329.979,6.0,955.8079,1,2,3,4,5,6 +4306.5,82.19785,1580.77325,100,1238.4705803497293,1238.4705803497293,518.2873848829648,518.2873848829648,30358.05165,6.0,955.7483,1,2,3,4,5,6 +4307.0,82.2754,1582.2685,100,1238.0946969811148,1238.0946969811148,518.7763658806147,518.7763658806147,30386.1243,6.0,955.6887,1,2,3,4,5,6 +4307.5,82.38204999999999,1584.3209,100,1237.7577739932426,1237.7577739932426,519.4488329779629,519.4488329779629,30425.6425,6.0,955.6367,1,2,3,4,5,6 +4308.0,82.4887,1586.3733,100,1237.4217222237712,1237.4217222237712,520.1213000753113,520.1213000753113,30465.1607,6.0,955.5847,1,2,3,4,5,6 +4308.5,82.62164999999999,1588.94225,100,1237.143902536442,1237.143902536442,520.9595982524555,520.9595982524555,30515.30905,6.0,955.5404,1,2,3,4,5,6 +4309.0,82.7546,1591.5112,100,1236.8669755155604,1236.8669755155604,521.7978964296001,521.7978964296001,30565.4574,6.0,955.4961,1,2,3,4,5,6 +4309.5,82.85225,1593.59715,100,1099.8368504415994,1099.8368504415994,522.4136152486911,522.4136152486911,27592.4969,6.0,859.3958,1,2,3,4,5,6 +4310.0,82.9499,1595.6831,100,963.1293536459959,963.1293536459959,523.0293340677821,523.0293340677821,24619.5364,6.0,763.2955,1,2,3,4,5,6 +4310.5,82.97495,1595.97785,100,860.5495528108182,860.5495528108182,523.1872834422649,523.1872834422649,22429.381800000003,6.0,691.56115,1,2,3,4,5,6 +4311.0,83.0,1596.2726,100,758.0316706265061,758.0316706265061,523.3452328167474,523.3452328167474,20239.2272,6.0,619.8268,1,2,3,4,5,6 +4311.5,83.0,1596.2726,100,727.0189979638553,727.0189979638553,523.3452328167474,523.3452328167474,19543.3615,6.0,598.21625,1,2,3,4,5,6 +4312.0,83.0,1596.2726,100,696.0063253012048,696.0063253012048,523.3452328167474,523.3452328167474,18847.4958,6.0,576.6057,1,2,3,4,5,6 +4312.5,83.0,1596.2726,100,675.7021093012048,675.7021093012048,523.3452328167474,523.3452328167474,18421.338,6.0,562.4543,1,2,3,4,5,6 +4313.0,83.0,1596.2726,100,655.3978933012048,655.3978933012048,523.3452328167474,523.3452328167474,17995.1802,6.0,548.3029,1,2,3,4,5,6 +4313.5,83.0,1596.2726,100,636.7859995662652,636.7859995662652,523.3452328167474,523.3452328167474,17579.5933,6.0,535.33105,1,2,3,4,5,6 +4314.0,83.0,1596.2726,100,618.1741058313254,618.1741058313254,523.3452328167474,523.3452328167474,17164.0064,6.0,522.3592,1,2,3,4,5,6 +4314.5,83.0,1596.2726,100,595.9479995783133,595.9479995783133,523.3452328167474,523.3452328167474,16657.723599999998,6.0,506.86834999999996,1,2,3,4,5,6 +4315.0,83.0,1596.2726,100,573.7218933253012,573.7218933253012,523.3452328167474,523.3452328167474,16151.4408,6.0,491.3775,1,2,3,4,5,6 +4315.5,83.0,1596.2726,100,558.6069179277109,558.6069179277109,523.3452328167474,523.3452328167474,15809.05835,6.0,480.84315000000004,1,2,3,4,5,6 +4316.0,83.0,1596.2726,100,543.4919425301205,543.4919425301205,523.3452328167474,523.3452328167474,15466.6759,6.0,470.3088,1,2,3,4,5,6 +4316.5,83.0,1596.2726,100,537.5176980722891,537.5176980722891,523.3452328167474,523.3452328167474,15332.677599999999,6.0,466.1449,1,2,3,4,5,6 +4317.0,83.0,1596.2726,100,531.5434536144579,531.5434536144579,523.3452328167474,523.3452328167474,15198.6793,6.0,461.981,1,2,3,4,5,6 +4317.5,83.0,1596.2726,100,503.6840319036146,503.6840319036146,523.3452328167474,523.3452328167474,14579.6845,6.0,442.57205,1,2,3,4,5,6 +4318.0,83.0,1596.2726,100,475.82461019277116,475.82461019277116,523.3452328167474,523.3452328167474,13960.6897,6.0,423.1631,1,2,3,4,5,6 +4318.5,83.0,1596.2726,100,436.67619408433734,436.67619408433734,523.3452328167474,523.3452328167474,13122.5843,6.0,395.90065,1,2,3,4,5,6 +4319.0,83.0,1596.2726,100,397.5277779759037,397.5277779759037,523.3452328167474,523.3452328167474,12284.4789,6.0,368.6382,1,2,3,4,5,6 +4319.5,83.0,1596.2726,100,348.0802938433735,348.0802938433735,523.3452328167474,523.3452328167474,11212.51175,6.0,334.20425,1,2,3,4,5,6 +4320.0,83.0,1596.2726,100,298.63280971084333,298.63280971084333,523.3452328167474,523.3452328167474,10140.5446,6.0,299.7703,1,2,3,4,5,6 +4320.5,83.0,1596.2726,100,253.6475248192771,253.6475248192771,523.3452328167474,523.3452328167474,9199.81015,6.0,268.4853,1,2,3,4,5,6 +4321.0,83.0,1596.2726,100,208.66223992771086,208.66223992771086,523.3452328167474,523.3452328167474,8259.0757,6.0,237.2003,1,2,3,4,5,6 +4321.5,83.0,1596.2726,100,185.10025792771083,185.10025792771083,523.3452328167474,523.3452328167474,7740.226549999999,6.0,221.12545,1,2,3,4,5,6 +4322.0,83.0,1596.2726,100,161.53827592771083,161.53827592771083,523.3452328167474,523.3452328167474,7221.3774,6.0,205.0506,1,2,3,4,5,6 +4322.5,83.0,1596.2726,100,162.63317374698798,162.63317374698798,523.3452328167474,523.3452328167474,7245.14245,6.0,205.78255000000001,1,2,3,4,5,6 +4323.0,83.0,1596.2726,100,163.72807156626507,163.72807156626507,523.3452328167474,523.3452328167474,7268.9075,6.0,206.5145,1,2,3,4,5,6 +4323.5,83.0,1596.2726,100,182.97663993975905,182.97663993975905,523.3452328167474,523.3452328167474,7694.2198499999995,6.0,219.61385,1,2,3,4,5,6 +4324.0,83.0,1596.2726,100,202.22520831325303,202.22520831325303,523.3452328167474,523.3452328167474,8119.5322,6.0,232.7132,1,2,3,4,5,6 +4324.5,83.0,1596.2726,100,230.3178491927711,230.3178491927711,523.3452328167474,523.3452328167474,8720.9032,6.0,252.23665,1,2,3,4,5,6 +4325.0,83.0,1596.2726,100,258.4104900722892,258.4104900722892,523.3452328167474,523.3452328167474,9322.2742,6.0,271.7601,1,2,3,4,5,6 +4325.5,83.0,1596.2726,100,283.22300146987953,283.22300146987953,523.3452328167474,523.3452328167474,9812.7693,6.0,289.03915,1,2,3,4,5,6 +4326.0,83.0,1596.2726,100,308.0355128674699,308.0355128674699,523.3452328167474,523.3452328167474,10303.2644,6.0,306.3182,1,2,3,4,5,6 +4326.5,83.0,1596.2726,100,323.93001534939765,323.93001534939765,523.3452328167474,523.3452328167474,10644.378700000001,6.0,317.38694999999996,1,2,3,4,5,6 +4327.0,83.0,1596.2726,100,339.8245178313253,339.8245178313253,523.3452328167474,523.3452328167474,10985.493,6.0,328.4557,1,2,3,4,5,6 +4327.5,83.0,1596.2726,100,350.21806015662645,350.21806015662645,523.3452328167474,523.3452328167474,11223.5735,6.0,335.6935,1,2,3,4,5,6 +4328.0,83.0,1596.2726,100,360.6116024819278,360.6116024819278,523.3452328167474,523.3452328167474,11461.654,6.0,342.9313,1,2,3,4,5,6 +4328.5,83.0,1596.2726,100,374.44638263855427,374.44638263855427,523.3452328167474,523.3452328167474,11778.557,6.0,352.5653,1,2,3,4,5,6 +4329.0,83.0,1596.2726,100,388.28116279518076,388.28116279518076,523.3452328167474,523.3452328167474,12095.46,6.0,362.1993,1,2,3,4,5,6 +4329.5,83.0,1596.2726,100,412.69158791566264,412.69158791566264,523.3452328167474,523.3452328167474,12619.304649999998,6.0,379.19775,1,2,3,4,5,6 +4330.0,83.0,1596.2726,100,437.10201303614457,437.10201303614457,523.3452328167474,523.3452328167474,13143.1493,6.0,396.1962,1,2,3,4,5,6 +4330.5,83.0,1596.2726,100,465.90891614457837,465.90891614457837,523.3452328167474,523.3452328167474,13758.01425,6.0,416.258,1,2,3,4,5,6 +4331.0,83.0,1596.2726,100,494.715819253012,494.715819253012,523.3452328167474,523.3452328167474,14372.8792,6.0,436.3198,1,2,3,4,5,6 +4331.5,83.0,1596.2726,100,517.3106947590361,517.3106947590361,523.3452328167474,523.3452328167474,14879.71875,6.0,452.06425,1,2,3,4,5,6 +4332.0,83.0,1596.2726,100,539.9055702650603,539.9055702650603,523.3452328167474,523.3452328167474,15386.5583,6.0,467.8087,1,2,3,4,5,6 +4332.5,83.0,1596.2726,100,554.9959001927712,554.9959001927712,523.3452328167474,523.3452328167474,15727.5848,6.0,478.32640000000004,1,2,3,4,5,6 +4333.0,83.0,1596.2726,100,570.086230120482,570.086230120482,523.3452328167474,523.3452328167474,16068.6113,6.0,488.8441,1,2,3,4,5,6 +4333.5,83.0,1596.2726,100,590.4347166867469,590.4347166867469,523.3452328167474,523.3452328167474,16532.1339,6.0,503.0262,1,2,3,4,5,6 +4334.0,83.0,1596.2726,100,610.7832032530121,610.7832032530121,523.3452328167474,523.3452328167474,16995.6565,6.0,517.2083,1,2,3,4,5,6 +4334.5,83.0,1596.2726,100,640.2628364096387,640.2628364096387,523.3452328167474,523.3452328167474,17643.1977,6.0,537.75445,1,2,3,4,5,6 +4335.0,83.0,1596.2726,100,669.7424695662651,669.7424695662651,523.3452328167474,523.3452328167474,18290.7389,6.0,558.3006,1,2,3,4,5,6 +4335.5,83.0,1596.2726,100,686.4813075903614,686.4813075903614,523.3452328167474,523.3452328167474,18647.459450000002,6.0,569.9670000000001,1,2,3,4,5,6 +4336.0,83.0,1596.2726,100,703.2201456144579,703.2201456144579,523.3452328167474,523.3452328167474,19004.18,6.0,581.6334,1,2,3,4,5,6 +4336.5,83.0,1596.2726,100,718.4236621445783,718.4236621445783,523.3452328167474,523.3452328167474,19346.285949999998,6.0,592.2298499999999,1,2,3,4,5,6 +4337.0,83.0,1596.2726,100,733.6271786746988,733.6271786746988,523.3452328167474,523.3452328167474,19688.3919,6.0,602.8263,1,2,3,4,5,6 +4337.5,83.0,1596.2726,100,731.5806918795181,731.5806918795181,523.3452328167474,523.3452328167474,19641.97565,6.0,601.39985,1,2,3,4,5,6 +4338.0,83.0,1596.2726,100,729.5342050843375,729.5342050843375,523.3452328167474,523.3452328167474,19595.5594,6.0,599.9734,1,2,3,4,5,6 +4338.5,83.0,1596.2726,100,728.335248614458,728.335248614458,523.3452328167474,523.3452328167474,19568.3704,6.0,599.13785,1,2,3,4,5,6 +4339.0,83.0,1596.2726,100,727.1362921445783,727.1362921445783,523.3452328167474,523.3452328167474,19541.1814,6.0,598.3023,1,2,3,4,5,6 +4339.5,83.0,1596.2726,100,732.9535358313253,732.9535358313253,523.3452328167474,523.3452328167474,19673.1089,6.0,602.35665,1,2,3,4,5,6 +4340.0,83.0,1596.2726,100,738.7707795180723,738.7707795180723,523.3452328167474,523.3452328167474,19805.0364,6.0,606.411,1,2,3,4,5,6 +4340.5,83.0,1596.2726,100,748.899611240964,748.899611240964,523.3452328167474,523.3452328167474,20034.66175,6.0,613.46775,1,2,3,4,5,6 +4341.0,83.0,1596.2726,100,759.0284429638555,759.0284429638555,523.3452328167474,523.3452328167474,20264.2871,6.0,620.5245,1,2,3,4,5,6 +4341.5,83.0,1596.2726,100,759.7075625783133,759.7075625783133,523.3452328167474,523.3452328167474,20279.68215,6.0,620.9975999999999,1,2,3,4,5,6 +4342.0,83.0,1596.2726,100,760.3866821927712,760.3866821927712,523.3452328167474,523.3452328167474,20295.0772,6.0,621.4707,1,2,3,4,5,6 +4342.5,83.0,1596.2726,100,746.3314620000001,746.3314620000001,523.3452328167474,523.3452328167474,19976.411249999997,6.0,611.6776,1,2,3,4,5,6 +4343.0,83.0,1596.2726,100,732.276241807229,732.276241807229,523.3452328167474,523.3452328167474,19657.7453,6.0,601.8845,1,2,3,4,5,6 +4343.5,83.0,1596.2726,100,718.2045913012048,718.2045913012048,523.3452328167474,523.3452328167474,19338.61635,6.0,592.0771500000001,1,2,3,4,5,6 +4344.0,83.0,1596.2726,100,704.1329407951808,704.1329407951808,523.3452328167474,523.3452328167474,19019.4874,6.0,582.2698,1,2,3,4,5,6 +4344.5,83.0,1596.2726,100,704.0046930722892,704.0046930722892,523.3452328167474,523.3452328167474,19016.5836,6.0,582.18055,1,2,3,4,5,6 +4345.0,83.0,1596.2726,100,703.8764453493976,703.8764453493976,523.3452328167474,523.3452328167474,19013.6798,6.0,582.0913,1,2,3,4,5,6 +4345.5,83.0,1596.2726,100,716.362570626506,716.362570626506,523.3452328167474,523.3452328167474,19296.8522,6.0,590.7936500000001,1,2,3,4,5,6 +4346.0,83.0,1596.2726,100,728.8486959036145,728.8486959036145,523.3452328167474,523.3452328167474,19580.0246,6.0,599.496,1,2,3,4,5,6 +4346.5,83.0,1596.2726,100,746.6673706265061,746.6673706265061,523.3452328167474,523.3452328167474,19983.98195,6.0,611.9102499999999,1,2,3,4,5,6 +4347.0,83.0,1596.2726,100,764.4860453493976,764.4860453493976,523.3452328167474,523.3452328167474,20387.9393,6.0,624.3245,1,2,3,4,5,6 +4347.5,83.0,1596.2726,100,781.945991566265,781.945991566265,523.3452328167474,523.3452328167474,20765.808449999997,6.0,636.4836,1,2,3,4,5,6 +4348.0,83.0,1596.2726,100,799.4059377831326,799.4059377831326,523.3452328167474,523.3452328167474,21143.6776,6.0,648.6427,1,2,3,4,5,6 +4348.5,83.0,1596.2726,100,810.6438156506024,810.6438156506024,523.3452328167474,523.3452328167474,21366.142249999997,6.0,656.4684500000001,1,2,3,4,5,6 +4349.0,83.0,1596.2726,100,821.8816935180722,821.8816935180722,523.3452328167474,523.3452328167474,21588.6069,6.0,664.2942,1,2,3,4,5,6 +4349.5,83.0,1596.2726,100,823.8414647710842,823.8414647710842,523.3452328167474,523.3452328167474,21626.9746,6.0,665.65895,1,2,3,4,5,6 +4350.0,83.0,1596.2726,100,825.8012360240964,825.8012360240964,523.3452328167474,523.3452328167474,21665.3423,6.0,667.0237,1,2,3,4,5,6 +4350.5,83.0,1596.2726,100,820.2957118915663,820.2957118915663,523.3452328167474,523.3452328167474,21557.5559,6.0,663.1898,1,2,3,4,5,6 +4351.0,83.0,1596.2726,100,814.7901877590361,814.7901877590361,523.3452328167474,523.3452328167474,21449.7695,6.0,659.3559,1,2,3,4,5,6 +4351.5,83.0,1596.2726,100,809.0500752650602,809.0500752650602,523.3452328167474,523.3452328167474,21337.3836,6.0,655.35845,1,2,3,4,5,6 +4352.0,83.0,1596.2726,100,803.3099627710844,803.3099627710844,523.3452328167474,523.3452328167474,21224.9977,6.0,651.361,1,2,3,4,5,6 +4352.5,83.0,1596.2726,100,798.0422217831325,798.0422217831325,523.3452328167474,523.3452328167474,21119.449,6.0,647.6927000000001,1,2,3,4,5,6 +4353.0,83.0,1596.2726,100,792.7744807951807,792.7744807951807,523.3452328167474,523.3452328167474,21013.9003,6.0,644.0244,1,2,3,4,5,6 +4353.5,83.0,1596.2726,100,780.1546310240965,780.1546310240965,523.3452328167474,523.3452328167474,20735.47565,6.0,635.23645,1,2,3,4,5,6 +4354.0,83.0,1596.2726,100,767.5347812530122,767.5347812530122,523.3452328167474,523.3452328167474,20457.051,6.0,626.4485,1,2,3,4,5,6 +4354.5,83.0,1596.2726,100,750.0200673253012,750.0200673253012,523.3452328167474,523.3452328167474,20060.003,6.0,614.24655,1,2,3,4,5,6 +4355.0,83.0,1596.2726,100,732.5053533975903,732.5053533975903,523.3452328167474,523.3452328167474,19662.955,6.0,602.0446,1,2,3,4,5,6 +4355.5,83.0,1596.2726,100,725.192494807229,725.192494807229,523.3452328167474,523.3452328167474,19497.10365,6.0,596.9476999999999,1,2,3,4,5,6 +4356.0,83.0,1596.2726,100,717.8796362168675,717.8796362168675,523.3452328167474,523.3452328167474,19331.2523,6.0,591.8508,1,2,3,4,5,6 +4356.5,83.0,1596.2726,100,725.7415411084337,725.7415411084337,523.3452328167474,523.3452328167474,19509.5566,6.0,597.3304,1,2,3,4,5,6 +4357.0,83.0,1596.2726,100,733.603446,733.603446,523.3452328167474,523.3452328167474,19687.8609,6.0,602.81,1,2,3,4,5,6 +4357.5,83.0,1596.2726,100,740.6406404457831,740.6406404457831,523.3452328167474,523.3452328167474,19847.4555,6.0,607.7146,1,2,3,4,5,6 +4358.0,83.0,1596.2726,100,747.6778348915662,747.6778348915662,523.3452328167474,523.3452328167474,20007.0501,6.0,612.6192,1,2,3,4,5,6 +4358.5,83.0,1596.2726,100,742.6451386626507,742.6451386626507,523.3452328167474,523.3452328167474,19892.9101,6.0,609.1115,1,2,3,4,5,6 +4359.0,83.0,1596.2726,100,737.6124424337349,737.6124424337349,523.3452328167474,523.3452328167474,19778.7701,6.0,605.6038,1,2,3,4,5,6 +4359.5,83.0,1596.2726,100,722.827442493976,722.827442493976,523.3452328167474,523.3452328167474,19444.2509,6.0,595.2991999999999,1,2,3,4,5,6 +4360.0,83.0,1596.2726,100,708.042442554217,708.042442554217,523.3452328167474,523.3452328167474,19109.7317,6.0,584.9946,1,2,3,4,5,6 +4360.5,83.0,1596.2726,100,688.8842409036145,688.8842409036145,523.3452328167474,523.3452328167474,18700.91905,6.0,571.64215,1,2,3,4,5,6 +4361.0,83.0,1596.2726,100,669.7260392530121,669.7260392530121,523.3452328167474,523.3452328167474,18292.1064,6.0,558.2897,1,2,3,4,5,6 +4361.5,83.0,1596.2726,100,655.8871515180725,655.8871515180725,523.3452328167474,523.3452328167474,17999.973700000002,6.0,548.6441500000001,1,2,3,4,5,6 +4362.0,83.0,1596.2726,100,642.0482637831326,642.0482637831326,523.3452328167474,523.3452328167474,17707.841,6.0,538.9986,1,2,3,4,5,6 +4362.5,83.0,1596.2726,100,623.8170056385542,623.8170056385542,523.3452328167474,523.3452328167474,17292.54965,6.0,526.2922,1,2,3,4,5,6 +4363.0,83.0,1596.2726,100,605.5857474939759,605.5857474939759,523.3452328167474,523.3452328167474,16877.2583,6.0,513.5858,1,2,3,4,5,6 +4363.5,83.0,1596.2726,100,597.7466624819277,597.7466624819277,523.3452328167474,523.3452328167474,16698.6878,6.0,508.12219999999996,1,2,3,4,5,6 +4364.0,83.0,1596.2726,100,589.9075774698795,589.9075774698795,523.3452328167474,523.3452328167474,16520.1173,6.0,502.6586,1,2,3,4,5,6 +4364.5,83.0,1596.2726,100,592.3766884337349,592.3766884337349,523.3452328167474,523.3452328167474,16576.36395,6.0,504.3795,1,2,3,4,5,6 +4365.0,83.0,1596.2726,100,594.8457993975904,594.8457993975904,523.3452328167474,523.3452328167474,16632.6106,6.0,506.1004,1,2,3,4,5,6 +4365.5,83.0,1596.2726,100,598.4691398674698,598.4691398674698,523.3452328167474,523.3452328167474,16715.15225,6.0,508.6259,1,2,3,4,5,6 +4366.0,83.0,1596.2726,100,602.0924803373493,602.0924803373493,523.3452328167474,523.3452328167474,16797.6939,6.0,511.1514,1,2,3,4,5,6 +4366.5,83.0,1596.2726,100,605.7190155903614,605.7190155903614,523.3452328167474,523.3452328167474,16880.3007,6.0,513.67885,1,2,3,4,5,6 +4367.0,83.0,1596.2726,100,609.3455508433735,609.3455508433735,523.3452328167474,523.3452328167474,16962.9075,6.0,516.2063,1,2,3,4,5,6 +4367.5,83.0,1596.2726,100,617.5283032409639,617.5283032409639,523.3452328167474,523.3452328167474,17149.2995,6.0,521.90925,1,2,3,4,5,6 +4368.0,83.0,1596.2726,100,625.7110556385543,625.7110556385543,523.3452328167474,523.3452328167474,17335.6915,6.0,527.6122,1,2,3,4,5,6 +4368.5,83.0,1596.2726,100,631.3137924578314,631.3137924578314,523.3452328167474,523.3452328167474,17463.32715,6.0,531.5174,1,2,3,4,5,6 +4369.0,83.0,1596.2726,100,636.9165292771085,636.9165292771085,523.3452328167474,523.3452328167474,17590.9628,6.0,535.4226,1,2,3,4,5,6 +4369.5,83.0,1596.2726,100,638.466455493976,638.466455493976,523.3452328167474,523.3452328167474,17626.269,6.0,536.50285,1,2,3,4,5,6 +4370.0,83.0,1596.2726,100,640.0163817108435,640.0163817108435,523.3452328167474,523.3452328167474,17661.5752,6.0,537.5831,1,2,3,4,5,6 +4370.5,83.0,1596.2726,100,648.2274307590361,648.2274307590361,523.3452328167474,523.3452328167474,17840.387,6.0,543.30585,1,2,3,4,5,6 +4371.0,83.0,1596.2726,100,656.438479807229,656.438479807229,523.3452328167474,523.3452328167474,18019.1988,6.0,549.0286,1,2,3,4,5,6 +4371.5,83.0,1596.2726,100,674.6026475060241,674.6026475060241,523.3452328167474,523.3452328167474,18396.906049999998,6.0,561.6884,1,2,3,4,5,6 +4372.0,83.0,1596.2726,100,692.7668152048194,692.7668152048194,523.3452328167474,523.3452328167474,18774.6133,6.0,574.3482,1,2,3,4,5,6 +4372.5,83.0,1596.2726,100,715.7596694096386,715.7596694096386,523.3452328167474,523.3452328167474,19289.600850000003,6.0,590.3727,1,2,3,4,5,6 +4373.0,83.0,1596.2726,100,738.7525236144579,738.7525236144579,523.3452328167474,523.3452328167474,19804.5884,6.0,606.3972,1,2,3,4,5,6 +4373.5,83.0,1596.2726,100,755.9459336385542,755.9459336385542,523.3452328167474,523.3452328167474,20194.31405,6.0,618.3741,1,2,3,4,5,6 +4374.0,83.0,1596.2726,100,773.1393436626506,773.1393436626506,523.3452328167474,523.3452328167474,20584.0397,6.0,630.351,1,2,3,4,5,6 +4374.5,83.0,1596.2726,100,778.2683397831327,778.2683397831327,523.3452328167474,523.3452328167474,20700.26105,6.0,633.9227000000001,1,2,3,4,5,6 +4375.0,83.0,1596.2726,100,783.3973359036145,783.3973359036145,523.3452328167474,523.3452328167474,20816.4824,6.0,637.4944,1,2,3,4,5,6 +4375.5,83.0,1596.2726,100,785.2055831566265,785.2055831566265,523.3452328167474,523.3452328167474,20856.1856,6.0,638.75385,1,2,3,4,5,6 +4376.0,83.0,1596.2726,100,787.0138304096387,787.0138304096387,523.3452328167474,523.3452328167474,20895.8888,6.0,640.0133,1,2,3,4,5,6 +4376.5,83.0,1596.2726,100,798.0810155783132,798.0810155783132,523.3452328167474,523.3452328167474,21117.5965,6.0,647.72,1,2,3,4,5,6 +4377.0,83.0,1596.2726,100,809.1482007469881,809.1482007469881,523.3452328167474,523.3452328167474,21339.3042,6.0,655.4267,1,2,3,4,5,6 +4377.5,83.0,1596.2726,100,826.7135748072288,826.7135748072288,523.3452328167474,523.3452328167474,21677.557699999998,6.0,667.6586,1,2,3,4,5,6 +4378.0,83.0,1596.2726,100,844.2789488674698,844.2789488674698,523.3452328167474,523.3452328167474,22015.8112,6.0,679.8905,1,2,3,4,5,6 +4378.5,83.0,1596.2726,100,854.4935833373494,854.4935833373494,523.3452328167474,523.3452328167474,22208.67625,6.0,687.0039999999999,1,2,3,4,5,6 +4379.0,83.0,1596.2726,100,864.708217807229,864.708217807229,523.3452328167474,523.3452328167474,22401.5413,6.0,694.1175,1,2,3,4,5,6 +4379.5,83.0,1596.2726,100,865.422936433735,865.422936433735,523.3452328167474,523.3452328167474,22415.021249999998,6.0,694.6151,1,2,3,4,5,6 +4380.0,83.0,1596.2726,100,866.1376550602411,866.1376550602411,523.3452328167474,523.3452328167474,22428.5012,6.0,695.1127,1,2,3,4,5,6 +4380.5,83.0,1596.2726,100,867.5077606265062,867.5077606265062,523.3452328167474,523.3452328167474,22457.1776,6.0,696.0669,1,2,3,4,5,6 +4381.0,83.0,1596.2726,100,868.8778661927711,868.8778661927711,523.3452328167474,523.3452328167474,22485.854,6.0,697.0211,1,2,3,4,5,6 +4381.5,83.0,1596.2726,100,880.0705606987951,880.0705606987951,523.3452328167474,523.3452328167474,22730.6132,6.0,704.8153,1,2,3,4,5,6 +4382.0,83.0,1596.2726,100,891.2632552048193,891.2632552048193,523.3452328167474,523.3452328167474,22975.3724,6.0,712.6095,1,2,3,4,5,6 +4382.5,83.0,1596.2726,100,910.0841790361446,910.0841790361446,523.3452328167474,523.3452328167474,23390.4172,6.0,725.7159,1,2,3,4,5,6 +4383.0,83.0,1596.2726,100,928.9051028674699,928.9051028674699,523.3452328167474,523.3452328167474,23805.462,6.0,738.8223,1,2,3,4,5,6 +4383.5,83.0,1596.2726,100,941.2319453855423,941.2319453855423,523.3452328167474,523.3452328167474,24077.2909,6.0,747.4062,1,2,3,4,5,6 +4384.0,83.0,1596.2726,100,953.5587879036145,953.5587879036145,523.3452328167474,523.3452328167474,24349.1198,6.0,755.9901,1,2,3,4,5,6 +4384.5,83.0,1596.2726,100,952.6487311084338,952.6487311084338,523.3452328167474,523.3452328167474,24329.05155,6.0,755.35635,1,2,3,4,5,6 +4385.0,83.0,1596.2726,100,951.7386743132531,951.7386743132531,523.3452328167474,523.3452328167474,24308.9833,6.0,754.7226,1,2,3,4,5,6 +4385.5,83.0,1596.2726,100,941.5774383614458,941.5774383614458,523.3452328167474,523.3452328167474,24084.9029,6.0,747.64655,1,2,3,4,5,6 +4386.0,83.0,1596.2726,100,931.4162024096386,931.4162024096386,523.3452328167474,523.3452328167474,23860.8225,6.0,740.5705,1,2,3,4,5,6 +4386.5,83.0,1596.2726,100,914.8316267710844,914.8316267710844,523.3452328167474,523.3452328167474,23495.09485,6.0,729.02145,1,2,3,4,5,6 +4387.0,83.0,1596.2726,100,898.2470511325301,898.2470511325301,523.3452328167474,523.3452328167474,23129.3672,6.0,717.4724,1,2,3,4,5,6 +4387.5,83.0,1596.2726,100,880.2070235783134,880.2070235783134,523.3452328167474,523.3452328167474,22745.9179,6.0,704.90995,1,2,3,4,5,6 +4388.0,83.0,1596.2726,100,862.1669960240964,862.1669960240964,523.3452328167474,523.3452328167474,22362.4686,6.0,692.3475,1,2,3,4,5,6 +4388.5,83.0,1596.2726,100,845.9498204457832,845.9498204457832,523.3452328167474,523.3452328167474,22050.716249999998,6.0,681.0543,1,2,3,4,5,6 +4389.0,83.0,1596.2726,100,829.73264486747,829.73264486747,523.3452328167474,523.3452328167474,21738.9639,6.0,669.7611,1,2,3,4,5,6 +4389.5,83.0,1596.2726,100,811.3731389999999,811.3731389999999,523.3452328167474,523.3452328167474,21374.868199999997,6.0,656.97605,1,2,3,4,5,6 +4390.0,83.0,1596.2726,100,793.0136331325301,793.0136331325301,523.3452328167474,523.3452328167474,21010.7725,6.0,644.191,1,2,3,4,5,6 +4390.5,83.0,1596.2726,100,778.5805157349398,778.5805157349398,523.3452328167474,523.3452328167474,20695.53485,6.0,634.14035,1,2,3,4,5,6 +4391.0,83.0,1596.2726,100,764.1473983373495,764.1473983373495,523.3452328167474,523.3452328167474,20380.2972,6.0,624.0897,1,2,3,4,5,6 +4391.5,83.0,1596.2726,100,744.6468984939761,744.6468984939761,523.3452328167474,523.3452328167474,19938.1721,6.0,610.50245,1,2,3,4,5,6 +4392.0,83.0,1596.2726,100,725.1463986506026,725.1463986506026,523.3452328167474,523.3452328167474,19496.047,6.0,596.9152,1,2,3,4,5,6 +4392.5,83.0,1596.2726,100,710.6220017349399,710.6220017349399,523.3452328167474,523.3452328167474,19166.64705,6.0,586.7922000000001,1,2,3,4,5,6 +4393.0,83.0,1596.2726,100,696.0976048192772,696.0976048192772,523.3452328167474,523.3452328167474,18837.2471,6.0,576.6692,1,2,3,4,5,6 +4393.5,83.0,1596.2726,100,677.0681072891566,677.0681072891566,523.3452328167474,523.3452328167474,18441.51455,6.0,563.40655,1,2,3,4,5,6 +4394.0,83.0,1596.2726,100,658.0386097590361,658.0386097590361,523.3452328167474,523.3452328167474,18045.782,6.0,550.1439,1,2,3,4,5,6 +4394.5,83.0,1596.2726,100,637.7124866746988,637.7124866746988,523.3452328167474,523.3452328167474,17595.9239,6.0,535.9771000000001,1,2,3,4,5,6 +4395.0,83.0,1596.2726,100,617.3863635903614,617.3863635903614,523.3452328167474,523.3452328167474,17146.0658,6.0,521.8103,1,2,3,4,5,6 +4395.5,83.0,1596.2726,100,601.5370444698794,601.5370444698794,523.3452328167474,523.3452328167474,16785.03255,6.0,510.764,1,2,3,4,5,6 +4396.0,83.0,1596.2726,100,585.6877253493976,585.6877253493976,523.3452328167474,523.3452328167474,16423.9993,6.0,499.7177,1,2,3,4,5,6 +4396.5,83.0,1596.2726,100,575.4890647951808,575.4890647951808,523.3452328167474,523.3452328167474,16191.68105,6.0,492.6096,1,2,3,4,5,6 +4397.0,83.0,1596.2726,100,565.2904042409639,565.2904042409639,523.3452328167474,523.3452328167474,15959.3628,6.0,485.5015,1,2,3,4,5,6 +4397.5,83.0,1596.2726,100,561.1221250481927,561.1221250481927,523.3452328167474,523.3452328167474,15864.486400000002,6.0,482.59630000000004,1,2,3,4,5,6 +4398.0,83.0,1596.2726,100,556.9538458554217,556.9538458554217,523.3452328167474,523.3452328167474,15769.61,6.0,479.6911,1,2,3,4,5,6 +4398.5,83.0,1596.2726,100,550.8203186385543,550.8203186385543,523.3452328167474,523.3452328167474,15631.5414,6.0,475.4163,1,2,3,4,5,6 +4399.0,83.0,1596.2726,100,544.6867914216868,544.6867914216868,523.3452328167474,523.3452328167474,15493.4728,6.0,471.1415,1,2,3,4,5,6 +4399.5,83.0,1596.2726,100,534.0495327831327,534.0495327831327,523.3452328167474,523.3452328167474,15254.89145,6.0,463.72775,1,2,3,4,5,6 +4400.0,83.0,1596.2726,100,523.4122741445784,523.4122741445784,523.3452328167474,523.3452328167474,15016.3101,6.0,456.314,1,2,3,4,5,6 +4400.5,83.0,1596.2726,100,515.3335803975904,515.3335803975904,523.3452328167474,523.3452328167474,14835.108,6.0,450.68325000000004,1,2,3,4,5,6 +4401.0,83.0,1596.2726,100,507.25488665060243,507.25488665060243,523.3452328167474,523.3452328167474,14653.9059,6.0,445.0525,1,2,3,4,5,6 +4401.5,83.0,1596.2726,100,507.5702573855422,507.5702573855422,523.3452328167474,523.3452328167474,14660.982049999999,6.0,445.2724,1,2,3,4,5,6 +4402.0,83.0,1596.2726,100,507.885628120482,507.885628120482,523.3452328167474,523.3452328167474,14668.0582,6.0,445.4923,1,2,3,4,5,6 +4402.5,83.0,1596.2726,100,511.8731738674699,511.8731738674699,523.3452328167474,523.3452328167474,14757.49365,6.0,448.27144999999996,1,2,3,4,5,6 +4403.0,83.0,1596.2726,100,515.8607196144578,515.8607196144578,523.3452328167474,523.3452328167474,14846.9291,6.0,451.0506,1,2,3,4,5,6 +4403.5,83.0,1596.2726,100,515.8871906746989,515.8871906746989,523.3452328167474,523.3452328167474,14847.52095,6.0,451.06899999999996,1,2,3,4,5,6 +4404.0,83.0,1596.2726,100,515.9136617349399,515.9136617349399,523.3452328167474,523.3452328167474,14848.1128,6.0,451.0874,1,2,3,4,5,6 +4404.5,83.0,1596.2726,100,514.5937599036146,514.5937599036146,523.3452328167474,523.3452328167474,14818.5076,6.0,450.16740000000004,1,2,3,4,5,6 +4405.0,83.0,1596.2726,100,513.2738580722892,513.2738580722892,523.3452328167474,523.3452328167474,14788.9024,6.0,449.2474,1,2,3,4,5,6 +4405.5,83.0,1596.2726,100,511.33234272289155,511.33234272289155,523.3452328167474,523.3452328167474,14745.3616,6.0,447.8944,1,2,3,4,5,6 +4406.0,83.0,1596.2726,100,509.390827373494,509.390827373494,523.3452328167474,523.3452328167474,14701.8208,6.0,446.5414,1,2,3,4,5,6 +4406.5,83.0,1596.2726,100,505.8190598313253,505.8190598313253,523.3452328167474,523.3452328167474,14621.71005,6.0,444.05205,1,2,3,4,5,6 +4407.0,83.0,1596.2726,100,502.24729228915663,502.24729228915663,523.3452328167474,523.3452328167474,14541.5993,6.0,441.5627,1,2,3,4,5,6 +4407.5,83.0,1596.2726,100,497.5071469156627,497.5071469156627,523.3452328167474,523.3452328167474,14435.3464,6.0,438.26095,1,2,3,4,5,6 +4408.0,83.0,1596.2726,100,492.7670015421687,492.7670015421687,523.3452328167474,523.3452328167474,14329.0935,6.0,434.9592,1,2,3,4,5,6 +4408.5,83.0,1596.2726,100,492.502290939759,492.502290939759,523.3452328167474,523.3452328167474,14323.16515,6.0,434.775,1,2,3,4,5,6 +4409.0,83.0,1596.2726,100,492.2375803373494,492.2375803373494,523.3452328167474,523.3452328167474,14317.2368,6.0,434.5908,1,2,3,4,5,6 +4409.5,83.0,1596.2726,100,499.07030866265063,499.07030866265063,523.3452328167474,523.3452328167474,14470.425299999999,6.0,439.351,1,2,3,4,5,6 +4410.0,83.0,1596.2726,100,505.90303698795185,505.90303698795185,523.3452328167474,523.3452328167474,14623.6138,6.0,444.1112,1,2,3,4,5,6 +4410.5,83.0,1596.2726,100,513.720671313253,513.720671313253,523.3452328167474,523.3452328167474,14798.9395,6.0,449.55935,1,2,3,4,5,6 +4411.0,83.0,1596.2726,100,521.5383056385542,521.5383056385542,523.3452328167474,523.3452328167474,14974.2652,6.0,455.0075,1,2,3,4,5,6 +4411.5,83.0,1596.2726,100,536.7746827951808,536.7746827951808,523.3452328167474,523.3452328167474,15316.671699999999,6.0,465.6269,1,2,3,4,5,6 +4412.0,83.0,1596.2726,100,552.0110599518073,552.0110599518073,523.3452328167474,523.3452328167474,15659.0782,6.0,476.2463,1,2,3,4,5,6 +4412.5,83.0,1596.2726,100,568.9598408674699,568.9598408674699,523.3452328167474,523.3452328167474,16044.05385,6.0,488.05895,1,2,3,4,5,6 +4413.0,83.0,1596.2726,100,585.9086217831326,585.9086217831326,523.3452328167474,523.3452328167474,16429.0295,6.0,499.8716,1,2,3,4,5,6 +4413.5,83.0,1596.2726,100,597.2815933373494,597.2815933373494,523.3452328167474,523.3452328167474,16688.094100000002,6.0,507.79805,1,2,3,4,5,6 +4414.0,83.0,1596.2726,100,608.6545648915663,608.6545648915663,523.3452328167474,523.3452328167474,16947.1587,6.0,515.7245,1,2,3,4,5,6 +4414.5,83.0,1596.2726,100,611.0428934819278,611.0428934819278,523.3452328167474,523.3452328167474,17001.56115,6.0,517.389,1,2,3,4,5,6 +4415.0,83.0,1596.2726,100,613.4312220722891,613.4312220722891,523.3452328167474,523.3452328167474,17055.9636,6.0,519.0535,1,2,3,4,5,6 +4415.5,83.0,1596.2726,100,615.950080373494,615.950080373494,523.3452328167474,523.3452328167474,17113.3482,6.0,520.80925,1,2,3,4,5,6 +4416.0,83.0,1596.2726,100,618.4689386746988,618.4689386746988,523.3452328167474,523.3452328167474,17170.7328,6.0,522.565,1,2,3,4,5,6 +4416.5,83.0,1596.2726,100,628.0272734096385,628.0272734096385,523.3452328167474,523.3452328167474,17388.459450000002,6.0,529.2267,1,2,3,4,5,6 +4417.0,83.0,1596.2726,100,637.5856081445784,637.5856081445784,523.3452328167474,523.3452328167474,17606.1861,6.0,535.8884,1,2,3,4,5,6 +4417.5,83.0,1596.2726,100,648.3488325180724,648.3488325180724,523.3452328167474,523.3452328167474,17841.7951,6.0,543.3900000000001,1,2,3,4,5,6 +4418.0,83.0,1596.2726,100,659.1120568915663,659.1120568915663,523.3452328167474,523.3452328167474,18077.4041,6.0,550.8916,1,2,3,4,5,6 +4418.5,83.0,1596.2726,100,663.2953972048194,663.2953972048194,523.3452328167474,523.3452328167474,18162.7085,6.0,553.80735,1,2,3,4,5,6 +4419.0,83.0,1596.2726,100,667.4787375180723,667.4787375180723,523.3452328167474,523.3452328167474,18248.0129,6.0,556.7231,1,2,3,4,5,6 +4419.5,83.0,1596.2726,100,666.5860238313254,666.5860238313254,523.3452328167474,523.3452328167474,18229.976300000002,6.0,556.10105,1,2,3,4,5,6 +4420.0,83.0,1596.2726,100,665.6933101445784,665.6933101445784,523.3452328167474,523.3452328167474,18211.9397,6.0,555.479,1,2,3,4,5,6 +4420.5,83.0,1596.2726,100,665.8370753855422,665.8370753855422,523.3452328167474,523.3452328167474,18214.83985,6.0,555.57905,1,2,3,4,5,6 +4421.0,83.0,1596.2726,100,665.9808406265062,665.9808406265062,523.3452328167474,523.3452328167474,18217.74,6.0,555.6791,1,2,3,4,5,6 +4421.5,83.0,1596.2726,100,665.8402701686747,665.8402701686747,523.3452328167474,523.3452328167474,18214.8983,6.0,555.5811,1,2,3,4,5,6 +4422.0,83.0,1596.2726,100,665.6996997108434,665.6996997108434,523.3452328167474,523.3452328167474,18212.0566,6.0,555.4831,1,2,3,4,5,6 +4422.5,83.0,1596.2726,100,656.7757576265061,656.7757576265061,523.3452328167474,523.3452328167474,18022.8105,6.0,549.26335,1,2,3,4,5,6 +4423.0,83.0,1596.2726,100,647.8518155421688,647.8518155421688,523.3452328167474,523.3452328167474,17833.5644,6.0,543.0436,1,2,3,4,5,6 +4423.5,83.0,1596.2726,100,629.1363195542168,629.1363195542168,523.3452328167474,523.3452328167474,17410.481350000002,6.0,529.99965,1,2,3,4,5,6 +4424.0,83.0,1596.2726,100,610.4208235662651,610.4208235662651,523.3452328167474,523.3452328167474,16987.3983,6.0,516.9557,1,2,3,4,5,6 +4424.5,83.0,1596.2726,100,595.5842506987952,595.5842506987952,523.3452328167474,523.3452328167474,16649.42625,6.0,506.61495,1,2,3,4,5,6 +4425.0,83.0,1596.2726,100,580.7476778313253,580.7476778313253,523.3452328167474,523.3452328167474,16311.4542,6.0,496.2742,1,2,3,4,5,6 +4425.5,83.0,1596.2726,100,583.9470249397591,583.9470249397591,523.3452328167474,523.3452328167474,16384.3416,6.0,498.5043,1,2,3,4,5,6 +4426.0,83.0,1596.2726,100,587.1463720481928,587.1463720481928,523.3452328167474,523.3452328167474,16457.229,6.0,500.7344,1,2,3,4,5,6 +4426.5,83.0,1596.2726,100,604.7774673614458,604.7774673614458,523.3452328167474,523.3452328167474,16858.84775,6.0,513.0225,1,2,3,4,5,6 +4427.0,83.0,1596.2726,100,622.4085626746989,622.4085626746989,523.3452328167474,523.3452328167474,17260.4665,6.0,525.3106,1,2,3,4,5,6 +4427.5,83.0,1596.2726,100,644.6652475662651,644.6652475662651,523.3452328167474,523.3452328167474,17746.0633,6.0,540.82285,1,2,3,4,5,6 +4428.0,83.0,1596.2726,100,666.9219324578313,666.9219324578313,523.3452328167474,523.3452328167474,18231.6601,6.0,556.3351,1,2,3,4,5,6 +4428.5,83.0,1596.2726,100,685.695390939759,685.695390939759,523.3452328167474,523.3452328167474,18629.93245,6.0,569.4195500000001,1,2,3,4,5,6 +4429.0,83.0,1596.2726,100,704.4688494216867,704.4688494216867,523.3452328167474,523.3452328167474,19028.2048,6.0,582.504,1,2,3,4,5,6 +4429.5,83.0,1596.2726,100,712.0874943975904,712.0874943975904,523.3452328167474,523.3452328167474,19200.444649999998,6.0,587.81405,1,2,3,4,5,6 +4430.0,83.0,1596.2726,100,719.7061393734941,719.7061393734941,523.3452328167474,523.3452328167474,19372.6845,6.0,593.1241,1,2,3,4,5,6 +4430.5,83.0,1596.2726,100,721.8384289156627,721.8384289156627,523.3452328167474,523.3452328167474,19421.0439,6.0,594.61025,1,2,3,4,5,6 +4431.0,83.0,1596.2726,100,723.9707184578313,723.9707184578313,523.3452328167474,523.3452328167474,19469.4033,6.0,596.0964,1,2,3,4,5,6 +4431.5,83.0,1596.2726,100,730.0782310120483,730.0782310120483,523.3452328167474,523.3452328167474,19607.9141,6.0,600.3530499999999,1,2,3,4,5,6 +4432.0,83.0,1596.2726,100,736.185743566265,736.185743566265,523.3452328167474,523.3452328167474,19746.4249,6.0,604.6097,1,2,3,4,5,6 +4432.5,83.0,1596.2726,100,749.7224960963856,749.7224960963856,523.3452328167474,523.3452328167474,20053.28985,6.0,614.0401999999999,1,2,3,4,5,6 +4433.0,83.0,1596.2726,100,763.2592486265061,763.2592486265061,523.3452328167474,523.3452328167474,20360.1548,6.0,623.4707,1,2,3,4,5,6 +4433.5,83.0,1596.2726,100,782.3266271566265,782.3266271566265,523.3452328167474,523.3452328167474,20771.235699999997,6.0,636.74875,1,2,3,4,5,6 +4434.0,83.0,1596.2726,100,801.3940056867469,801.3940056867469,523.3452328167474,523.3452328167474,21182.3166,6.0,650.0268,1,2,3,4,5,6 +4434.5,83.0,1596.2726,100,811.9906449397591,811.9906449397591,523.3452328167474,523.3452328167474,21392.36365,6.0,657.406,1,2,3,4,5,6 +4435.0,83.0,1596.2726,100,822.5872841927712,822.5872841927712,523.3452328167474,523.3452328167474,21602.4107,6.0,664.7852,1,2,3,4,5,6 +4435.5,83.0,1596.2726,100,817.1821675301205,817.1821675301205,523.3452328167474,523.3452328167474,21496.591249999998,6.0,661.0213,1,2,3,4,5,6 +4436.0,83.0,1596.2726,100,811.7770508674698,811.7770508674698,523.3452328167474,523.3452328167474,21390.7718,6.0,657.2574,1,2,3,4,5,6 +4436.5,83.0,1596.2726,100,800.2635088554217,800.2635088554217,523.3452328167474,523.3452328167474,21160.19335,6.0,649.23975,1,2,3,4,5,6 +4437.0,83.0,1596.2726,100,788.7499668433735,788.7499668433735,523.3452328167474,523.3452328167474,20929.6149,6.0,641.2221,1,2,3,4,5,6 +4437.5,83.0,1596.2726,100,781.1888279638554,781.1888279638554,523.3452328167474,523.3452328167474,20762.3615,6.0,635.95665,1,2,3,4,5,6 +4438.0,83.0,1596.2726,100,773.6276890843374,773.6276890843374,523.3452328167474,523.3452328167474,20595.1081,6.0,630.6912,1,2,3,4,5,6 +4438.5,83.0,1596.2726,100,770.9787574698796,770.9787574698796,523.3452328167474,523.3452328167474,20535.08205,6.0,628.8465,1,2,3,4,5,6 +4439.0,83.0,1596.2726,100,768.3298258554217,768.3298258554217,523.3452328167474,523.3452328167474,20475.056,6.0,627.0018,1,2,3,4,5,6 +4439.5,83.0,1596.2726,100,766.1966235180724,766.1966235180724,523.3452328167474,523.3452328167474,20426.72265,6.0,625.5164500000001,1,2,3,4,5,6 +4440.0,83.0,1596.2726,100,764.0634211807229,764.0634211807229,523.3452328167474,523.3452328167474,20378.3893,6.0,624.0311,1,2,3,4,5,6 +4440.5,83.0,1596.2726,100,756.9947353012049,756.9947353012049,523.3452328167474,523.3452328167474,20218.182699999998,6.0,619.10765,1,2,3,4,5,6 +4441.0,83.0,1596.2726,100,749.9260494216868,749.9260494216868,523.3452328167474,523.3452328167474,20057.9761,6.0,614.1842,1,2,3,4,5,6 +4441.5,83.0,1596.2726,100,735.4062164819278,735.4062164819278,523.3452328167474,523.3452328167474,19728.71185,6.0,604.0654,1,2,3,4,5,6 +4442.0,83.0,1596.2726,100,720.8863835421687,720.8863835421687,523.3452328167474,523.3452328167474,19399.4476,6.0,593.9466,1,2,3,4,5,6 +4442.5,83.0,1596.2726,100,700.5118823132531,700.5118823132531,523.3452328167474,523.3452328167474,18954.85445,6.0,579.74615,1,2,3,4,5,6 +4443.0,83.0,1596.2726,100,680.1373810843374,680.1373810843374,523.3452328167474,523.3452328167474,18510.2613,6.0,565.5457,1,2,3,4,5,6 +4443.5,83.0,1596.2726,100,658.6657000481928,658.6657000481928,523.3452328167474,523.3452328167474,18051.91945,6.0,550.5806,1,2,3,4,5,6 +4444.0,83.0,1596.2726,100,637.1940190120482,637.1940190120482,523.3452328167474,523.3452328167474,17593.5776,6.0,535.6155,1,2,3,4,5,6 +4444.5,83.0,1596.2726,100,617.1618159759037,617.1618159759037,523.3452328167474,523.3452328167474,17139.108,6.0,521.6539,1,2,3,4,5,6 +4445.0,83.0,1596.2726,100,597.129612939759,597.129612939759,523.3452328167474,523.3452328167474,16684.6384,6.0,507.6923,1,2,3,4,5,6 +4445.5,83.0,1596.2726,100,579.2885747349399,579.2885747349399,523.3452328167474,523.3452328167474,16278.6427,6.0,495.2577,1,2,3,4,5,6 +4446.0,83.0,1596.2726,100,561.4475365301205,561.4475365301205,523.3452328167474,523.3452328167474,15872.647,6.0,482.8231,1,2,3,4,5,6 +4446.5,83.0,1596.2726,100,543.2363598795181,543.2363598795181,523.3452328167474,523.3452328167474,15462.56035,6.0,470.1304,1,2,3,4,5,6 +4447.0,83.0,1596.2726,100,525.0251832289157,525.0251832289157,523.3452328167474,523.3452328167474,15052.4737,6.0,457.4377,1,2,3,4,5,6 +4447.5,83.0,1596.2726,100,498.1862665301205,498.1862665301205,523.3452328167474,523.3452328167474,14457.98185,6.0,438.7409,1,2,3,4,5,6 +4448.0,83.0,1596.2726,100,471.3473498313253,471.3473498313253,523.3452328167474,523.3452328167474,13863.49,6.0,420.0441,1,2,3,4,5,6 +4448.5,83.0,1596.2726,100,438.9563564457832,438.9563564457832,523.3452328167474,523.3452328167474,13179.49095,6.0,397.4882,1,2,3,4,5,6 +4449.0,83.0,1596.2726,100,406.56536306024105,406.56536306024105,523.3452328167474,523.3452328167474,12495.4919,6.0,374.9323,1,2,3,4,5,6 +4449.5,83.0,1596.2726,100,386.33417067469884,386.33417067469884,523.3452328167474,523.3452328167474,12041.472600000001,6.0,360.84395,1,2,3,4,5,6 +4450.0,83.0,1596.2726,100,366.1029782891567,366.1029782891567,523.3452328167474,523.3452328167474,11587.4533,6.0,346.7556,1,2,3,4,5,6 +4450.5,83.0,1596.2726,100,370.8727895060241,370.8727895060241,523.3452328167474,523.3452328167474,11696.7127,6.0,350.07715,1,2,3,4,5,6 +4451.0,83.0,1596.2726,100,375.6426007228916,375.6426007228916,523.3452328167474,523.3452328167474,11805.9721,6.0,353.3987,1,2,3,4,5,6 +4451.5,83.0,1596.2726,100,396.5716250240964,396.5716250240964,523.3452328167474,523.3452328167474,12274.66705,6.0,367.97270000000003,1,2,3,4,5,6 +4452.0,83.0,1596.2726,100,417.50064932530125,417.50064932530125,523.3452328167474,523.3452328167474,12743.362,6.0,382.5467,1,2,3,4,5,6 +4452.5,83.0,1596.2726,100,431.31306600000005,431.31306600000005,523.3452328167474,523.3452328167474,13020.43665,6.0,392.1651,1,2,3,4,5,6 +4453.0,83.0,1596.2726,100,445.1254826746988,445.1254826746988,523.3452328167474,523.3452328167474,13297.5113,6.0,401.7835,1,2,3,4,5,6 +4453.5,83.0,1596.2726,100,439.6687930843373,439.6687930843373,523.3452328167474,523.3452328167474,13192.134699999999,6.0,397.98384999999996,1,2,3,4,5,6 +4454.0,83.0,1596.2726,100,434.2121034939759,434.2121034939759,523.3452328167474,523.3452328167474,13086.7581,6.0,394.1842,1,2,3,4,5,6 +4454.5,83.0,1596.2726,100,419.55626407228914,419.55626407228914,523.3452328167474,523.3452328167474,12780.7639,6.0,383.97855,1,2,3,4,5,6 +4455.0,83.0,1596.2726,100,404.9004246506025,404.9004246506025,523.3452328167474,523.3452328167474,12474.7697,6.0,373.7729,1,2,3,4,5,6 +4455.5,83.0,1596.2726,100,397.24298587951813,397.24298587951813,523.3452328167474,523.3452328167474,12300.0617,6.0,368.4405,1,2,3,4,5,6 +4456.0,83.0,1596.2726,100,389.5855471084338,389.5855471084338,523.3452328167474,523.3452328167474,12125.3537,6.0,363.1081,1,2,3,4,5,6 +4456.5,83.0,1596.2726,100,391.1770055060241,391.1770055060241,523.3452328167474,523.3452328167474,12161.802950000001,6.0,364.21619999999996,1,2,3,4,5,6 +4457.0,83.0,1596.2726,100,392.76846390361453,392.76846390361453,523.3452328167474,523.3452328167474,12198.2522,6.0,365.3243,1,2,3,4,5,6 +4457.5,83.0,1596.2726,100,401.11917061445786,401.11917061445786,523.3452328167474,523.3452328167474,12389.536,6.0,371.1394,1,2,3,4,5,6 +4458.0,83.0,1596.2726,100,409.46987732530124,409.46987732530124,523.3452328167474,523.3452328167474,12580.8198,6.0,376.9545,1,2,3,4,5,6 +4458.5,83.0,1596.2726,100,405.6160560722892,405.6160560722892,523.3452328167474,523.3452328167474,12492.5412,6.0,374.2708,1,2,3,4,5,6 +4459.0,83.0,1596.2726,100,401.7622348192771,401.7622348192771,523.3452328167474,523.3452328167474,12404.2626,6.0,371.5871,1,2,3,4,5,6 +4459.5,83.0,1596.2726,100,382.7970893493976,382.7970893493976,523.3452328167474,523.3452328167474,11969.8468,6.0,358.3806,1,2,3,4,5,6 +4460.0,83.0,1596.2726,100,363.83194387951806,363.83194387951806,523.3452328167474,523.3452328167474,11535.431,6.0,345.1741,1,2,3,4,5,6 +4460.5,83.0,1596.2726,100,349.7525346144578,349.7525346144578,523.3452328167474,523.3452328167474,11212.93705,6.0,335.36945000000003,1,2,3,4,5,6 +4461.0,83.0,1596.2726,100,335.6731253493976,335.6731253493976,523.3452328167474,523.3452328167474,10890.4431,6.0,325.5648,1,2,3,4,5,6 +4461.5,83.0,1596.2726,100,320.52163814457833,320.52163814457833,523.3452328167474,523.3452328167474,10567.6666,6.0,315.01329999999996,1,2,3,4,5,6 +4462.0,83.0,1596.2726,100,305.37015093975907,305.37015093975907,523.3452328167474,523.3452328167474,10244.8901,6.0,304.4618,1,2,3,4,5,6 +4462.5,83.0,1596.2726,100,289.9722090361446,289.9722090361446,523.3452328167474,523.3452328167474,9945.2535,6.0,293.73905,1,2,3,4,5,6 +4463.0,83.0,1596.2726,100,274.57426713253017,274.57426713253017,523.3452328167474,523.3452328167474,9645.6169,6.0,283.0163,1,2,3,4,5,6 +4463.5,83.0,1596.2726,100,248.7293843855422,248.7293843855422,523.3452328167474,523.3452328167474,9110.0887,6.0,265.01845000000003,1,2,3,4,5,6 +4464.0,83.0,1596.2726,100,222.8845016385542,222.8845016385542,523.3452328167474,523.3452328167474,8574.5605,6.0,247.0206,1,2,3,4,5,6 +4464.5,83.0,1596.2726,100,194.06390660240967,194.06390660240967,523.3452328167474,523.3452328167474,7938.71235,6.0,227.2883,1,2,3,4,5,6 +4465.0,83.0,1596.2726,100,165.24331156626508,165.24331156626508,523.3452328167474,523.3452328167474,7302.8642,6.0,207.556,1,2,3,4,5,6 +4465.5,83.0,1596.2726,100,142.54437740963857,142.54437740963857,523.3452328167474,523.3452328167474,6818.41015,6.0,192.42635,1,2,3,4,5,6 +4466.0,83.0,1596.2726,100,119.84544325301205,119.84544325301205,523.3452328167474,523.3452328167474,6333.9561,6.0,177.2967,1,2,3,4,5,6 +4466.5,83.0,1596.2726,100,100.96381854216868,100.96381854216868,523.3452328167474,523.3452328167474,5943.5581,6.0,164.89645,1,2,3,4,5,6 +4467.0,83.0,1596.2726,100,82.0821938313253,82.0821938313253,523.3452328167474,523.3452328167474,5553.1601,6.0,152.4962,1,2,3,4,5,6 +4467.5,83.0,1596.2726,100,65.33970462650602,65.33970462650602,523.3452328167474,523.3452328167474,5208.3916,6.0,141.5238,1,2,3,4,5,6 +4468.0,83.0,1596.2726,100,48.59721542168675,48.59721542168675,523.3452328167474,523.3452328167474,4863.6231,6.0,130.5514,1,2,3,4,5,6 +4468.5,83.0,1596.2726,100,40.136516891566274,40.136516891566274,523.3452328167474,523.3452328167474,4695.69845,6.0,125.00630000000001,1,2,3,4,5,6 +4469.0,83.0,1596.2726,100,31.67581836144579,31.67581836144579,523.3452328167474,523.3452328167474,4527.7738,6.0,119.4612,1,2,3,4,5,6 +4469.5,83.0,1596.2726,100,31.539355481927718,31.539355481927718,523.3452328167474,523.3452328167474,4525.3233,6.0,119.37190000000001,1,2,3,4,5,6 +4470.0,83.0,1596.2726,100,31.402892602409644,31.402892602409644,523.3452328167474,523.3452328167474,4522.8728,6.0,119.2826,1,2,3,4,5,6 +4470.5,83.0,1596.2726,100,30.797709397590364,30.797709397590364,523.3452328167474,523.3452328167474,4511.986800000001,6.0,118.88595000000001,1,2,3,4,5,6 +4471.0,83.0,1596.2726,100,30.192526192771087,30.192526192771087,523.3452328167474,523.3452328167474,4501.1008,6.0,118.4893,1,2,3,4,5,6 +4471.5,83.0,1596.2726,100,24.80292704819277,24.80292704819277,523.3452328167474,523.3452328167474,4404.1669999999995,6.0,114.957,1,2,3,4,5,6 +4472.0,83.0,1596.2726,100,19.413327903614455,19.413327903614455,523.3452328167474,523.3452328167474,4307.2332,6.0,111.4247,1,2,3,4,5,6 +4472.5,83.0,1596.2726,100,10.27853013253012,10.27853013253012,523.3452328167474,523.3452328167474,4145.51425,6.0,105.43805,1,2,3,4,5,6 +4473.0,83.0,1596.2726,100,1.1437323614457833,1.1437323614457833,523.3452328167474,523.3452328167474,3983.7953,6.0,99.4514,1,2,3,4,5,6 +4473.5,83.0,1596.2726,100,-9.650983445783135,-9.650983445783135,523.3452328167474,523.3452328167474,3819.1649500000003,6.0,92.3768,1,2,3,4,5,6 +4474.0,83.0,1596.2726,100,-20.44569925301205,-20.44569925301205,523.3452328167474,523.3452328167474,3654.5346,6.0,85.3022,1,2,3,4,5,6 +4474.5,83.0,1596.2726,100,-29.049250228915668,-29.049250228915668,523.3452328167474,523.3452328167474,3534.9264000000003,6.0,79.6635,1,2,3,4,5,6 +4475.0,83.0,1596.2726,100,-37.652801204819276,-37.652801204819276,523.3452328167474,523.3452328167474,3415.3182,6.0,74.0248,1,2,3,4,5,6 +4475.5,83.0,1596.2726,100,-41.9000371807229,-41.9000371807229,523.3452328167474,523.3452328167474,3356.2739,6.0,71.2413,1,2,3,4,5,6 +4476.0,83.0,1596.2726,100,-46.14727315662651,-46.14727315662651,523.3452328167474,523.3452328167474,3297.2296,6.0,68.4578,1,2,3,4,5,6 +4476.5,83.0,1596.2726,100,-48.09015769879518,-48.09015769879518,523.3452328167474,523.3452328167474,3270.21895,6.0,67.18445,1,2,3,4,5,6 +4477.0,83.0,1596.2726,100,-50.03304224096386,-50.03304224096386,523.3452328167474,523.3452328167474,3243.2083,6.0,65.9111,1,2,3,4,5,6 +4477.5,83.0,1596.2726,100,-52.32050696385542,-52.32050696385542,523.3452328167474,523.3452328167474,3211.4092499999997,6.0,64.412,1,2,3,4,5,6 +4478.0,83.0,1596.2726,100,-54.60797168674699,-54.60797168674699,523.3452328167474,523.3452328167474,3179.6102,6.0,62.9129,1,2,3,4,5,6 +4478.5,83.0,1596.2726,100,-56.58326045783132,-56.58326045783132,523.3452328167474,523.3452328167474,3152.1482,6.0,61.61825,1,2,3,4,5,6 +4479.0,83.0,1596.2726,100,-58.558549228915666,-58.558549228915666,523.3452328167474,523.3452328167474,3124.6862,6.0,60.3236,1,2,3,4,5,6 +4479.5,83.0,1596.2726,100,-56.314898674698796,-56.314898674698796,523.3452328167474,523.3452328167474,3155.88225,6.0,61.79425,1,2,3,4,5,6 +4480.0,83.0,1596.2726,100,-54.07124812048193,-54.07124812048193,523.3452328167474,523.3452328167474,3187.0783,6.0,63.2649,1,2,3,4,5,6 +4480.5,83.0,1596.2726,100,-47.75516186746988,-47.75516186746988,523.3452328167474,523.3452328167474,3274.88195,6.0,67.40424999999999,1,2,3,4,5,6 +4481.0,83.0,1596.2726,100,-41.43907561445783,-41.43907561445783,523.3452328167474,523.3452328167474,3362.6856,6.0,71.5436,1,2,3,4,5,6 +4481.5,83.0,1596.2726,100,-37.12064161445783,-37.12064161445783,523.3452328167474,523.3452328167474,3422.7182,6.0,74.3737,1,2,3,4,5,6 +4482.0,83.0,1596.2726,100,-32.802207614457835,-32.802207614457835,523.3452328167474,523.3452328167474,3482.7508,6.0,77.2038,1,2,3,4,5,6 +4482.5,83.0,1596.2726,100,-31.116731313253013,-31.116731313253013,523.3452328167474,523.3452328167474,3506.18255,6.0,78.30845,1,2,3,4,5,6 +4483.0,83.0,1596.2726,100,-29.431255012048194,-29.431255012048194,523.3452328167474,523.3452328167474,3529.6143,6.0,79.4131,1,2,3,4,5,6 +4483.5,83.0,1596.2726,100,-25.972674072289156,-25.972674072289156,523.3452328167474,523.3452328167474,3577.6980000000003,6.0,81.6799,1,2,3,4,5,6 +4484.0,83.0,1596.2726,100,-22.51409313253012,-22.51409313253012,523.3452328167474,523.3452328167474,3625.7817,6.0,83.9467,1,2,3,4,5,6 +4484.5,83.0,1596.2726,100,-11.358366831325304,-11.358366831325304,523.3452328167474,523.3452328167474,3795.39585,6.0,91.25765000000001,1,2,3,4,5,6 +4485.0,83.0,1596.2726,100,-0.20264053012048194,-0.20264053012048194,523.3452328167474,523.3452328167474,3965.01,6.0,98.5686,1,2,3,4,5,6 +4485.5,83.0,1596.2726,100,23.07637496385542,23.07637496385542,523.3452328167474,523.3452328167474,4396.6674,6.0,113.82515000000001,1,2,3,4,5,6 +4486.0,83.0,1596.2726,100,46.355390457831334,46.355390457831334,523.3452328167474,523.3452328167474,4828.3248,6.0,129.0817,1,2,3,4,5,6 +4486.5,83.0,1596.2726,100,80.60483483132532,80.60483483132532,523.3452328167474,523.3452328167474,5531.4137,6.0,151.57505,1,2,3,4,5,6 +4487.0,83.0,1596.2726,100,114.85427920481929,114.85427920481929,523.3452328167474,523.3452328167474,6234.5026,6.0,174.0684,1,2,3,4,5,6 +4487.5,83.0,1596.2726,100,152.77133461445786,152.77133461445786,523.3452328167474,523.3452328167474,7049.27545,6.0,199.4564,1,2,3,4,5,6 +4488.0,83.0,1596.2726,100,190.68839002409638,190.68839002409638,523.3452328167474,523.3452328167474,7864.0483,6.0,224.8444,1,2,3,4,5,6 +4488.5,83.0,1596.2726,100,214.60727493975904,214.60727493975904,523.3452328167474,523.3452328167474,8396.6326,6.0,241.37855,1,2,3,4,5,6 +4489.0,83.0,1596.2726,100,238.5261598554217,238.5261598554217,523.3452328167474,523.3452328167474,8929.2169,6.0,257.9127,1,2,3,4,5,6 +4489.5,83.0,1596.2726,100,259.5523968433735,259.5523968433735,523.3452328167474,523.3452328167474,9345.83895,6.0,272.5552,1,2,3,4,5,6 +4490.0,83.0,1596.2726,100,280.5786338313253,280.5786338313253,523.3452328167474,523.3452328167474,9762.461,6.0,287.1977,1,2,3,4,5,6 +4490.5,83.0,1596.2726,100,285.09468798795183,285.09468798795183,523.3452328167474,523.3452328167474,9850.35175,6.0,290.3426,1,2,3,4,5,6 +4491.0,83.0,1596.2726,100,289.61074214457835,289.61074214457835,523.3452328167474,523.3452328167474,9938.2425,6.0,293.4875,1,2,3,4,5,6 +4491.5,83.0,1596.2726,100,281.748837253012,281.748837253012,523.3452328167474,523.3452328167474,9785.24805,6.0,288.0126,1,2,3,4,5,6 +4492.0,83.0,1596.2726,100,273.8869323614458,273.8869323614458,523.3452328167474,523.3452328167474,9632.2536,6.0,282.5377,1,2,3,4,5,6 +4492.5,83.0,1596.2726,100,268.8866403614458,268.8866403614458,523.3452328167474,523.3452328167474,9534.9385,6.0,279.05565,1,2,3,4,5,6 +4493.0,83.0,1596.2726,100,263.8863483614458,263.8863483614458,523.3452328167474,523.3452328167474,9437.6234,6.0,275.5736,1,2,3,4,5,6 +4493.5,83.0,1596.2726,100,262.80742445783136,262.80742445783136,523.3452328167474,523.3452328167474,9416.62015,6.0,274.82205,1,2,3,4,5,6 +4494.0,83.0,1596.2726,100,261.7285005542169,261.7285005542169,523.3452328167474,523.3452328167474,9395.6169,6.0,274.0705,1,2,3,4,5,6 +4494.5,83.0,1596.2726,100,262.9448001325302,262.9448001325302,523.3452328167474,523.3452328167474,9419.28905,6.0,274.91755,1,2,3,4,5,6 +4495.0,83.0,1596.2726,100,264.1610997108434,264.1610997108434,523.3452328167474,523.3452328167474,9442.9612,6.0,275.7646,1,2,3,4,5,6 +4495.5,83.0,1596.2726,100,276.34463338554224,276.34463338554224,523.3452328167474,523.3452328167474,9680.067350000001,6.0,284.24924999999996,1,2,3,4,5,6 +4496.0,83.0,1596.2726,100,288.528167060241,288.528167060241,523.3452328167474,523.3452328167474,9917.1735,6.0,292.7339,1,2,3,4,5,6 +4496.5,83.0,1596.2726,100,316.3428618072289,316.3428618072289,523.3452328167474,523.3452328167474,10504.32345,6.0,312.10335,1,2,3,4,5,6 +4497.0,83.0,1596.2726,100,344.15755655421685,344.15755655421685,523.3452328167474,523.3452328167474,11091.4734,6.0,331.4728,1,2,3,4,5,6 +4497.5,83.0,1596.2726,100,379.7442458674699,379.7442458674699,523.3452328167474,523.3452328167474,11886.9766,6.0,356.25445,1,2,3,4,5,6 +4498.0,83.0,1596.2726,100,415.3309351807229,415.3309351807229,523.3452328167474,523.3452328167474,12682.4798,6.0,381.0361,1,2,3,4,5,6 +4498.5,83.0,1596.2726,100,456.93568312048194,456.93568312048194,523.3452328167474,523.3452328167474,13571.29055,6.0,410.0114,1,2,3,4,5,6 +4499.0,83.0,1596.2726,100,498.540431060241,498.540431060241,523.3452328167474,523.3452328167474,14460.1013,6.0,438.9867,1,2,3,4,5,6 +4499.5,83.0,1596.2726,100,546.762944060241,546.762944060241,523.3452328167474,523.3452328167474,15548.30585,6.0,472.59209999999996,1,2,3,4,5,6 +4500.0,83.0,1596.2726,100,594.9854570602411,594.9854570602411,523.3452328167474,523.3452328167474,16636.5104,6.0,506.1975,1,2,3,4,5,6 +4500.5,83.0,1596.2726,100,642.5831617590362,642.5831617590362,523.3452328167474,523.3452328167474,17682.387150000002,6.0,539.3715500000001,1,2,3,4,5,6 +4501.0,83.0,1596.2726,100,690.1808664578314,690.1808664578314,523.3452328167474,523.3452328167474,18728.2639,6.0,572.5456,1,2,3,4,5,6 +4501.5,83.0,1596.2726,100,731.1772364096386,731.1772364096386,523.3452328167474,523.3452328167474,19638.1167,6.0,601.1109,1,2,3,4,5,6 +4502.0,83.0,1596.2726,100,772.1736063614458,772.1736063614458,523.3452328167474,523.3452328167474,20547.9695,6.0,629.6762,1,2,3,4,5,6 +4502.5,83.0,1596.2726,100,804.2035892530121,804.2035892530121,523.3452328167474,523.3452328167474,21204.276749999997,6.0,651.98215,1,2,3,4,5,6 +4503.0,83.0,1596.2726,100,836.2335721445783,836.2335721445783,523.3452328167474,523.3452328167474,21860.584,6.0,674.2881,1,2,3,4,5,6 +4503.5,83.0,1596.2726,100,857.7883175421688,857.7883175421688,523.3452328167474,523.3452328167474,22288.988449999997,6.0,689.29835,1,2,3,4,5,6 +4504.0,83.0,1596.2726,100,879.3430629397591,879.3430629397591,523.3452328167474,523.3452328167474,22717.3929,6.0,704.3086,1,2,3,4,5,6 +4504.5,83.0,1596.2726,100,883.0973895180723,883.0973895180723,523.3452328167474,523.3452328167474,22797.74255,6.0,706.9231,1,2,3,4,5,6 +4505.0,83.0,1596.2726,100,886.8517160963855,886.8517160963855,523.3452328167474,523.3452328167474,22878.0922,6.0,709.5376,1,2,3,4,5,6 +4505.5,83.0,1596.2726,100,866.8824959277109,866.8824959277109,523.3452328167474,523.3452328167474,22472.9631,6.0,695.6314,1,2,3,4,5,6 +4506.0,83.0,1596.2726,100,846.9132757590362,846.9132757590362,523.3452328167474,523.3452328167474,22067.834,6.0,681.7252,1,2,3,4,5,6 +4506.5,83.0,1596.2726,100,814.5528610120482,814.5528610120482,523.3452328167474,523.3452328167474,21418.56625,6.0,659.1902,1,2,3,4,5,6 +4507.0,83.0,1596.2726,100,782.1924462650603,782.1924462650603,523.3452328167474,523.3452328167474,20769.2985,6.0,636.6552,1,2,3,4,5,6 +4507.5,83.0,1596.2726,100,755.4014513132529,755.4014513132529,523.3452328167474,523.3452328167474,20171.95435,6.0,617.9924000000001,1,2,3,4,5,6 +4508.0,83.0,1596.2726,100,728.6104563614458,728.6104563614458,523.3452328167474,523.3452328167474,19574.6102,6.0,599.3296,1,2,3,4,5,6 +4508.5,83.0,1596.2726,100,714.7085857590363,714.7085857590363,523.3452328167474,523.3452328167474,19259.3279,6.0,589.64045,1,2,3,4,5,6 +4509.0,83.0,1596.2726,100,700.8067151566265,700.8067151566265,523.3452328167474,523.3452328167474,18944.0456,6.0,579.9513,1,2,3,4,5,6 +4509.5,83.0,1596.2726,100,696.4586153132531,696.4586153132531,523.3452328167474,523.3452328167474,18845.8963,6.0,576.9211,1,2,3,4,5,6 +4510.0,83.0,1596.2726,100,692.1105154698795,692.1105154698795,523.3452328167474,523.3452328167474,18747.747,6.0,573.8909,1,2,3,4,5,6 +4510.5,83.0,1596.2726,100,689.9156994578314,689.9156994578314,523.3452328167474,523.3452328167474,18702.4211,6.0,572.3611000000001,1,2,3,4,5,6 +4511.0,83.0,1596.2726,100,687.7208834457831,687.7208834457831,523.3452328167474,523.3452328167474,18657.0952,6.0,570.8313,1,2,3,4,5,6 +4511.5,83.0,1596.2726,100,683.6123923373494,683.6123923373494,523.3452328167474,523.3452328167474,18574.06325,6.0,567.96775,1,2,3,4,5,6 +4512.0,83.0,1596.2726,100,679.5039012289157,679.5039012289157,523.3452328167474,523.3452328167474,18491.0313,6.0,565.1042,1,2,3,4,5,6 +4512.5,83.0,1596.2726,100,676.3716445662651,676.3716445662651,523.3452328167474,523.3452328167474,18427.72795,6.0,562.9210499999999,1,2,3,4,5,6 +4513.0,83.0,1596.2726,100,673.2393879036144,673.2393879036144,523.3452328167474,523.3452328167474,18364.4246,6.0,560.7379,1,2,3,4,5,6 +4513.5,83.0,1596.2726,100,668.2340755301205,668.2340755301205,523.3452328167474,523.3452328167474,18263.275,6.0,557.2495,1,2,3,4,5,6 +4514.0,83.0,1596.2726,100,663.2287631566264,663.2287631566264,523.3452328167474,523.3452328167474,18162.1254,6.0,553.7611,1,2,3,4,5,6 +4514.5,83.0,1596.2726,100,661.69252886747,661.69252886747,523.3452328167474,523.3452328167474,18131.0815,6.0,552.69045,1,2,3,4,5,6 +4515.0,83.0,1596.2726,100,660.1562945783134,660.1562945783134,523.3452328167474,523.3452328167474,18100.0376,6.0,551.6198,1,2,3,4,5,6 +4515.5,83.0,1596.2726,100,664.4309144096386,664.4309144096386,523.3452328167474,523.3452328167474,18186.418400000002,6.0,554.5988500000001,1,2,3,4,5,6 +4516.0,83.0,1596.2726,100,668.705534240964,668.705534240964,523.3452328167474,523.3452328167474,18272.7992,6.0,557.5779,1,2,3,4,5,6 +4516.5,83.0,1596.2726,100,672.7473913012049,672.7473913012049,523.3452328167474,523.3452328167474,18354.48925,6.0,560.3951999999999,1,2,3,4,5,6 +4517.0,83.0,1596.2726,100,676.7892483614457,676.7892483614457,523.3452328167474,523.3452328167474,18436.1793,6.0,563.2125,1,2,3,4,5,6 +4517.5,83.0,1596.2726,100,682.0127187831325,682.0127187831325,523.3452328167474,523.3452328167474,18542.5965,6.0,566.8529,1,2,3,4,5,6 +4518.0,83.0,1596.2726,100,687.2361892048193,687.2361892048193,523.3452328167474,523.3452328167474,18649.0137,6.0,570.4933,1,2,3,4,5,6 +4518.5,83.0,1596.2726,100,695.1916556024097,695.1916556024097,523.3452328167474,523.3452328167474,18823.07585,6.0,576.0381,1,2,3,4,5,6 +4519.0,83.0,1596.2726,100,703.1471220000001,703.1471220000001,523.3452328167474,523.3452328167474,18997.138,6.0,581.5829,1,2,3,4,5,6 +4519.5,83.0,1596.2726,100,711.8688799518071,711.8688799518071,523.3452328167474,523.3452328167474,19194.933299999997,6.0,587.6614999999999,1,2,3,4,5,6 +4520.0,83.0,1596.2726,100,720.5906379036144,720.5906379036144,523.3452328167474,523.3452328167474,19392.7286,6.0,593.7401,1,2,3,4,5,6 +4520.5,83.0,1596.2726,100,730.7030393132532,730.7030393132532,523.3452328167474,523.3452328167474,19622.0661,6.0,600.788,1,2,3,4,5,6 +4521.0,83.0,1596.2726,100,740.8154407228916,740.8154407228916,523.3452328167474,523.3452328167474,19851.4036,6.0,607.8359,1,2,3,4,5,6 +4521.5,83.0,1596.2726,100,758.7737731084338,758.7737731084338,523.3452328167474,523.3452328167474,20254.0496,6.0,620.34445,1,2,3,4,5,6 +4522.0,83.0,1596.2726,100,776.732105493976,776.732105493976,523.3452328167474,523.3452328167474,20656.6956,6.0,632.853,1,2,3,4,5,6 +4522.5,83.0,1596.2726,100,802.6678113614457,802.6678113614457,523.3452328167474,523.3452328167474,21186.004699999998,6.0,650.914,1,2,3,4,5,6 +4523.0,83.0,1596.2726,100,828.6035172289157,828.6035172289157,523.3452328167474,523.3452328167474,21715.3138,6.0,668.975,1,2,3,4,5,6 +4523.5,83.0,1596.2726,100,855.4661666024098,855.4661666024098,523.3452328167474,523.3452328167474,22251.6492,6.0,687.6813500000001,1,2,3,4,5,6 +4524.0,83.0,1596.2726,100,882.3288159759037,882.3288159759037,523.3452328167474,523.3452328167474,22787.9846,6.0,706.3877,1,2,3,4,5,6 +4524.5,83.0,1596.2726,100,905.3978885783133,905.3978885783133,523.3452328167474,523.3452328167474,23291.889900000002,6.0,722.4524,1,2,3,4,5,6 +4525.0,83.0,1596.2726,100,928.4669611807229,928.4669611807229,523.3452328167474,523.3452328167474,23795.7952,6.0,738.5171,1,2,3,4,5,6 +4525.5,83.0,1596.2726,100,944.5873804698795,944.5873804698795,523.3452328167474,523.3452328167474,24151.7299,6.0,749.7428500000001,1,2,3,4,5,6 +4526.0,83.0,1596.2726,100,960.7077997590362,960.7077997590362,523.3452328167474,523.3452328167474,24507.6646,6.0,760.9686,1,2,3,4,5,6 +4526.5,83.0,1596.2726,100,965.5122971927711,965.5122971927711,523.3452328167474,523.3452328167474,24614.7932,6.0,764.3144500000001,1,2,3,4,5,6 +4527.0,83.0,1596.2726,100,970.3167946265061,970.3167946265061,523.3452328167474,523.3452328167474,24721.9218,6.0,767.6603,1,2,3,4,5,6 +4527.5,83.0,1596.2726,100,966.1266083493975,966.1266083493975,523.3452328167474,523.3452328167474,24628.05815,6.0,764.7420999999999,1,2,3,4,5,6 +4528.0,83.0,1596.2726,100,961.9364220722892,961.9364220722892,523.3452328167474,523.3452328167474,24534.1945,6.0,761.8239,1,2,3,4,5,6 +4528.5,83.0,1596.2726,100,959.4495116024098,959.4495116024098,523.3452328167474,523.3452328167474,24479.1938,6.0,760.09235,1,2,3,4,5,6 +4529.0,83.0,1596.2726,100,956.9626011325302,956.9626011325302,523.3452328167474,523.3452328167474,24424.1931,6.0,758.3608,1,2,3,4,5,6 +4529.5,83.0,1596.2726,100,960.8885332048194,960.8885332048194,523.3452328167474,523.3452328167474,24511.1614,6.0,761.09455,1,2,3,4,5,6 +4530.0,83.0,1596.2726,100,964.8144652771084,964.8144652771084,523.3452328167474,523.3452328167474,24598.1297,6.0,763.8283,1,2,3,4,5,6 +4530.5,83.0,1596.2726,100,969.2689057590361,969.2689057590361,523.3452328167474,523.3452328167474,24698.9251,6.0,766.9303,1,2,3,4,5,6 +4531.0,83.0,1596.2726,100,973.7233462409639,973.7233462409639,523.3452328167474,523.3452328167474,24799.7205,6.0,770.0323,1,2,3,4,5,6 +4531.5,83.0,1596.2726,100,972.4878779638553,972.4878779638553,523.3452328167474,523.3452328167474,24771.6649,6.0,769.17185,1,2,3,4,5,6 +4532.0,83.0,1596.2726,100,971.252409686747,971.252409686747,523.3452328167474,523.3452328167474,24743.6093,6.0,768.3114,1,2,3,4,5,6 +4532.5,83.0,1596.2726,100,960.6073922891567,960.6073922891567,523.3452328167474,523.3452328167474,24506.7156,6.0,760.8987,1,2,3,4,5,6 +4533.0,83.0,1596.2726,100,949.9623748915664,949.9623748915664,523.3452328167474,523.3452328167474,24269.8219,6.0,753.486,1,2,3,4,5,6 +4533.5,83.0,1596.2726,100,931.9944581566266,931.9944581566266,523.3452328167474,523.3452328167474,23873.5875,6.0,740.9736,1,2,3,4,5,6 +4534.0,83.0,1596.2726,100,914.0265414216868,914.0265414216868,523.3452328167474,523.3452328167474,23477.3531,6.0,728.4612,1,2,3,4,5,6 +4534.5,83.0,1596.2726,100,893.3038088313253,893.3038088313253,523.3452328167474,523.3452328167474,23028.02715,6.0,714.03045,1,2,3,4,5,6 +4535.0,83.0,1596.2726,100,872.5810762409639,872.5810762409639,523.3452328167474,523.3452328167474,22578.7012,6.0,699.5997,1,2,3,4,5,6 +4535.5,83.0,1596.2726,100,845.5979379036144,845.5979379036144,523.3452328167474,523.3452328167474,22048.6915,6.0,680.8091999999999,1,2,3,4,5,6 +4536.0,83.0,1596.2726,100,818.6147995662651,818.6147995662651,523.3452328167474,523.3452328167474,21518.6818,6.0,662.0187,1,2,3,4,5,6 +4536.5,83.0,1596.2726,100,786.5994213975904,786.5994213975904,523.3452328167474,523.3452328167474,20841.07085,6.0,639.7222999999999,1,2,3,4,5,6 +4537.0,83.0,1596.2726,100,754.5840432289157,754.5840432289157,523.3452328167474,523.3452328167474,20163.4599,6.0,617.4259,1,2,3,4,5,6 +4537.5,83.0,1596.2726,100,725.6835786144579,725.6835786144579,523.3452328167474,523.3452328167474,19514.3606,6.0,597.28665,1,2,3,4,5,6 +4538.0,83.0,1596.2726,100,696.783114,696.783114,523.3452328167474,523.3452328167474,18865.2613,6.0,577.1474,1,2,3,4,5,6 +4538.5,83.0,1596.2726,100,673.0426805421687,673.0426805421687,523.3452328167474,523.3452328167474,18363.01455,6.0,560.601,1,2,3,4,5,6 +4539.0,83.0,1596.2726,100,649.3022470843373,649.3022470843373,523.3452328167474,523.3452328167474,17860.7678,6.0,544.0546,1,2,3,4,5,6 +4539.5,83.0,1596.2726,100,631.4356506144579,631.4356506144579,523.3452328167474,523.3452328167474,17459.9441,6.0,531.60235,1,2,3,4,5,6 +4540.0,83.0,1596.2726,100,613.5690541445783,613.5690541445783,523.3452328167474,523.3452328167474,17059.1204,6.0,519.1501,1,2,3,4,5,6 +4540.5,83.0,1596.2726,100,603.3023903493977,603.3023903493977,523.3452328167474,523.3452328167474,16825.24785,6.0,511.99445,1,2,3,4,5,6 +4541.0,83.0,1596.2726,100,593.0357265542169,593.0357265542169,523.3452328167474,523.3452328167474,16591.3753,6.0,504.8388,1,2,3,4,5,6 +4541.5,83.0,1596.2726,100,588.2207319759036,588.2207319759036,523.3452328167474,523.3452328167474,16481.6891,6.0,501.4828,1,2,3,4,5,6 +4542.0,83.0,1596.2726,100,583.4057373975904,583.4057373975904,523.3452328167474,523.3452328167474,16372.0029,6.0,498.1268,1,2,3,4,5,6 +4542.5,83.0,1596.2726,100,574.8213551204819,574.8213551204819,523.3452328167474,523.3452328167474,16176.614399999999,6.0,492.14395,1,2,3,4,5,6 +4543.0,83.0,1596.2726,100,566.2369728433735,566.2369728433735,523.3452328167474,523.3452328167474,15981.2259,6.0,486.1611,1,2,3,4,5,6 +4543.5,83.0,1596.2726,100,549.8322178554216,549.8322178554216,523.3452328167474,523.3452328167474,15611.0767,6.0,474.72745,1,2,3,4,5,6 +4544.0,83.0,1596.2726,100,533.4274628674699,533.4274628674699,523.3452328167474,523.3452328167474,15240.9275,6.0,463.2938,1,2,3,4,5,6 +4544.5,83.0,1596.2726,100,519.2878091204819,519.2878091204819,523.3452328167474,523.3452328167474,14923.80225,6.0,453.43935,1,2,3,4,5,6 +4545.0,83.0,1596.2726,100,505.14815537349403,505.14815537349403,523.3452328167474,523.3452328167474,14606.677,6.0,443.5849,1,2,3,4,5,6 +4545.5,83.0,1596.2726,100,497.13837766265067,497.13837766265067,523.3452328167474,523.3452328167474,14427.1184,6.0,438.00525,1,2,3,4,5,6 +4546.0,83.0,1596.2726,100,489.12859995180725,489.12859995180725,523.3452328167474,523.3452328167474,14247.5598,6.0,432.4256,1,2,3,4,5,6 +4546.5,83.0,1596.2726,100,480.21971898795186,480.21971898795186,523.3452328167474,523.3452328167474,14047.92365,6.0,426.22204999999997,1,2,3,4,5,6 +4547.0,83.0,1596.2726,100,471.3108380240964,471.3108380240964,523.3452328167474,523.3452328167474,13848.2875,6.0,420.0185,1,2,3,4,5,6 +4547.5,83.0,1596.2726,100,462.5288355903615,462.5288355903615,523.3452328167474,523.3452328167474,13657.7268,6.0,413.90285,1,2,3,4,5,6 +4548.0,83.0,1596.2726,100,453.7468331566265,453.7468331566265,523.3452328167474,523.3452328167474,13467.1661,6.0,407.7872,1,2,3,4,5,6 +4548.5,83.0,1596.2726,100,453.38901744578317,453.38901744578317,523.3452328167474,523.3452328167474,13460.1862,6.0,407.5381,1,2,3,4,5,6 +4549.0,83.0,1596.2726,100,453.03120173493977,453.03120173493977,523.3452328167474,523.3452328167474,13453.2063,6.0,407.289,1,2,3,4,5,6 +4549.5,83.0,1596.2726,100,464.20244555421687,464.20244555421687,523.3452328167474,523.3452328167474,13696.2641,6.0,415.06815,1,2,3,4,5,6 +4550.0,83.0,1596.2726,100,475.37368937349396,475.37368937349396,523.3452328167474,523.3452328167474,13939.3219,6.0,422.8473,1,2,3,4,5,6 +4550.5,83.0,1596.2726,100,495.056748253012,495.056748253012,523.3452328167474,523.3452328167474,14380.56975,6.0,436.5588,1,2,3,4,5,6 +4551.0,83.0,1596.2726,100,514.7398071325301,514.7398071325301,523.3452328167474,523.3452328167474,14821.8176,6.0,450.2703,1,2,3,4,5,6 +4551.5,83.0,1596.2726,100,539.2369477951808,539.2369477951808,523.3452328167474,523.3452328167474,15373.56515,6.0,467.34345,1,2,3,4,5,6 +4552.0,83.0,1596.2726,100,563.7340884578314,563.7340884578314,523.3452328167474,523.3452328167474,15925.3127,6.0,484.4166,1,2,3,4,5,6 +4552.5,83.0,1596.2726,100,588.0637312048192,588.0637312048192,523.3452328167474,523.3452328167474,16478.8223,6.0,501.37355,1,2,3,4,5,6 +4553.0,83.0,1596.2726,100,612.3933739518072,612.3933739518072,523.3452328167474,523.3452328167474,17032.3319,6.0,518.3305,1,2,3,4,5,6 +4553.5,83.0,1596.2726,100,633.4310208795181,633.4310208795181,523.3452328167474,523.3452328167474,17503.19115,6.0,532.9929999999999,1,2,3,4,5,6 +4554.0,83.0,1596.2726,100,654.4686678072289,654.4686678072289,523.3452328167474,523.3452328167474,17974.0504,6.0,547.6555,1,2,3,4,5,6 +4554.5,83.0,1596.2726,100,667.3363414698795,667.3363414698795,523.3452328167474,523.3452328167474,18239.615250000003,6.0,556.62385,1,2,3,4,5,6 +4555.0,83.0,1596.2726,100,680.2040151325302,680.2040151325302,523.3452328167474,523.3452328167474,18505.1801,6.0,565.5922,1,2,3,4,5,6 +4555.5,83.0,1596.2726,100,682.9675025421687,682.9675025421687,523.3452328167474,523.3452328167474,18561.02725,6.0,567.5182,1,2,3,4,5,6 +4556.0,83.0,1596.2726,100,685.7309899518073,685.7309899518073,523.3452328167474,523.3452328167474,18616.8744,6.0,569.4442,1,2,3,4,5,6 +4556.5,83.0,1596.2726,100,685.8852523373495,685.8852523373495,523.3452328167474,523.3452328167474,18619.99525,6.0,569.5518500000001,1,2,3,4,5,6 +4557.0,83.0,1596.2726,100,686.0395147228917,686.0395147228917,523.3452328167474,523.3452328167474,18623.1161,6.0,569.6595,1,2,3,4,5,6 +4557.5,83.0,1596.2726,100,691.6541178795181,691.6541178795181,523.3452328167474,523.3452328167474,18744.4375,6.0,573.57275,1,2,3,4,5,6 +4558.0,83.0,1596.2726,100,697.2687210361446,697.2687210361446,523.3452328167474,523.3452328167474,18865.7589,6.0,577.486,1,2,3,4,5,6 +4558.5,83.0,1596.2726,100,713.1025226385542,713.1025226385542,523.3452328167474,523.3452328167474,19223.88355,6.0,588.5215000000001,1,2,3,4,5,6 +4559.0,83.0,1596.2726,100,728.9363242409639,728.9363242409639,523.3452328167474,523.3452328167474,19582.0082,6.0,599.557,1,2,3,4,5,6 +4559.5,83.0,1596.2726,100,751.6818109518074,751.6818109518074,523.3452328167474,523.3452328167474,20094.31695,6.0,615.4024,1,2,3,4,5,6 +4560.0,83.0,1596.2726,100,774.4272976626506,774.4272976626506,523.3452328167474,523.3452328167474,20606.6257,6.0,631.2478,1,2,3,4,5,6 +4560.5,83.0,1596.2726,100,796.3179516867469,796.3179516867469,523.3452328167474,523.3452328167474,21060.9179,6.0,646.4919,1,2,3,4,5,6 +4561.0,83.0,1596.2726,100,818.2086057108434,818.2086057108434,523.3452328167474,523.3452328167474,21515.2101,6.0,661.736,1,2,3,4,5,6 +4561.5,83.0,1596.2726,100,834.2979899638556,834.2979899638556,523.3452328167474,523.3452328167474,21823.29135,6.0,672.9402,1,2,3,4,5,6 +4562.0,83.0,1596.2726,100,850.3873742168676,850.3873742168676,523.3452328167474,523.3452328167474,22131.3726,6.0,684.1444,1,2,3,4,5,6 +4562.5,83.0,1596.2726,100,857.5062638313254,857.5062638313254,523.3452328167474,523.3452328167474,22265.666749999997,6.0,689.10175,1,2,3,4,5,6 +4563.0,83.0,1596.2726,100,864.6251534457832,864.6251534457832,523.3452328167474,523.3452328167474,22399.9609,6.0,694.0591,1,2,3,4,5,6 +4563.5,83.0,1596.2726,100,865.3992037590363,865.3992037590363,523.3452328167474,523.3452328167474,22414.570399999997,6.0,694.5984,1,2,3,4,5,6 +4564.0,83.0,1596.2726,100,866.1732540722892,866.1732540722892,523.3452328167474,523.3452328167474,22429.1799,6.0,695.1377,1,2,3,4,5,6 +4564.5,83.0,1596.2726,100,866.2093094819277,866.2093094819277,523.3452328167474,523.3452328167474,22429.8586,6.0,695.16275,1,2,3,4,5,6 +4565.0,83.0,1596.2726,100,866.2453648915664,866.2453648915664,523.3452328167474,523.3452328167474,22430.5373,6.0,695.1878,1,2,3,4,5,6 +4565.5,83.0,1596.2726,100,864.2591225783134,864.2591225783134,523.3452328167474,523.3452328167474,22393.06335,6.0,693.8045,1,2,3,4,5,6 +4566.0,83.0,1596.2726,100,862.2728802650604,862.2728802650604,523.3452328167474,523.3452328167474,22355.5894,6.0,692.4212,1,2,3,4,5,6 +4566.5,83.0,1596.2726,100,853.6675036987953,853.6675036987953,523.3452328167474,523.3452328167474,22193.25375,6.0,686.4286999999999,1,2,3,4,5,6 +4567.0,83.0,1596.2726,100,845.0621271325302,845.0621271325302,523.3452328167474,523.3452328167474,22030.9181,6.0,680.4362,1,2,3,4,5,6 +4567.5,83.0,1596.2726,100,828.798399,828.798399,523.3452328167474,523.3452328167474,21718.03935,6.0,669.11055,1,2,3,4,5,6 +4568.0,83.0,1596.2726,100,812.5346708674698,812.5346708674698,523.3452328167474,523.3452328167474,21405.1606,6.0,657.7849,1,2,3,4,5,6 +4568.5,83.0,1596.2726,100,792.1003815542167,792.1003815542167,523.3452328167474,523.3452328167474,20976.766900000002,6.0,643.55495,1,2,3,4,5,6 +4569.0,83.0,1596.2726,100,771.6660922409638,771.6660922409638,523.3452328167474,523.3452328167474,20548.3732,6.0,629.325,1,2,3,4,5,6 +4569.5,83.0,1596.2726,100,752.4052011325301,752.4052011325301,523.3452328167474,523.3452328167474,20112.903100000003,6.0,615.90725,1,2,3,4,5,6 +4570.0,83.0,1596.2726,100,733.1443100240965,733.1443100240965,523.3452328167474,523.3452328167474,19677.433,6.0,602.4895,1,2,3,4,5,6 +4570.5,83.0,1596.2726,100,717.4775499397591,717.4775499397591,523.3452328167474,523.3452328167474,19323.3182,6.0,591.5704499999999,1,2,3,4,5,6 +4571.0,83.0,1596.2726,100,701.8107898554218,701.8107898554218,523.3452328167474,523.3452328167474,18969.2034,6.0,580.6514,1,2,3,4,5,6 +4571.5,83.0,1596.2726,100,687.7245346265062,687.7245346265062,523.3452328167474,523.3452328167474,18670.8502,6.0,570.83385,1,2,3,4,5,6 +4572.0,83.0,1596.2726,100,673.6382793975904,673.6382793975904,523.3452328167474,523.3452328167474,18372.497,6.0,561.0163,1,2,3,4,5,6 +4572.5,83.0,1596.2726,100,658.7286829156627,658.7286829156627,523.3452328167474,523.3452328167474,18058.1843,6.0,550.6248,1,2,3,4,5,6 +4573.0,83.0,1596.2726,100,643.819086433735,643.819086433735,523.3452328167474,523.3452328167474,17743.8716,6.0,540.2333,1,2,3,4,5,6 +4573.5,83.0,1596.2726,100,629.5831327951809,629.5831327951809,523.3452328167474,523.3452328167474,17421.74285,6.0,530.3112,1,2,3,4,5,6 +4574.0,83.0,1596.2726,100,615.3471791566266,615.3471791566266,523.3452328167474,523.3452328167474,17099.6141,6.0,520.3891,1,2,3,4,5,6 +4574.5,83.0,1596.2726,100,604.2014936024098,604.2014936024098,523.3452328167474,523.3452328167474,16845.728,6.0,512.6211,1,2,3,4,5,6 +4575.0,83.0,1596.2726,100,593.0558080481928,593.0558080481928,523.3452328167474,523.3452328167474,16591.8419,6.0,504.8531,1,2,3,4,5,6 +4575.5,83.0,1596.2726,100,586.9286703975904,586.9286703975904,523.3452328167474,523.3452328167474,16452.2709,6.0,500.5827,1,2,3,4,5,6 +4576.0,83.0,1596.2726,100,580.801532746988,580.801532746988,523.3452328167474,523.3452328167474,16312.6999,6.0,496.3123,1,2,3,4,5,6 +4576.5,83.0,1596.2726,100,580.5203918313254,580.5203918313254,523.3452328167474,523.3452328167474,16306.289499999999,6.0,496.1162,1,2,3,4,5,6 +4577.0,83.0,1596.2726,100,580.2392509156628,580.2392509156628,523.3452328167474,523.3452328167474,16299.8791,6.0,495.9201,1,2,3,4,5,6 +4577.5,83.0,1596.2726,100,584.7128600963856,584.7128600963856,523.3452328167474,523.3452328167474,16401.78745,6.0,499.0381,1,2,3,4,5,6 +4578.0,83.0,1596.2726,100,589.1864692771085,589.1864692771085,523.3452328167474,523.3452328167474,16503.6958,6.0,502.1561,1,2,3,4,5,6 +4578.5,83.0,1596.2726,100,593.6358893855423,593.6358893855423,523.3452328167474,523.3452328167474,16605.0465,6.0,505.2571,1,2,3,4,5,6 +4579.0,83.0,1596.2726,100,598.085309493976,598.085309493976,523.3452328167474,523.3452328167474,16706.3972,6.0,508.3581,1,2,3,4,5,6 +4579.5,83.0,1596.2726,100,604.5552017349397,604.5552017349397,523.3452328167474,523.3452328167474,16853.7843,6.0,512.8676,1,2,3,4,5,6 +4580.0,83.0,1596.2726,100,611.0250939759037,611.0250939759037,523.3452328167474,523.3452328167474,17001.1714,6.0,517.3771,1,2,3,4,5,6 +4580.5,83.0,1596.2726,100,613.1687934578313,613.1687934578313,523.3452328167474,523.3452328167474,17049.99915,6.0,518.87105,1,2,3,4,5,6 +4581.0,83.0,1596.2726,100,615.3124929397591,615.3124929397591,523.3452328167474,523.3452328167474,17098.8269,6.0,520.365,1,2,3,4,5,6 +4581.5,83.0,1596.2726,100,620.4497042168675,620.4497042168675,523.3452328167474,523.3452328167474,17215.8523,6.0,523.94555,1,2,3,4,5,6 +4582.0,83.0,1596.2726,100,625.586915493976,625.586915493976,523.3452328167474,523.3452328167474,17332.8777,6.0,527.5261,1,2,3,4,5,6 +4582.5,83.0,1596.2726,100,625.463231746988,625.463231746988,523.3452328167474,523.3452328167474,17330.0602,6.0,527.4399000000001,1,2,3,4,5,6 +4583.0,83.0,1596.2726,100,625.339548,625.339548,523.3452328167474,523.3452328167474,17327.2427,6.0,527.3537,1,2,3,4,5,6 +4583.5,83.0,1596.2726,100,621.316403240964,621.316403240964,523.3452328167474,523.3452328167474,17235.59085,6.0,524.5495000000001,1,2,3,4,5,6 +4584.0,83.0,1596.2726,100,617.2932584819278,617.2932584819278,523.3452328167474,523.3452328167474,17143.939,6.0,521.7453,1,2,3,4,5,6 +4584.5,83.0,1596.2726,100,614.143202313253,614.143202313253,523.3452328167474,523.3452328167474,17072.1866,6.0,519.5499,1,2,3,4,5,6 +4585.0,83.0,1596.2726,100,610.9931461445783,610.9931461445783,523.3452328167474,523.3452328167474,17000.4342,6.0,517.3545,1,2,3,4,5,6 +4585.5,83.0,1596.2726,100,610.0990632650603,610.0990632650603,523.3452328167474,523.3452328167474,16980.0687,6.0,516.7314,1,2,3,4,5,6 +4586.0,83.0,1596.2726,100,609.2049803855423,609.2049803855423,523.3452328167474,523.3452328167474,16959.7032,6.0,516.1083,1,2,3,4,5,6 +4586.5,83.0,1596.2726,100,609.9940918192772,609.9940918192772,523.3452328167474,523.3452328167474,16977.6784,6.0,516.6583,1,2,3,4,5,6 +4587.0,83.0,1596.2726,100,610.7832032530121,610.7832032530121,523.3452328167474,523.3452328167474,16995.6536,6.0,517.2083,1,2,3,4,5,6 +4587.5,83.0,1596.2726,100,612.3253707108433,612.3253707108433,523.3452328167474,523.3452328167474,17030.78505,6.0,518.28315,1,2,3,4,5,6 +4588.0,83.0,1596.2726,100,613.8675381686749,613.8675381686749,523.3452328167474,523.3452328167474,17065.9165,6.0,519.358,1,2,3,4,5,6 +4588.5,83.0,1596.2726,100,615.2814579036145,615.2814579036145,523.3452328167474,523.3452328167474,17098.118349999997,6.0,520.3433,1,2,3,4,5,6 +4589.0,83.0,1596.2726,100,616.6953776385542,616.6953776385542,523.3452328167474,523.3452328167474,17130.3202,6.0,521.3286,1,2,3,4,5,6 +4589.5,83.0,1596.2726,100,617.947732626506,617.947732626506,523.3452328167474,523.3452328167474,17158.848149999998,6.0,522.20145,1,2,3,4,5,6 +4590.0,83.0,1596.2726,100,619.200087614458,619.200087614458,523.3452328167474,523.3452328167474,17187.3761,6.0,523.0743,1,2,3,4,5,6 +4590.5,83.0,1596.2726,100,620.5715623734941,620.5715623734941,523.3452328167474,523.3452328167474,17218.62485,6.0,524.0304,1,2,3,4,5,6 +4591.0,83.0,1596.2726,100,621.9430371325302,621.9430371325302,523.3452328167474,523.3452328167474,17249.8736,6.0,524.9865,1,2,3,4,5,6 +4591.5,83.0,1596.2726,100,623.7512843855424,623.7512843855424,523.3452328167474,523.3452328167474,17291.061999999998,6.0,526.2466999999999,1,2,3,4,5,6 +4592.0,83.0,1596.2726,100,625.5595316385543,625.5595316385543,523.3452328167474,523.3452328167474,17332.2504,6.0,527.5069,1,2,3,4,5,6 +4592.5,83.0,1596.2726,100,627.6758472650603,627.6758472650603,523.3452328167474,523.3452328167474,17380.45825,6.0,528.9819,1,2,3,4,5,6 +4593.0,83.0,1596.2726,100,629.7921628915662,629.7921628915662,523.3452328167474,523.3452328167474,17428.6661,6.0,530.4569,1,2,3,4,5,6 +4593.5,83.0,1596.2726,100,631.8281525421687,631.8281525421687,523.3452328167474,523.3452328167474,17475.0419,6.0,531.8758,1,2,3,4,5,6 +4594.0,83.0,1596.2726,100,633.864142192771,633.864142192771,523.3452328167474,523.3452328167474,17521.4177,6.0,533.2947,1,2,3,4,5,6 +4594.5,83.0,1596.2726,100,635.5523568795181,635.5523568795181,523.3452328167474,523.3452328167474,17559.87375,6.0,534.47135,1,2,3,4,5,6 +4595.0,83.0,1596.2726,100,637.2405715662651,637.2405715662651,523.3452328167474,523.3452328167474,17598.3298,6.0,535.648,1,2,3,4,5,6 +4595.5,83.0,1596.2726,100,638.0949478554217,638.0949478554217,523.3452328167474,523.3452328167474,17617.7958,6.0,536.2436,1,2,3,4,5,6 +4596.0,83.0,1596.2726,100,638.9493241445783,638.9493241445783,523.3452328167474,523.3452328167474,17637.2618,6.0,536.8392,1,2,3,4,5,6 +4596.5,83.0,1596.2726,100,639.9483784698797,639.9483784698797,523.3452328167474,523.3452328167474,17660.0226,6.0,537.5355999999999,1,2,3,4,5,6 +4597.0,83.0,1596.2726,100,640.9474327951808,640.9474327951808,523.3452328167474,523.3452328167474,17682.7834,6.0,538.232,1,2,3,4,5,6 +4597.5,83.0,1596.2726,100,641.1779135783133,641.1779135783133,523.3452328167474,523.3452328167474,17688.02635,6.0,538.3924,1,2,3,4,5,6 +4598.0,83.0,1596.2726,100,641.4083943614459,641.4083943614459,523.3452328167474,523.3452328167474,17693.2693,6.0,538.5528,1,2,3,4,5,6 +4598.5,83.0,1596.2726,100,641.3463242891565,641.3463242891565,523.3452328167474,523.3452328167474,17691.862549999998,6.0,538.5097499999999,1,2,3,4,5,6 +4599.0,83.0,1596.2726,100,641.2842542168676,641.2842542168676,523.3452328167474,523.3452328167474,17690.4558,6.0,538.4667,1,2,3,4,5,6 +4599.5,83.0,1596.2726,100,640.8479381204819,640.8479381204819,523.3452328167474,523.3452328167474,17680.51095,6.0,538.16245,1,2,3,4,5,6 +4600.0,83.0,1596.2726,100,640.4116220240965,640.4116220240965,523.3452328167474,523.3452328167474,17670.5661,6.0,537.8582,1,2,3,4,5,6 +4600.5,83.0,1596.2726,100,639.6120134457832,639.6120134457832,523.3452328167474,523.3452328167474,17652.34925,6.0,537.3008,1,2,3,4,5,6 +4601.0,83.0,1596.2726,100,638.8124048674699,638.8124048674699,523.3452328167474,523.3452328167474,17634.1324,6.0,536.7434,1,2,3,4,5,6 +4601.5,83.0,1596.2726,100,637.919691180723,637.919691180723,523.3452328167474,523.3452328167474,17613.80115,6.0,536.1213499999999,1,2,3,4,5,6 +4602.0,83.0,1596.2726,100,637.026977493976,637.026977493976,523.3452328167474,523.3452328167474,17593.4699,6.0,535.4993,1,2,3,4,5,6 +4602.5,83.0,1596.2726,100,636.2072874216868,636.2072874216868,523.3452328167474,523.3452328167474,17574.79685,6.0,534.92795,1,2,3,4,5,6 +4603.0,83.0,1596.2726,100,635.3875973493977,635.3875973493977,523.3452328167474,523.3452328167474,17556.1238,6.0,534.3566,1,2,3,4,5,6 +4603.5,83.0,1596.2726,100,634.3588771807229,634.3588771807229,523.3452328167474,523.3452328167474,17532.6936,6.0,533.63975,1,2,3,4,5,6 +4604.0,83.0,1596.2726,100,633.3301570120483,633.3301570120483,523.3452328167474,523.3452328167474,17509.2634,6.0,532.9229,1,2,3,4,5,6 +4604.5,83.0,1596.2726,100,631.5374272771085,631.5374272771085,523.3452328167474,523.3452328167474,17468.4201,6.0,531.67325,1,2,3,4,5,6 +4605.0,83.0,1596.2726,100,629.7446975421686,629.7446975421686,523.3452328167474,523.3452328167474,17427.5768,6.0,530.4236,1,2,3,4,5,6 +4605.5,83.0,1596.2726,100,627.1217805903615,627.1217805903615,523.3452328167474,523.3452328167474,17367.8338,6.0,528.59565,1,2,3,4,5,6 +4606.0,83.0,1596.2726,100,624.4988636385543,624.4988636385543,523.3452328167474,523.3452328167474,17308.0908,6.0,526.7677,1,2,3,4,5,6 +4606.5,83.0,1596.2726,100,621.2616355301207,621.2616355301207,523.3452328167474,523.3452328167474,17234.3486,6.0,524.51145,1,2,3,4,5,6 +4607.0,83.0,1596.2726,100,618.0244074216868,618.0244074216868,523.3452328167474,523.3452328167474,17160.6064,6.0,522.2552,1,2,3,4,5,6 +4607.5,83.0,1596.2726,100,614.3052234578314,614.3052234578314,523.3452328167474,523.3452328167474,17075.8855,6.0,519.66305,1,2,3,4,5,6 +4608.0,83.0,1596.2726,100,610.586039493976,610.586039493976,523.3452328167474,523.3452328167474,16991.1646,6.0,517.0709,1,2,3,4,5,6 +4608.5,82.8646,1594.12225,100,288.2782472611948,288.2782472611948,522.4914864971885,522.4914864971885,10689.78765,6.0,297.27500000000003,1,2,3,4,5,6 +4609.0,82.7292,1591.9719,100,-35.08456484530251,-35.08456484530251,521.6377401776297,521.6377401776297,4388.4107,6.0,77.4791,1,2,3,4,5,6 +4609.5,82.41265000000001,1585.4248499999999,100,-147.33355199717516,-147.33355199717516,519.6417771240377,519.6417771240377,2194.20535,6.0,1.1087500000000006,1,2,3,4,5,6 +4610.0,82.0961,1578.8778,100,-260.4481689873209,-260.4481689873209,517.6458140704456,517.6458140704456,0.0,6.0,-75.2616,1,2,3,4,5,6 +4610.5,81.73585,1571.9511499999999,100,-260.16447515992064,-260.16447515992064,515.3743065990933,515.3743065990933,-5e-05,6.0,-74.98755,1,2,3,4,5,6 +4611.0,81.3756,1565.0245,100,-259.87826950584696,-259.87826950584696,513.102799127741,513.102799127741,-0.0001,6.0,-74.7135,1,2,3,4,5,6 +4611.5,81.019,1558.1667,100,-259.59138286081037,-259.59138286081037,510.85430623590435,510.85430623590435,-5e-05,6.0,-74.4422,1,2,3,4,5,6 +4612.0,80.6624,1551.3089,100,-259.3019596243107,-259.3019596243107,508.60581334406754,508.60581334406754,0.0,6.0,-74.1709,1,2,3,4,5,6 +4612.5,80.309,1544.5127499999999,100,-259.01945647436776,-259.01945647436776,506.37749761783334,506.37749761783334,5e-05,6.0,-73.90205,1,2,3,4,5,6 +4613.0,79.9556,1537.7166,100,-258.7344560230928,-258.7344560230928,504.1491818915992,504.1491818915992,0.0001,6.0,-73.6332,1,2,3,4,5,6 +4613.5,79.60515000000001,1530.97615,100,-258.4530509269814,-258.4530509269814,501.93946698990493,501.93946698990493,5e-05,6.0,-73.3665,1,2,3,4,5,6 +4614.0,79.2547,1524.2357,100,-258.1691571856307,-258.1691571856307,499.7297520882105,499.7297520882105,0.0,6.0,-73.0998,1,2,3,4,5,6 +4614.5,78.90705,1517.5504,100,-257.89519392753886,-257.89519392753886,497.53769220641834,497.53769220641834,0.0,6.0,-72.83535,1,2,3,4,5,6 +4615.0,78.5594,1510.8651,100,-257.6188059226522,-257.6188059226522,495.3456323246263,495.3456323246263,0.0,6.0,-72.5709,1,2,3,4,5,6 +4615.5,78.21430000000001,1504.22875,100,-257.34077299163965,-257.34077299163965,493.1696511216739,493.1696511216739,5e-05,6.0,-72.30834999999999,1,2,3,4,5,6 +4616.0,77.8692,1497.5924,100,-257.0602756930853,-257.0602756930853,490.99366991872137,490.99366991872137,0.0001,6.0,-72.0458,1,2,3,4,5,6 +4616.5,77.5256,1490.9853,100,-256.77426737748567,-256.77426737748567,488.82714676214493,488.82714676214493,0.0001,6.0,-71.7844,1,2,3,4,5,6 +4617.0,77.182,1484.3782,100,-256.4857125495582,-256.4857125495582,486.6606236055686,486.6606236055686,0.0001,6.0,-71.523,1,2,3,4,5,6 +4617.5,76.83930000000001,1477.78665,100,-256.20291507080356,-256.20291507080356,484.4997752768181,484.4997752768181,0.0001,6.0,-71.26225,1,2,3,4,5,6 +4618.0,76.4966,1471.1951,100,-255.91758376189273,-255.91758376189273,482.33892694806747,482.33892694806747,0.0001,6.0,-71.0015,1,2,3,4,5,6 +4618.5,76.15455,1464.6203999999998,100,-255.63098450453714,-255.63098450453714,480.1821771060799,480.1821771060799,5e-05,6.0,-70.7414,1,2,3,4,5,6 +4619.0,75.8125,1458.0457,100,-255.34179909645508,-255.34179909645508,478.02542726409234,478.02542726409234,0.0,6.0,-70.4813,1,2,3,4,5,6 +4619.5,75.47065,1451.467,100,-255.05784929638207,-255.05784929638207,475.86993849495497,475.86993849495497,0.00815,6.0,-70.2207,1,2,3,4,5,6 +4620.0,75.1288,1444.8883,100,-254.77131544760462,-254.77131544760462,473.7144497258175,473.7144497258175,0.0163,6.0,-69.9601,1,2,3,4,5,6 +4620.5,74.7873,1438.3247999999999,100,-254.47894508827036,-254.47894508827036,471.56116783416786,471.56116783416786,0.01895,6.0,-69.69125,1,2,3,4,5,6 +4621.0,74.4458,1431.7613,100,-254.18389238882511,-254.18389238882511,469.4078859425183,469.4078859425183,0.0216,6.0,-69.4224,1,2,3,4,5,6 +4621.5,74.10464999999999,1425.1963999999998,100,-253.85782847635068,-253.85782847635068,467.25681092835646,467.25681092835646,0.0108,6.0,-69.1304,1,2,3,4,5,6 +4622.0,73.7635,1418.6315,100,-253.52874852738827,-253.52874852738827,465.1057359141945,465.1057359141945,0.0,6.0,-68.8384,1,2,3,4,5,6 +4622.5,73.4236,1412.15825,100,-253.23924904254218,-253.23924904254218,462.9625426053462,462.9625426053462,0.0,6.0,-68.5471,1,2,3,4,5,6 +4623.0,73.0837,1405.685,100,-252.94705673084422,-252.94705673084422,460.8193492964979,460.8193492964979,0.0,6.0,-68.2558,1,2,3,4,5,6 +4623.5,72.51984999999999,1395.2400499999999,100,-781.6017731421123,-781.6017731421123,457.2640696636819,457.2640696636819,0.0,6.0,-67.7858,1,2,3,4,5,6 +4624.0,71.956,1384.7951,100,-1318.5416071766078,-1318.5416071766078,453.708790030866,453.708790030866,0.0,6.0,-67.3158,1,2,3,4,5,6 +4624.5,71.11145,1368.0862000000002,100,-1452.6899479197793,-1452.6899479197793,448.38359465284935,448.38359465284935,0.0,6.0,-66.56389999999999,1,2,3,4,5,6 +4625.0,70.2669,1351.3773,100,-1590.062992788923,-1590.062992788923,443.05839927483277,443.05839927483277,0.0,6.0,-65.812,1,2,3,4,5,6 +4625.5,69.3669,1334.0689000000002,100,-1596.7983742101783,-1596.7983742101783,437.3835714491089,437.3835714491089,0.0,6.0,-65.03309999999999,1,2,3,4,5,6 +4626.0,68.4669,1316.7605,100,-1603.7108293204453,-1603.7108293204453,431.7087436233851,431.7087436233851,0.0,6.0,-64.2542,1,2,3,4,5,6 +4626.5,67.5669,1299.4522000000002,100,-1611.0232821248276,-1611.0232821248276,426.03391579766134,426.03391579766134,0.0,6.0,-63.47535,1,2,3,4,5,6 +4627.0,66.6669,1282.1439,100,-1618.5331704639036,-1618.5331704639036,420.3590879719376,420.3590879719376,0.0,6.0,-62.6965,1,2,3,4,5,6 +4627.5,65.76689999999999,1264.8355999999999,100,-1626.5417781893325,-1626.5417781893325,414.68426014621383,414.68426014621383,0.0018,6.0,-61.91755,1,2,3,4,5,6 +4628.0,64.8669,1247.5273,100,-1634.7726178066168,-1634.7726178066168,409.00943232048996,409.00943232048996,0.0036,6.0,-61.1386,1,2,3,4,5,6 +4628.5,63.966899999999995,1230.2191,100,-1642.9573292280852,-1642.9573292280852,403.33460449476627,403.33460449476627,0.0033,6.0,-60.3301,1,2,3,4,5,6 +4629.0,63.0669,1212.9109,100,-1651.37564148547,-1651.37564148547,397.6597766690425,397.6597766690425,0.003,6.0,-59.5216,1,2,3,4,5,6 +4629.5,62.16605,1195.59435,100,-1661.3065226116184,-1661.3065226116184,391.9795892837056,391.9795892837056,0.00155,6.0,-58.6693,1,2,3,4,5,6 +4630.0,61.2652,1178.2778,100,-1671.5294531969212,-1671.5294531969212,386.2994018983686,386.2994018983686,0.0001,6.0,-57.817,1,2,3,4,5,6 +4630.5,60.3174,1160.25465,100,-1785.9532385182385,-1785.9532385182385,380.32317766145644,380.32317766145644,5e-05,6.0,-56.926649999999995,1,2,3,4,5,6 +4631.0,59.3696,1142.2315,100,-1904.030437833504,-1904.030437833504,374.3469534245442,374.3469534245442,0.0,6.0,-56.0363,1,2,3,4,5,6 +4631.5,58.27435,1121.2204000000002,100,-2147.7957267305424,-2147.7957267305424,367.44100322885095,367.44100322885095,0.0,6.0,-54.998400000000004,1,2,3,4,5,6 +4632.0,57.1791,1100.2093,100,-2400.899530317896,-2400.899530317896,360.5350530331576,360.5350530331576,0.0,6.0,-53.9605,1,2,3,4,5,6 +4632.5,55.8592,1074.88175,100,-2694.9523410288725,-2694.9523410288725,352.2126027585212,352.2126027585212,0.0008,6.0,-52.7093,1,2,3,4,5,6 +4633.0,54.5393,1049.5542,100,-3003.2378355057735,-3003.2378355057735,343.89015248388466,343.89015248388466,0.0016,6.0,-51.4581,1,2,3,4,5,6 +4633.5,52.97985,1019.41395,100,-3282.1398255374447,-3282.1398255374447,334.0572522029682,334.0572522029682,1.92775,6.0,-50.12265,1,2,3,4,5,6 +4634.0,51.4204,989.2737,100,-3577.958592115192,-3577.958592115192,324.22435192205154,324.22435192205154,3.8539,6.0,-48.7872,1,2,3,4,5,6 +4634.5,49.72775,956.57485,100,-3629.6340098033784,-3629.6340098033784,313.5515771229279,313.5515771229279,3.75475,6.0,-47.75175,1,2,3,4,5,6 +4635.0,48.0351,923.876,100,-3684.951280875859,-3684.951280875859,302.87880232380417,302.87880232380417,3.6556,6.0,-46.7163,1,2,3,4,5,6 +4635.5,46.3256,891.01275,100,-3696.853968712764,-3696.853968712764,292.0997821370544,292.0997821370544,2.61885,6.0,-45.7304,1,2,3,4,5,6 +4636.0,44.6161,858.1495,100,-3709.668777728219,-3709.668777728219,281.32076195030464,281.32076195030464,1.5821,6.0,-44.7445,1,2,3,4,5,6 +4636.5,42.9066,825.28985,100,-3720.6592373201324,-3720.6592373201324,270.54174176355485,270.54174176355485,0.85405,6.0,-43.66465,1,2,3,4,5,6 +4637.0,41.1971,792.4302,100,-3732.5618092050167,-3732.5618092050167,259.7627215768051,259.7627215768051,0.126,6.0,-42.5848,1,2,3,4,5,6 +4637.5,39.4876,759.5753,100,-3742.6477116867077,-3742.6477116867077,248.98370139005536,248.98370139005536,0.063,6.0,-41.30245,1,2,3,4,5,6 +4638.0,37.7781,726.7204,100,-3753.6464102217947,-3753.6464102217947,238.20468120330565,238.20468120330565,0.0,6.0,-40.0201,1,2,3,4,5,6 +4638.5,36.0686,737.4463499999999,100,-3762.8646244101515,-3762.8646244101515,227.4256610165559,227.4256610165559,1052.2241,3.0,26.907799999999995,1,2,3,4,5,6 +4639.0,34.3591,748.1723,100,-3773.0001232279083,-3773.0001232279083,216.64664082980607,216.64664082980607,2104.4482,0.0,93.8357,1,2,3,4,5,6 +4639.5,32.6496,899.3408,100,-3781.3996797816817,-3781.3996797816817,205.86762064305634,205.86762064305634,3030.7664999999997,0.0,128.19389999999999,1,2,3,4,5,6 +4640.0,30.9401,1050.5093,100,-3790.727419626956,-3790.727419626956,195.0886004563066,195.0886004563066,3957.0848,0.0,162.5521,1,2,3,4,5,6 +4640.5,29.23055,1132.84155,100,-3798.3949367699206,-3798.3949367699206,184.30926500134427,184.30926500134427,2901.259,2.0,96.47229999999999,1,2,3,4,5,6 +4641.0,27.521,1215.1738,100,-3807.0150358635224,-3807.0150358635224,173.52992954638202,173.52992954638202,1845.4332,4.0,30.3925,1,2,3,4,5,6 +4641.5,25.811500000000002,1078.03665,100,-3814.050132382852,-3814.050132382852,162.75090935963226,162.75090935963226,924.8129,4.0,-8.417249999999996,1,2,3,4,5,6 +4642.0,24.102,940.8995,100,-3822.0831956684087,-3822.0831956684087,151.9718891728825,151.9718891728825,4.1926,4.0,-47.227,1,2,3,4,5,6 +4642.5,22.3925,873.2783,100,-3823.5001476387188,-3823.5001476387188,141.19286898613274,141.19286898613274,2.35145,4.0,-45.1093,1,2,3,4,5,6 +4643.0,20.683,805.6571,100,-3825.1513286273757,-3825.1513286273757,130.41384879938298,130.41384879938298,0.5103,4.0,-42.9916,1,2,3,4,5,6 +4643.5,18.9735,757.02765,100,-3827.4574276227368,-3827.4574276227368,119.63482861263323,119.63482861263323,510.96939999999995,4.0,-6.0782000000000025,1,2,3,4,5,6 +4644.0,17.264,708.3982,100,-3830.220231464318,-3830.220231464318,108.85580842588347,108.85580842588347,1021.4285,4.0,30.8352,1,2,3,4,5,6 +4644.5,15.5545,773.4177999999999,100,-3832.923029026969,-3832.923029026969,98.07678823913372,98.07678823913372,1747.6958,2.0,71.47715,1,2,3,4,5,6 +4645.0,13.845,838.4374,100,-3836.2932780065007,-3836.2932780065007,87.29776805238396,87.29776805238396,2473.9631,0.0,112.1191,1,2,3,4,5,6 +4645.5,12.1355,904.789,100,-3838.559096452556,-3838.559096452556,76.5187478656342,76.5187478656342,2070.6698,0.0,81.077,1,2,3,4,5,6 +4646.0,10.426,971.1406,100,-3841.567945137158,-3841.567945137158,65.73972767888444,65.73972767888444,1667.3765,0.0,50.0349,1,2,3,4,5,6 +4646.5,8.72645,906.3326999999999,100,-3760.778120656166,-3760.778120656166,55.02344586643019,55.02344586643019,920.2859500000001,0.0,8.476300000000002,1,2,3,4,5,6 +4647.0,7.0269,841.5248,100,-3640.9080911924175,-3640.9080911924175,44.30716405397594,44.30716405397594,173.1954,0.0,-33.0823,1,2,3,4,5,6 +4647.5,5.3838,762.94885,100,-3360.621238716148,-3360.621238716148,33.94682005347958,33.94682005347958,533.3380999999999,0.0,-6.684549999999998,1,2,3,4,5,6 +4648.0,3.7407,684.3729,100,-2834.10275723795,-2834.10275723795,23.586476052983222,23.586476052983222,893.4808,0.0,19.7132,1,2,3,4,5,6 +4648.5,2.4064,670.5130999999999,100,-3681.8587811668876,-3681.8587811668876,15.173228533135193,15.173228533135193,967.9897500000001,0.0,26.5569,1,2,3,4,5,6 +4649.0,1.0721,656.6533,100,-6639.792704038803,-6639.792704038803,6.759981013287167,6.759981013287167,1042.4987,0.0,33.4006,1,2,3,4,5,6 +4649.5,0.53605,628.32665,100,-6639.792704038803,-6639.792704038803,3.3799905066435834,3.3799905066435834,1194.7797500000001,0.0,47.387649999999994,1,2,3,4,5,6 +4650.0,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 +4650.5,0.0,600.0,100,0.0,0.0,0.0,0.0,1347.0608,0.0,61.3747,1,2,3,4,5,6 diff --git a/VectoCore/VectoCoreTest/VectoCoreTest.csproj b/VectoCore/VectoCoreTest/VectoCoreTest.csproj index a057bc066f..40d38cb700 100644 --- a/VectoCore/VectoCoreTest/VectoCoreTest.csproj +++ b/VectoCore/VectoCoreTest/VectoCoreTest.csproj @@ -2646,6 +2646,15 @@ <None Include="TestData\Integration\VTPMode\Group2_RigidTruck_4x2\Class2_RigidTruck_DECL_SS_VTP.vecto"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> + <None Include="TestData\Integration\VTPMode\Group2_RigidTruck_4x2\Class2_RigidTruck_VTP_pollutants.vecto"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Integration\VTPMode\Group2_RigidTruck_4x2\VTP_LongHaulReferenceLoad.vdri"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> + <None Include="TestData\Integration\VTPMode\Group2_RigidTruck_4x2\VTP_RegionalDeliveryReferenceLoad.vdri"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + </None> <None Include="TestData\Jobs\12t Delivery Truck Engineering Efficiency.vecto"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> -- GitLab