From c1320989d9630b56019f0756d22350fe6efc5653 Mon Sep 17 00:00:00 2001
From: Stefanos Doumpoulakis <dubulak@gmail.com>
Date: Fri, 11 Nov 2022 14:17:12 +0200
Subject: [PATCH] a)bugfix: NCV calculation, b)removed Dual-fuel SS test,
 c)added check in VTP engine for StopStart feature

---
 .../DeclarationVTPModeVectoRunDataFactory.cs  |    4 +-
 .../Simulation/Impl/PowertrainBuilder.cs      |    2 +-
 .../Impl/VTPCombustionEngine.cs               |   13 +-
 .../VectoCoreTest/Integration/VTP/VTPTest.cs  |    2 -
 .../VTP_StopStart_DualFuel.vecto              |   35 -
 .../vtp_cycle_2Hz_StopStart.vdri              | 9156 -----------------
 .../Class2_RigidTruck_DECL_SS.xml             |    2 +-
 .../VectoCoreTest/Utils/VectoVersionTest.cs   |    2 +-
 VectoCore/VectoCoreTest/VectoCoreTest.csproj  |    6 -
 9 files changed, 17 insertions(+), 9205 deletions(-)
 delete mode 100644 VectoCore/VectoCoreTest/TestData/Integration/VTPMode/DualFuelVehicle/VTP_StopStart_DualFuel.vecto
 delete mode 100644 VectoCore/VectoCoreTest/TestData/Integration/VTPMode/DualFuelVehicle/vtp_cycle_2Hz_StopStart.vdri

diff --git a/VectoCore/VectoCore/InputData/Reader/Impl/DeclarationVTPModeVectoRunDataFactory.cs b/VectoCore/VectoCore/InputData/Reader/Impl/DeclarationVTPModeVectoRunDataFactory.cs
index 7bf0fd47d2..f11356b8ac 100644
--- a/VectoCore/VectoCore/InputData/Reader/Impl/DeclarationVTPModeVectoRunDataFactory.cs
+++ b/VectoCore/VectoCore/InputData/Reader/Impl/DeclarationVTPModeVectoRunDataFactory.cs
@@ -229,9 +229,9 @@ namespace TUGraz.VectoCore.InputData.Reader.Impl
 			
 			var correctionFactors = JobInputData.FuelNCVs.ToDictionary(
 				keySelector: f => f.Type, 
-				elementSelector: f => (DeclarationData.FuelData.Lookup(
+				elementSelector: f => (f.NCV / DeclarationData.FuelData.Lookup(
 					f.Type, 
-					JobInputData.Vehicle.TankSystem).LowerHeatingValueVecto / f.NCV).Value() * mileageCorrection);
+					JobInputData.Vehicle.TankSystem).LowerHeatingValueVecto).Value() * mileageCorrection);
 
 			vtpRunData.VTPData = new VTPData() {
 				CorrectionFactors = correctionFactors,
diff --git a/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs b/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
index 5fddfe68e3..fe6f0436f7 100644
--- a/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
+++ b/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
@@ -179,7 +179,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 				.AddComponent(data.AngledriveData != null ? new Angledrive(container, data.AngledriveData) : null)
 				.AddComponent(gearbox, data.Retarder, container)
 				.AddComponent(new Clutch(container, data.EngineData));
-			var engine = new VTPCombustionEngine(container, data.EngineData, pt1Disabled: true);
+			var engine = new VTPCombustionEngine(container, data, 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 1b1f73f87f..a0c6de422b 100644
--- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/VTPCombustionEngine.cs
+++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/VTPCombustionEngine.cs
@@ -32,11 +32,13 @@
 using System;
 using System.Linq;
 using TUGraz.VectoCommon.BusAuxiliaries;
+using TUGraz.VectoCommon.Exceptions;
 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;
@@ -47,7 +49,12 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
     {
 		private bool firstInit = true;
 
-        public VTPCombustionEngine(IVehicleContainer container, CombustionEngineData modelData, bool pt1Disabled = false) : base(container, modelData, pt1Disabled) { }
+		public VectoRunData RunData { get; protected set; }
+
+        public VTPCombustionEngine(IVehicleContainer container, VectoRunData runData, bool pt1Disabled = false) : base(container, runData.EngineData, pt1Disabled) 
+		{
+			RunData = runData;
+		}
 
 		public override IResponse Initialize(NewtonMeter outTorque, PerSecond outAngularVelocity)
 		{
@@ -84,6 +91,10 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			CombustionEngineOn = DataBus.DrivingCycleInfo.CycleData.LeftSample.EngineSpeed >= 
 				(EngineIdleSpeed * Constants.SimulationSettings.VTPIdleSpeedDetectionFactor);
 
+			if (!CombustionEngineOn && !RunData.VehicleData.ADAS.EngineStopStart) {
+				throw new VectoException($"Vehicle does not feature EngineStopStart, but engine is off in step: {absTime}");
+			}
+
 			return base.Request(absTime, dt, outTorque, outAngularVelocity, dryRun);
 		}
 
diff --git a/VectoCore/VectoCoreTest/Integration/VTP/VTPTest.cs b/VectoCore/VectoCoreTest/Integration/VTP/VTPTest.cs
index 9c8a3d61c3..cbd88fd1cd 100644
--- a/VectoCore/VectoCoreTest/Integration/VTP/VTPTest.cs
+++ b/VectoCore/VectoCoreTest/Integration/VTP/VTPTest.cs
@@ -89,7 +89,6 @@ namespace TUGraz.VectoCore.Tests.Integration.VTP
 		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";
 		private const string TORQUE_DRIFT_JOB = @"TestData\Integration\VTPMode\Group2_RigidTruck_4x2\Class2_RigidTruck_VTP_TorqueDrift.vecto";
 
 		[Category("LongRunning")]
@@ -102,7 +101,6 @@ namespace TUGraz.VectoCore.Tests.Integration.VTP
 		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"),
 		TestCase(TORQUE_DRIFT_JOB, 7.89E-08, 1.0082, TestName = "VTP Torque Drift")
 		]
 		public void RunVTP_Declaration(string jobFile, double expectedDeclaredCO2, double expectedCVTP)
diff --git a/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/DualFuelVehicle/VTP_StopStart_DualFuel.vecto b/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/DualFuelVehicle/VTP_StopStart_DualFuel.vecto
deleted file mode 100644
index 80bf76f5b7..0000000000
--- a/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/DualFuelVehicle/VTP_StopStart_DualFuel.vecto
+++ /dev/null
@@ -1,35 +0,0 @@
-{
-  "Header": {
-    "CreatedBy": "",
-    "Date": "2022-09-12T13:16:29.5785648Z",
-    "AppVersion": "3",
-    "FileVersion": 4
-  },
-  "Body": {
-    "SavedInDeclMode": true,
-    "DeclarationVehicle": "vehicle_sampleSingleModeDualFuel.xml",
-    "ManufacturerRecord": "vehicle_sampleSingleModeDualFuel.RSLT_MANUFACTURER.xml",
-    "Mileage": 30000.0,
-    "FanPowerCoefficients": [
-      7.32,
-      1200.0,
-      810.0
-    ],
-    "FanDiameter": 0.3,
-    "FuelNCVs": [
-      {
-        "Type": "Diesel CI",
-        "NCV": 42.7
-      },
-      {
-        "Type": "NG CI",
-        "NCV": 48.0
-      }
-    ],
-    "TorqueDriftLeftWheel": 0.0,
-    "TorqueDriftRightWheel": 0.0,
-    "Cycles": [
-      "vtp_cycle_2Hz_StopStart.vdri"
-    ]
-  }
-}
\ No newline at end of file
diff --git a/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/DualFuelVehicle/vtp_cycle_2Hz_StopStart.vdri b/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/DualFuelVehicle/vtp_cycle_2Hz_StopStart.vdri
deleted file mode 100644
index fa49c0e9b0..0000000000
--- a/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/DualFuelVehicle/vtp_cycle_2Hz_StopStart.vdri
+++ /dev/null
@@ -1,9156 +0,0 @@
-<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],<fc_NG CI> [g/h],<tq_eng>,<CH4>,<CO>,<NMHC>,<NOx>,<THC>,<PN>
-0.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-1,0.745548266,619.2635895,1467.561552,4617.197334,5103.218106,4.017785248,4.017785248,915.9907232,8606.496362,1,1,1,1,1,1,1
-1.5,1.799871983,641.6518237,1467.561552,7816.326081,8778.778708,9.699572016,9.699572016,1398.507702,13140.14536,1,1,1,1,1,1,1
-2,3.599955213,665.7736,1467.561552,7614.61796,8982.079714,19.40028246,19.40028246,1404.760872,13198.8988,1,1,1,1,1,1,1
-2.5,5.400011485,671.5804276,1467.561552,7701.094847,8898.366125,29.10084761,29.10084761,1432.369686,13458.30718,1,1,1,1,1,1,1
-3,7.199957485,733.5996977,1467.561552,7687.010534,8911.116749,38.80081851,38.80081851,1733.723155,16289.77377,1,1,1,1,1,1,1
-3.5,9.000072221,884.3608733,1467.561552,7609.711127,8985.921408,48.50169874,48.50169874,2161.449483,20308.61889,1,1,1,1,1,1,1
-4,10.79990411,1061.217672,1467.561552,7633.620921,8961.207168,58.2010547,58.2010547,2550.485805,23963.93986,1,1,1,1,1,1,1
-4.5,12.60012083,1238.107777,1467.561552,8143.185379,8451.334963,67.90248449,67.90248449,2944.139983,27664.06532,1,1,1,1,1,1,1
-5,14.40006552,1414.970567,1467.561552,8057.172059,8536.65873,77.60244836,77.60244836,3328.703555,31281.41539,1,1,1,1,1,1,1
-5.5,15.20137249,1368.377656,1467.561552,1327.173021,1401.62718,81.92071919,81.92071919,600.5034928,5643.252394,1,1,1,1,1,1,1
-6,15.37584637,1186.940737,1467.561552,-129.8466904,-144.5622318,82.8609649,82.8609649,0,0.0000669368,1,1,1,1,1,1,1
-6.5,15.81860765,1048.774512,1467.561552,3916.028462,4072.842527,85.24702065,85.24702065,1579.367652,14839.47498,1,1,1,1,1,1,1
-7,17.0974083,1059.516994,1467.561552,7305.469158,8050.04134,92.13852134,92.13852134,3241.758188,30461.09525,1,1,1,1,1,1,1
-7.5,18.83640755,1156.807635,1467.561552,7903.239334,8662.405839,101.5100481,101.5100481,3839.16918,36076.2592,1,1,1,1,1,1,1
-8,20.63629405,1267.343121,1467.561552,8075.994864,8488.67929,111.2096984,111.2096984,4194.536888,39414.39447,1,1,1,1,1,1,1
-8.5,22.43638334,1377.89356,1467.561552,8180.824004,8380.169922,120.9104415,120.9104415,4597.123399,43197.09212,1,1,1,1,1,1,1
-9,24.23623631,1488.431252,1467.561552,8194.620039,8360.167919,130.609911,130.609911,4968.522846,46685.9846,1,1,1,1,1,1,1
-9.5,26.03198542,1598.71567,1467.561552,8006.92683,8458.096282,140.2872647,140.2872647,5341.99508,50194.07115,1,1,1,1,1,1,1
-10,27.80305428,1707.482749,1467.561552,7645.657624,8417.130068,149.8316157,149.8316157,5614.675033,52758.19981,1,1,1,1,1,1,1
-10.5,28.76224006,1671.995978,1467.561552,488.6898281,529.7072797,155.0007009,155.0007009,579.0925495,5443.128085,1,1,1,1,1,1,1
-11,28.8626041,1480.78627,1467.561552,-113.5925447,-138.6046234,155.5415662,155.5415662,77.33250474,727.8264299,1,1,1,1,1,1,1
-11.5,29.45002608,1398.707479,1467.561552,5002.185897,5417.982507,158.7072034,158.7072034,3716.042444,34920.36794,1,1,1,1,1,1,1
-12,30.85034174,1459.653381,1467.561552,7095.269319,7990.567296,166.2535526,166.2535526,5697.604664,53534.24134,1,1,1,1,1,1,1
-12.5,32.48999594,1537.305977,1467.561552,7076.934827,7824.777151,175.0897055,175.0897055,5921.037154,55633.89321,1,1,1,1,1,1,1
-13,34.09688429,1613.336349,1467.561552,6612.77814,7919.87579,183.7492822,183.7492822,6072.596353,57058.40702,1,1,1,1,1,1,1
-13.5,35.66204936,1687.396537,1467.561552,6536.030115,7638.575538,192.1840105,192.1840105,6227.725417,58516.90167,1,1,1,1,1,1,1
-14,37.15187187,1753.080489,1467.561552,6575.098442,6574.511973,200.2127153,200.2127153,6038.206959,56738.93928,1,1,1,1,1,1,1
-14.5,37.86874732,1681.936805,1467.561552,-113.3003116,-125.7857122,204.0759817,204.0759817,168.8370525,1588.613775,1,1,1,1,1,1,1
-15,37.92521077,1493.307972,1467.561552,149.3269786,167.2248876,204.3802652,204.3802652,335.3479188,3152.712439,1,1,1,1,1,1,1
-15.5,38.47697786,1422.269044,1467.561552,4239.805789,4895.520902,207.353757,207.353757,4177.195518,39253.09952,1,1,1,1,1,1,1
-16,39.65949343,1466.910774,1467.561552,5586.829004,6668.801902,213.7263741,213.7263741,5867.235126,55128.06428,1,1,1,1,1,1,1
-16.5,41.03513808,1517.794386,1467.561552,6025.253955,6838.766443,221.1397705,221.1397705,6380.207544,59947.78824,1,1,1,1,1,1,1
-17,42.42226505,1569.09886,1467.561552,6247.263209,6318.183661,228.6150454,228.6150454,6448.508343,60591.25296,1,1,1,1,1,1,1
-17.5,43.77380731,1619.091005,1467.561552,5791.93078,6484.544986,235.8985531,235.8985531,6501.085676,61086.69541,1,1,1,1,1,1,1
-18,45.09074824,1667.80032,1467.561552,5413.420752,6578.354897,242.995593,242.995593,6556.009067,61602.55037,1,1,1,1,1,1,1
-18.5,46.37379753,1715.256582,1467.561552,5396.912743,6295.722467,249.9099898,249.9099898,6597.935808,61996.25512,1,1,1,1,1,1,1
-19,47.62375592,1761.490787,1467.561552,5345.649715,6048.626165,256.6460586,256.6460586,6626.269543,62262.98341,1,1,1,1,1,1,1
-19.5,48.73396132,1783.481494,1467.561552,4211.055364,4843.684116,262.6289937,262.6289937,5423.784502,50966.75447,1,1,1,1,1,1,1
-20,49.22653086,1678.35614,1467.561552,-96.74444736,-118.2432134,265.2834678,265.2834678,138.3577981,1301.860091,1,1,1,1,1,1,1
-20.5,49.30828062,1493.876688,1467.561552,533.0995946,622.1850181,265.7240201,265.7240201,834.8834673,7846.453473,1,1,1,1,1,1,1
-21,49.79316301,1424.507722,1467.561552,3430.261366,4026.82856,268.337068,268.337068,4391.00915,41261.48245,1,1,1,1,1,1,1
-21.5,50.72934367,1451.522932,1467.561552,4471.965443,5272.70113,273.3821778,273.3821778,5917.460363,55600.04245,1,1,1,1,1,1,1
-22,51.81381504,1482.552212,1467.561552,4702.161417,5608.096451,279.2264313,279.2264313,6374.94007,59898.72457,1,1,1,1,1,1,1
-22.5,52.91851745,1514.160649,1467.561552,4716.505569,5438.998466,285.1797106,285.1797106,6429.470289,60410.71981,1,1,1,1,1,1,1
-23,54.0003019,1545.114362,1467.561552,4703.944596,5191.265925,291.0094842,291.0094842,6413.169157,60257.98334,1,1,1,1,1,1,1
-23.5,55.05445591,1575.277058,1467.561552,4478.492035,5156.509067,296.6903564,296.6903564,6359.903914,59759.68095,1,1,1,1,1,1,1
-24,56.08138622,1604.661982,1467.561552,4548.542579,4829.960744,302.2245191,302.2245191,6302.378009,59218.72091,1,1,1,1,1,1,1
-24.5,57.08207217,1633.294187,1467.561552,4551.345483,4574.936451,307.6172501,307.6172501,6250.061617,58726.60129,1,1,1,1,1,1,1
-25,58.05689401,1661.186826,1467.561552,4298.376572,4576.486504,312.8705986,312.8705986,6190.372677,58165.63951,1,1,1,1,1,1,1
-25.5,59.00675799,1688.365114,1467.561552,4020.03325,4606.855704,317.9894482,317.9894482,6113.638644,57445.6152,1,1,1,1,1,1,1
-26,59.93264098,1714.856261,1467.561552,4068.514906,4318.263085,322.9790635,322.9790635,6034.962601,56707.04645,1,1,1,1,1,1,1
-26.5,60.83967774,1740.810388,1467.561552,3872.755798,4336.226628,327.8671158,327.8671158,6003.021678,56407.63461,1,1,1,1,1,1,1
-27,61.73971394,1766.563494,1467.561552,4064.904825,4089.487039,332.7174418,332.7174418,6066.596984,57005.78784,1,1,1,1,1,1,1
-27.5,62.63972482,1792.315641,1467.561552,4017.176821,4073.140585,337.5676314,337.5676314,6123.923571,57545.16504,1,1,1,1,1,1,1
-28,63.4041782,1772.821383,1467.561552,2718.780771,2717.590362,341.687297,341.687297,4210.628736,39566.61686,1,1,1,1,1,1,1
-28.5,63.73896635,1614.343126,1467.561552,-89.10514955,-95.02722929,343.4914818,343.4914818,0,0,1,1,1,1,1,1,1
-29,63.87384964,1381.3608,1467.561552,670.4745622,807.0313607,344.2183725,344.2183725,1041.124523,9782.817858,1,1,1,1,1,1,1
-29.5,64.30197437,1213.903312,1467.561552,2412.654453,2868.960255,346.5255514,346.5255514,3653.663116,34331.37608,1,1,1,1,1,1,1
-30,64.97809644,1160.88132,1467.561552,2838.11638,3261.789511,350.1691965,350.1691965,4672.442028,43904.35911,1,1,1,1,1,1,1
-30.5,65.7287135,1174.291219,1467.561552,3129.054434,3482.272454,354.2142977,354.2142977,5134.730028,48247.7579,1,1,1,1,1,1,1
-31,66.52172217,1188.459453,1467.561552,3271.417233,3539.718903,358.4878487,358.4878487,5368.425906,50443.13023,1,1,1,1,1,1,1
-31.5,67.33658191,1203.017576,1467.561552,3408.690325,3480.534992,362.8791558,362.8791558,5507.132458,51746.41197,1,1,1,1,1,1,1
-32,68.16755586,1217.863195,1467.561552,3282.930178,3637.111476,367.357303,367.357303,5607.721953,52691.78593,1,1,1,1,1,1,1
-32.5,69.0122258,1232.953168,1467.561552,3179.254283,3753.440281,371.9092584,371.9092584,5692.355877,53487.31765,1,1,1,1,1,1,1
-33,69.86865172,1248.254381,1467.561552,3315.021049,3623.444411,376.5245671,376.5245671,5771.027485,54226.8541,1,1,1,1,1,1,1
-33.5,70.73628145,1263.755308,1467.561552,3419.254358,3522.294261,381.2002535,381.2002535,5848.02568,54950.67956,1,1,1,1,1,1,1
-34,71.61714279,1279.492128,1467.561552,3367.615162,3566.692244,385.9472456,385.9472456,5916.048614,55590.2113,1,1,1,1,1,1,1
-34.5,72.51139233,1295.46894,1467.561552,3338.963495,3510.765836,390.7663872,390.7663872,5905.456569,55490.56812,1,1,1,1,1,1,1
-35,73.41138,1311.548011,1467.561552,3121.01652,3586.109392,395.6164516,395.6164516,5834.913531,54826.72235,1,1,1,1,1,1,1
-35.5,74.31138,1327.626253,1467.561552,3106.567023,3535.337106,400.4665826,400.4665826,5847.901098,54948.05092,1,1,1,1,1,1,1
-36,75.21138,1343.705668,1467.561552,3275.076915,3341.240085,405.3167136,405.3167136,5901.672176,55453.11828,1,1,1,1,1,1,1
-36.5,76.11134739,1359.784886,1467.561552,3159.010104,3468.712512,410.1666688,410.1666688,5986.330048,56248.50312,1,1,1,1,1,1,1
-37,77.01130827,1375.863334,1467.561552,3125.803961,3515.09201,415.0165889,415.0165889,6072.491435,57058.02004,1,1,1,1,1,1,1
-37.5,77.91132838,1391.942913,1467.561552,3254.670226,3394.077934,419.8668283,419.8668283,6154.072197,57824.48343,1,1,1,1,1,1,1
-38,78.81139101,1408.023503,1467.561552,3198.086544,3445.672051,424.7172967,424.7172967,6222.588971,58468.16842,1,1,1,1,1,1,1
-38.5,79.71147723,1424.103762,1467.561552,3227.834583,3388.564006,429.5678923,429.5678923,6269.554267,58909.30088,1,1,1,1,1,1,1
-39,80.61143891,1440.181794,1467.561552,3203.092656,3371.747851,434.4178167,434.4178167,6304.695625,59239.29522,1,1,1,1,1,1,1
-39.5,81.51142186,1456.260415,1467.561552,3129.89348,3404.45635,439.2678558,439.2678558,6340.754703,59577.91557,1,1,1,1,1,1,1
-40,82.4114821,1472.340388,1467.561552,3077.973016,3416.753415,444.1183114,444.1183114,6377.567133,59923.61692,1,1,1,1,1,1,1
-40.5,83.31144189,1488.419511,1467.561552,3060.539263,3400.312408,448.9682256,448.9682256,6419.191012,60314.54312,1,1,1,1,1,1,1
-41,84.05283196,1463.233394,1467.561552,1572.821228,1847.20694,452.9636023,452.9636023,3565.682641,33503.97989,1,1,1,1,1,1,1
-41.5,84.445754,1347.39011,1467.561552,-77.63700834,-91.80305626,455.0810727,455.0810727,131.8431575,1240.608112,1,1,1,1,1,1,1
-42,84.68238984,1222.954023,1467.561552,201.907618,235.0624981,456.3563113,456.3563113,717.1701625,6739.204023,1,1,1,1,1,1,1
-42.5,84.94039489,1184.132863,1467.561552,106.278169,155.4557685,457.7467094,457.7467094,765.8337887,7195.646443,1,1,1,1,1,1,1
-43,85.13299464,1188.25249,1467.561552,-378.1649386,-385.2439914,458.7846361,458.7846361,0,0,1,1,1,1,1,1,1
-43.5,85.26925084,1190.15394,1467.561552,-370.633134,-392.9989955,459.5189254,459.5189254,0,0,1,1,1,1,1,1,1
-44,85.40261665,1192.015075,1467.561552,-368.4178173,-395.4175954,460.2376384,460.2376384,0,0,1,1,1,1,1,1,1
-44.5,85.53357646,1193.843147,1467.561552,-368.8018983,-395.2857541,460.9433853,460.9433853,0,0,1,1,1,1,1,1,1
-45,85.66447406,1195.670603,1467.561552,-361.5924741,-402.8798865,461.6487969,461.6487969,0,0,1,1,1,1,1,1,1
-45.5,85.79730817,1197.524856,1467.561552,-350.3061648,-414.5801011,462.3646445,462.3646445,0,0,1,1,1,1,1,1,1
-46,85.93140905,1199.396176,1467.561552,-351.5261152,-413.7096202,463.0873188,463.0873188,0,0,1,1,1,1,1,1,1
-46.5,86.06536928,1201.265971,1467.561552,-359.8427615,-405.7801354,463.8092351,463.8092351,0,0,1,1,1,1,1,1,1
-47,86.19892112,1203.130183,1467.561552,-352.8493845,-413.2125522,464.5289505,464.5289505,0,0,1,1,1,1,1,1,1
-47.5,86.33209255,1204.98899,1467.561552,-352.1406771,-414.3583789,465.246616,465.246616,0,0,1,1,1,1,1,1,1
-48,86.46481033,1206.841428,1467.561552,-356.8413183,-410.0895684,465.9618366,465.9618366,0,0,1,1,1,1,1,1,1
-48.5,86.59651363,1208.679341,1467.561552,-352.9660663,-414.3514691,466.6715903,466.6715903,0,0,1,1,1,1,1,1,1
-49,86.72593454,1210.485925,1467.561552,-367.6406173,-400.0054689,467.369044,467.369044,0,0,1,1,1,1,1,1,1
-49.5,86.85150284,1212.238725,1467.561552,-382.1235904,-385.7605107,468.0457359,468.0457359,0,0,1,1,1,1,1,1,1
-50,86.97017358,1213.895248,1467.561552,-367.3797845,-400.5532503,468.6852566,468.6852566,0,0,1,1,1,1,1,1,1
-50.5,87.07943552,1215.420218,1467.561552,-349.5948582,-418.3218367,469.2740729,469.2740729,0,0,1,1,1,1,1,1,1
-51,87.18017452,1216.825713,1467.561552,-360.1943852,-407.7773997,469.8169589,469.8169589,0,0,1,1,1,1,1,1,1
-51.5,87.27399053,1218.134949,1467.561552,-374.5087624,-393.5260981,470.3225366,470.3225366,0,0,1,1,1,1,1,1,1
-52,87.36128595,1219.35354,1467.561552,-365.1969418,-402.8820103,470.7929746,470.7929746,0,0,1,1,1,1,1,1,1
-52.5,87.43744458,1220.416345,1467.561552,-426.4918953,-464.395719,471.2033961,471.2033961,0,0,1,1,1,1,1,1,1
-53,87.48578244,1221.091168,1467.561552,-643.4482775,-654.1692133,471.4638904,471.4638904,0,0,1,1,1,1,1,1,1
-53.5,87.5,1221.2899,1467.561552,-795.0316391,-826.540174,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-54,87.5,1221.2899,1467.561552,-817.8127817,-860.464364,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-54.5,87.5,1221.2899,1467.561552,-832.5690407,-900.2736037,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-55,87.5,1221.2899,1467.561552,-830.9085558,-946.7595992,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-55.5,87.5,1221.2899,1467.561552,-848.5087876,-966.1352503,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-56,87.5,1221.2899,1467.561552,-839.8305707,-994.539387,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-56.5,87.5,1221.2899,1467.561552,-853.963874,-985.1135028,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-57,87.5,1221.2899,1467.561552,-860.5420725,-987.6033987,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-57.5,87.5,1221.2899,1467.561552,-869.5956904,-993.3446436,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-58,87.5,1221.2899,1467.561552,-917.8421944,-974.6159384,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-58.5,87.5,1221.2899,1467.561552,-933.6463491,-1001.023837,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-59,87.5,1221.2899,1467.561552,-915.2341714,-1050.476602,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-59.5,87.5,1221.2899,1467.561552,-931.6876607,-1054.034349,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-60,87.5,1221.2899,1467.561552,-971.2511102,-1030.458883,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-60.5,87.5,1221.2899,1467.561552,-969.1156485,-1039.879976,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-61,87.5,1221.2899,1467.561552,-973.8985486,-1024.367871,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-61.5,87.5,1221.2899,1467.561552,-938.7839538,-1034.380474,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-62,87.5,1221.2899,1467.561552,-915.0918725,-1043.758332,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-62.5,87.5,1221.2899,1467.561552,-913.5941005,-1049.328439,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-63,87.5,1221.2899,1467.561552,-903.1485329,-1071.399105,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-63.5,87.5,1221.2899,1467.561552,-923.9200802,-1063.897668,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-64,87.5,1221.2899,1467.561552,-950.7495575,-1082.662786,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-64.5,87.5,1221.2899,1467.561552,-1006.000715,-1123.729791,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-65,87.5,1221.2899,1467.561552,-1043.819234,-1141.652677,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-65.5,87.5,1221.2899,1467.561552,-1028.705776,-1136.990594,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-66,87.5,1221.2899,1467.561552,-990.0669331,-1136.553065,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-66.5,87.5,1221.2899,1467.561552,-982.5995584,-1091.252075,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-67,87.5,1221.2899,1467.561552,-997.8560823,-1008.528404,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-67.5,87.5,1221.2899,1467.561552,-960.1364309,-969.1485733,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-68,87.5,1221.2899,1467.561552,-896.2127534,-967.4787096,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-68.5,87.5,1221.2899,1467.561552,-885.1113388,-952.3252614,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-69,87.5,1221.2899,1467.561552,-886.2308462,-966.5551092,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-69.5,87.5,1221.2899,1467.561552,-860.6849325,-1030.930304,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-70,87.5,1221.2899,1467.561552,-885.4614797,-1050.337593,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-70.5,87.5,1221.2899,1467.561552,-907.1596871,-1064.926589,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-71,87.5,1221.2899,1467.561552,-946.6673086,-1048.911269,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-71.5,87.5,1221.2899,1467.561552,-959.5081413,-1047.644537,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-72,87.5,1221.2899,1467.561552,-928.3267086,-1068.074815,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-72.5,87.5,1221.2899,1467.561552,-905.8789973,-995.6694206,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-73,87.5,1221.2899,1467.561552,-822.3242242,-920.7619809,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-73.5,87.5,1221.2899,1467.561552,-756.677657,-851.049734,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-74,87.5,1221.2899,1467.561552,-720.2316492,-762.039685,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-74.5,87.5,1221.2899,1467.561552,-615.7057104,-698.7032146,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-75,87.5,1221.2899,1467.561552,-537.0316172,-587.4658611,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-75.5,87.5,1221.2899,1467.561552,-474.8368724,-515.2702191,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-76,87.5,1221.2899,1467.561552,-409.769002,-486.3787749,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-76.5,87.49937938,1221.281355,1467.561552,-367.9806908,-439.9178082,471.5371648,471.5371648,0,0,1,1,1,1,1,1,1
-77,87.49512022,1221.221692,1467.561552,-356.9817544,-407.9231424,471.514212,471.514212,0,0,1,1,1,1,1,1,1
-77.5,87.48370796,1221.061998,1467.561552,-365.3294385,-399.2084045,471.452711,471.452711,0,0,1,1,1,1,1,1,1
-78,87.46486057,1220.799211,1467.561552,-359.1808056,-405.0336744,471.3511418,471.3511418,0,0,1,1,1,1,1,1,1
-78.5,87.43712831,1220.412321,1467.561552,-366.2062327,-397.4662222,471.2016917,471.2016917,0,0,1,1,1,1,1,1,1
-79,87.39461602,1219.818868,1467.561552,-362.8688454,-399.927485,470.9725915,470.9725915,0,0.0000476705,1,1,1,1,1,1,1
-79.5,87.33171222,1218.94071,1467.561552,-346.7503836,-414.9367276,470.6336007,470.6336007,0,0.0001,1,1,1,1,1,1,1
-80,87.2452941,1217.734216,1467.561552,-358.455496,-401.9563301,470.1678905,470.1678905,0,0.0001,1,1,1,1,1,1,1
-80.5,87.13146894,1216.145574,1467.561552,-375.6175515,-383.2057849,469.5544828,469.5544828,0,0.0001,1,1,1,1,1,1,1
-81,86.98361329,1214.082381,1467.561552,-363.8687509,-392.9429991,468.7576836,468.7576836,0,0.0001,1,1,1,1,1,1,1
-81.5,86.79968801,1211.515182,1467.561552,-345.6371619,-409.1789779,467.766504,467.766504,0,0.0001,1,1,1,1,1,1,1
-82,86.58503853,1208.518619,1467.561552,-340.6258262,-412.3752667,466.6097505,466.6097505,0,0.000147214,1,1,1,1,1,1,1
-82.5,86.34349031,1205.147195,1467.561552,-352.3530162,-398.7680498,465.3080389,465.3080389,0,0.000105852,1,1,1,1,1,1,1
-83,86.07504133,1201.400637,1467.561552,-368.6010112,-380.5464323,463.8613581,463.8613581,0,0,1,1,1,1,1,1,1
-83.5,85.78056003,1197.290623,1467.561552,-366.6817517,-380.6360952,462.2743882,462.2743882,0,0,1,1,1,1,1,1,1
-84,85.46327666,1192.862224,1467.561552,-363.1484983,-382.5736105,460.5645373,460.5645373,0,0,1,1,1,1,1,1,1
-84.5,85.18158011,1188.930304,1467.561552,131.9601895,155.4349301,459.0464648,459.0464648,780.1469111,7330.130323,1,1,1,1,1,1,1
-85,85.03178952,1186.839342,1467.561552,972.3755283,1093.116199,458.2392382,458.2392382,2208.975708,20755.29098,1,1,1,1,1,1,1
-85.5,85,1186.3959,1467.561552,1309.421992,1521.122618,458.0679234,458.0679234,2892.789943,27180.42995,1,1,1,1,1,1,1
-86,85,1186.3959,1467.561552,1427.837254,1597.305637,458.0679234,458.0679234,3057.184333,28725.22063,1,1,1,1,1,1,1
-86.5,85,1186.3959,1467.561552,1575.018261,1625.541328,458.0679234,458.0679234,3206.685072,30130.23161,1,1,1,1,1,1,1
-87,85,1186.3959,1467.561552,1620.859032,1715.421211,458.0679234,458.0679234,3321.597801,31210.67405,1,1,1,1,1,1,1
-87.5,85,1186.3959,1467.561552,1645.044676,1837.464125,458.0679234,458.0679234,3445.652292,32377.98625,1,1,1,1,1,1,1
-88,85,1186.3959,1467.561552,1788.779263,1884.722392,458.0679234,458.0679234,3608.598968,33911.45729,1,1,1,1,1,1,1
-88.5,85,1186.3959,1467.561552,1838.131208,2020.303044,458.0679234,458.0679234,3773.992039,35466.19325,1,1,1,1,1,1,1
-89,85,1186.3959,1467.561552,1878.375559,2108.556982,458.0679234,458.0679234,3900.289064,36651.32698,1,1,1,1,1,1,1
-89.5,85,1186.3959,1467.561552,2004.944536,2084.150293,458.0679234,458.0679234,4002.804022,37613.19219,1,1,1,1,1,1,1
-90,85,1186.3959,1467.561552,2026.871498,2132.291927,458.0679234,458.0679234,4073.114898,38272.89629,1,1,1,1,1,1,1
-90.5,85,1186.3959,1467.561552,1972.252421,2210.833756,458.0679234,458.0679234,4097.120465,38498.13281,1,1,1,1,1,1,1
-91,85,1186.3959,1467.561552,1884.529875,2281.995204,458.0679234,458.0679234,4080.501781,38342.205,1,1,1,1,1,1,1
-91.5,85,1186.3959,1467.561552,1869.735589,2260.486031,458.0679234,458.0679234,4044.07241,38000.40016,1,1,1,1,1,1,1
-92,85,1186.3959,1467.561552,1919.240157,2177.901791,458.0679234,458.0679234,4010.878134,37688.94909,1,1,1,1,1,1,1
-92.5,85,1186.3959,1467.561552,1993.206614,2093.902917,458.0679234,458.0679234,4000.81152,37594.49707,1,1,1,1,1,1,1
-93,85,1186.3959,1467.561552,2027.248368,2132.443391,458.0679234,458.0679234,4073.645157,38277.87163,1,1,1,1,1,1,1
-93.5,85,1186.3959,1467.561552,2051.322266,2237.833406,458.0679234,458.0679234,4201.803551,39480.82455,1,1,1,1,1,1,1
-94,85,1186.3959,1467.561552,2055.713112,2343.021408,458.0679234,458.0679234,4311.746175,40513.91814,1,1,1,1,1,1,1
-94.5,84.99824136,1186.371464,1467.561552,2146.016983,2331.222943,458.058446,458.058446,4393.756881,41285.06761,1,1,1,1,1,1,1
-95,84.9899522,1186.255816,1467.561552,2223.770951,2293.150273,458.0137754,458.0137754,4434.50819,41668.25412,1,1,1,1,1,1,1
-95.5,84.97196519,1186.004351,1467.561552,2159.79862,2373.097769,457.9168428,457.9168428,4449.901482,41812.99902,1,1,1,1,1,1,1
-96,84.94770606,1185.665394,1467.561552,2054.84739,2484.380372,457.7861095,457.7861095,4455.152829,41862.3789,1,1,1,1,1,1,1
-96.5,84.92350352,1185.32812,1467.561552,2085.700871,2455.84327,457.6556812,457.6556812,4456.421924,41874.31319,1,1,1,1,1,1,1
-97,84.90205385,1185.029093,1467.561552,2134.795334,2407.322398,457.5400882,457.5400882,4455.998167,41870.32957,1,1,1,1,1,1,1
-97.5,84.8841359,1184.778634,1467.561552,2103.219927,2438.712322,457.4435278,457.4435278,4455.036072,41861.28381,1,1,1,1,1,1,1
-98,84.87187209,1184.607209,1467.561552,2129.41227,2412.24155,457.3774377,457.3774377,4454.376701,41855.08433,1,1,1,1,1,1,1
-98.5,84.8659602,1184.524581,1467.561552,2202.591692,2338.834477,457.3455783,457.3455783,4454.05879,41852.09557,1,1,1,1,1,1,1
-99,84.8635222,1184.490565,1467.561552,2129.13371,2412.244448,457.3324398,457.3324398,4453.927999,41850.86587,1,1,1,1,1,1,1
-99.5,84.861114,1184.456981,1467.561552,2148.545307,2392.873488,457.319462,457.319462,4453.798834,41849.65116,1,1,1,1,1,1,1
-100,84.8582064,1184.416767,1467.561552,2176.289482,2365.120748,457.3037928,457.3037928,4453.644185,41848.19717,1,1,1,1,1,1,1
-100.5,84.8557298,1184.38214,1467.561552,2150.254112,2391.129654,457.2904463,457.2904463,4453.511131,41846.94625,1,1,1,1,1,1,1
-101,84.8537222,1184.35408,1467.561552,2185.034124,2356.33454,457.2796273,457.2796273,4453.403223,41845.93162,1,1,1,1,1,1,1
-101.5,84.8518684,1184.328465,1467.561552,2080.26421,2461.103273,457.2696371,457.2696371,4453.304616,41845.00454,1,1,1,1,1,1,1
-102,84.8500684,1184.303065,1467.561552,2138.029045,2403.335659,457.2599368,457.2599368,4453.206909,41844.08601,1,1,1,1,1,1,1
-102.5,84.8482684,1184.277711,1467.561552,2247.974075,2293.387692,457.2502366,457.2502366,4453.109447,41843.16972,1,1,1,1,1,1,1
-103,84.8464684,1184.252458,1467.561552,2185.029493,2356.329496,457.2405363,457.2405363,4453.01224,41842.25569,1,1,1,1,1,1,1
-103.5,84.8443912,1184.223377,1467.561552,2185.174589,2356.202089,457.2293422,457.2293422,4452.900402,41841.20452,1,1,1,1,1,1,1
-104,84.8406057,1184.170565,1467.561552,2260.252108,2281.230003,457.208942,457.208942,4452.697278,41839.29466,1,1,1,1,1,1,1
-104.5,84.83271256,1184.060461,1467.561552,2174.722133,2366.957055,457.1664056,457.1664056,4452.273795,41835.31261,1,1,1,1,1,1,1
-105,84.81891086,1183.867914,1467.561552,2078.791604,2463.119667,457.0920278,457.0920278,4451.533296,41828.35036,1,1,1,1,1,1,1
-105.5,84.79865753,1183.585736,1467.561552,2140.073752,2402.062824,456.9828819,456.9828819,4450.447947,41818.14609,1,1,1,1,1,1,1
-106,84.77247013,1183.22022,1467.561552,2141.883047,2400.438086,456.8417571,456.8417571,4449.042079,41804.92821,1,1,1,1,1,1,1
-106.5,84.74083875,1182.778419,1467.561552,2044.121459,2498.370673,456.6712945,456.6712945,4447.342705,41788.95051,1,1,1,1,1,1,1
-107,84.70361736,1182.259311,1467.561552,2044.202718,2498.469989,456.4707071,456.4707071,4445.346039,41770.17785,1,1,1,1,1,1,1
-107.5,84.6618966,1181.676813,1467.561552,2138.461582,2404.296781,456.2458725,456.2458725,4443.105602,41749.11333,1,1,1,1,1,1,1
-108,84.61933838,1181.082551,1467.561552,2175.377931,2367.269956,456.0165249,456.0165249,4440.820036,41727.62409,1,1,1,1,1,1,1
-108.5,84.57991464,1180.53268,1467.561552,2141.789606,2400.641136,455.8040689,455.8040689,4438.705174,41707.74002,1,1,1,1,1,1,1
-109,84.5455066,1180.052222,1467.561552,2171.615364,2370.57625,455.6186428,455.6186428,4436.857239,41690.3658,1,1,1,1,1,1,1
-109.5,84.516816,1179.651422,1467.561552,2176.489827,2365.436851,455.4640282,455.4640282,4435.315612,41675.87102,1,1,1,1,1,1,1
-110,84.49528156,1179.351332,1467.561552,2141.833515,2399.754401,455.3479784,455.3479784,4434.161322,41665.01845,1,1,1,1,1,1,1
-110.5,84.48186984,1179.164148,1467.561552,2137.533886,2403.739113,455.2757021,455.2757021,4433.441341,41658.24908,1,1,1,1,1,1,1
-111,84.47432512,1179.058298,1467.561552,2174.774242,2366.34451,455.2350434,455.2350434,4433.0343,41654.42205,1,1,1,1,1,1,1
-111.5,84.46936884,1178.98924,1467.561552,2141.085697,2399.971895,455.2083338,455.2083338,4432.768705,41651.92498,1,1,1,1,1,1,1
-112,84.33789886,1177.1544,1467.561552,1031.647175,1088.519109,454.4998376,454.4998376,2398.178332,22534.16511,1,1,1,1,1,1,1
-112.5,83.93071423,1171.471019,1467.561552,-349.8072376,-383.1101657,452.3055056,452.3055056,0,0,1,1,1,1,1,1,1
-113,83.37506141,1163.715411,1467.561552,-349.543457,-382.1233647,449.3110734,449.3110734,0,0,1,1,1,1,1,1,1
-113.5,82.82085198,1155.980305,1467.561552,-343.6573251,-386.7426418,446.3244198,446.3244198,0,0,1,1,1,1,1,1,1
-114,82.26717927,1148.252356,1467.561552,-345.537732,-383.5667269,443.3406585,443.3406585,0,0,1,1,1,1,1,1,1
-114.5,81.71338433,1140.522492,1467.561552,-343.3221052,-384.4865554,440.3562385,440.3562385,0,0,1,1,1,1,1,1,1
-115,81.15985166,1132.796737,1467.561552,-343.3573773,-383.2139833,437.3732319,437.3732319,0,0,1,1,1,1,1,1,1
-115.5,80.60784786,1125.092042,1467.561552,-346.4244423,-378.9759036,434.3984644,434.3984644,0,0,1,1,1,1,1,1,1
-116,80.05784323,1117.415722,1467.561552,-331.0940459,-393.1428209,431.4344706,431.4344706,0,0,1,1,1,1,1,1,1
-116.5,79.50968683,1109.764621,1467.561552,-343.4738427,-379.6027593,428.4804369,428.4804369,0,0,1,1,1,1,1,1,1
-117,78.9632766,1102.137995,1467.561552,-357.3621203,-364.5815571,425.5358134,425.5358134,0,0,1,1,1,1,1,1,1
-117.5,78.41876075,1094.537805,1467.561552,-352.2504989,-368.5888768,422.6013987,422.6013987,0,0,1,1,1,1,1,1,1
-118,77.87601435,1086.96185,1467.561552,-337.9350443,-381.7917445,419.6765197,419.6765197,0,0,1,1,1,1,1,1,1
-118.5,77.33392067,1079.395831,1467.561552,-334.4115335,-384.1660951,416.7551582,416.7551582,0,0,1,1,1,1,1,1,1
-119,76.79164384,1071.82691,1467.561552,-341.4085393,-376.013041,413.8328097,413.8328097,0,0,1,1,1,1,1,1,1
-119.5,76.24911495,1064.254142,1467.561552,-330.8074286,-385.4787214,410.9091029,410.9091029,0,0,1,1,1,1,1,1,1
-120,75.70711638,1056.689369,1467.561552,-331.9827792,-383.2483192,407.988254,407.988254,0,0,1,1,1,1,1,1,1
-120.5,75.16762945,1049.159802,1467.561552,-349.2929737,-364.9923142,405.0809404,405.0809404,0,0,1,1,1,1,1,1,1
-121,74.63205432,1041.68381,1467.561552,-343.1967162,-370.1783716,402.1947076,402.1947076,0,0,1,1,1,1,1,1,1
-121.5,74.10029283,1034.261569,1467.561552,-329.140066,-383.3315465,399.3290266,399.3290266,0,0,1,1,1,1,1,1,1
-122,73.57128525,1026.877921,1467.561552,-329.467767,-382.050773,396.4781866,396.4781866,0,0,1,1,1,1,1,1,1
-122.5,73.04307031,1019.505547,1467.561552,-325.4551815,-385.0422154,393.631618,393.631618,0,0,1,1,1,1,1,1,1
-123,72.51448083,1012.127844,1467.561552,-324.1714765,-385.3066399,390.7830312,390.7830312,0,0,1,1,1,1,1,1,1
-123.5,71.98524527,1004.740968,1467.561552,-327.2350458,-381.223749,387.9309625,387.9309625,0,0,1,1,1,1,1,1,1
-124,71.45485454,997.3384503,1467.561552,-337.0749242,-370.6510493,385.0726687,385.0726687,0,0,1,1,1,1,1,1,1
-124.5,70.92265063,989.910313,1467.561552,-351.5124212,-355.9532235,382.2046035,382.2046035,0,0,1,1,1,1,1,1,1
-125,70.38823042,982.4509406,1467.561552,-340.5786081,-366.6421269,379.3245946,379.3245946,0,0,1,1,1,1,1,1,1
-125.5,69.85287996,974.9788261,1467.561552,-322.0680681,-385.0414078,376.4395725,376.4395725,0,0,1,1,1,1,1,1,1
-126,69.3199308,967.539986,1467.561552,-330.1055709,-377.054992,373.5674912,373.5674912,0,0,1,1,1,1,1,1,1
-126.5,68.7913954,960.162969,1467.561552,-328.6209232,-378.632571,370.7191957,370.7191957,0,0,1,1,1,1,1,1,1
-127,68.26782887,952.8553818,1467.561552,-330.6054553,-376.7753609,367.8976777,367.8976777,0,0,1,1,1,1,1,1,1
-127.5,67.74942297,945.61981,1467.561552,-349.1608514,-358.3654459,365.1039705,365.1039705,0,0,1,1,1,1,1,1,1
-128,67.2361777,938.4558781,1467.561552,-347.7268833,-359.9606936,362.3380741,362.3380741,0,0,1,1,1,1,1,1,1
-128.5,66.72792212,931.3611579,1467.561552,-336.2308242,-371.6235425,359.5990672,359.5990672,0,0,1,1,1,1,1,1,1
-129,66.2241957,924.3303783,1467.561552,-333.9162824,-374.1060534,356.8844682,356.8844682,0,0,1,1,1,1,1,1,1
-129.5,65.72517135,917.3656867,1467.561552,-326.9618622,-381.2754711,354.1952089,354.1952089,0,0,1,1,1,1,1,1,1
-130,65.23233264,910.4866678,1467.561552,-324.7335783,-383.8174319,351.5392841,351.5392841,0,0,1,1,1,1,1,1,1
-130.5,64.7472639,903.7158585,1467.561552,-326.1759741,-382.7532489,348.925232,348.925232,0,0,1,1,1,1,1,1,1
-131,64.27095572,897.0681992,1467.561552,-330.6786637,-378.6896981,346.3583908,346.3583908,0,0,1,1,1,1,1,1,1
-131.5,63.80443356,890.5569435,1467.561552,-354.9313648,-354.9313648,343.8442869,343.8442869,0,0,1,1,1,1,1,1,1
-132,63.34868804,884.1953603,1467.561552,-355.2029561,-355.2029561,341.3882586,341.3882586,0,0,1,1,1,1,1,1,1
-132.5,62.9044521,877.995014,1467.561552,-354.3876677,-356.6096595,338.9942558,338.9942558,0,0,1,1,1,1,1,1,1
-133,62.47170943,871.9549402,1467.561552,-352.2239556,-359.3395911,336.6621907,336.6621907,0,0,1,1,1,1,1,1,1
-133.5,62.04909769,866.0568677,1467.561552,-348.121284,-363.9495423,334.3847215,334.3847215,0,0,1,1,1,1,1,1,1
-134,61.63608553,860.2922135,1467.561552,-343.8773744,-368.7347887,332.1589848,332.1589848,0,0,1,1,1,1,1,1,1
-134.5,61.23407628,854.680539,1467.561552,-351.2953971,-361.9602393,329.9925431,329.9925431,0,0,1,1,1,1,1,1,1
-135,60.84502195,849.2499082,1467.561552,-344.4207154,-369.556731,327.8959159,327.8959159,0,0,1,1,1,1,1,1,1
-135.5,60.47146538,844.0358495,1467.561552,-352.1853218,-362.6510171,325.8828067,325.8828067,0,0,1,1,1,1,1,1,1
-136,60.11695281,839.0879542,1467.561552,-340.0312121,-375.8239712,323.9723263,323.9723263,0,0,1,1,1,1,1,1,1
-136.5,59.78555807,834.4630002,1467.561552,-342.6526192,-374.3846607,322.1864286,322.1864286,0,0,1,1,1,1,1,1,1
-137,59.48364392,830.2493852,1467.561552,-342.3570049,-376.1928779,320.5594029,320.5594029,0,0,1,1,1,1,1,1,1
-137.5,59.2165255,826.5208353,1467.561552,-330.713126,-389.418914,319.1198926,319.1198926,0,0,1,1,1,1,1,1,1
-138,58.98614515,823.3053254,1467.561552,-343.2848973,-378.489514,317.8783649,317.8783649,0,0.0000560304,1,1,1,1,1,1,1
-138.5,58.79550102,820.6445252,1467.561552,-352.5248355,-371.0361563,316.8509771,316.8509771,0,0.000172139,1,1,1,1,1,1,1
-139,58.65625204,818.7007271,1467.561552,-347.5039197,-378.5681831,316.1005596,316.1005596,0,0.0000722622,1,1,1,1,1,1,1
-139.5,58.5876099,817.7424229,1467.561552,-347.4580884,-381.8721093,315.7306448,315.7306448,0,0,1,1,1,1,1,1,1
-140,58.4105063,815.2704506,1467.561552,-1886.270041,-2116.092847,314.7762274,314.7762274,0,0,1,1,1,1,1,1,1
-140.5,57.66015986,804.7978041,1467.561552,-5778.627108,-6474.56233,310.7325846,310.7325846,0,0,1,1,1,1,1,1,1
-141,56.44951151,787.8994361,1467.561552,-6333.343884,-7172.866269,304.208359,304.208359,0,0,1,1,1,1,1,1,1
-141.5,55.11998322,769.3422228,1467.561552,-6624.995462,-7889.838106,297.0434853,297.0434853,0,0,1,1,1,1,1,1,1
-142,53.66003544,748.9648935,1467.561552,-7060.460673,-8155.215915,289.1757765,289.1757765,0,0,1,1,1,1,1,1,1
-142.5,52.06076817,726.6435823,1467.561552,-7394.381353,-8384.621093,280.5572702,280.5572702,0,0,1,1,1,1,1,1,1
-143,50.34163005,702.6488788,1467.561552,-7540.144955,-8797.196603,271.2927757,271.2927757,0,0,1,1,1,1,1,1,1
-143.5,48.57249837,690.7564442,1467.561552,-8093.424546,-8339.413178,261.7588643,261.7588643,78.4478329,737.0827351,1,1,1,1,1,1,1
-144,46.80321397,736.7037466,1467.561552,-7691.522864,-8918.764378,252.2241298,252.2241298,376.8511562,3540.830467,1,1,1,1,1,1,1
-144.5,45.03378863,812.0553114,1467.561552,-7655.667199,-9042.08101,242.6886358,242.6886358,333.6586888,3135.001088,1,1,1,1,1,1,1
-145,43.26456745,800.2190845,1467.561552,-7996.585871,-8729.594258,233.154242,233.154242,0,0,1,1,1,1,1,1,1
-145.5,41.49523855,741.3422374,1467.561552,-8326.689041,-8472.129094,223.6192677,223.6192677,0,0,1,1,1,1,1,1,1
-146,39.72569398,709.7275989,1467.561552,-8463.544834,-8521.400971,214.0831311,214.0831311,0,0,1,1,1,1,1,1,1
-146.5,37.95634498,683.3279882,1467.561552,-8406.398518,-8942.60663,204.5480485,204.5480485,31.2247674,293.3826887,1,1,1,1,1,1,1
-147,36.18703453,712.773912,1467.561552,-8556.451283,-9232.52574,195.0131737,195.0131737,353.8186417,3324.420763,1,1,1,1,1,1,1
-147.5,34.41796132,789.6923011,1467.561552,-9041.409091,-9231.356702,185.4795773,185.4795773,361.2408103,3394.158507,1,1,1,1,1,1,1
-148,32.6485349,769.1024516,1467.561552,-8941.34761,-9315.910876,175.9440775,175.9440775,0,0,1,1,1,1,1,1,1
-148.5,30.87904239,690.1871298,1467.561552,-8378.123925,-9436.338379,166.4082214,166.4082214,0,0,1,1,1,1,1,1,1
-149,29.10996944,650.0879672,1467.561552,-8080.207518,-9288.110519,156.8746265,156.8746265,0,0,1,1,1,1,1,1,1
-149.5,27.34042615,671.6347181,1467.561552,-8320.128131,-8567.646429,147.3384969,147.3384969,321.621984,3021.906902,1,1,1,1,1,1,1
-150,25.57130628,752.2021497,1467.561552,-7561.949955,-8895.990187,137.804649,137.804649,367.819004,3455.965999,1,1,1,1,1,1,1
-150.5,23.80196737,731.0446538,1467.561552,-7794.015817,-8714.723658,128.2696208,128.2696208,53.74042564,504.9360662,1,1,1,1,1,1,1
-151,22.03272794,701.8798703,1467.561552,-7902.426998,-8878.917735,118.7351286,118.7351286,297.0098318,2790.654815,1,1,1,1,1,1,1
-151.5,20.26345236,769.7920129,1467.561552,-8418.518193,-8646.777904,109.2004417,109.2004417,381.4194432,3583.75343,1,1,1,1,1,1,1
-152,18.49386034,749.3548862,1467.561552,-8415.244872,-9056.093299,99.66404945,99.66404945,105.0131268,986.6858122,1,1,1,1,1,1,1
-152.5,16.72459384,695.6832322,1467.561552,-8283.391766,-9672.570473,90.1294114,90.1294114,236.4969919,2222.086624,1,1,1,1,1,1,1
-153,14.95539335,732.3217092,1467.561552,-8384.020441,-10042.39811,80.59512914,80.59512914,359.3288925,3376.194729,1,1,1,1,1,1,1
-153.5,13.18599078,758.8735817,1467.561552,-8950.129238,-9903.156445,71.05975782,71.05975782,161.6691729,1519.016727,1,1,1,1,1,1,1
-154,11.41663823,753.5665868,1467.561552,-9205.086416,-9962.78183,61.52465607,61.52465607,188.5718934,1771.789989,1,1,1,1,1,1,1
-154.5,9.647332428,793.044948,1467.561552,-9199.379565,-9970.538542,51.98980625,51.98980625,401.5436127,3772.836752,1,1,1,1,1,1,1
-155,7.898613741,857.7019423,1467.561552,-9311.485673,-9521.415319,42.56590111,42.56590111,410.4194433,3856.232699,1,1,1,1,1,1,1
-155.5,6.190692592,873.8520975,1467.561552,-9064.11122,-9333.864628,33.36185529,33.36185529,379.9798809,3570.227644,1,1,1,1,1,1,1
-156,4.482771442,890.0022527,1467.561552,-8816.736767,-9146.313936,24.15780948,24.15780948,349.5403184,3284.22259,1,1,1,1,1,1,1
-156.5,3.082333391,870.7905829,1467.561552,-7172.46286,-7465.216447,16.61080066,16.61080066,290.9827389,2734.02533,1,1,1,1,1,1,1
-157,1.916901831,824.552197,1467.561552,-4460.551616,-4642.614947,10.33024989,10.33024989,210.9348189,1981.90841,1,1,1,1,1,1,1
-157.5,0.75147027,778.3138112,1467.561552,-1748.640371,-1820.013447,4.049699132,4.049699132,130.8868988,1229.79149,1,1,1,1,1,1,1
-158,0,722.1258243,1467.561552,0,0,0,0,107.2485466,1007.689489,1,1,1,1,1,1,1
-158.5,0,647.8761743,1467.561552,0,0,0,0,186.0113466,1747.731689,1,1,1,1,1,1,1
-159,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-159.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-160,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-160.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-161,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-161.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-162,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-162.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-163,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-163.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-164,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-164.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-165,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-165.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-166,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-166.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-167,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-167.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-168,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-168.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-169,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-169.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-170,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-170.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-171,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-171.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-172,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-172.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-173,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-173.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-174,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-174.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-175,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-175.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-176,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-176.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-177,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-177.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-178,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-178.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-179,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-179.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-180,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-180.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-181,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-181.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-182,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-182.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-183,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-183.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-184,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-184.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-185,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-185.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-186,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-186.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-187,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-187.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-188,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-188.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-189,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-189.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-190,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-190.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-191,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-191.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-192,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-192.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-193,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-193.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-194,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-194.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-195,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-195.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-196,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-196.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-197,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-197.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-198,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-198.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-199,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-199.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-200,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-200.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-201,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-201.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-202,0.264818744,606.842427,1467.561552,1501.663467,1798.695801,1.42711732,1.42711732,468.6554403,4403.408427,1,1,1,1,1,1,1
-202.5,1.01036701,626.1060165,1467.561552,5729.319625,6862.591639,5.444902568,5.444902568,1121.408369,10536.56588,1,1,1,1,1,1,1
-203,2.439270781,652.2848033,1467.561552,7171.084234,8692.367922,13.14531413,13.14531413,1356.080694,12741.50812,1,1,1,1,1,1,1
-203.5,4.239306458,665.7736,1467.561552,7515.408395,8349.943485,22.8457683,22.8457683,1360.096238,12779.23781,1,1,1,1,1,1,1
-204,6.039127771,676.9659685,1467.561552,7491.227454,8377.242963,32.54506726,32.54506726,1412.191164,13268.71264,1,1,1,1,1,1,1
-204.5,7.839219377,770.6247986,1467.561552,8179.763003,8184.708587,42.24582283,42.24582283,1894.454058,17799.97476,1,1,1,1,1,1,1
-205,9.639163925,947.1603918,1467.561552,7852.699368,8872.99045,51.94578591,51.94578591,2310.540534,21709.45356,1,1,1,1,1,1,1
-205.5,11.43919264,1124.034999,1467.561552,7970.06403,9135.709479,61.64620258,61.64620258,2746.858022,25809.35797,1,1,1,1,1,1,1
-206,13.23913429,1300.897297,1467.561552,8122.479005,9159.391219,71.34615,71.34615,3173.478063,29820.37151,1,1,1,1,1,1,1
-206.5,14.74757866,1426.679142,1467.561552,5549.576556,6260.299843,79.4752086,79.4752086,2438.568976,22917.34584,1,1,1,1,1,1,1
-207,15.28637641,1382.734144,1467.561552,-157.9925624,-175.5326147,82.37880823,82.37880823,175.3014962,1649.582581,1,1,1,1,1,1,1
-207.5,15.51043708,1277.440261,1467.561552,2685.625542,2840.906703,83.58627887,83.58627887,1278.698312,12016.6379,1,1,1,1,1,1,1
-208,16.66534505,1315.183395,1467.561552,8382.569906,8767.303583,89.81011766,89.81011766,3665.562439,34444.64736,1,1,1,1,1,1,1
-208.5,18.45015084,1452.410511,1467.561552,8242.292302,9070.406467,99.42849742,99.42849742,4090.162727,38435.90093,1,1,1,1,1,1,1
-209,20.25013534,1594.109146,1467.561552,7677.127833,9383.15624,109.1286758,109.1286758,4434.949188,41675.5593,1,1,1,1,1,1,1
-209.5,21.60105563,1652.225595,1467.561552,3711.08807,4544.372341,116.4088317,116.4088317,2382.96828,22393.90079,1,1,1,1,1,1,1
-210,22.0414068,1540.79077,1467.561552,-143.6577581,-152.6046314,118.7818993,118.7818993,130.2094088,1225.356216,1,1,1,1,1,1,1
-210.5,22.44026169,1422.587931,1467.561552,3548.518907,3770.826974,120.931342,120.931342,2147.805159,20183.85455,1,1,1,1,1,1,1
-211,23.68164712,1453.980452,1467.561552,7545.031279,8203.68524,127.6212108,127.6212108,4631.685537,43522.06728,1,1,1,1,1,1,1
-211.5,25.42138507,1561.214942,1467.561552,8238.471508,8790.582046,136.9967184,136.9967184,5389.7773,50642.81289,1,1,1,1,1,1,1
-212,27.2023843,1670.593027,1467.561552,8408.045233,8538.424237,146.5945846,146.5945846,5776.143136,54273.99165,1,1,1,1,1,1,1
-212.5,28.37447778,1679.278418,1467.561552,2956.485506,2947.899587,152.9110366,152.9110366,2218.829276,20850.15244,1,1,1,1,1,1,1
-213,28.61614679,1531.219661,1467.561552,-125.1472958,-131.535353,154.2133993,154.2133993,98.69415746,928.7612783,1,1,1,1,1,1,1
-213.5,28.92598354,1408.401714,1467.561552,3592.284648,3664.856055,155.8831201,155.8831201,2568.504484,24137.32289,1,1,1,1,1,1,1
-214,29.99330446,1420.392929,1467.561552,6802.207141,7251.467999,161.6349493,161.6349493,5128.394056,48187.48687,1,1,1,1,1,1,1
-214.5,31.51923235,1491.372004,1467.561552,7253.827252,8549.261441,169.8582272,169.8582272,6103.690387,57349.70463,1,1,1,1,1,1,1
-215,33.13547887,1567.847549,1467.561552,7589.164473,8040.961661,178.5682352,178.5682352,6342.266728,59593.27332,1,1,1,1,1,1,1
-215.5,34.7259216,1643.101256,1467.561552,7268.934209,7822.531982,187.1391858,187.1391858,6430.513581,60422.96327,1,1,1,1,1,1,1
-216,36.27550529,1716.42271,1467.561552,6630.768922,7906.93933,195.4899456,195.4899456,6510.315757,61172.48048,1,1,1,1,1,1,1
-216.5,37.20663025,1662.025813,1467.561552,1377.771753,1691.428653,200.5078101,200.5078101,1466.949254,13783.78742,1,1,1,1,1,1,1
-217,37.36733563,1455.057147,1467.561552,-92.76375869,-107.8455842,201.3738569,201.3738569,0,0,1,1,1,1,1,1,1
-217.5,37.70148479,1237.387457,1467.561552,3069.346088,3257.001094,203.1745982,203.1745982,2410.046578,22644.76801,1,1,1,1,1,1,1
-218,38.52431628,1125.126396,1467.561552,4254.041488,4821.815156,207.6088654,207.6088654,4008.481502,37664.17378,1,1,1,1,1,1,1
-218.5,39.54500511,1131.505151,1467.561552,4915.861769,5208.905397,213.1093926,213.1093926,4742.915272,44566.01263,1,1,1,1,1,1,1
-219,40.65059379,1163.138023,1467.561552,4908.70752,5736.391704,219.067448,219.067448,5126.943628,48174.29155,1,1,1,1,1,1,1
-219.5,41.79960921,1196.016143,1467.561552,5118.534804,5732.458036,225.2595316,225.2595316,5375.60207,50510.74644,1,1,1,1,1,1,1
-220,42.9732969,1229.597528,1467.561552,5380.349001,5556.14514,231.584575,231.584575,5584.574465,52474.81446,1,1,1,1,1,1,1
-220.5,44.16736607,1263.763168,1467.561552,5291.006071,5684.350185,238.0194548,238.0194548,5772.023754,54236.80548,1,1,1,1,1,1,1
-221,45.38355836,1298.564028,1467.561552,5037.468002,5958.188218,244.5735569,244.5735569,5951.353228,55922.55249,1,1,1,1,1,1,1
-221.5,46.62295603,1334.026844,1467.561552,5155.857739,5853.328743,251.2527135,251.2527135,6129.16992,57593.93669,1,1,1,1,1,1,1
-222,47.86200729,1369.478803,1467.561552,5021.533689,5662.580543,257.9300034,257.9300034,6082.936341,57156.5671,1,1,1,1,1,1,1
-222.5,49.0739853,1404.158227,1467.561552,5112.135329,5261.806023,264.4613946,264.4613946,6074.138596,57072.90154,1,1,1,1,1,1,1
-223,50.25478693,1437.944952,1467.561552,4647.389917,5498.912842,270.8247752,270.8247752,6100.291433,57318.05749,1,1,1,1,1,1,1
-223.5,51.40543592,1470.867072,1467.561552,4978.721101,5036.255977,277.0256622,277.0256622,6172.249328,57993.77716,1,1,1,1,1,1,1
-224,52.52633259,1502.940601,1467.561552,4535.860196,5279.146503,283.0662128,283.0662128,6192.185483,58181.64616,1,1,1,1,1,1,1
-224.5,53.61852582,1534.191704,1467.561552,4681.233413,4897.532669,288.9520798,288.9520798,6158.594446,57867.18683,1,1,1,1,1,1,1
-225,54.68269604,1564.640866,1467.561552,4215.885583,5125.433354,294.6869297,294.6869297,6116.64323,57472.75234,1,1,1,1,1,1,1
-225.5,55.71939025,1594.301921,1467.561552,4127.094779,4945.782778,300.2737104,300.2737104,6050.309265,56849.02938,1,1,1,1,1,1,1
-226,56.72927191,1623.200239,1467.561552,3943.261568,4818.139333,305.7159974,305.7159974,5957.548676,55976.70522,1,1,1,1,1,1,1
-226.5,57.71348392,1651.36042,1467.561552,4088.647247,4344.867934,311.0199498,311.0199498,5818.232489,54668.62462,1,1,1,1,1,1,1
-227,58.67220256,1678.793189,1467.561552,4017.212649,4098.36846,316.1865175,316.1865175,5691.523052,53479.21217,1,1,1,1,1,1,1
-227.5,59.60614015,1705.51576,1467.561552,3871.593842,3949.807859,321.2195393,321.2195393,5579.363734,52426.45076,1,1,1,1,1,1,1
-228,60.51705778,1731.58017,1467.561552,3727.368761,3815.076129,326.1285057,326.1285057,5470.63357,51405.59503,1,1,1,1,1,1,1
-228.5,61.41694413,1757.328761,1467.561552,3315.925187,4044.507066,330.9780242,330.9780242,5431.953031,51042.65202,1,1,1,1,1,1,1
-229,62.31709668,1783.084805,1467.561552,3404.539699,3826.459372,335.8289773,335.8289773,5433.411073,51056.84194,1,1,1,1,1,1,1
-229.5,63.20160643,1803.097845,1467.561552,3410.490736,3479.236903,340.5956307,340.5956307,5277.714141,49594.10735,1,1,1,1,1,1,1
-230,63.70031586,1679.843793,1467.561552,-91.0528803,-96.52554455,343.283193,343.283193,0,0,1,1,1,1,1,1,1
-230.5,63.85431296,1436.50842,1467.561552,27.3530173,30.17977447,344.1130887,344.1130887,147.7010575,1387.859098,1,1,1,1,1,1,1
-231,64.29293915,1238.528938,1467.561552,2443.298295,2566.396927,346.4768603,346.4768603,3318.049185,31177.75572,1,1,1,1,1,1,1
-231.5,65.04659396,1162.105327,1467.561552,2671.033354,3244.845026,350.538332,350.538332,4536.396247,42626.18549,1,1,1,1,1,1,1
-232,65.88898971,1177.154398,1467.561552,3103.474338,3421.625463,355.0780317,355.0780317,5075.69716,47693.37642,1,1,1,1,1,1,1
-232.5,66.77898812,1193.055174,1467.561552,3215.110986,3423.168684,359.8742637,359.8742637,5225.551363,49101.25151,1,1,1,1,1,1,1
-233,67.67908957,1209.13626,1467.561552,3125.435483,3449.362688,364.7249414,364.7249414,5243.396688,49269.01919,1,1,1,1,1,1,1
-233.5,68.57897133,1225.213107,1467.561552,3088.995944,3362.424449,369.5744351,369.5744351,5219.632082,49045.71992,1,1,1,1,1,1,1
-234,69.4790965,1241.293891,1467.561552,2934.38186,3387.85071,374.4252406,374.4252406,5191.420761,48780.65737,1,1,1,1,1,1,1
-234.5,70.37906564,1257.373211,1467.561552,2854.218013,3368.096121,379.2752053,379.2752053,5185.923805,48728.92706,1,1,1,1,1,1,1
-235,71.27911799,1273.453433,1467.561552,3010.535516,3114.24308,384.1256183,384.1256183,5182.317925,48694.95798,1,1,1,1,1,1,1
-235.5,72.17909787,1289.532048,1467.561552,2771.325953,3260.20466,388.9756408,388.9756408,5180.045831,48673.52005,1,1,1,1,1,1,1
-236,73.07908,1305.611514,1467.561552,2728.180313,3223.941347,393.8256755,393.8256755,5171.865486,48596.63197,1,1,1,1,1,1,1
-236.5,73.97906811,1321.689323,1467.561552,2829.793407,3054.605329,398.6757424,398.6757424,5174.899622,48625.06471,1,1,1,1,1,1,1
-237,74.87899249,1337.768334,1467.561552,2623.311625,3166.576318,403.5254659,403.5254659,5150.761368,48398.31012,1,1,1,1,1,1,1
-237.5,75.77906952,1353.848036,1467.561552,2695.564846,3018.506483,408.3760119,408.3760119,5145.660903,48350.34752,1,1,1,1,1,1,1
-238,76.67900274,1369.926038,1467.561552,2574.296884,3111.824944,413.225783,413.225783,5189.200384,48759.1828,1,1,1,1,1,1,1
-238.5,77.57902285,1386.005153,1467.561552,2666.803667,3015.885857,418.0760223,418.0760223,5257.683535,49402.27473,1,1,1,1,1,1,1
-239,78.42776218,1401.169017,1467.561552,2198.146955,2524.947257,422.6499078,422.6499078,4556.426035,42812.98657,1,1,1,1,1,1,1
-239.5,78.92636484,1410.07711,1467.561552,-404.0639628,-480.0463925,425.3368946,425.3368946,90.19260004,848.684704,1,1,1,1,1,1,1
-240,79.11957471,1413.528392,1467.561552,-500.5940992,-525.8238478,426.3781093,426.3781093,0,0,1,1,1,1,1,1,1
-240.5,79.29838612,1416.72271,1467.561552,-486.4298395,-540.9569276,427.3417301,427.3417301,0,0,1,1,1,1,1,1,1
-241,79.46674889,1419.731108,1467.561552,-483.6016331,-544.4265698,428.2490428,428.2490428,0,0,1,1,1,1,1,1,1
-241.5,79.61904496,1422.4524,1467.561552,-506.0128813,-522.0175067,429.0697716,429.0697716,0,0,1,1,1,1,1,1,1
-242,79.74973608,1424.787833,1467.561552,-468.0509853,-559.5634771,429.7740706,429.7740706,0,0,1,1,1,1,1,1,1
-242.5,79.8547618,1426.66388,1467.561552,-492.294368,-534.3720084,430.3400578,430.3400578,0,0,1,1,1,1,1,1,1
-243,79.93036089,1428.013445,1467.561552,-463.7952214,-561.4815258,430.7474639,430.7474639,0,0,1,1,1,1,1,1,1
-243.5,79.97377796,1428.789993,1467.561552,-474.2935668,-549.1606484,430.9814399,430.9814399,0,0,1,1,1,1,1,1,1
-244,79.98436193,1428.978552,1467.561552,-467.9535768,-553.4369165,431.0384773,431.0384773,0,0,1,1,1,1,1,1,1
-244.5,79.96263245,1428.589915,1467.561552,-487.273769,-531.8100265,430.9213764,430.9213764,0,0,1,1,1,1,1,1,1
-245,79.90928857,1427.637995,1467.561552,-496.0153111,-520.560422,430.6339044,430.6339044,0,0,1,1,1,1,1,1,1
-245.5,79.82670732,1426.162593,1467.561552,-457.1100406,-556.9254195,430.1888712,430.1888712,0,0,1,1,1,1,1,1,1
-246,79.72055631,1424.265055,1467.561552,-467.4810456,-544.3410642,429.6168198,429.6168198,0,0,1,1,1,1,1,1,1
-246.5,79.59474932,1422.017742,1467.561552,-503.1568572,-506.288074,428.9388416,428.9388416,0,0,1,1,1,1,1,1,1
-247,79.44563424,1419.353597,1467.561552,-494.6712769,-511.6970037,428.1352553,428.1352553,0,0,1,1,1,1,1,1,1
-247.5,79.26686173,1416.160931,1467.561552,-478.0881062,-484.9199637,427.1718441,427.1718441,25.18932609,237.0217831,1,1,1,1,1,1,1
-248,79.07185501,1401.145952,1467.561552,-307.8434156,-347.1425751,426.1209462,426.1209462,162.0811941,1525.105913,1,1,1,1,1,1,1
-248.5,78.88679908,1310.810965,1467.561552,-80.01592481,-88.63879549,425.1236734,425.1236734,143.9498155,1354.202165,1,1,1,1,1,1,1
-249,78.71489768,1167.837919,1467.561552,109.0269971,120.1128723,424.1972908,424.1972908,445.9884521,4190.936704,1,1,1,1,1,1,1
-249.5,78.65439372,1100.050608,1467.561552,1292.009125,1354.904513,423.8712329,423.8712329,2514.467763,23628.77308,1,1,1,1,1,1,1
-250,78.74387154,1099.076041,1467.561552,1869.024182,1887.856337,424.3534319,424.3534319,3446.005374,32380.59997,1,1,1,1,1,1,1
-250.5,78.87695797,1100.933132,1467.561552,1990.27594,2119.148008,425.0706393,425.0706393,3758.090239,35312.30261,1,1,1,1,1,1,1
-251,78.97225831,1102.263274,1467.561552,1759.405065,1895.338682,425.5842161,425.5842161,3364.955363,31619.20282,1,1,1,1,1,1,1
-251.5,79,1102.6503,1467.561552,1662.575499,1764.638245,425.733717,425.733717,3175.100972,29833.5463,1,1,1,1,1,1,1
-252,79,1102.6503,1467.561552,1707.500195,2017.578636,425.733717,425.733717,3421.162896,32147.56549,1,1,1,1,1,1,1
-252.5,79,1102.6503,1467.561552,1832.610154,2189.359804,425.733717,425.733717,3669.20686,34478.67205,1,1,1,1,1,1,1
-253,78.99880078,1102.633541,1467.561552,2092.396842,2207.9553,425.7272544,425.7272544,3937.086172,36992.73945,1,1,1,1,1,1,1
-253.5,78.9880174,1102.48285,1467.561552,2194.63607,2245.862093,425.6691424,425.6691424,4056.25717,38112.40659,1,1,1,1,1,1,1
-254,78.95753211,1102.057028,1467.561552,2190.520926,2307.895135,425.5048561,425.5048561,4103.60616,38557.28827,1,1,1,1,1,1,1
-254.5,78.90253906,1101.289836,1467.561552,2146.428821,2376.703359,425.2084967,425.2084967,4121.348408,38723.98743,1,1,1,1,1,1,1
-255,78.81777322,1100.107118,1467.561552,2257.011786,2277.530816,424.7516907,424.7516907,4126.131597,38768.92372,1,1,1,1,1,1,1
-255.5,78.70096667,1098.476708,1467.561552,2194.758212,2344.545734,424.1222161,424.1222161,4123.84675,38747.4481,1,1,1,1,1,1,1
-256,78.55947353,1096.502164,1467.561552,2166.568415,2373.258169,423.3597047,423.3597047,4117.22095,38685.18397,1,1,1,1,1,1,1
-256.5,78.40057371,1094.283501,1467.561552,2224.725003,2315.530105,422.5033881,422.5033881,4109.77595,38615.22106,1,1,1,1,1,1,1
-257,78.22414832,1091.821363,1467.561552,2228.289831,2312.436816,421.5526257,421.5526257,4101.513985,38537.58117,1,1,1,1,1,1,1
-257.5,78.02822786,1089.086115,1467.561552,2231.394928,2309.870348,420.4968036,420.4968036,4092.335349,38451.32767,1,1,1,1,1,1,1
-258,77.81142021,1086.060068,1467.561552,2128.087517,2413.691142,419.3284197,419.3284197,4082.181216,38355.90672,1,1,1,1,1,1,1
-258.5,77.57364477,1082.741538,1467.561552,2099.160935,2443.112798,418.0470396,418.0470396,4071.045278,38251.25934,1,1,1,1,1,1,1
-259,77.31355181,1079.111115,1467.561552,2151.43887,2391.387461,416.6453897,416.6453897,4058.863085,38136.77951,1,1,1,1,1,1,1
-259.5,77.03002435,1075.154394,1467.561552,2134.775785,2408.562791,415.1174505,415.1174505,4045.585792,38012.00939,1,1,1,1,1,1,1
-260,76.72799335,1070.938603,1467.561552,2262.384438,2281.074899,413.4897951,413.4897951,4031.439026,37879.06888,1,1,1,1,1,1,1
-260.5,76.41542062,1066.575726,1467.561552,2206.572029,2336.732525,411.8053299,411.8053299,4016.798823,37741.49113,1,1,1,1,1,1,1
-261,76.10184156,1062.199059,1467.561552,2213.816636,2328.857954,410.1154415,410.1154415,4002.11225,37603.47781,1,1,1,1,1,1,1
-261.5,75.79531605,1057.920316,1467.561552,2146.607498,2395.301159,408.463565,408.463565,3987.754359,37468.55291,1,1,1,1,1,1,1
-262,75.49929495,1053.788844,1467.561552,2225.102785,2315.923307,406.8682971,406.8682971,3973.890661,37338.2721,1,1,1,1,1,1,1
-262.5,75.22097059,1049.904473,1467.561552,2227.363358,2312.38537,405.3683976,405.3683976,3960.856191,37215.78329,1,1,1,1,1,1,1
-263,74.96618423,1046.347661,1467.561552,2243.692992,2294.776667,403.9953451,403.9953451,3948.920634,37103.62217,1,1,1,1,1,1,1
-263.5,74.73414596,1043.109773,1467.561552,2217.654234,2319.653007,402.7448829,402.7448829,3938.055541,37001.5199,1,1,1,1,1,1,1
-264,74.52223375,1040.15129,1467.561552,2180.202973,2356.092808,401.6028807,401.6028807,3928.127747,36908.22613,1,1,1,1,1,1,1
-264.5,74.32521328,1037.40122,1467.561552,2207.998009,2327.568562,400.5411306,400.5411306,3918.899713,36821.50777,1,1,1,1,1,1,1
-265,74.13922564,1034.805167,1467.561552,2267.423857,2267.423857,399.5388368,399.5388368,3910.188148,36739.64308,1,1,1,1,1,1,1
-265.5,73.96597422,1032.386955,1467.561552,2249.522951,2284.583204,398.605179,398.605179,3902.07352,36663.38734,1,1,1,1,1,1,1
-266,73.80668965,1030.16359,1467.561552,2263.402138,2269.933634,397.7467889,397.7467889,3894.612783,36593.27667,1,1,1,1,1,1,1
-266.5,73.66121538,1028.133473,1467.561552,2227.521878,2305.021412,396.9628231,396.9628231,3887.80034,36529.25881,1,1,1,1,1,1,1
-267,73.5313293,1026.320537,1467.561552,2104.434118,2427.300563,396.2628625,396.2628625,3881.716957,36472.09141,1,1,1,1,1,1,1
-267.5,73.41789644,1024.736919,1467.561552,2103.555442,2427.367116,395.651569,395.651569,3876.402969,36422.15475,1,1,1,1,1,1,1
-268,73.3205946,1023.379417,1467.561552,2203.101666,2327.077241,395.127206,395.127206,3871.84768,36379.34748,1,1,1,1,1,1,1
-268.5,73.23860332,1022.234632,1467.561552,2161.557372,2367.930302,394.6853522,394.6853522,3868.006214,36343.24791,1,1,1,1,1,1,1
-269,73.17127181,1021.295727,1467.561552,2151.192609,2377.633937,394.3225004,394.3225004,3864.855539,36313.64027,1,1,1,1,1,1,1
-269.5,73.1192924,1020.569956,1467.561552,2093.049145,2435.092297,394.0423815,394.0423815,3862.420006,36290.75317,1,1,1,1,1,1,1
-270,73.0833054,1020.067993,1467.561552,2217.486834,2309.979499,393.8484463,393.8484463,3860.735596,36274.92406,1,1,1,1,1,1,1
-270.5,73.06060274,1019.750268,1467.561552,2086.817557,2440.223407,393.7261009,393.7261009,3859.669459,36264.90509,1,1,1,1,1,1,1
-271,73.0460142,1019.54685,1467.561552,2213.739784,2313.041679,393.6474828,393.6474828,3858.986915,36258.49162,1,1,1,1,1,1,1
-271.5,73.03455801,1019.387293,1467.561552,2163.735934,2363.02769,393.585745,393.585745,3858.451408,36253.45954,1,1,1,1,1,1,1
-272,73.02201232,1019.211772,1467.561552,2053.981289,2472.849411,393.5181358,393.5181358,3857.862434,36247.92454,1,1,1,1,1,1,1
-272.5,73.01278484,1019.083183,1467.561552,2171.667963,2354.80383,393.4684086,393.4684086,3857.430914,36243.86911,1,1,1,1,1,1,1
-273,73.01558288,1019.12246,1467.561552,2195.008327,2330.782038,393.4834874,393.4834874,3857.465827,36244.19772,1,1,1,1,1,1,1
-273.5,73.03425125,1019.383392,1467.561552,2059.766684,2464.964082,393.5840918,393.5840918,3857.955613,36248.80045,1,1,1,1,1,1,1
-274,73.06999216,1019.881137,1467.561552,2074.050569,2449.4136,393.7767008,393.7767008,3859.063423,36259.21218,1,1,1,1,1,1,1
-274.5,73.12311967,1020.622517,1467.561552,2234.159228,2287.953398,394.0630068,394.0630068,3860.904461,36276.51327,1,1,1,1,1,1,1
-275,73.19638782,1021.645204,1467.561552,2125.492199,2394.997403,394.4578514,394.4578514,3863.592165,36301.77124,1,1,1,1,1,1,1
-275.5,73.2929482,1022.99325,1467.561552,2062.685605,2456.034029,394.9782186,394.9782186,3867.259588,36336.23686,1,1,1,1,1,1,1
-276,73.40992326,1024.625889,1467.561552,2036.090999,2481.189709,395.6086012,395.6086012,3871.907091,36379.91166,1,1,1,1,1,1,1
-276.5,73.54211797,1026.470983,1467.561552,2225.117468,2291.029203,396.3210031,396.3210031,3877.402615,36431.55557,1,1,1,1,1,1,1
-277,73.68662354,1028.488527,1467.561552,2199.728081,2315.549316,397.0997486,397.0997486,3883.603986,36489.83238,1,1,1,1,1,1,1
-277.5,73.84205647,1030.657626,1467.561552,2131.573076,2382.971058,397.9373819,397.9373819,3890.404762,36553.74194,1,1,1,1,1,1,1
-278,74.00913357,1032.989669,1467.561552,2198.857972,2314.90947,398.8377662,398.8377662,3897.773123,36622.9845,1,1,1,1,1,1,1
-278.5,74.18895041,1035.499065,1467.561552,2192.00004,2321.008067,399.8068053,399.8068053,3905.726025,36697.72088,1,1,1,1,1,1,1
-279,74.37831197,1038.142089,1467.561552,2149.79328,2362.770146,400.8272813,400.8272813,3914.196885,36777.32431,1,1,1,1,1,1,1
-279.5,74.57353795,1040.867069,1467.561552,2182.216455,2330.112534,401.8793608,401.8793608,3923.060286,36860.61651,1,1,1,1,1,1,1
-280,74.77482561,1043.676887,1467.561552,2207.810938,2304.2597,402.9641069,402.9641069,3932.253083,36947.00365,1,1,1,1,1,1,1
-280.5,74.98780072,1046.649204,1467.561552,2191.0851,2320.281117,404.1118371,404.1118371,3941.886652,37037.53304,1,1,1,1,1,1,1
-281,75.21742308,1049.854402,1467.561552,2207.087749,2303.369751,405.3492799,405.3492799,3952.148198,37133.96458,1,1,1,1,1,1,1
-281.5,75.46326603,1053.285908,1467.561552,2131.507466,2378.085778,406.674136,406.674136,3963.120982,37237.07921,1,1,1,1,1,1,1
-282,75.72468487,1056.934484,1467.561552,2236.605697,2272.114124,408.0829312,408.0829312,3974.823908,37347.05573,1,1,1,1,1,1,1
-282.5,76.00339405,1060.824731,1467.561552,2194.998873,2312.723684,409.5849045,409.5849045,3987.304718,37464.34148,1,1,1,1,1,1,1
-283,76.29936942,1064.955878,1467.561552,2107.177106,2399.676256,411.1799259,411.1799259,4000.589273,37589.18105,1,1,1,1,1,1,1
-283.5,76.60841022,1069.268949,1467.561552,2115.142726,2391.175577,412.8453575,412.8453575,4014.581814,37720.67279,1,1,1,1,1,1,1
-284,76.92741485,1073.72191,1467.561552,2236.312314,2269.641816,414.5644844,414.5644844,4029.156426,37857.63527,1,1,1,1,1,1,1
-284.5,77.25802024,1078.336393,1467.561552,2114.160722,2391.301526,416.3461282,416.3461282,4044.288024,37999.83081,1,1,1,1,1,1,1
-285,77.60412302,1083.166641,1467.561552,2094.718637,2410.052625,418.211288,418.211288,4060.074276,38148.1791,1,1,1,1,1,1,1
-285.5,77.96578863,1088.214626,1467.561552,2094.441768,2409.734077,420.1603164,420.1603164,4076.563684,38303.1352,1,1,1,1,1,1,1
-286,78.34060144,1093.446757,1467.561552,2094.237167,2409.498676,422.1801955,422.1801955,4093.720817,38464.3658,1,1,1,1,1,1,1
-286.5,78.72622995,1098.829432,1467.561552,2194.114524,2309.375358,424.2583608,424.2583608,4111.459604,38631.06262,1,1,1,1,1,1,1
-287,79.12043112,1104.331294,1467.561552,2226.730715,2276.68646,426.3827245,426.3827245,4129.683359,38802.31578,1,1,1,1,1,1,1
-287.5,79.51931041,1109.898738,1467.561552,2128.747725,2374.948922,428.5322987,428.5322987,4150.024436,38993.53334,1,1,1,1,1,1,1
-288,79.91929374,1115.481216,1467.561552,2137.132297,2367.035853,430.6878226,430.6878226,4171.421192,39194.70408,1,1,1,1,1,1,1
-288.5,80.31899463,1121.060315,1467.561552,2240.920965,2263.857446,432.8418244,432.8418244,4192.975906,39397.36321,1,1,1,1,1,1,1
-289,80.71656403,1126.610094,1467.561552,2151.319251,2354.240124,434.9843396,434.9843396,4214.503638,39599.76803,1,1,1,1,1,1,1
-289.5,81.10985138,1132.098895,1467.561552,2120.223753,2386.249213,437.1037787,437.1037787,4235.881905,39800.76793,1,1,1,1,1,1,1
-290,81.49735132,1137.507639,1467.561552,2077.697036,2429.784793,439.1920292,439.1920292,4257.017871,39999.48965,1,1,1,1,1,1,1
-290.5,81.88130475,1142.866125,1467.561552,2135.178023,2373.058178,441.2611674,441.2611674,4277.928724,40196.09525,1,1,1,1,1,1,1
-291,82.26592879,1148.234922,1467.561552,2244.260214,2264.506001,443.3339196,443.3339196,4298.761411,40391.96524,1,1,1,1,1,1,1
-291.5,82.65311612,1153.639342,1467.561552,2069.408761,2439.764028,445.4204854,445.4204854,4319.638397,40588.25268,1,1,1,1,1,1,1
-292,83.04457193,1159.102386,1467.561552,2051.781425,2457.628301,447.5300543,447.5300543,4340.665615,40785.95121,1,1,1,1,1,1,1
-292.5,83.43945901,1164.614834,1467.561552,2176.042572,2333.733869,449.6581143,449.6581143,4361.86832,40985.30069,1,1,1,1,1,1,1
-293,83.80557462,1169.724986,1467.561552,1990.901935,2001.803576,451.631124,451.631124,3863.755126,36308.06378,1,1,1,1,1,1,1
-293.5,83.98686999,1172.255068,1467.561552,530.0816974,553.1670721,452.6081309,452.6081309,1359.876837,12777.5829,1,1,1,1,1,1,1
-294,84,1172.4383,1467.561552,410.035052,443.5132363,452.678889,452.678889,1161.57274,10913.94358,1,1,1,1,1,1,1
-294.5,84,1172.4383,1467.561552,414.1354941,457.014049,452.678889,452.678889,1175.680814,11046.50135,1,1,1,1,1,1,1
-295,84,1172.4383,1467.561552,423.0593582,459.0359654,452.678889,452.678889,1184.454578,11128.93813,1,1,1,1,1,1,1
-295.5,84,1172.4383,1467.561552,379.7805839,442.7813886,452.678889,452.678889,1136.735845,10680.58023,1,1,1,1,1,1,1
-296,84,1172.4383,1467.561552,320.1083096,325.3001563,452.678889,452.678889,999.2688816,9388.963578,1,1,1,1,1,1,1
-296.5,84,1172.4383,1467.561552,274.2908291,300.5283945,452.678889,452.678889,945.7634967,8886.236501,1,1,1,1,1,1,1
-297,84,1172.4383,1467.561552,262.9135365,318.8243889,452.678889,452.678889,950.9771394,8935.222514,1,1,1,1,1,1,1
-297.5,84,1172.4383,1467.561552,304.3560065,314.711004,452.678889,452.678889,979.0996241,9199.457099,1,1,1,1,1,1,1
-298,84,1172.4383,1467.561552,351.1456439,416.2599359,452.678889,452.678889,1092.946638,10269.14431,1,1,1,1,1,1,1
-298.5,84,1172.4383,1467.561552,419.5718271,512.1219399,452.678889,452.678889,1224.210744,11502.47975,1,1,1,1,1,1,1
-299,84,1172.4383,1467.561552,517.922359,565.771042,452.678889,452.678889,1346.047613,12647.23926,1,1,1,1,1,1,1
-299.5,84,1172.4383,1467.561552,557.1346307,581.650259,452.678889,452.678889,1390.20691,13062.15266,1,1,1,1,1,1,1
-300,84,1172.4383,1467.561552,522.8771841,607.8961674,452.678889,452.678889,1383.785028,13001.81365,1,1,1,1,1,1,1
-300.5,84,1172.4383,1467.561552,527.3116481,574.9919137,452.678889,452.678889,1360.964856,12787.399,1,1,1,1,1,1,1
-301,84,1172.4383,1467.561552,463.0265423,539.7557293,452.678889,452.678889,1281.193414,12037.8799,1,1,1,1,1,1,1
-301.5,84,1172.4383,1467.561552,433.9884318,491.0711166,452.678889,452.678889,1218.893474,11452.51952,1,1,1,1,1,1,1
-302,84,1172.4383,1467.561552,440.058475,469.5355412,452.678889,452.678889,1206.497001,11336.0449,1,1,1,1,1,1,1
-302.5,84,1172.4383,1467.561552,439.2229714,466.3914026,452.678889,452.678889,1203.306152,11306.06367,1,1,1,1,1,1,1
-303,84,1172.4383,1467.561552,426.5888573,478.7528349,452.678889,452.678889,1203.0875,11304.0092,1,1,1,1,1,1,1
-303.5,84,1172.4383,1467.561552,417.0397875,497.1613676,452.678889,452.678889,1210.189193,11370.73558,1,1,1,1,1,1,1
-304,84,1172.4383,1467.561552,451.5316787,511.4925816,452.678889,452.678889,1249.324023,11738.44069,1,1,1,1,1,1,1
-304.5,84,1172.4383,1467.561552,486.6095983,569.5679363,452.678889,452.678889,1323.992171,12440.00994,1,1,1,1,1,1,1
-305,84,1172.4383,1467.561552,546.430321,665.9821694,452.678889,452.678889,1440.755782,13537.10095,1,1,1,1,1,1,1
-305.5,84,1172.4383,1467.561552,640.3264956,739.8578894,452.678889,452.678889,1574.498633,14793.72698,1,1,1,1,1,1,1
-306,84,1172.4383,1467.561552,697.750895,849.118389,452.678889,452.678889,1722.752499,16186.69527,1,1,1,1,1,1,1
-306.5,84,1172.4383,1467.561552,807.4431983,866.3273095,452.678889,452.678889,1836.594389,17256.33446,1,1,1,1,1,1,1
-307,84,1172.4383,1467.561552,834.5544879,954.4368471,452.678889,452.678889,1940.741045,18235.48608,1,1,1,1,1,1,1
-307.5,84,1172.4383,1467.561552,896.5514268,993.9308994,452.678889,452.678889,2033.431423,19107.66125,1,1,1,1,1,1,1
-308,84,1172.4383,1467.561552,890.0801795,1079.501494,452.678889,452.678889,2105.739767,19788.10262,1,1,1,1,1,1,1
-308.5,84,1172.4383,1467.561552,1032.017882,1047.705071,452.678889,452.678889,2206.425535,20735.58289,1,1,1,1,1,1,1
-309,84,1172.4383,1467.561552,1052.386541,1154.435532,452.678889,452.678889,2318.840666,21793.11624,1,1,1,1,1,1,1
-309.5,84,1172.4383,1467.561552,1132.784001,1162.780875,452.678889,452.678889,2387.29663,22436.41904,1,1,1,1,1,1,1
-310,84,1172.4383,1467.561552,1086.85236,1285.763306,452.678889,452.678889,2452.373875,23047.23147,1,1,1,1,1,1,1
-310.5,84,1172.4383,1467.561552,1139.255068,1339.439285,452.678889,452.678889,2548.072053,23945.01957,1,1,1,1,1,1,1
-311,84,1172.4383,1467.561552,1212.616824,1423.506707,452.678889,452.678889,2690.563128,25281.76416,1,1,1,1,1,1,1
-311.5,84,1172.4383,1467.561552,1279.388191,1530.142699,452.678889,452.678889,2838.250332,26667.84747,1,1,1,1,1,1,1
-312,84,1172.4383,1467.561552,1357.505301,1626.022833,452.678889,452.678889,2985.502479,28051.56838,1,1,1,1,1,1,1
-312.5,84,1172.4383,1467.561552,1397.330071,1705.203544,452.678889,452.678889,3086.914293,29004.63977,1,1,1,1,1,1,1
-313,84,1172.4383,1467.561552,1590.296286,1615.00244,452.678889,452.678889,3174.566772,29828.40138,1,1,1,1,1,1,1
-313.5,84,1172.4383,1467.561552,1518.259725,1793.340979,452.678889,452.678889,3262.643784,30656.07424,1,1,1,1,1,1,1
-314,84,1172.4383,1467.561552,1590.323448,1835.396091,452.678889,452.678889,3358.81171,31560.79882,1,1,1,1,1,1,1
-314.5,84,1172.4383,1467.561552,1689.561409,1873.151571,452.678889,452.678889,3475.833016,32662.09771,1,1,1,1,1,1,1
-315,84,1172.4383,1467.561552,1830.221176,1878.660196,452.678889,452.678889,3600.798636,33838.18311,1,1,1,1,1,1,1
-315.5,84,1172.4383,1467.561552,1781.304072,2030.398623,452.678889,452.678889,3686.28565,34642.26768,1,1,1,1,1,1,1
-316,84,1172.4383,1467.561552,1814.21424,2087.32176,452.678889,452.678889,3769.307236,35421.6594,1,1,1,1,1,1,1
-316.5,84,1172.4383,1467.561552,1904.465701,2111.469318,452.678889,452.678889,3883.607078,36494.12275,1,1,1,1,1,1,1
-317,84,1172.4383,1467.561552,1982.392017,2191.064861,452.678889,452.678889,4041.673161,37977.20593,1,1,1,1,1,1,1
-317.5,84,1172.4383,1467.561552,2088.506372,2224.54569,452.678889,452.678889,4176.61356,39243.69533,1,1,1,1,1,1,1
-318,84,1172.4383,1467.561552,2173.057863,2265.257415,452.678889,452.678889,4301.124962,40414.11529,1,1,1,1,1,1,1
-318.5,83.99668584,1172.392638,1467.561552,2184.238278,2315.704717,452.6610289,452.6610289,4364.75205,41012.38667,1,1,1,1,1,1,1
-319,83.98599722,1172.242785,1467.561552,2069.675738,2455.48083,452.6034275,452.6034275,4390.268162,41252.31659,1,1,1,1,1,1,1
-319.5,83.96890068,1172.004146,1467.561552,2147.044301,2388.218347,452.5112937,452.5112937,4399.782154,41341.77772,1,1,1,1,1,1,1
-320,83.94752732,1171.705627,1467.561552,2239.793328,2299.630128,452.3961119,452.3961119,4402.848859,41370.61547,1,1,1,1,1,1,1
-320.5,83.92169034,1171.345437,1467.561552,2227.028611,2314.231847,452.2568756,452.2568756,4403.230045,41374.20039,1,1,1,1,1,1,1
-321,83.89153951,1170.924925,1467.561552,2183.559006,2357.95478,452.0943917,452.0943917,4401.750626,41360.29161,1,1,1,1,1,1,1
-321.5,83.86086165,1170.496391,1467.561552,2096.313497,2445.056827,451.9290676,451.9290676,4400.103188,41344.80201,1,1,1,1,1,1,1
-322,83.83338644,1170.112914,1467.561552,2151.596822,2389.608659,451.7810028,451.7810028,4398.628536,41330.93702,1,1,1,1,1,1,1
-322.5,83.80766295,1169.754168,1467.561552,2261.441685,2279.73903,451.642378,451.642378,4397.248658,41317.96368,1,1,1,1,1,1,1
-323,83.7816956,1169.39129,1467.561552,2124.454997,2416.715603,451.5024391,451.5024391,4395.852863,41304.84045,1,1,1,1,1,1,1
-323.5,83.7570792,1169.047536,1467.561552,2195.057546,2345.962266,451.3697805,451.3697805,4394.530879,41292.4105,1,1,1,1,1,1,1
-324,83.73653587,1168.761105,1467.561552,2223.157935,2317.651606,451.2590718,451.2590718,4393.428938,41282.05047,1,1,1,1,1,1,1
-324.5,83.7172552,1168.491916,1467.561552,2078.974305,2461.907364,451.1551675,451.1551675,4392.393895,41272.31847,1,1,1,1,1,1,1
-325,83.69475099,1168.17719,1467.561552,2066.160753,2474.851892,451.0338916,451.0338916,4391.183104,41260.93458,1,1,1,1,1,1,1
-325.5,83.66901598,1167.818118,1467.561552,2066.187209,2474.883579,450.8952047,450.8952047,4389.802122,41247.95072,1,1,1,1,1,1,1
-326,83.64118434,1167.429958,1467.561552,2045.354127,2495.760848,450.7452191,450.7452191,4388.309047,41233.91251,1,1,1,1,1,1,1
-326.5,83.6108888,1167.006862,1467.561552,2085.24535,2455.952265,450.5819554,450.5819554,4386.681702,41218.61207,1,1,1,1,1,1,1
-327,83.57745611,1166.540814,1467.561552,2234.936608,2306.347184,450.4017854,450.4017854,4384.889334,41201.7602,1,1,1,1,1,1,1
-327.5,83.54431366,1166.078552,1467.561552,2247.849612,2293.260715,450.2231796,450.2231796,4383.11157,41185.04547,1,1,1,1,1,1,1
-328,83.51544223,1165.675225,1467.561552,2185.227337,2355.667012,450.0675905,450.0675905,4381.560181,41170.45951,1,1,1,1,1,1,1
-328.5,83.48960902,1165.314452,1467.561552,2137.924512,2402.891611,449.9283744,449.9283744,4380.172486,41157.4126,1,1,1,1,1,1,1
-329,83.46474807,1164.967941,1467.561552,2050.843275,2489.919737,449.7943979,449.7943979,4378.839495,41144.88007,1,1,1,1,1,1,1
-329.5,83.43866893,1164.602965,1467.561552,2064.211259,2476.647548,449.6538565,449.6538565,4377.435783,41131.68184,1,1,1,1,1,1,1
-330,83.40761398,1164.17003,1467.561552,2087.00852,2454.062357,449.4865003,449.4865003,4375.770617,41116.0257,1,1,1,1,1,1,1
-330.5,83.37144451,1163.665015,1467.561552,2088.943143,2452.237602,449.2915818,449.2915818,4373.828405,41097.76544,1,1,1,1,1,1,1
-331,83.33219364,1163.117169,1467.561552,2109.775283,2431.44747,449.0800576,449.0800576,4371.721214,41077.95297,1,1,1,1,1,1,1
-331.5,83.29215169,1162.557915,1467.561552,2215.676687,2325.478316,448.8642701,448.8642701,4369.570255,41057.72967,1,1,1,1,1,1,1
-332,83.25315917,1162.014511,1467.561552,2058.692648,2482.360156,448.6541381,448.6541381,4367.480255,41038.07959,1,1,1,1,1,1,1
-332.5,83.21637379,1161.501382,1467.561552,2188.994925,2351.918322,448.4559004,448.4559004,4365.506635,41019.52371,1,1,1,1,1,1,1
-333,83.18216223,1161.023762,1467.561552,2181.486146,2359.294705,448.2715331,448.2715331,4363.669418,41002.2498,1,1,1,1,1,1,1
-333.5,83.14826059,1160.549614,1467.561552,2096.437761,2444.376314,448.088836,448.088836,4361.845798,40985.10359,1,1,1,1,1,1,1
-334,83.11171266,1160.040174,1467.561552,2068.028185,2472.868085,447.891878,447.891878,4359.886515,40966.68285,1,1,1,1,1,1,1
-334.5,83.07346269,1159.50561,1467.561552,2128.421744,2412.448641,447.6857476,447.6857476,4357.830246,40947.34976,1,1,1,1,1,1,1
-335,83.03552843,1158.976885,1467.561552,2238.015931,2302.763956,447.4813186,447.4813186,4355.796807,40928.23067,1,1,1,1,1,1,1
-335.5,83.00019694,1158.484103,1467.561552,2102.245116,2438.353716,447.2909159,447.2909159,4353.901393,40910.40997,1,1,1,1,1,1,1
-336,82.96876163,1158.04526,1467.561552,2213.144294,2327.268316,447.1215099,447.1215099,4352.213432,40894.53975,1,1,1,1,1,1,1
-336.5,82.94031908,1157.648356,1467.561552,2162.485822,2377.816283,446.9682321,446.9682321,4350.687015,40880.18805,1,1,1,1,1,1,1
-337,82.9136737,1157.27534,1467.561552,2198.109687,2342.107341,446.8246392,446.8246392,4349.252362,40866.70003,1,1,1,1,1,1,1
-337.5,82.88891518,1156.930449,1467.561552,2077.45293,2462.638347,446.6912147,446.6912147,4347.925865,40854.22796,1,1,1,1,1,1,1
-338,82.86660464,1156.619453,1467.561552,2169.4108,2370.574025,446.5709824,446.5709824,4346.729361,40842.97878,1,1,1,1,1,1,1
-338.5,82.84560158,1156.325614,1467.561552,2075.459737,2464.487711,446.4577962,446.4577962,4345.599449,40832.35523,1,1,1,1,1,1,1
-339,82.82479676,1156.034629,1467.561552,2065.662338,2474.254889,446.3456783,446.3456783,4344.480345,40821.83272,1,1,1,1,1,1,1
-339.5,82.804823,1155.757031,1467.561552,2169.291581,2370.538691,446.238039,446.238039,4343.412372,40811.79175,1,1,1,1,1,1,1
-340,82.78748086,1155.515163,1467.561552,2241.247152,2298.438467,446.1445816,446.1445816,4342.482073,40803.04547,1,1,1,1,1,1,1
-340.5,82.77522404,1155.343819,1467.561552,2247.009558,2292.403691,446.0785292,446.0785292,4341.823346,40796.85151,1,1,1,1,1,1,1
-341,82.7700906,1155.271603,1467.561552,2267.590557,2271.530746,446.0508649,446.0508649,4341.545388,40794.23801,1,1,1,1,1,1,1
-341.5,82.77170904,1155.293679,1467.561552,2124.350864,2414.490191,446.0595868,446.0595868,4341.582462,40794.58718,1,1,1,1,1,1,1
-342,82.7792984,1155.399695,1467.561552,2068.938734,2469.53892,446.1004861,446.1004861,4341.835161,40796.96276,1,1,1,1,1,1,1
-342.5,82.79351832,1155.598574,1467.561552,2126.9644,2411.035261,446.1771177,446.1771177,4342.377411,40802.06066,1,1,1,1,1,1,1
-343,82.81572104,1155.90839,1467.561552,2236.224238,2301.206442,446.296769,446.296769,4343.288291,40810.62466,1,1,1,1,1,1,1
-343.5,82.84511348,1156.318784,1467.561552,2204.339641,2332.624557,446.4551658,446.4551658,4344.581385,40822.78185,1,1,1,1,1,1,1
-344,82.879598,1156.800284,1467.561552,2200.259242,2336.357752,446.6410041,446.6410041,4346.197465,40837.97626,1,1,1,1,1,1,1
-344.5,82.91697327,1157.321597,1467.561552,2117.233798,2419.212343,446.8424207,446.8424207,4348.040734,40855.30613,1,1,1,1,1,1,1
-345,82.95631812,1157.871065,1467.561552,2171.59128,2364.694606,447.0544515,447.0544515,4350.041884,40874.12113,1,1,1,1,1,1,1
-345.5,82.99975873,1158.476836,1467.561552,2094.303304,2441.683221,447.2885544,447.2885544,4352.230955,40894.70333,1,1,1,1,1,1,1
-346,83.04879082,1159.161424,1467.561552,2210.892023,2324.747465,447.55279,447.55279,4354.673319,40917.666,1,1,1,1,1,1,1
-346.5,83.1032536,1159.92192,1467.561552,2097.757987,2437.550716,447.8462918,447.8462918,4357.393192,40943.23794,1,1,1,1,1,1,1
-347,83.1630181,1160.75589,1467.561552,2148.366621,2386.600611,448.1683648,448.1683648,4360.39439,40971.45554,1,1,1,1,1,1,1
-347.5,83.22992773,1161.68964,1467.561552,2112.336409,2422.127111,448.5289431,448.5289431,4363.734675,41002.86053,1,1,1,1,1,1,1
-348,83.30516614,1162.74071,1467.561552,2170.625493,2363.335878,448.9344054,448.9344054,4367.479051,41038.06516,1,1,1,1,1,1,1
-348.5,83.38659958,1163.876193,1467.561552,2259.288698,2274.347334,449.373253,449.373253,4371.586408,41076.68299,1,1,1,1,1,1,1
-349,83.47194233,1165.067932,1467.561552,2162.708859,2370.689067,449.833168,449.833168,4375.97473,41117.94205,1,1,1,1,1,1,1
-349.5,83.56235142,1166.329656,1467.561552,2090.79199,2442.281277,450.3203858,450.3203858,4380.634378,41161.75225,1,1,1,1,1,1,1
-350,83.65972616,1167.688892,1467.561552,2085.022658,2447.635294,450.8451415,450.8451415,4385.624283,41208.66718,1,1,1,1,1,1,1
-350.5,83.76522197,1169.161096,1467.561552,2084.801166,2447.375281,451.4136621,451.4136621,4391.005493,41259.26094,1,1,1,1,1,1,1
-351,83.8786727,1170.745246,1467.561552,2147.129549,2384.601963,452.025052,452.025052,4396.803643,41313.77559,1,1,1,1,1,1,1
-351.5,83.96658351,1171.971343,1467.561552,1776.325213,2151.015963,452.4988064,452.4988064,3795.157719,35664.5727,1,1,1,1,1,1,1
-352,83.99788754,1172.408765,1467.561552,1638.008054,1729.98721,452.6675049,452.6675049,3310.30396,31104.31838,1,1,1,1,1,1,1
-352.5,84,1172.4383,1467.561552,1602.081658,1667.472746,452.678889,452.678889,3229.129842,30341.18042,1,1,1,1,1,1,1
-353,84,1172.4383,1467.561552,1467.054366,1737.300326,452.678889,452.678889,3173.760938,29820.8281,1,1,1,1,1,1,1
-353.5,84,1172.4383,1467.561552,1474.394025,1670.721291,452.678889,452.678889,3123.233453,29345.96847,1,1,1,1,1,1,1
-354,84,1172.4383,1467.561552,1492.197358,1592.210149,452.678889,452.678889,3071.454015,28859.34274,1,1,1,1,1,1,1
-354.5,84,1172.4383,1467.561552,1434.822728,1580.708949,452.678889,452.678889,3012.706639,28307.23269,1,1,1,1,1,1,1
-355,84,1172.4383,1467.561552,1453.40428,1492.422332,452.678889,452.678889,2953.25275,27748.48258,1,1,1,1,1,1,1
-355.5,84,1172.4383,1467.561552,1390.522318,1499.10358,452.678889,452.678889,2905.317415,27297.98392,1,1,1,1,1,1,1
-356,84,1172.4383,1467.561552,1414.637251,1423.800825,452.678889,452.678889,2861.657434,26887.66533,1,1,1,1,1,1,1
-356.5,84,1172.4383,1467.561552,1345.691304,1421.969589,452.678889,452.678889,2808.68235,26389.93141,1,1,1,1,1,1,1
-357,84,1172.4383,1467.561552,1309.536354,1390.538602,452.678889,452.678889,2748.447218,25824.78912,1,1,1,1,1,1,1
-357.5,84,1172.4383,1467.561552,1250.080485,1402.836636,452.678889,452.678889,2705.762758,25424.35574,1,1,1,1,1,1,1
-358,84,1172.4383,1467.561552,1177.618018,1429.961791,452.678889,452.678889,2664.727223,25039.39164,1,1,1,1,1,1,1
-358.5,84,1172.4383,1467.561552,1200.149015,1337.362388,452.678889,452.678889,2601.307561,24444.43554,1,1,1,1,1,1,1
-359,84,1172.4383,1467.561552,1223.785815,1233.836976,452.678889,452.678889,2528.998859,23766.08947,1,1,1,1,1,1,1
-359.5,84,1172.4383,1467.561552,1127.421326,1282.491289,452.678889,452.678889,2485.816233,23360.98229,1,1,1,1,1,1,1
-360,84,1172.4383,1467.561552,1094.81648,1283.142562,452.678889,452.678889,2456.89384,23089.65459,1,1,1,1,1,1,1
-360.5,84,1172.4383,1467.561552,1141.398001,1221.72239,452.678889,452.678889,2443.463671,22963.66269,1,1,1,1,1,1,1
-361,84,1172.4383,1467.561552,1063.955616,1285.803216,452.678889,452.678889,2431.37022,22850.21076,1,1,1,1,1,1,1
-361.5,84,1172.4383,1467.561552,1105.807123,1209.613133,452.678889,452.678889,2402.35734,22577.90326,1,1,1,1,1,1,1
-362,84,1172.4383,1467.561552,1129.679182,1137.023841,452.678889,452.678889,2366.206372,22238.25809,1,1,1,1,1,1,1
-362.5,84,1172.4383,1467.561552,1061.314227,1142.271152,452.678889,452.678889,2317.299321,21778.73555,1,1,1,1,1,1,1
-363,84,1172.4383,1467.561552,1068.803733,1075.786113,452.678889,452.678889,2265.592822,21292.35203,1,1,1,1,1,1,1
-363.5,84,1172.4383,1467.561552,1042.355938,1061.697358,452.678889,452.678889,2228.667425,20944.88553,1,1,1,1,1,1,1
-364,84,1172.4383,1467.561552,1002.820022,1061.41062,452.678889,452.678889,2192.264531,20602.32428,1,1,1,1,1,1,1
-364.5,84,1172.4383,1467.561552,972.0831321,995.0272034,452.678889,452.678889,2103.481891,19766.85518,1,1,1,1,1,1,1
-365,84,1172.4383,1467.561552,903.795858,939.0982893,452.678889,452.678889,1989.929028,18698.29173,1,1,1,1,1,1,1
-365.5,84,1172.4383,1467.561552,831.3874344,931.3292072,452.678889,452.678889,1916.63563,18008.58083,1,1,1,1,1,1,1
-366,84,1172.4383,1467.561552,766.0073408,930.032118,452.678889,452.678889,1856.582922,17444.15235,1,1,1,1,1,1,1
-366.5,84,1172.4383,1467.561552,734.4850504,897.7039505,452.678889,452.678889,1799.292061,16905.84848,1,1,1,1,1,1,1
-367,84,1172.4383,1467.561552,734.7113953,834.0019717,452.678889,452.678889,1742.348023,16370.81136,1,1,1,1,1,1,1
-367.5,84,1172.4383,1467.561552,746.7904299,768.1475991,452.678889,452.678889,1694.107133,15917.54829,1,1,1,1,1,1,1
-368,84,1172.4383,1467.561552,671.3210382,793.5645556,452.678889,452.678889,1649.206562,15495.67039,1,1,1,1,1,1,1
-368.5,84,1172.4383,1467.561552,637.8043413,763.9634418,452.678889,452.678889,1592.584216,14963.65614,1,1,1,1,1,1,1
-369,84,1172.4383,1467.561552,614.023598,722.0156934,452.678889,452.678889,1533.619669,14409.63481,1,1,1,1,1,1,1
-369.5,84,1172.4383,1467.561552,631.8687338,640.3220417,452.678889,452.678889,1483.215678,13936.04716,1,1,1,1,1,1,1
-370,84,1172.4383,1467.561552,604.6615796,604.6615796,452.678889,452.678889,1440.416683,13533.91536,1,1,1,1,1,1,1
-370.5,84,1172.4383,1467.561552,584.1492337,594.9843257,452.678889,452.678889,1421.10146,13352.43228,1,1,1,1,1,1,1
-371,84,1172.4383,1467.561552,531.7174947,628.6769456,452.678889,452.678889,1407.442875,13224.09903,1,1,1,1,1,1,1
-371.5,84,1172.4383,1467.561552,500.7250344,588.8078868,452.678889,452.678889,1350.729279,12691.22746,1,1,1,1,1,1,1
-372,84,1172.4383,1467.561552,466.3359377,547.43784,452.678889,452.678889,1290.003855,12120.66148,1,1,1,1,1,1,1
-372.5,84,1172.4383,1467.561552,437.1966122,522.7957681,452.678889,452.678889,1246.893475,11715.60339,1,1,1,1,1,1,1
-373,84,1172.4383,1467.561552,433.9772182,474.0949189,452.678889,452.678889,1205.276757,11324.57938,1,1,1,1,1,1,1
-373.5,84,1172.4383,1467.561552,402.9359951,420.8471293,452.678889,452.678889,1137.714688,10689.77762,1,1,1,1,1,1,1
-374,84,1172.4383,1467.561552,361.9291224,363.2263103,452.678889,452.678889,1059.348629,9953.462798,1,1,1,1,1,1,1
-374.5,84,1172.4383,1467.561552,317.1385443,341.1938698,452.678889,452.678889,1008.682904,9477.416032,1,1,1,1,1,1,1
-375,84,1172.4383,1467.561552,295.9140714,314.7527578,452.678889,452.678889,972.77189,9140.002577,1,1,1,1,1,1,1
-375.5,84,1172.4383,1467.561552,266.4717319,321.9391472,452.678889,452.678889,956.0044073,8982.458414,1,1,1,1,1,1,1
-376,84,1172.4383,1467.561552,276.8244267,291.9268575,452.678889,452.678889,941.1925494,8843.288511,1,1,1,1,1,1,1
-376.5,84,1172.4383,1467.561552,258.2380089,273.7472136,452.678889,452.678889,913.493676,8583.034281,1,1,1,1,1,1,1
-377,84,1172.4383,1467.561552,234.902668,254.0404058,452.678889,452.678889,881.0655481,8278.344741,1,1,1,1,1,1,1
-377.5,84,1172.4383,1467.561552,215.635147,256.1702245,452.678889,452.678889,868.1535309,8157.025914,1,1,1,1,1,1,1
-378,84,1172.4383,1467.561552,226.7013811,234.3008122,452.678889,452.678889,860.0150194,8080.557857,1,1,1,1,1,1,1
-378.5,84,1172.4383,1467.561552,211.7325298,236.818721,452.678889,452.678889,850.6348019,7992.422727,1,1,1,1,1,1,1
-379,84,1172.4383,1467.561552,196.9875261,239.1831814,452.678889,452.678889,841.3070728,7904.781292,1,1,1,1,1,1,1
-379.5,84,1172.4383,1467.561552,202.7829939,234.4241123,452.678889,452.678889,842.088255,7912.121183,1,1,1,1,1,1,1
-380,84,1172.4383,1467.561552,208.15016,235.0919683,452.678889,452.678889,846.6347817,7954.839134,1,1,1,1,1,1,1
-380.5,84,1172.4383,1467.561552,196.0937303,233.7199551,452.678889,452.678889,836.5171697,7859.775646,1,1,1,1,1,1,1
-381,84,1172.4383,1467.561552,201.8726271,212.543168,452.678889,452.678889,824.9177342,7750.789205,1,1,1,1,1,1,1
-381.5,84,1172.4383,1467.561552,199.4291807,207.5691473,452.678889,452.678889,819.3286945,7698.275843,1,1,1,1,1,1,1
-382,84,1172.4383,1467.561552,196.3421917,204.3561587,452.678889,452.678889,814.5826251,7653.682429,1,1,1,1,1,1,1
-382.5,84,1172.4383,1467.561552,189.6542982,208.614457,452.678889,452.678889,812.7524393,7636.486343,1,1,1,1,1,1,1
-383,84,1172.4383,1467.561552,179.060523,217.0956778,452.678889,452.678889,811.1608445,7621.531862,1,1,1,1,1,1,1
-383.5,84,1172.4383,1467.561552,176.6156774,204.2172248,452.678889,452.678889,799.6154617,7513.053578,1,1,1,1,1,1,1
-384,84,1172.4383,1467.561552,174.9499254,187.0142237,452.678889,452.678889,785.4006574,7379.493776,1,1,1,1,1,1,1
-384.5,84,1172.4383,1467.561552,164.7311403,178.1606136,452.678889,452.678889,771.0308542,7244.477699,1,1,1,1,1,1,1
-385,84,1172.4383,1467.561552,155.5592954,168.52257,452.678889,452.678889,756.8592673,7111.323868,1,1,1,1,1,1,1
-385.5,84,1172.4383,1467.561552,157.8843504,158.9088967,452.678889,452.678889,751.3688101,7059.736188,1,1,1,1,1,1,1
-386,84,1172.4383,1467.561552,157.1723489,160.0938743,452.678889,452.678889,751.7252738,7063.084977,1,1,1,1,1,1,1
-386.5,84,1172.4383,1467.561552,160.8392969,164.0885756,452.678889,452.678889,757.4978771,7117.323651,1,1,1,1,1,1,1
-387,84,1172.4383,1467.561552,160.3360968,193.3812239,452.678889,452.678889,779.1873912,7321.114569,1,1,1,1,1,1,1
-387.5,84,1172.4383,1467.561552,213.7214182,216.5492014,452.678889,452.678889,836.8624181,7863.019462,1,1,1,1,1,1,1
-388,84,1172.4383,1467.561552,235.5224059,278.6802441,452.678889,452.678889,900.0954968,8457.14731,1,1,1,1,1,1,1
-388.5,84,1172.4383,1467.561552,312.0723159,333.9340272,452.678889,452.678889,999.3967958,9390.165741,1,1,1,1,1,1,1
-389,84,1172.4383,1467.561552,370.299553,431.8652518,452.678889,452.678889,1120.675721,10529.68239,1,1,1,1,1,1,1
-389.5,84,1172.4383,1467.561552,455.718585,478.2797952,452.678889,452.678889,1226.058887,11519.84499,1,1,1,1,1,1,1
-390,84,1172.4383,1467.561552,485.830892,554.9357348,452.678889,452.678889,1311.639094,12323.94231,1,1,1,1,1,1,1
-390.5,84,1172.4383,1467.561552,523.3576892,580.2016053,452.678889,452.678889,1361.971761,12796.85998,1,1,1,1,1,1,1
-391,84,1172.4383,1467.561552,557.2354945,604.5884069,452.678889,452.678889,1408.674568,13235.67111,1,1,1,1,1,1,1
-391.5,84,1172.4383,1467.561552,587.7420486,660.8024027,452.678889,452.678889,1466.282797,13776.94891,1,1,1,1,1,1,1
-392,84,1172.4383,1467.561552,659.0449753,702.8940458,452.678889,452.678889,1557.60382,14634.98584,1,1,1,1,1,1,1
-392.5,84,1172.4383,1467.561552,712.8285196,830.8820663,452.678889,452.678889,1719.919233,16160.07483,1,1,1,1,1,1,1
-393,84,1172.4383,1467.561552,852.2057441,878.1722068,452.678889,452.678889,1887.375988,17733.46993,1,1,1,1,1,1,1
-393.5,84,1172.4383,1467.561552,942.7845731,944.1702569,452.678889,452.678889,2030.211991,19077.36829,1,1,1,1,1,1,1
-394,84,1172.4383,1467.561552,1008.833774,1008.833774,452.678889,452.678889,2149.699206,20201.77243,1,1,1,1,1,1,1
-394.5,84,1172.4383,1467.561552,1063.703571,1063.703571,452.678889,452.678889,2250.016541,21145.78598,1,1,1,1,1,1,1
-395,84,1172.4383,1467.561552,1036.307973,1201.787825,452.678889,452.678889,2343.806718,22027.74292,1,1,1,1,1,1,1
-395.5,84,1172.4383,1467.561552,1165.349793,1201.506639,452.678889,452.678889,2447.873454,23004.96402,1,1,1,1,1,1,1
-396,84,1172.4383,1467.561552,1199.260868,1293.300841,452.678889,452.678889,2560.622863,24062.76242,1,1,1,1,1,1,1
-396.5,84,1172.4383,1467.561552,1247.932091,1351.926432,452.678889,452.678889,2657.73957,24973.83855,1,1,1,1,1,1,1
-397,84,1172.4383,1467.561552,1283.66789,1416.610874,452.678889,452.678889,2748.630745,25826.51094,1,1,1,1,1,1,1
-397.5,84,1172.4383,1467.561552,1315.205431,1480.816419,452.678889,452.678889,2829.086251,26581.68063,1,1,1,1,1,1,1
-398,84,1172.4383,1467.561552,1349.682733,1550.467172,452.678889,452.678889,2914.569023,27384.9353,1,1,1,1,1,1,1
-398.5,84,1172.4383,1467.561552,1410.910813,1653.776464,452.678889,452.678889,3054.634309,28701.27099,1,1,1,1,1,1,1
-399,84,1172.4383,1467.561552,1566.483041,1675.977142,452.678889,452.678889,3206.262754,30126.28199,1,1,1,1,1,1,1
-399.5,84,1172.4383,1467.561552,1608.882994,1806.019872,452.678889,452.678889,3349.796803,31476.01786,1,1,1,1,1,1,1
-400,84,1172.4383,1467.561552,1675.166745,1854.365635,452.678889,452.678889,3447.466203,32395.12934,1,1,1,1,1,1,1
-400.5,84,1172.4383,1467.561552,1771.886035,1819.032678,452.678889,452.678889,3499.948412,32889.05435,1,1,1,1,1,1,1
-401,84,1172.4383,1467.561552,1692.161108,1964.728716,452.678889,452.678889,3556.350352,33419.86821,1,1,1,1,1,1,1
-401.5,84,1172.4383,1467.561552,1879.959434,1903.221651,452.678889,452.678889,3663.445511,34427.60433,1,1,1,1,1,1,1
-402,84,1172.4383,1467.561552,1829.93928,2082.742052,452.678889,452.678889,3780.930409,35530.69491,1,1,1,1,1,1,1
-402.5,84,1172.4383,1467.561552,1865.586091,2146.427008,452.678889,452.678889,3879.671043,36457.19154,1,1,1,1,1,1,1
-403,84,1172.4383,1467.561552,1939.506438,2190.498363,452.678889,452.678889,3998.070111,37568.0919,1,1,1,1,1,1,1
-403.5,84,1172.4383,1467.561552,2124.271963,2143.99263,452.678889,452.678889,4136.809309,38869.83752,1,1,1,1,1,1,1
-404,84,1172.4383,1467.561552,1996.403011,2402.294583,452.678889,452.678889,4260.221003,40029.5235,1,1,1,1,1,1,1
-404.5,84,1172.4383,1467.561552,2153.168366,2311.617093,452.678889,452.678889,4328.356484,40670.15845,1,1,1,1,1,1,1
-405,83.99742232,1172.401936,1467.561552,2187.033525,2322.31395,452.6649978,452.6649978,4374.696108,41105.89124,1,1,1,1,1,1,1
-405.5,83.9824704,1172.193598,1467.561552,2175.877565,2353.468254,452.5844214,452.5844214,4394.082562,41288.18332,1,1,1,1,1,1,1
-406,83.95027403,1171.744685,1467.561552,2157.291334,2380.579079,452.410914,452.410914,4400.71899,41350.58766,1,1,1,1,1,1,1
-406.5,83.90601455,1171.126768,1467.561552,2136.364837,2405.231268,452.1723982,452.1723982,4401.927202,41361.95078,1,1,1,1,1,1,1
-407,83.85171814,1170.368226,1467.561552,2260.32393,2282.175022,451.8797929,451.8797929,4399.583234,41339.91313,1,1,1,1,1,1,1
-407.5,83.78597387,1169.451336,1467.561552,2271.453882,2271.453882,451.5254948,451.5254948,4396.084023,41307.0133,1,1,1,1,1,1,1
-408,83.70975677,1168.386616,1467.561552,2104.610879,2438.572299,451.1147582,451.1147582,4391.988734,41268.50983,1,1,1,1,1,1,1
-408.5,83.62690272,1167.231063,1467.561552,2235.929927,2307.302663,450.6682549,450.6682549,4387.544075,41226.72052,1,1,1,1,1,1,1
-409,83.53905391,1166.004125,1467.561552,2165.575189,2377.815526,450.1948347,450.1948347,4382.825015,41182.35144,1,1,1,1,1,1,1
-409.5,83.44273506,1164.660477,1467.561552,2220.759201,2322.911668,449.6757691,449.6757691,4377.657255,41133.76445,1,1,1,1,1,1,1
-410,83.33900174,1163.213024,1467.561552,2143.13476,2400.610817,449.1167466,449.1167466,4372.089843,41081.41909,1,1,1,1,1,1,1
-410.5,83.23164138,1161.713769,1467.561552,2135.550356,2408.173805,448.5381779,448.5381779,4366.323449,41027.203,1,1,1,1,1,1,1
-411,83.12171733,1160.179628,1467.561552,2135.537992,2408.159864,447.9457935,447.9457935,4360.422909,40971.72566,1,1,1,1,1,1,1
-411.5,83.00931689,1158.610187,1467.561552,2218.645753,2325.028087,447.3400636,447.3400636,4354.386222,40914.96837,1,1,1,1,1,1,1
-412,82.89394423,1157.000072,1467.561552,2247.161786,2296.503655,446.7183164,446.7183164,4348.19344,40856.74345,1,1,1,1,1,1,1
-412.5,82.77522962,1155.343629,1467.561552,2103.881973,2439.790534,446.0785593,446.0785593,4341.822447,40796.84292,1,1,1,1,1,1,1
-413,82.65355641,1153.645618,1467.561552,2193.737989,2349.890798,445.4228582,445.4228582,4335.291687,40735.44072,1,1,1,1,1,1,1
-413.5,82.52991924,1151.919638,1467.561552,2182.908049,2360.645935,444.7565732,444.7565732,4328.652843,40673.02221,1,1,1,1,1,1,1
-414,82.40466057,1150.171277,1467.561552,2139.471725,2403.998914,444.0815499,444.0815499,4321.92834,40609.79769,1,1,1,1,1,1,1
-414.5,82.27825959,1148.406959,1467.561552,2156.057343,2387.302083,443.4003707,443.4003707,4315.142447,40545.9964,1,1,1,1,1,1,1
-415,82.15212458,1146.64691,1467.561552,2137.344628,2405.821619,442.7206248,442.7206248,4308.372743,40482.34767,1,1,1,1,1,1,1
-415.5,82.02909264,1144.929814,1467.561552,2176.424512,2366.420027,442.0576015,442.0576015,4301.768612,40420.25499,1,1,1,1,1,1,1
-416,81.91029329,1143.271011,1467.561552,2221.684415,2320.887959,441.4173876,441.4173876,4295.388638,40360.26998,1,1,1,1,1,1,1
-416.5,81.79433765,1141.652745,1467.561552,2246.359379,2295.995038,440.7924987,440.7924987,4289.164347,40301.74893,1,1,1,1,1,1,1
-417,81.68042255,1140.062314,1467.561552,2124.822509,2417.333446,440.1786063,440.1786063,4283.047153,40244.23492,1,1,1,1,1,1,1
-417.5,81.56816079,1138.495309,1467.561552,2132.58656,2409.379816,439.5736239,439.5736239,4277.02016,40187.56879,1,1,1,1,1,1,1
-418,81.45702596,1136.944571,1467.561552,2257.994536,2283.813648,438.9747145,438.9747145,4271.055606,40131.48959,1,1,1,1,1,1,1
-418.5,81.34563072,1135.389872,1467.561552,2229.779015,2311.953112,438.3744017,438.3744017,4265.075965,40075.26899,1,1,1,1,1,1,1
-419,81.23213881,1133.806143,1467.561552,2225.438591,2316.272819,437.7627898,437.7627898,4258.984601,40017.99729,1,1,1,1,1,1,1
-419.5,81.11506718,1132.171705,1467.561552,2122.892843,2418.845857,437.1318868,437.1318868,4252.698122,39958.89125,1,1,1,1,1,1,1
-420,80.99422942,1130.484924,1467.561552,2255.356871,2286.361247,436.4806879,436.4806879,4246.210402,39897.89309,1,1,1,1,1,1,1
-420.5,80.87059185,1128.759625,1467.561552,2066.07644,2475.58814,435.8144008,435.8144008,4239.574629,39835.50341,1,1,1,1,1,1,1
-421,80.7449793,1127.006024,1467.561552,2186.910093,2354.669553,435.1374705,435.1374705,4232.829545,39772.0862,1,1,1,1,1,1,1
-421.5,80.61917994,1125.24991,1467.561552,2059.503152,2481.875426,434.4595334,434.4595334,4226.07513,39708.58083,1,1,1,1,1,1,1
-422,80.49535899,1123.521692,1467.561552,2186.438973,2354.691076,433.7922581,433.7922581,4219.428027,39646.08454,1,1,1,1,1,1,1
-422.5,80.37479111,1121.838769,1467.561552,2100.289818,2440.547184,433.1425136,433.1425136,4212.955469,39585.22844,1,1,1,1,1,1,1
-423,80.25826615,1120.212146,1467.561552,2251.72228,2288.81824,432.5145566,432.5145566,4206.698937,39526.40409,1,1,1,1,1,1,1
-423.5,80.14574736,1118.642656,1467.561552,2229.396635,2310.855707,431.908189,431.908189,4200.662172,39469.64655,1,1,1,1,1,1,1
-424,80.03747174,1117.131259,1467.561552,2102.483245,2437.474786,431.3246879,431.3246879,4194.849226,39414.99299,1,1,1,1,1,1,1
-424.5,79.93581789,1115.712582,1467.561552,2108.500746,2430.993081,430.7768718,430.7768718,4189.39275,39363.69111,1,1,1,1,1,1,1
-425,79.84454729,1114.438127,1467.561552,2049.652109,2489.282075,430.2850114,430.2850114,4184.49092,39317.60371,1,1,1,1,1,1,1
-425.5,79.76592871,1113.341113,1467.561552,2164.071754,2374.242235,429.8613332,429.8613332,4180.271516,39277.93218,1,1,1,1,1,1,1
-426,79.70082403,1112.431736,1467.561552,2056.350763,2481.381108,429.5104818,429.5104818,4176.773803,39245.04684,1,1,1,1,1,1,1
-426.5,79.64653695,1111.674152,1467.561552,2244.627679,2292.707759,429.2179269,429.2179269,4173.85983,39217.6496,1,1,1,1,1,1,1
-427,79.6004099,1111.030694,1467.561552,2187.388153,2349.596981,428.9693466,428.9693466,4171.385046,39194.38112,1,1,1,1,1,1,1
-427.5,79.56200656,1110.4949,1467.561552,2238.387682,2298.257493,428.7623897,428.7623897,4169.324122,39175.00406,1,1,1,1,1,1,1
-428,79.53129268,1110.065901,1467.561552,2063.139646,2473.173826,428.5968716,428.5968716,4167.674319,39159.49261,1,1,1,1,1,1,1
-428.5,79.50871756,1109.750928,1467.561552,2101.951813,2434.002876,428.4752135,428.4752135,4166.462669,39148.10107,1,1,1,1,1,1,1
-429,79.49514793,1109.561696,1467.561552,2129.297616,2406.285035,428.4020863,428.4020863,4165.734796,39141.25727,1,1,1,1,1,1,1
-429.5,79.4903173,1109.494589,1467.561552,2192.3243,2342.941362,428.3760538,428.3760538,4165.476756,39138.83151,1,1,1,1,1,1,1
-430,79.4933827,1109.536665,1467.561552,2179.177588,2355.720825,428.3925734,428.3925734,4165.550408,39139.52325,1,1,1,1,1,1,1
-430.5,79.50335701,1109.676287,1467.561552,2257.544879,2276.921669,428.4463253,428.4463253,4165.88273,39142.64827,1,1,1,1,1,1,1
-431,79.51977372,1109.905239,1467.561552,2246.756585,2287.25393,428.5347955,428.5347955,4166.516061,39148.60232,1,1,1,1,1,1,1
-431.5,79.54339844,1110.234717,1467.561552,2183.309878,2350.145587,428.6621099,428.6621099,4167.498446,39157.8386,1,1,1,1,1,1,1
-432,79.57727526,1110.708228,1467.561552,2195.927858,2336.732156,428.8446732,428.8446732,4168.939883,39171.39077,1,1,1,1,1,1,1
-432.5,79.62399936,1111.360324,1467.561552,2116.880434,2414.877706,429.096471,429.096471,4170.967329,39190.45195,1,1,1,1,1,1,1
-433,79.68383469,1112.194745,1467.561552,2187.876899,2342.951139,429.4189257,429.4189257,4173.64911,39215.66597,1,1,1,1,1,1,1
-433.5,79.754991,1113.18789,1467.561552,2197.081258,2332.983191,429.8023895,429.8023895,4176.967113,39246.86151,1,1,1,1,1,1,1
-434,79.83474974,1114.301869,1467.561552,2156.248846,2373.22383,430.2322121,430.2322121,4180.830877,39283.18881,1,1,1,1,1,1,1
-434.5,79.92211447,1115.520313,1467.561552,2090.402532,2438.551403,430.7030236,430.7030236,4185.16073,39323.89792,1,1,1,1,1,1,1
-435,80.01672099,1116.841605,1467.561552,2042.510034,2485.968357,431.2128614,431.2128614,4189.915826,39368.60536,1,1,1,1,1,1,1
-435.5,80.11907432,1118.269487,1467.561552,2159.433785,2368.555867,431.7644471,431.7644471,4195.087124,39417.22582,1,1,1,1,1,1,1
-436,80.23024444,1119.821282,1467.561552,2112.196198,2415.221673,432.3635466,432.3635466,4200.707978,39470.07252,1,1,1,1,1,1,1
-436.5,80.35095989,1121.505986,1467.561552,2165.997154,2360.85447,433.0140863,433.0140863,4206.814079,39527.48234,1,1,1,1,1,1,1
-437,80.48003167,1123.307497,1467.561552,2111.60345,2414.777299,433.7096586,433.7096586,4213.390176,39589.31037,1,1,1,1,1,1,1
-437.5,80.61650647,1125.21282,1467.561552,2145.310314,2380.650134,434.445126,434.445126,4220.398836,39655.20626,1,1,1,1,1,1,1
-438,80.7609236,1127.228274,1467.561552,2149.61523,2375.890517,435.2233949,435.2233949,4227.835,39725.12107,1,1,1,1,1,1,1
-438.5,80.91419289,1129.367899,1467.561552,2149.379786,2375.63029,436.0493684,436.0493684,4235.727572,39799.32738,1,1,1,1,1,1,1
-439,81.07746637,1131.646719,1467.561552,2067.407997,2457.03329,436.9292547,436.9292547,4244.121937,39878.25154,1,1,1,1,1,1,1
-439.5,81.25143404,1134.075519,1467.561552,2119.701492,2404.15137,437.8667725,437.8667725,4253.063751,39962.32244,1,1,1,1,1,1,1
-440,81.43555393,1136.645133,1467.561552,2105.49345,2417.833484,438.8590009,438.8590009,4262.553414,40051.54465,1,1,1,1,1,1,1
-440.5,81.62901041,1139.345586,1467.561552,2164.607559,2358.238005,439.9015446,439.9015446,4272.570812,40145.72785,1,1,1,1,1,1,1
-441,81.83196476,1142.177495,1467.561552,2252.814516,2269.550872,440.9952725,440.9952725,4283.104714,40244.76792,1,1,1,1,1,1,1
-441.5,82.04475337,1145.14774,1467.561552,2055.449189,2466.42588,442.1419977,442.1419977,4294.166985,40348.77531,1,1,1,1,1,1,1
-442,82.26801043,1148.264081,1467.561552,2199.236846,2322.121943,443.3451377,443.3451377,4305.778609,40457.9482,1,1,1,1,1,1,1
-442.5,82.50197927,1151.529602,1467.561552,2070.963806,2449.886628,444.6060038,444.6060038,4317.957165,40572.45153,1,1,1,1,1,1,1
-443,82.74448672,1154.914775,1467.561552,2221.95766,2298.599719,445.9128848,445.9128848,4330.647965,40691.77095,1,1,1,1,1,1,1
-443.5,82.9930768,1158.383657,1467.561552,2237.594027,2282.797946,447.2525453,447.2525453,4343.747748,40814.93535,1,1,1,1,1,1,1
-444,83.24780943,1161.93968,1467.561552,2133.974843,2386.219567,448.6253082,448.6253082,4357.21147,40941.52216,1,1,1,1,1,1,1
-444.5,83.51164796,1165.62211,1467.561552,2041.358716,2478.453807,450.047143,450.047143,4371.110369,41072.19972,1,1,1,1,1,1,1
-445,83.78661791,1169.459441,1467.561552,2241.479028,2277.883586,451.5289656,451.5289656,4385.53991,41207.86721,1,1,1,1,1,1,1
-445.5,83.96139175,1171.899578,1467.561552,1171.949938,1233.30685,452.4708278,452.4708278,2496.415089,23461.37215,1,1,1,1,1,1,1
-446,83.99798284,1172.410163,1467.561552,786.1261242,929.9873523,452.6680184,452.6680184,1874.91001,17616.79961,1,1,1,1,1,1,1
-446.5,84,1172.4383,1467.561552,774.1569316,845.5862845,452.678889,452.678889,1788.127516,16800.94776,1,1,1,1,1,1,1
-447,84,1172.4383,1467.561552,734.4412596,810.4009009,452.678889,452.678889,1720.934729,16169.61595,1,1,1,1,1,1,1
-447.5,84,1172.4383,1467.561552,654.9606854,779.1428575,452.678889,452.678889,1621.591473,15236.20282,1,1,1,1,1,1,1
-448,84,1172.4383,1467.561552,651.3182433,673.619705,452.678889,452.678889,1523.659639,14316.05238,1,1,1,1,1,1,1
-448.5,84,1172.4383,1467.561552,611.2226792,612.2678223,452.678889,452.678889,1449.825877,13622.32247,1,1,1,1,1,1,1
-449,84,1172.4383,1467.561552,547.7824507,611.55194,452.678889,452.678889,1406.077794,13211.27253,1,1,1,1,1,1,1
-449.5,84,1172.4383,1467.561552,525.6717704,581.9705528,452.678889,452.678889,1365.243729,12827.60296,1,1,1,1,1,1,1
-450,84,1172.4383,1467.561552,485.711769,577.9349332,452.678889,452.678889,1329.978607,12496.25737,1,1,1,1,1,1,1
-450.5,84,1172.4383,1467.561552,513.0434307,520.6196247,452.678889,452.678889,1305.945016,12270.44202,1,1,1,1,1,1,1
-451,84,1172.4383,1467.561552,484.7309086,541.3843577,452.678889,452.678889,1299.895617,12213.60248,1,1,1,1,1,1,1
-451.5,84,1172.4383,1467.561552,494.4395594,537.3394714,452.678889,452.678889,1304.435492,12256.25888,1,1,1,1,1,1,1
-452,84,1172.4383,1467.561552,462.7048413,549.7252963,452.678889,452.678889,1288.925576,12110.53033,1,1,1,1,1,1,1
-452.5,84,1172.4383,1467.561552,460.5011072,521.8496795,452.678889,452.678889,1264.81571,11883.99771,1,1,1,1,1,1,1
-453,84,1172.4383,1467.561552,448.6006276,496.64074,452.678889,452.678889,1235.070356,11604.51526,1,1,1,1,1,1,1
-453.5,84,1172.4383,1467.561552,414.2309295,492.8781556,452.678889,452.678889,1204.504653,11317.32507,1,1,1,1,1,1,1
-454,84,1172.4383,1467.561552,425.8532917,448.362473,452.678889,452.678889,1178.138395,11069.59187,1,1,1,1,1,1,1
-454.5,84,1172.4383,1467.561552,419.0660053,428.2310582,452.678889,452.678889,1156.561599,10866.85956,1,1,1,1,1,1,1
-455,84,1172.4383,1467.561552,419.8191907,420.4902775,452.678889,452.678889,1150.961731,10814.24447,1,1,1,1,1,1,1
-455.5,84,1172.4383,1467.561552,410.9483341,434.3053311,452.678889,452.678889,1154.924391,10851.47728,1,1,1,1,1,1,1
-456,84,1172.4383,1467.561552,432.9476402,434.9621368,452.678889,452.678889,1173.084882,11022.11021,1,1,1,1,1,1,1
-456.5,84,1172.4383,1467.561552,417.6703173,475.3470518,452.678889,452.678889,1193.210073,11211.20335,1,1,1,1,1,1,1
-457,84,1172.4383,1467.561552,429.5296454,459.0289806,452.678889,452.678889,1189.636322,11177.62449,1,1,1,1,1,1,1
-457.5,84,1172.4383,1467.561552,395.3828747,468.9416419,452.678889,452.678889,1170.210987,10995.10758,1,1,1,1,1,1,1
-458,84,1172.4383,1467.561552,409.2987303,455.2655534,452.678889,452.678889,1170.40324,10996.91392,1,1,1,1,1,1,1
-458.5,84,1172.4383,1467.561552,390.8292315,456.5605533,452.678889,452.678889,1156.636833,10867.56725,1,1,1,1,1,1,1
-459,84,1172.4383,1467.561552,360.362716,386.1152442,452.678889,452.678889,1075.749961,10107.56762,1,1,1,1,1,1,1
-459.5,84,1172.4383,1467.561552,307.3869622,338.5100202,452.678889,452.678889,999.3337872,9389.573987,1,1,1,1,1,1,1
-460,84,1172.4383,1467.561552,259.2046536,302.631958,452.678889,452.678889,935.9830644,8794.341192,1,1,1,1,1,1,1
-460.5,84,1172.4383,1467.561552,212.9769476,259.3254134,452.678889,452.678889,868.5285885,8160.549747,1,1,1,1,1,1,1
-461,84,1172.4383,1467.561552,148.6231557,166.211521,452.678889,452.678889,749.8935655,7045.875278,1,1,1,1,1,1,1
-461.5,84,1172.4383,1467.561552,82.98997732,84.18840348,452.678889,452.678889,647.4659006,6083.481384,1,1,1,1,1,1,1
-462,84,1172.4383,1467.561552,57.11875887,64.78759305,452.678889,452.678889,615.2267848,5780.568516,1,1,1,1,1,1,1
-462.5,84,1172.4383,1467.561552,26.73962231,29.26320201,452.678889,452.678889,567.7447646,5334.434863,1,1,1,1,1,1,1
-463,84,1172.4383,1467.561552,-23.90186966,-29.48107547,452.678889,452.678889,489.057295,4595.100573,1,1,1,1,1,1,1
-463.5,84,1172.4383,1467.561552,-60.99347308,-73.11251699,452.678889,452.678889,432.0063242,4059.05944,1,1,1,1,1,1,1
-464,84,1172.4383,1467.561552,-95.21077011,-103.7251789,452.678889,452.678889,386.9462326,3635.682158,1,1,1,1,1,1,1
-464.5,84,1172.4383,1467.561552,-134.6621355,-148.6666014,452.678889,452.678889,334.738033,3145.142829,1,1,1,1,1,1,1
-465,84,1172.4383,1467.561552,-210.5876675,-224.088752,452.678889,452.678889,228.4943612,2146.894545,1,1,1,1,1,1,1
-465.5,84,1172.4383,1467.561552,-264.917163,-303.2701599,452.678889,452.678889,133.2609278,1252.097777,1,1,1,1,1,1,1
-466,84,1172.4383,1467.561552,-318.7720603,-346.772118,452.678889,452.678889,63.88177276,600.2229434,1,1,1,1,1,1,1
-466.5,84,1172.4383,1467.561552,-361.9795926,-377.8448703,452.678889,452.678889,10.9583081,102.9621048,1,1,1,1,1,1,1
-467,84.00257768,1172.474664,1467.561552,-366.3040165,-388.3516937,452.6927802,452.6927802,0.54423936,5.11355056,1,1,1,1,1,1,1
-467.5,84.01136329,1172.596673,1467.561552,-349.1274418,-406.592939,452.7401262,452.7401262,0,0,1,1,1,1,1,1,1
-468,84.02793776,1172.828444,1467.561552,-344.3271135,-411.7780263,452.8294465,452.8294465,0,0,1,1,1,1,1,1,1
-468.5,84.05398238,1173.192224,1467.561552,-351.2095503,-405.3646805,452.9698019,452.9698019,0,0,1,1,1,1,1,1,1
-469,84.091105,1173.710028,1467.561552,-345.0929418,-412.0424701,453.169857,453.169857,0,0,1,1,1,1,1,1,1
-469.5,84.1411,1174.407404,1467.561552,-341.3093007,-416.4959599,453.4392817,453.4392817,0,0,1,1,1,1,1,1,1
-470,84.20520034,1175.302392,1467.561552,-369.3114283,-389.2242529,453.7847207,453.7847207,0,0,1,1,1,1,1,1,1
-470.5,84.28298145,1176.388465,1467.561552,-358.0181632,-401.2161342,454.2038858,454.2038858,0,0,1,1,1,1,1,1,1
-471,84.37345797,1177.651404,1467.561552,-353.6673958,-406.2786134,454.6914669,454.6914669,0,0,1,1,1,1,1,1,1
-471.5,84.47534901,1179.073707,1467.561552,-367.7311388,-392.8732269,455.2405612,455.2405612,0,0,1,1,1,1,1,1,1
-472,84.58642806,1180.623964,1467.561552,-362.1419739,-399.0476088,455.83917,455.83917,0,0,1,1,1,1,1,1,1
-472.5,84.70568563,1182.288298,1467.561552,-358.3373829,-403.4732283,456.4818531,456.4818531,0,0,1,1,1,1,1,1,1
-473,84.83316918,1184.06693,1467.561552,-372.4585541,-389.9763557,457.1688663,457.1688663,0,0,1,1,1,1,1,1,1
-473.5,84.96673707,1185.931787,1467.561552,-359.7018007,-403.2312408,457.8886683,457.8886683,0,0,1,1,1,1,1,1,1
-474,85.10436013,1187.853043,1467.561552,-365.8829298,-397.53127,458.6303237,458.6303237,0,0,1,1,1,1,1,1,1
-474.5,85.24820929,1189.859849,1467.561552,-373.8619681,-390.2443413,459.4055318,459.4055318,0,0,1,1,1,1,1,1,1
-475,85.40304845,1192.021319,1467.561552,-371.3069743,-393.7145245,460.2399653,460.2399653,0,0,1,1,1,1,1,1,1
-475.5,85.57228108,1194.383254,1467.561552,-378.6536214,-387.3862146,461.1519658,461.1519658,0,0,1,1,1,1,1,1,1
-476,85.75595676,1196.947026,1467.561552,-376.1119152,-390.9234769,462.1418004,462.1418004,0,0,1,1,1,1,1,1,1
-476.5,85.94990384,1199.653738,1467.561552,-369.0538024,-398.7234498,463.1869879,463.1869879,0,0,1,1,1,1,1,1,1
-477,86.14995066,1202.446436,1467.561552,-354.6068206,-414.0515429,464.2650471,464.2650471,0,0,1,1,1,1,1,1,1
-477.5,86.35768046,1205.346463,1467.561552,-379.2667168,-390.487679,465.3845101,465.3845101,0,0,1,1,1,1,1,1,1
-478,86.48127494,1207.07148,1467.561552,-1173.381369,-1401.090673,466.050565,466.050565,0,0,1,1,1,1,1,1,1
-478.5,86.4992828,1207.322324,1467.561552,-1459.066393,-1474.764985,466.1476099,466.1476099,0,0,1,1,1,1,1,1,1
-479,86.5,1207.3323,1467.561552,-1348.052911,-1626.445698,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-479.5,86.5,1207.3323,1467.561552,-1435.656456,-1627.113104,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-480,86.5,1207.3323,1467.561552,-1543.947153,-1676.73944,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-480.5,86.5,1207.3323,1467.561552,-1546.830982,-1772.953897,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-481,86.5,1207.3323,1467.561552,-1561.96002,-1831.269878,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-481.5,86.5,1207.3323,1467.561552,-1646.48916,-1826.735482,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-482,86.5,1207.3323,1467.561552,-1661.451298,-1906.729849,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-482.5,86.5,1207.3323,1467.561552,-1775.469265,-1791.632609,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-483,86.5,1207.3323,1467.561552,-1755.225331,-1755.225331,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-483.5,86.5,1207.3323,1467.561552,-1686.069465,-1817.136728,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-484,86.5,1207.3323,1467.561552,-1733.607165,-1775.486868,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-484.5,86.5,1207.3323,1467.561552,-1699.46087,-1799.907629,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-485,86.5,1207.3323,1467.561552,-1700.86063,-1772.589777,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-485.5,86.5,1207.3323,1467.561552,-1737.466155,-1741.951603,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-486,86.5,1207.3323,1467.561552,-1683.685476,-1814.625733,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-486.5,86.5,1207.3323,1467.561552,-1623.392522,-1860.481521,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-487,86.5,1207.3323,1467.561552,-1598.357396,-1804.796513,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-487.5,86.5,1207.3323,1467.561552,-1608.204538,-1779.799631,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-488,86.5,1207.3323,1467.561552,-1607.525676,-1810.413825,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-488.5,86.5,1207.3323,1467.561552,-1632.89742,-1807.106995,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-489,86.5,1207.3323,1467.561552,-1643.298975,-1782.55632,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-489.5,86.5,1207.3323,1467.561552,-1658.354076,-1763.213513,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-490,86.5,1207.3323,1467.561552,-1584.974262,-1848.610061,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-490.5,86.5,1207.3323,1467.561552,-1628.258174,-1806.660008,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-491,86.5,1207.3323,1467.561552,-1582.32669,-1781.965225,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-491.5,86.5,1207.3323,1467.561552,-1599.889753,-1705.563904,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-492,86.5,1207.3323,1467.561552,-1600.779156,-1699.796423,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-492.5,86.5,1207.3323,1467.561552,-1535.141177,-1757.067287,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-493,86.5,1207.3323,1467.561552,-1462.541899,-1714.58571,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-493.5,86.5,1207.3323,1467.561552,-1405.310091,-1619.063563,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-494,86.5,1207.3323,1467.561552,-1404.435353,-1471.694363,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-494.5,86.5,1207.3323,1467.561552,-1307.072081,-1438.810787,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-495,86.5,1207.3323,1467.561552,-1312.309315,-1321.151592,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-495.5,86.5,1207.3323,1467.561552,-1140.963461,-1375.660095,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-496,86.5,1207.3323,1467.561552,-1098.338222,-1268.907998,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-496.5,86.5,1207.3323,1467.561552,-1043.295926,-1178.102761,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-497,86.5,1207.3323,1467.561552,-1043.349743,-1051.923465,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-497.5,86.5,1207.3323,1467.561552,-946.4872108,-1019.743067,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-498,86.5,1207.3323,1467.561552,-821.895325,-959.334567,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-498.5,86.5,1207.3323,1467.561552,-719.6873723,-877.0783578,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-499,86.5,1207.3323,1467.561552,-691.7992291,-784.4707277,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-499.5,86.5,1207.3323,1467.561552,-678.5525992,-684.2455516,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-500,86.5,1207.3323,1467.561552,-573.4449558,-606.2076135,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-500.5,86.5,1207.3323,1467.561552,-461.02676,-507.9680795,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-501,86.5,1207.3323,1467.561552,-374.1373333,-453.8505508,466.151475,466.151475,0,0,1,1,1,1,1,1,1
-501.5,86.49672675,1207.286475,1467.561552,-365.7190676,-399.5127392,466.1338353,466.1338353,0,0,1,1,1,1,1,1,1
-502,86.48097568,1207.066988,1467.561552,-375.8218571,-384.9095139,466.0489523,466.0489523,0,0,1,1,1,1,1,1,1
-502.5,86.4441825,1206.553919,1467.561552,-354.7261773,-404.9365123,465.8506726,465.8506726,0,0,1,1,1,1,1,1,1
-503,86.38637013,1205.746925,1467.561552,-359.9023813,-398.8322627,465.5391197,465.5391197,0,0.0000934626,1,1,1,1,1,1,1
-503.5,86.31140538,1204.699724,1467.561552,-359.9748905,-397.8669843,465.1351321,465.1351321,0,0.0001,1,1,1,1,1,1,1
-504,86.22087859,1203.436608,1467.561552,-377.2129864,-379.7273181,464.6472801,464.6472801,0,0.0001,1,1,1,1,1,1,1
-504.5,86.11552453,1201.966422,1467.561552,-346.2588749,-409.7372765,464.0795234,464.0795234,0,0.0001,1,1,1,1,1,1,1
-505,85.99538821,1200.289311,1467.561552,-354.0816246,-400.9134408,463.4321047,463.4321047,0,0.0001,1,1,1,1,1,1,1
-505.5,85.86030863,1198.403831,1467.561552,-343.8661562,-410.1826792,462.7041562,462.7041562,0,0.0001,1,1,1,1,1,1,1
-506,85.71018973,1196.30814,1467.561552,-353.1614717,-399.9142418,461.8951603,461.8951603,0,0.0001,1,1,1,1,1,1,1
-506.5,85.54481692,1194.000588,1467.561552,-349.9773442,-402.0926562,461.0039605,461.0039605,0,0.0001,1,1,1,1,1,1,1
-507,85.36445329,1191.482918,1467.561552,-356.2058687,-394.8304673,460.0319747,460.0319747,0,0.0001,1,1,1,1,1,1,1
-507.5,85.16934155,1188.759487,1467.561552,-370.1513428,-379.8293305,458.9805108,458.9805108,0,0.0001,1,1,1,1,1,1,1
-508,84.96020891,1185.840376,1467.561552,-374.1929048,-374.7456706,457.8534878,457.8534878,0,0.0001,1,1,1,1,1,1,1
-508.5,84.73794241,1182.73762,1467.561552,-363.5669546,-384.3206637,456.655686,456.655686,0,0.0001,1,1,1,1,1,1,1
-509,84.50200437,1179.445322,1467.561552,-362.1736729,-384.5761681,455.3842078,455.3842078,0,0.0001,1,1,1,1,1,1,1
-509.5,84.2500492,1175.928379,1467.561552,-351.2250951,-394.2065977,454.0264127,454.0264127,0,0.00000778754,1,1,1,1,1,1,1
-510,84.06376893,1173.327805,1467.561552,405.6933729,438.2756942,453.022542,453.022542,1161.011782,10908.67303,1,1,1,1,1,1,1
-510.5,84.00392873,1172.493088,1467.561552,961.0258647,1041.111353,452.700061,452.700061,2140.20316,20113.14895,1,1,1,1,1,1,1
-511,84,1172.4383,1467.561552,1038.504938,1211.898608,452.678889,452.678889,2352.598876,22110.30445,1,1,1,1,1,1,1
-511.5,84,1172.4383,1467.561552,1211.648624,1226.03093,452.678889,452.678889,2511.776896,23604.47394,1,1,1,1,1,1,1
-512,84,1172.4383,1467.561552,1242.500123,1388.686969,452.678889,452.678889,2686.095983,25239.85693,1,1,1,1,1,1,1
-512.5,84,1172.4383,1467.561552,1291.075038,1539.52486,452.678889,452.678889,2855.130996,26826.48027,1,1,1,1,1,1,1
-513,84,1172.4383,1467.561552,1438.567566,1541.531112,452.678889,452.678889,2982.485261,28023.21095,1,1,1,1,1,1,1
-513.5,84,1172.4383,1467.561552,1496.433951,1588.996876,452.678889,452.678889,3072.326419,28867.54215,1,1,1,1,1,1,1
-514,84,1172.4383,1467.561552,1593.246328,1600.615097,452.678889,452.678889,3164.811239,29736.71814,1,1,1,1,1,1,1
-514.5,84,1172.4383,1467.561552,1548.719802,1795.951095,452.678889,452.678889,3289.761237,30911.05529,1,1,1,1,1,1,1
-515,84,1172.4383,1467.561552,1730.286413,1784.087982,452.678889,452.678889,3434.507381,32273.17041,1,1,1,1,1,1,1
-515.5,84,1172.4383,1467.561552,1678.873573,2023.944638,452.678889,452.678889,3595.615159,33789.40007,1,1,1,1,1,1,1
-516,84,1172.4383,1467.561552,1777.534906,2093.08883,452.678889,452.678889,3739.696533,35143.68019,1,1,1,1,1,1,1
-516.5,84,1172.4383,1467.561552,1922.769256,2095.848919,452.678889,452.678889,3886.29963,36519.38567,1,1,1,1,1,1,1
-517,84,1172.4383,1467.561552,1902.841188,2261.644854,452.678889,452.678889,4032.671205,37892.7433,1,1,1,1,1,1,1
-517.5,84,1172.4383,1467.561552,2079.531723,2228.672622,452.678889,452.678889,4172.351649,39203.662,1,1,1,1,1,1,1
-518,84,1172.4383,1467.561552,2006.823234,2426.108015,452.678889,452.678889,4295.552485,40361.71899,1,1,1,1,1,1,1
-518.5,83.9990794,1172.425872,1467.561552,2085.949814,2411.342824,452.6739279,452.6739279,4362.291577,40989.25056,1,1,1,1,1,1,1
-519,83.99679056,1172.393039,1467.561552,2249.262025,2274.284145,452.6615932,452.6615932,4389.629458,41246.30989,1,1,1,1,1,1,1
-519.5,83.99420644,1172.357895,1467.561552,2141.689777,2392.161848,452.6476673,452.6476673,4400.320744,41346.84092,1,1,1,1,1,1,1
-520,83.99243498,1172.332269,1467.561552,2091.025689,2446.855251,452.6381208,452.6381208,4404.472285,41385.87802,1,1,1,1,1,1,1
-520.5,83.99128734,1172.317227,1467.561552,2234.405495,2305.022903,452.6319362,452.6319362,4406.071255,41400.91329,1,1,1,1,1,1,1
-521,83.99138412,1172.318309,1467.561552,2142.798793,2397.175274,452.6324577,452.6324577,4406.700909,41406.834,1,1,1,1,1,1,1
-521.5,83.99314914,1172.342159,1467.561552,2092.049764,2448.04805,452.6419695,452.6419695,4407.000598,41409.65174,1,1,1,1,1,1,1
-522,83.9969824,1172.396674,1467.561552,2208.665487,2320.885569,452.662627,452.662627,4396.251304,41308.57575,1,1,1,1,1,1,1
-522.5,83.99978562,1172.435354,1467.561552,2156.474829,2286.158075,452.6777337,452.6777337,4305.154869,40451.99302,1,1,1,1,1,1,1
-523,84,1172.4383,1467.561552,2219.185264,2229.749945,452.678889,452.678889,4311.750507,40514.01179,1,1,1,1,1,1,1
-523.5,84,1172.4383,1467.561552,2115.917378,2363.480911,452.678889,452.678889,4343.664032,40814.09555,1,1,1,1,1,1,1
-524,84,1172.4383,1467.561552,2056.340564,2451.357442,452.678889,452.678889,4373.312455,41092.88084,1,1,1,1,1,1,1
-524.5,84,1172.437656,1467.561552,2080.596076,2446.331129,452.678889,452.678889,4393.452524,41282.2585,1,1,1,1,1,1,1
-525,83.9990794,1172.424896,1467.561552,2190.571802,2344.604825,452.6739279,452.6739279,4401.97946,41362.43791,1,1,1,1,1,1,1
-525.5,83.99614614,1172.384398,1467.561552,2222.08081,2316.452878,452.6581204,452.6581204,4405.250299,41393.19301,1,1,1,1,1,1,1
-526,83.99276996,1172.336811,1467.561552,2140.9037,2398.875297,452.6399261,452.6399261,4406.429539,41404.28154,1,1,1,1,1,1,1
-526.5,83.99130322,1172.316429,1467.561552,2217.46226,2322.683795,452.6320218,452.6320218,4406.841803,41408.15833,1,1,1,1,1,1,1
-527,83.99193648,1172.326047,1467.561552,2203.809973,2336.411729,452.6354344,452.6354344,4407.021094,41409.8443,1,1,1,1,1,1,1
-527.5,83.99310472,1172.342282,1467.561552,2076.647982,2463.644685,452.6417301,452.6417301,4407.128369,41410.85314,1,1,1,1,1,1,1
-528,83.9936603,1172.350228,1467.561552,2086.755484,2453.587956,452.6447241,452.6447241,4407.190723,41411.43952,1,1,1,1,1,1,1
-528.5,83.99397618,1172.354114,1467.561552,2067.667897,2472.695573,452.6464264,452.6464264,4407.225135,41411.7629,1,1,1,1,1,1,1
-529,83.99372382,1172.350533,1467.561552,2128.590097,2411.83048,452.6450664,452.6450664,4407.231659,41411.82401,1,1,1,1,1,1,1
-529.5,83.9923191,1172.331052,1467.561552,2196.720739,2343.750159,452.6374964,452.6374964,4407.159641,41411.14688,1,1,1,1,1,1,1
-530,83.99017468,1172.301506,1467.561552,2055.831975,2484.643571,452.62594,452.62594,4407.04615,41410.07987,1,1,1,1,1,1,1
-530.5,83.98935558,1172.289618,1467.561552,2189.461761,2350.908842,452.6215259,452.6215259,4407.000352,41409.64979,1,1,1,1,1,1,1
-531,83.99077296,1172.309882,1467.561552,2202.029196,2338.237188,452.6291642,452.6291642,4407.042586,41410.04671,1,1,1,1,1,1,1
-531.5,83.99375386,1172.351562,1467.561552,2160.190302,2379.989354,452.6452283,452.6452283,4407.153934,41411.09349,1,1,1,1,1,1,1
-532,83.99759034,1172.404989,1467.561552,2151.348041,2377.80573,452.6659033,452.6659033,4395.8273,41304.58847,1,1,1,1,1,1,1
-532.5,83.99983326,1172.435997,1467.561552,2228.194327,2246.171295,452.6779904,452.6779904,4338.396199,40764.56232,1,1,1,1,1,1,1
-533,84,1172.4383,1467.561552,2142.859801,2306.64412,452.678889,452.678889,4312.346403,40519.61492,1,1,1,1,1,1,1
-533.5,84,1172.4383,1467.561552,2020.683866,2400.975611,452.678889,452.678889,4283.177688,40245.34024,1,1,1,1,1,1,1
-534,84,1172.4383,1467.561552,2142.721137,2255.243502,452.678889,452.678889,4258.353454,40011.91685,1,1,1,1,1,1,1
-534.5,84,1172.4383,1467.561552,2064.561652,2313.269457,452.678889,452.678889,4237.261796,39813.59128,1,1,1,1,1,1,1
-535,84,1172.4383,1467.561552,2004.241621,2345.251586,452.678889,452.678889,4209.236175,39550.11902,1,1,1,1,1,1,1
-535.5,84,1172.4383,1467.561552,2025.961134,2291.938438,452.678889,452.678889,4181.942814,39293.66355,1,1,1,1,1,1,1
-536,84,1172.4383,1467.561552,1991.466193,2287.572494,452.678889,452.678889,4147.27797,38968.08785,1,1,1,1,1,1,1
-536.5,84,1172.4383,1467.561552,2002.919465,2220.900606,452.678889,452.678889,4092.211102,38451.38729,1,1,1,1,1,1,1
-537,84,1172.4383,1467.561552,1940.826494,2225.789307,452.678889,452.678889,4034.807849,37912.7908,1,1,1,1,1,1,1
-537.5,84,1172.4383,1467.561552,1893.395014,2219.089057,452.678889,452.678889,3980.490124,37403.14529,1,1,1,1,1,1,1
-538,84,1172.4383,1467.561552,1960.025013,2136.95175,452.678889,452.678889,3964.929091,37257.14053,1,1,1,1,1,1,1
-538.5,84,1172.4383,1467.561552,2003.791758,2092.216381,452.678889,452.678889,3963.9571,37248.0206,1,1,1,1,1,1,1
-539,84,1172.4383,1467.561552,1999.28856,2080.892174,452.678889,452.678889,3948.07408,37098.99599,1,1,1,1,1,1,1
-539.5,84,1172.4383,1467.561552,1825.345878,2202.190921,452.678889,452.678889,3895.247907,36603.34463,1,1,1,1,1,1,1
-540,84,1172.4383,1467.561552,1965.556328,2034.304106,452.678889,452.678889,3867.476833,36342.7776,1,1,1,1,1,1,1
-540.5,84,1172.4383,1467.561552,1847.698783,2144.885444,452.678889,452.678889,3860.175645,36274.27305,1,1,1,1,1,1,1
-541,84,1172.4383,1467.561552,1858.70257,2064.365212,452.678889,452.678889,3790.419494,35619.77287,1,1,1,1,1,1,1
-541.5,84,1172.4383,1467.561552,1758.087551,2092.169983,452.678889,452.678889,3718.211406,34942.2262,1,1,1,1,1,1,1
-542,84,1172.4383,1467.561552,1913.750885,1941.223622,452.678889,452.678889,3722.163651,34979.34716,1,1,1,1,1,1,1
-542.5,84,1172.4383,1467.561552,1936.684206,1936.684206,452.678889,452.678889,3740.546966,35151.83519,1,1,1,1,1,1,1
-543,84,1172.4383,1467.561552,1898.345367,1969.549969,452.678889,452.678889,3735.055478,35100.3104,1,1,1,1,1,1,1
-543.5,84,1172.4383,1467.561552,1917.651869,1923.793131,452.678889,452.678889,3710.403479,34868.91665,1,1,1,1,1,1,1
-544,84,1172.4383,1467.561552,1909.893873,1909.893873,452.678889,452.678889,3692.974621,34705.17702,1,1,1,1,1,1,1
-544.5,84,1172.4383,1467.561552,1741.294132,2055.743269,452.678889,452.678889,3674.994805,34536.24166,1,1,1,1,1,1,1
-545,84,1172.4383,1467.561552,1832.458951,1928.777512,452.678889,452.678889,3645.475857,34258.63633,1,1,1,1,1,1,1
-545.5,84,1172.4383,1467.561552,1790.134866,1933.095908,452.678889,452.678889,3613.067741,33953.65125,1,1,1,1,1,1,1
-546,84,1172.4383,1467.561552,1741.856624,1957.936527,452.678889,452.678889,3593.028857,33765.0598,1,1,1,1,1,1,1
-546.5,84,1172.4383,1467.561552,1698.28894,1987.260413,452.678889,452.678889,3580.852557,33650.46469,1,1,1,1,1,1,1
-547,84,1172.4383,1467.561552,1801.972308,1825.376078,452.678889,452.678889,3531.093541,33182.16905,1,1,1,1,1,1,1
-547.5,84,1172.4383,1467.561552,1666.148224,1895.317398,452.678889,452.678889,3474.76641,32652.05908,1,1,1,1,1,1,1
-548,84,1172.4383,1467.561552,1673.738583,1855.866074,452.678889,452.678889,3447.528177,32395.71319,1,1,1,1,1,1,1
-548.5,84,1172.4383,1467.561552,1712.668653,1791.147019,452.678889,452.678889,3425.479292,32188.20516,1,1,1,1,1,1,1
-549,84,1172.4383,1467.561552,1609.924028,1837.329684,452.678889,452.678889,3377.121632,31733.09759,1,1,1,1,1,1,1
-549.5,84,1172.4383,1467.561552,1520.2472,1848.968628,452.678889,452.678889,3310.403573,31105.19571,1,1,1,1,1,1,1
-550,84,1172.4383,1467.561552,1527.399193,1832.456325,452.678889,452.678889,3302.401205,31029.88319,1,1,1,1,1,1,1
-550.5,84,1172.4383,1467.561552,1596.047309,1775.283941,452.678889,452.678889,3312.212861,31122.22328,1,1,1,1,1,1,1
-551,84,1172.4383,1467.561552,1659.128126,1703.464617,452.678889,452.678889,3304.741999,31051.91299,1,1,1,1,1,1,1
-551.5,84,1172.4383,1467.561552,1519.546779,1830.531532,452.678889,452.678889,3294.042223,30951.21444,1,1,1,1,1,1,1
-552,84,1172.4383,1467.561552,1553.209399,1795.603812,452.678889,452.678889,3292.961837,30941.04717,1,1,1,1,1,1,1
-552.5,84,1172.4383,1467.561552,1591.692742,1764.837114,452.678889,452.678889,3299.558792,31003.13249,1,1,1,1,1,1,1
-553,84,1172.4383,1467.561552,1561.421701,1790.741925,452.678889,452.678889,3295.824859,30967.99141,1,1,1,1,1,1,1
-553.5,84,1172.4383,1467.561552,1585.512852,1758.011622,452.678889,452.678889,3288.439917,30898.4902,1,1,1,1,1,1,1
-554,84,1172.4383,1467.561552,1569.60323,1767.154498,452.678889,452.678889,3282.925532,30846.64798,1,1,1,1,1,1,1
-554.5,84,1172.4383,1467.561552,1580.60508,1749.772953,452.678889,452.678889,3277.843588,30798.89713,1,1,1,1,1,1,1
-555,84,1172.4383,1467.561552,1547.549987,1774.828654,452.678889,452.678889,3271.480455,30739.11076,1,1,1,1,1,1,1
-555.5,84,1172.4383,1467.561552,1556.505504,1758.014138,452.678889,452.678889,3265.230962,30680.39101,1,1,1,1,1,1,1
-556,84,1172.4383,1467.561552,1501.890895,1823.95005,452.678889,452.678889,3274.234222,30764.98405,1,1,1,1,1,1,1
-556.5,84,1172.4383,1467.561552,1580.344021,1760.598843,452.678889,452.678889,3286.300278,30878.36707,1,1,1,1,1,1,1
-557,84,1172.4383,1467.561552,1526.527572,1816.813588,452.678889,452.678889,3288.282224,30897.00554,1,1,1,1,1,1,1
-557.5,84,1172.4383,1467.561552,1552.027492,1791.375058,452.678889,452.678889,3288.334978,30897.50257,1,1,1,1,1,1,1
-558,84,1172.4383,1467.561552,1624.409193,1704.255787,452.678889,452.678889,3276.491243,30786.1933,1,1,1,1,1,1,1
-558.5,84,1172.4383,1467.561552,1572.196356,1729.347707,452.678889,452.678889,3254.90978,30583.41551,1,1,1,1,1,1,1
-559,84,1172.4383,1467.561552,1633.392239,1646.490518,452.678889,452.678889,3237.682572,30421.55118,1,1,1,1,1,1,1
-559.5,84,1172.4383,1467.561552,1557.525751,1707.776376,452.678889,452.678889,3225.713364,30309.07816,1,1,1,1,1,1,1
-560,84,1172.4383,1467.561552,1627.757186,1640.716017,452.678889,452.678889,3228.449677,30334.79553,1,1,1,1,1,1,1
-560.5,84,1172.4383,1467.561552,1607.22406,1667.528183,452.678889,452.678889,3233.591414,30383.11101,1,1,1,1,1,1,1
-561,84,1172.4383,1467.561552,1511.695546,1790.707956,452.678889,452.678889,3255.593561,30589.84027,1,1,1,1,1,1,1
-561.5,84,1172.4383,1467.561552,1646.330986,1700.793972,452.678889,452.678889,3291.690757,30929.12007,1,1,1,1,1,1,1
-562,84,1172.4383,1467.561552,1561.331662,1812.62452,452.678889,452.678889,3314.456561,31143.33966,1,1,1,1,1,1,1
-562.5,84,1172.4383,1467.561552,1574.208615,1814.068523,452.678889,452.678889,3326.699826,31258.56399,1,1,1,1,1,1,1
-563,84,1172.4383,1467.561552,1588.345518,1793.975941,452.678889,452.678889,3321.609034,31210.65376,1,1,1,1,1,1,1
-563.5,84,1172.4383,1467.561552,1532.544231,1826.832927,452.678889,452.678889,3301.992924,31026.04137,1,1,1,1,1,1,1
-564,84,1172.4383,1467.561552,1524.280861,1792.270811,452.678889,452.678889,3266.923869,30696.31474,1,1,1,1,1,1,1
-564.5,84,1172.4383,1467.561552,1490.23131,1782.111633,452.678889,452.678889,3231.560415,30364.02392,1,1,1,1,1,1,1
-565,84,1172.4383,1467.561552,1500.503127,1731.966941,452.678889,452.678889,3197.741592,30046.19925,1,1,1,1,1,1,1
-565.5,84,1172.4383,1467.561552,1585.490755,1603.439392,452.678889,452.678889,3160.605488,29697.19246,1,1,1,1,1,1,1
-566,84,1172.4383,1467.561552,1562.835129,1562.835129,452.678889,452.678889,3106.649183,29190.10857,1,1,1,1,1,1,1
-566.5,84,1172.4383,1467.561552,1453.881411,1623.668259,452.678889,452.678889,3065.605392,28804.37768,1,1,1,1,1,1,1
-567,84,1172.4383,1467.561552,1394.196096,1661.925108,452.678889,452.678889,3047.327804,28632.60438,1,1,1,1,1,1,1
-567.5,84,1172.4383,1467.561552,1366.442554,1667.401625,452.678889,452.678889,3028.326478,28454.0287,1,1,1,1,1,1,1
-568,84,1172.4383,1467.561552,1365.195772,1607.854713,452.678889,452.678889,2976.473568,27966.71311,1,1,1,1,1,1,1
-568.5,84,1172.4383,1467.561552,1332.118105,1563.790819,452.678889,452.678889,2910.675953,27348.3435,1,1,1,1,1,1,1
-569,84,1172.4383,1467.561552,1383.486775,1427.659157,452.678889,452.678889,2841.488614,26698.16143,1,1,1,1,1,1,1
-569.5,84,1172.4383,1467.561552,1349.66001,1376.925869,452.678889,452.678889,2771.896823,26044.8105,1,1,1,1,1,1,1
-570,84,1172.4383,1467.561552,1223.662159,1420.041365,452.678889,452.678889,2697.424233,25346.13032,1,1,1,1,1,1,1
-570.5,84,1172.4383,1467.561552,1236.472126,1323.748156,452.678889,452.678889,2621.862396,24637.26568,1,1,1,1,1,1,1
-571,84,1172.4383,1467.561552,1129.150856,1339.130931,452.678889,452.678889,2538.647386,23856.60483,1,1,1,1,1,1,1
-571.5,84,1172.4383,1467.561552,1068.057847,1303.232953,452.678889,452.678889,2450.859028,23033.03988,1,1,1,1,1,1,1
-572,84,1172.4383,1467.561552,1051.536539,1215.886126,452.678889,452.678889,2367.242564,22247.95483,1,1,1,1,1,1,1
-572.5,84,1172.4383,1467.561552,1001.906556,1174.201446,452.678889,452.678889,2293.759062,21557.34983,1,1,1,1,1,1,1
-573,84,1172.4383,1467.561552,1016.324291,1088.066743,452.678889,452.678889,2228.976597,20947.795,1,1,1,1,1,1,1
-573.5,84,1172.4383,1467.561552,975.3740727,1054.919344,452.678889,452.678889,2161.240514,20310.37952,1,1,1,1,1,1,1
-574,84,1172.4383,1467.561552,915.3757642,991.6570778,452.678889,452.678889,2048.561539,19250.03981,1,1,1,1,1,1,1
-574.5,84,1172.4383,1467.561552,804.3222949,973.0195971,452.678889,452.678889,1930.005257,18134.39305,1,1,1,1,1,1,1
-575,84,1172.4383,1467.561552,777.1633348,915.3722218,452.678889,452.678889,1853.454292,17414.76723,1,1,1,1,1,1,1
-575.5,84,1172.4383,1467.561552,744.8651015,890.7298778,452.678889,452.678889,1802.346992,16934.5515,1,1,1,1,1,1,1
-576,84,1172.4383,1467.561552,775.8220154,831.8225713,452.678889,452.678889,1777.272609,16698.95715,1,1,1,1,1,1,1
-576.5,84,1172.4383,1467.561552,751.9650542,828.4353671,452.678889,452.678889,1752.833666,16469.33337,1,1,1,1,1,1,1
-577,84,1172.4383,1467.561552,755.7282504,776.0585648,452.678889,452.678889,1709.221639,16059.56208,1,1,1,1,1,1,1
-577.5,84,1172.4383,1467.561552,665.2917107,801.0037279,452.678889,452.678889,1650.46973,15507.53834,1,1,1,1,1,1,1
-578,84,1172.4383,1467.561552,652.7856826,714.4346642,452.678889,452.678889,1561.590366,14672.44306,1,1,1,1,1,1,1
-578.5,84,1172.4383,1467.561552,600.8507073,675.2589862,452.678889,452.678889,1486.44388,13966.37913,1,1,1,1,1,1,1
-579,84,1172.4383,1467.561552,588.1373441,616.255381,452.678889,452.678889,1437.307127,13504.69809,1,1,1,1,1,1,1
-579.5,84,1172.4383,1467.561552,539.5706719,593.3616892,452.678889,452.678889,1385.138672,13014.53184,1,1,1,1,1,1,1
-580,84,1172.4383,1467.561552,477.0111037,567.4307245,452.678889,452.678889,1314.585019,12351.62136,1,1,1,1,1,1,1
-580.5,84,1172.4383,1467.561552,433.5783198,519.3410643,452.678889,452.678889,1241.224731,11662.34098,1,1,1,1,1,1,1
-581,84,1172.4383,1467.561552,393.7247517,480.3848748,452.678889,452.678889,1178.054583,11068.80436,1,1,1,1,1,1,1
-581.5,84,1172.4383,1467.561552,388.1171061,409.5842897,452.678889,452.678889,1116.80799,10493.3419,1,1,1,1,1,1,1
-582,84,1172.4383,1467.561552,356.7483683,364.5903201,452.678889,452.678889,1056.376859,9925.541065,1,1,1,1,1,1,1
-582.5,84,1172.4383,1467.561552,299.6254731,347.4130568,452.678889,452.678889,1000.173982,9397.468066,1,1,1,1,1,1,1
-583,84,1172.4383,1467.561552,278.0691186,320.4763791,452.678889,452.678889,963.6393224,9054.194604,1,1,1,1,1,1,1
-583.5,84,1172.4383,1467.561552,254.1582446,309.0634302,452.678889,452.678889,937.0264235,8804.144252,1,1,1,1,1,1,1
-584,84,1172.4383,1467.561552,246.2612019,295.4612535,452.678889,452.678889,920.8288396,8651.953972,1,1,1,1,1,1,1
-584.5,84,1172.4383,1467.561552,256.9301299,275.4753479,452.678889,452.678889,913.8103406,8586.009518,1,1,1,1,1,1,1
-585,84,1172.4383,1467.561552,245.8386444,291.682314,452.678889,452.678889,917.6644539,8622.222408,1,1,1,1,1,1,1
-585.5,84,1172.4383,1467.561552,255.5616964,289.5499579,452.678889,452.678889,923.3831624,8675.954356,1,1,1,1,1,1,1
-586,84,1172.4383,1467.561552,261.573133,306.1221468,452.678889,452.678889,940.396388,8835.80807,1,1,1,1,1,1,1
-586.5,84,1172.4383,1467.561552,270.9162189,318.0320831,452.678889,452.678889,956.4092499,8986.262032,1,1,1,1,1,1,1
-587,84,1172.4383,1467.561552,276.7876651,307.4041055,452.678889,452.678889,952.8260408,8952.594378,1,1,1,1,1,1,1
-587.5,84,1172.4383,1467.561552,270.9017391,322.4497394,452.678889,452.678889,959.725705,9017.422713,1,1,1,1,1,1,1
-588,84,1172.4383,1467.561552,309.5629585,319.6291702,452.678889,452.678889,986.7281235,9271.132626,1,1,1,1,1,1,1
-588.5,84,1172.4383,1467.561552,331.8596401,332.3616157,452.678889,452.678889,1013.118638,9519.093884,1,1,1,1,1,1,1
-589,84,1172.4383,1467.561552,309.0581166,351.59688,452.678889,452.678889,1010.432654,9493.856799,1,1,1,1,1,1,1
-589.5,84,1172.4383,1467.561552,292.0801123,348.7022734,452.678889,452.678889,995.4609301,9353.185063,1,1,1,1,1,1,1
-590,84,1172.4383,1467.561552,290.3156409,323.011846,452.678889,452.678889,974.7767576,9158.83991,1,1,1,1,1,1,1
-590.5,84,1172.4383,1467.561552,281.331895,299.7343133,452.678889,452.678889,950.4709108,8930.466651,1,1,1,1,1,1,1
-591,84,1172.4383,1467.561552,251.091234,292.2630269,452.678889,452.678889,922.0588466,8663.511208,1,1,1,1,1,1,1
-591.5,84,1172.4383,1467.561552,235.6624816,271.599864,452.678889,452.678889,894.866737,8408.018378,1,1,1,1,1,1,1
-592,84,1172.4383,1467.561552,231.0679864,265.8524144,452.678889,452.678889,887.0761267,8334.819617,1,1,1,1,1,1,1
-592.5,84,1172.4383,1467.561552,237.8315291,263.6959887,452.678889,452.678889,890.5470673,8367.431815,1,1,1,1,1,1,1
-593,84,1172.4383,1467.561552,262.295545,264.288408,452.678889,452.678889,909.424681,8544.803071,1,1,1,1,1,1,1
-593.5,84,1172.4383,1467.561552,273.2085519,273.2085519,452.678889,452.678889,924.3655637,8685.18508,1,1,1,1,1,1,1
-594,84,1172.4383,1467.561552,256.5212455,297.3504355,452.678889,452.678889,929.9821306,8737.957135,1,1,1,1,1,1,1
-594.5,84,1172.4383,1467.561552,265.0386183,294.3274623,452.678889,452.678889,934.121875,8776.853032,1,1,1,1,1,1,1
-595,84,1172.4383,1467.561552,255.5696665,298.5671804,452.678889,452.678889,930.1820332,8739.834955,1,1,1,1,1,1,1
-595.5,84,1172.4383,1467.561552,260.6448983,289.4694049,452.678889,452.678889,927.1511883,8711.357984,1,1,1,1,1,1,1
-596,84,1172.4383,1467.561552,271.2790326,294.3403569,452.678889,452.678889,938.8332355,8821.120648,1,1,1,1,1,1,1
-596.5,84,1172.4383,1467.561552,271.3407515,310.7355384,452.678889,452.678889,951.2322194,8937.61908,1,1,1,1,1,1,1
-597,84,1172.4383,1467.561552,273.9847709,321.1308156,452.678889,452.678889,961.0554551,9029.916425,1,1,1,1,1,1,1
-597.5,84,1172.4383,1467.561552,276.7297326,330.9473439,452.678889,452.678889,970.5185985,9118.831288,1,1,1,1,1,1,1
-598,84,1172.4383,1467.561552,304.0146697,314.0617256,452.678889,452.678889,978.3538455,9192.449481,1,1,1,1,1,1,1
-598.5,84,1172.4383,1467.561552,284.0068346,329.6604404,452.678889,452.678889,975.0320047,9161.237824,1,1,1,1,1,1,1
-599,84,1172.4383,1467.561552,271.1751098,285.2244674,452.678889,452.678889,931.8868333,8755.853356,1,1,1,1,1,1,1
-599.5,84,1172.4383,1467.561552,254.0138569,264.3817694,452.678889,452.678889,903.2551095,8486.834247,1,1,1,1,1,1,1
-600,84,1172.4383,1467.561552,257.7756413,263.3967039,452.678889,452.678889,905.3468692,8506.487982,1,1,1,1,1,1,1
-600.5,84,1172.4383,1467.561552,245.3957161,279.6647711,452.678889,452.678889,908.2758425,8534.008175,1,1,1,1,1,1,1
-601,84,1172.4383,1467.561552,238.8807161,260.0909769,452.678889,452.678889,888.6212381,8349.337439,1,1,1,1,1,1,1
-601.5,84,1172.4383,1467.561552,225.2530835,248.5488008,452.678889,452.678889,869.6590066,8171.170678,1,1,1,1,1,1,1
-602,84,1172.4383,1467.561552,227.8319735,266.233303,452.678889,452.678889,884.9241106,8314.599329,1,1,1,1,1,1,1
-602.5,84,1172.4383,1467.561552,239.8824657,271.3436544,452.678889,452.678889,897.8535771,8436.082232,1,1,1,1,1,1,1
-603,84,1172.4383,1467.561552,255.094188,257.5359323,452.678889,452.678889,898.9109356,8446.017586,1,1,1,1,1,1,1
-603.5,84,1172.4383,1467.561552,240.7819063,273.9649448,452.678889,452.678889,900.5053794,8460.998224,1,1,1,1,1,1,1
-604,84,1172.4383,1467.561552,269.8478971,272.7098711,452.678889,452.678889,921.4583628,8657.869279,1,1,1,1,1,1,1
-604.5,84,1172.4383,1467.561552,269.826231,301.5103268,452.678889,452.678889,943.1403171,8861.589604,1,1,1,1,1,1,1
-605,84,1172.4383,1467.561552,256.4116016,311.3677404,452.678889,452.678889,940.4601874,8836.407544,1,1,1,1,1,1,1
-605.5,84,1172.4383,1467.561552,251.8782863,307.8512388,452.678889,452.678889,934.3953823,8779.423098,1,1,1,1,1,1,1
-606,84,1172.4383,1467.561552,254.0326349,299.1772419,452.678889,452.678889,929.4838185,8733.274622,1,1,1,1,1,1,1
-606.5,84,1172.4383,1467.561552,263.7796975,282.3580641,452.678889,452.678889,924.1564844,8683.220096,1,1,1,1,1,1,1
-607,84,1172.4383,1467.561552,249.9891039,280.5201052,452.678889,452.678889,912.3814797,8572.58461,1,1,1,1,1,1,1
-607.5,84,1172.4383,1467.561552,253.9420117,261.1943394,452.678889,452.678889,900.7998736,8463.765379,1,1,1,1,1,1,1
-608,84,1172.4383,1467.561552,242.0078561,270.7319734,452.678889,452.678889,898.9936148,8446.794443,1,1,1,1,1,1,1
-608.5,84,1172.4383,1467.561552,236.3039405,266.470401,452.678889,452.678889,891.4865374,8376.258743,1,1,1,1,1,1,1
-609,84,1172.4383,1467.561552,235.8953305,242.6736572,452.678889,452.678889,873.2502722,8204.913758,1,1,1,1,1,1,1
-609.5,84,1172.4383,1467.561552,210.6432399,244.3978349,452.678889,452.678889,855.5233276,8038.354334,1,1,1,1,1,1,1
-610,84,1172.4383,1467.561552,213.5364416,241.5620072,452.678889,452.678889,855.5678802,8038.772786,1,1,1,1,1,1,1
-610.5,84,1172.4383,1467.561552,210.3341892,255.4685461,452.678889,452.678889,863.6320147,8114.542161,1,1,1,1,1,1,1
-611,84,1172.4383,1467.561552,226.6008158,257.1054694,452.678889,452.678889,877.1201366,8241.274416,1,1,1,1,1,1,1
-611.5,84,1172.4383,1467.561552,238.6049508,264.1267631,452.678889,452.678889,891.453422,8375.947471,1,1,1,1,1,1,1
-612,84,1172.4383,1467.561552,255.0919384,266.7294813,452.678889,452.678889,905.8355739,8511.080178,1,1,1,1,1,1,1
-612.5,84,1172.4383,1467.561552,254.3215068,285.0198703,452.678889,452.678889,919.0354347,8635.104139,1,1,1,1,1,1,1
-613,84,1172.4383,1467.561552,247.7060883,289.8520754,452.678889,452.678889,917.692519,8622.485772,1,1,1,1,1,1,1
-613.5,84,1172.4383,1467.561552,250.3965036,278.1012025,452.678889,452.678889,910.866321,8558.348469,1,1,1,1,1,1,1
-614,84,1172.4383,1467.561552,251.2708997,267.6773995,452.678889,452.678889,903.6706624,8490.73914,1,1,1,1,1,1,1
-614.5,84,1172.4383,1467.561552,232.338561,280.7692409,452.678889,452.678889,899.271169,8449.401661,1,1,1,1,1,1,1
-615,84,1172.4383,1467.561552,233.0478238,279.5925137,452.678889,452.678889,898.9186294,8446.089871,1,1,1,1,1,1,1
-615.5,84,1172.4383,1467.561552,246.5661365,269.2332856,452.678889,452.678889,901.2996731,8468.461344,1,1,1,1,1,1,1
-616,84,1172.4383,1467.561552,259.8598614,297.6567398,452.678889,452.678889,932.7291902,8763.768379,1,1,1,1,1,1,1
-616.5,84,1172.4383,1467.561552,293.6519372,307.9107221,452.678889,452.678889,965.9119196,9075.547214,1,1,1,1,1,1,1
-617,84,1172.4383,1467.561552,283.1498268,317.2523056,452.678889,452.678889,965.0379805,9067.336201,1,1,1,1,1,1,1
-617.5,84,1172.4383,1467.561552,286.625744,305.828576,452.678889,452.678889,959.0499903,9011.074122,1,1,1,1,1,1,1
-618,84,1172.4383,1467.561552,281.4835884,304.4510833,452.678889,452.678889,954.1384185,8964.925438,1,1,1,1,1,1,1
-618.5,84,1172.4383,1467.561552,267.6915124,312.2255571,452.678889,452.678889,949.6053781,8922.333924,1,1,1,1,1,1,1
-619,84,1172.4383,1467.561552,281.9352937,296.2596529,452.678889,452.678889,948.3069071,8910.134042,1,1,1,1,1,1,1
-619.5,84,1172.4383,1467.561552,288.2442809,305.6006267,452.678889,452.678889,960.0985941,9020.926626,1,1,1,1,1,1,1
-620,84,1172.4383,1467.561552,324.473696,344.5442338,452.678889,452.678889,1016.732456,9553.048707,1,1,1,1,1,1,1
-620.5,84,1172.4383,1467.561552,350.149532,400.5537407,452.678889,452.678889,1079.356005,10141.44913,1,1,1,1,1,1,1
-621,84,1172.4383,1467.561552,403.988265,423.5450121,452.678889,452.678889,1140.720215,10718.01714,1,1,1,1,1,1,1
-621.5,84,1172.4383,1467.561552,425.6831854,477.2092177,452.678889,452.678889,1201.125252,11285.57275,1,1,1,1,1,1,1
-622,84,1172.4383,1467.561552,480.4820617,484.8119126,452.678889,452.678889,1251.143765,11755.53822,1,1,1,1,1,1,1
-622.5,84,1172.4383,1467.561552,470.4745265,555.9169963,452.678889,452.678889,1300.11736,12215.68633,1,1,1,1,1,1,1
-623,84,1172.4383,1467.561552,536.333183,564.0729449,452.678889,452.678889,1359.444805,12773.11658,1,1,1,1,1,1,1
-623.5,84,1172.4383,1467.561552,570.4992709,593.7849554,452.678889,452.678889,1410.647011,13254.20455,1,1,1,1,1,1,1
-624,84,1172.4383,1467.561552,565.1530691,645.2384364,452.678889,452.678889,1440.882645,13538.293,1,1,1,1,1,1,1
-624.5,84,1172.4383,1467.561552,568.1608958,691.205985,452.678889,452.678889,1473.836247,13847.91962,1,1,1,1,1,1,1
-625,84,1172.4383,1467.561552,656.9752843,704.851424,452.678889,452.678889,1557.397504,14633.04742,1,1,1,1,1,1,1
-625.5,84,1172.4383,1467.561552,674.23051,815.5969896,452.678889,452.678889,1671.580991,15705.89646,1,1,1,1,1,1,1
-626,84,1172.4383,1467.561552,760.3762757,878.683801,452.678889,452.678889,1805.455726,16963.76105,1,1,1,1,1,1,1
-626.5,84,1172.4383,1467.561552,882.8732679,908.6541065,452.678889,452.678889,1943.104715,18257.76186,1,1,1,1,1,1,1
-627,84,1172.4383,1467.561552,961.4124431,980.8349167,452.678889,452.678889,2080.753895,19552.97839,1,1,1,1,1,1,1
-627.5,84,1172.4383,1467.561552,937.7568975,1089.039127,452.678889,452.678889,2158.043167,20280.29195,1,1,1,1,1,1,1
-628,84,1172.4383,1467.561552,1011.432782,1062.5989,452.678889,452.678889,2201.223889,20686.63446,1,1,1,1,1,1,1
-628.5,84,1172.4383,1467.561552,1060.558772,1063.857947,452.678889,452.678889,2247.282193,21120.05484,1,1,1,1,1,1,1
-629,84,1172.4383,1467.561552,997.0252162,1199.80865,452.678889,452.678889,2311.441008,21723.63161,1,1,1,1,1,1,1
-629.5,84,1172.4383,1467.561552,1125.892291,1143.381976,452.678889,452.678889,2367.900923,22254.17981,1,1,1,1,1,1,1
-630,84,1172.4383,1467.561552,1060.511658,1276.11024,452.678889,452.678889,2420.161612,22745.01662,1,1,1,1,1,1,1
-630.5,84,1172.4383,1467.561552,1193.449369,1212.044336,452.678889,452.678889,2481.815818,23323.45351,1,1,1,1,1,1,1
-631,84,1172.4383,1467.561552,1214.842144,1260.520773,452.678889,452.678889,2545.056083,23916.72623,1,1,1,1,1,1,1
-631.5,84,1172.4383,1467.561552,1215.883373,1337.650526,452.678889,452.678889,2615.810762,24580.49358,1,1,1,1,1,1,1
-632,84,1172.4383,1467.561552,1289.307524,1373.249183,452.678889,452.678889,2714.489299,25506.22173,1,1,1,1,1,1,1
-632.5,84,1172.4383,1467.561552,1381.509556,1387.872877,452.678889,452.678889,2808.963641,26392.65036,1,1,1,1,1,1,1
-633,84,1172.4383,1467.561552,1313.742639,1551.790211,452.678889,452.678889,2885.280604,27109.68429,1,1,1,1,1,1,1
-633.5,84,1172.4383,1467.561552,1384.495933,1568.520644,452.678889,452.678889,2959.386263,27806.1251,1,1,1,1,1,1,1
-634,84,1172.4383,1467.561552,1454.929593,1581.06991,452.678889,452.678889,3030.165683,28471.31346,1,1,1,1,1,1,1
-634.5,84,1172.4383,1467.561552,1454.101255,1665.205333,452.678889,452.678889,3101.220254,29139.08723,1,1,1,1,1,1,1
-635,84,1172.4383,1467.561552,1505.044453,1699.818197,452.678889,452.678889,3174.195354,29824.9107,1,1,1,1,1,1,1
-635.5,84,1172.4383,1467.561552,1609.14758,1685.235508,452.678889,452.678889,3248.943188,30527.34496,1,1,1,1,1,1,1
-636,84,1172.4383,1467.561552,1675.661118,1712.160741,452.678889,452.678889,3326.499084,31256.71406,1,1,1,1,1,1,1
-636.5,84,1172.4383,1467.561552,1571.941599,1859.175403,452.678889,452.678889,3363.325664,31603.26,1,1,1,1,1,1,1
-637,84,1172.4383,1467.561552,1678.954015,1766.959622,452.678889,452.678889,3375.976582,31722.32163,1,1,1,1,1,1,1
-637.5,84,1172.4383,1467.561552,1597.305088,1857.24821,452.678889,452.678889,3383.363624,31791.84264,1,1,1,1,1,1,1
-638,84,1172.4383,1467.561552,1633.590159,1814.210505,452.678889,452.678889,3377.589718,31737.50338,1,1,1,1,1,1,1
-638.5,84,1172.4383,1467.561552,1714.197983,1727.883214,452.678889,452.678889,3372.699349,31691.47855,1,1,1,1,1,1,1
-639,84,1172.4383,1467.561552,1657.495931,1784.23449,452.678889,452.678889,3372.400557,31688.66653,1,1,1,1,1,1,1
-639.5,84,1172.4383,1467.561552,1622.232576,1823.511756,452.678889,452.678889,3375.831732,31720.95831,1,1,1,1,1,1,1
-640,84,1172.4383,1467.561552,1654.196493,1797.746608,452.678889,452.678889,3381.130837,31770.82937,1,1,1,1,1,1,1
-640.5,84,1172.4383,1467.561552,1593.349471,1858.535276,452.678889,452.678889,3381.082123,31770.37075,1,1,1,1,1,1,1
-641,84,1172.4383,1467.561552,1560.941566,1866.687416,452.678889,452.678889,3360.344599,31575.20459,1,1,1,1,1,1,1
-641.5,84,1172.4383,1467.561552,1553.369014,1860.628819,452.678889,452.678889,3348.689571,31465.51613,1,1,1,1,1,1,1
-642,84,1172.4383,1467.561552,1604.203727,1817.644385,452.678889,452.678889,3355.401397,31528.68235,1,1,1,1,1,1,1
-642.5,84,1172.4383,1467.561552,1568.098395,1869.312737,452.678889,452.678889,3368.707715,31653.91196,1,1,1,1,1,1,1
-643,84,1172.4383,1467.561552,1619.354071,1834.793904,452.678889,452.678889,3383.016707,31788.57818,1,1,1,1,1,1,1
-643.5,84,1172.4383,1467.561552,1577.402183,1880.370794,452.678889,452.678889,3386.116013,31817.74662,1,1,1,1,1,1,1
-644,84,1172.4383,1467.561552,1684.795904,1773.174717,452.678889,452.678889,3386.285,31819.337,1,1,1,1,1,1,1
-644.5,84,1172.4383,1467.561552,1567.069294,1890.901327,452.678889,452.678889,3386.285,31819.337,1,1,1,1,1,1,1
-645,84,1172.4383,1467.561552,1571.842117,1885.773116,452.678889,452.678889,3385.98157,31816.48084,1,1,1,1,1,1,1
-645.5,84,1172.4383,1467.561552,1583.588346,1861.97906,452.678889,452.678889,3375.681504,31719.54388,1,1,1,1,1,1,1
-646,84,1172.4383,1467.561552,1640.820476,1788.951173,452.678889,452.678889,3362.175539,31592.43559,1,1,1,1,1,1,1
-646.5,84,1172.4383,1467.561552,1631.229095,1800.071917,452.678889,452.678889,3363.482962,31604.74053,1,1,1,1,1,1,1
-647,84,1172.4383,1467.561552,1711.890239,1725.513463,452.678889,452.678889,3368.700978,31653.84874,1,1,1,1,1,1,1
-647.5,84,1172.4383,1467.561552,1632.657179,1790.148988,452.678889,452.678889,3356.22068,31536.39316,1,1,1,1,1,1,1
-648,84,1172.4383,1467.561552,1620.295383,1758.149867,452.678889,452.678889,3318.294692,31179.46131,1,1,1,1,1,1,1
-648.5,84,1172.4383,1467.561552,1533.134032,1821.668583,452.678889,452.678889,3298.082064,30989.23463,1,1,1,1,1,1,1
-649,84,1172.4383,1467.561552,1521.818228,1822.837219,452.678889,452.678889,3289.405775,30907.58017,1,1,1,1,1,1,1
-649.5,84,1172.4383,1467.561552,1610.812904,1726.873986,452.678889,452.678889,3283.669715,30853.64175,1,1,1,1,1,1,1
-650,84,1172.4383,1467.561552,1615.674469,1715.613096,452.678889,452.678889,3278.566497,30805.69012,1,1,1,1,1,1,1
-650.5,84,1172.4383,1467.561552,1644.415981,1682.979215,452.678889,452.678889,3275.470356,30776.59901,1,1,1,1,1,1,1
-651,84,1172.4383,1467.561552,1600.280393,1725.381718,452.678889,452.678889,3274.092958,30763.6573,1,1,1,1,1,1,1
-651.5,84,1172.4383,1467.561552,1482.782538,1794.686588,452.678889,452.678889,3235.762603,30403.51183,1,1,1,1,1,1,1
-652,84,1172.4383,1467.561552,1517.294981,1690.689287,452.678889,452.678889,3176.846875,29849.83007,1,1,1,1,1,1,1
-652.5,84,1172.4383,1467.561552,1533.796305,1633.912912,452.678889,452.678889,3142.504808,29527.08171,1,1,1,1,1,1,1
-653,84,1172.4383,1467.561552,1491.832923,1643.577886,452.678889,452.678889,3114.957339,29268.1892,1,1,1,1,1,1,1
-653.5,84,1172.4383,1467.561552,1441.084549,1652.672526,452.678889,452.678889,3079.428161,28934.28418,1,1,1,1,1,1,1
-654,84,1172.4383,1467.561552,1371.060584,1667.561501,452.678889,452.678889,3032.402151,28492.33222,1,1,1,1,1,1,1
-654.5,84,1172.4383,1467.561552,1410.560465,1600.883594,452.678889,452.678889,3009.221302,28274.47724,1,1,1,1,1,1,1
-655,84,1172.4383,1467.561552,1491.261413,1505.5986,452.678889,452.678889,2996.781313,28157.56618,1,1,1,1,1,1,1
-655.5,84,1172.4383,1467.561552,1343.427082,1615.537075,452.678889,452.678889,2964.457923,27853.78886,1,1,1,1,1,1,1
-656,84,1172.4383,1467.561552,1325.040028,1589.714866,452.678889,452.678889,2926.750093,27499.40928,1,1,1,1,1,1,1
-656.5,84,1172.4383,1467.561552,1409.083601,1456.228767,452.678889,452.678889,2884.578558,27103.07927,1,1,1,1,1,1,1
-657,84,1172.4383,1467.561552,1274.122657,1534.54188,452.678889,452.678889,2839.398267,26678.51721,1,1,1,1,1,1,1
-657.5,84,1172.4383,1467.561552,1351.903894,1399.455733,452.678889,452.678889,2794.323913,26255.20486,1,1,1,1,1,1,1
-658,84,1172.4383,1467.561552,1324.298315,1376.125831,452.678889,452.678889,2748.762785,25827.74999,1,1,1,1,1,1,1
-658.5,84,1172.4383,1467.561552,1342.632471,1346.914391,452.678889,452.678889,2738.918168,25735.39479,1,1,1,1,1,1,1
-659,84,1172.4383,1467.561552,1220.70434,1468.249423,452.678889,452.678889,2738.3814,25730.3592,1,1,1,1,1,1,1
-659.5,84,1172.4383,1467.561552,1266.645472,1411.213571,452.678889,452.678889,2728.338575,25636.14527,1,1,1,1,1,1,1
-660,84,1172.4383,1467.561552,1209.882261,1439.856949,452.678889,452.678889,2702.886672,25397.37505,1,1,1,1,1,1,1
-660.5,84,1172.4383,1467.561552,1202.698707,1388.270625,452.678889,452.678889,2649.693521,24898.35659,1,1,1,1,1,1,1
-661,84,1172.4383,1467.561552,1250.219845,1264.593403,452.678889,452.678889,2580.76301,24251.70231,1,1,1,1,1,1,1
-661.5,84,1172.4383,1467.561552,1193.042799,1237.673363,452.678889,452.678889,2504.645686,23537.62612,1,1,1,1,1,1,1
-662,84,1172.4383,1467.561552,1123.793828,1236.010071,452.678889,452.678889,2440.461542,22935.4985,1,1,1,1,1,1,1
-662.5,84,1172.4383,1467.561552,1103.788134,1219.976359,452.678889,452.678889,2408.571289,22636.28221,1,1,1,1,1,1,1
-663,84,1172.4383,1467.561552,1099.019246,1192.523954,452.678889,452.678889,2384.482375,22409.97699,1,1,1,1,1,1,1
-663.5,84,1172.4383,1467.561552,1017.800896,1231.86248,452.678889,452.678889,2353.257629,22116.59392,1,1,1,1,1,1,1
-664,84,1172.4383,1467.561552,1002.141019,1202.326648,452.678889,452.678889,2318.015557,21785.46535,1,1,1,1,1,1,1
-664.5,84,1172.4383,1467.561552,998.3409388,1173.86489,452.678889,452.678889,2290.812761,21529.67598,1,1,1,1,1,1,1
-665,84,1172.4383,1467.561552,982.3007364,1153.135647,452.678889,452.678889,2257.356658,21214.85873,1,1,1,1,1,1,1
-665.5,84,1172.4383,1467.561552,976.1182126,1104.331575,452.678889,452.678889,2207.09099,20741.84509,1,1,1,1,1,1,1
-666,84,1172.4383,1467.561552,960.716975,1063.580145,452.678889,452.678889,2155.75899,20258.79658,1,1,1,1,1,1,1
-666.5,84,1172.4383,1467.561552,997.5585606,1005.57733,452.678889,452.678889,2136.413667,20076.75216,1,1,1,1,1,1,1
-667,84,1172.4383,1467.561552,943.59229,1053.906119,452.678889,452.678889,2131.260544,20028.2603,1,1,1,1,1,1,1
-667.5,84,1172.4383,1467.561552,978.5264347,988.0407928,452.678889,452.678889,2102.984611,19762.17531,1,1,1,1,1,1,1
-668,84,1172.4383,1467.561552,932.2992972,1003.493568,452.678889,452.678889,2074.851731,19497.43746,1,1,1,1,1,1,1
-668.5,84,1172.4383,1467.561552,922.1169473,998.9600262,452.678889,452.678889,2061.399855,19370.85141,1,1,1,1,1,1,1
-669,84,1172.4383,1467.561552,906.8103639,1000.659356,452.678889,452.678889,2048.961705,19253.80554,1,1,1,1,1,1,1
-669.5,84,1172.4383,1467.561552,843.7627271,1022.856268,452.678889,452.678889,2011.617454,18902.38583,1,1,1,1,1,1,1
-670,84,1172.4383,1467.561552,846.9933609,961.4153734,452.678889,452.678889,1958.404482,18401.63696,1,1,1,1,1,1,1
-670.5,84,1172.4383,1467.561552,807.8021102,927.8668095,452.678889,452.678889,1892.197329,17778.82905,1,1,1,1,1,1,1
-671,84,1172.4383,1467.561552,802.076421,873.2081958,452.678889,452.678889,1837.952449,17269.09484,1,1,1,1,1,1,1
-671.5,84,1172.4383,1467.561552,754.8459465,896.867988,452.678889,452.678889,1816.807688,17070.42189,1,1,1,1,1,1,1
-672,84,1172.4383,1467.561552,772.5688722,859.4084113,452.678889,452.678889,1799.10188,16904.06179,1,1,1,1,1,1,1
-672.5,84,1172.4383,1467.561552,764.8561859,829.9426908,452.678889,452.678889,1765.749988,16590.69225,1,1,1,1,1,1,1
-673,84,1172.4383,1467.561552,750.0636343,797.7622418,452.678889,452.678889,1723.610388,16194.75555,1,1,1,1,1,1,1
-673.5,84,1172.4383,1467.561552,699.9973001,800.1002599,452.678889,452.678889,1680.793416,15792.45499,1,1,1,1,1,1,1
-674,84,1172.4383,1467.561552,687.3793277,776.3937826,452.678889,452.678889,1648.207534,15486.2837,1,1,1,1,1,1,1
-674.5,84,1172.4383,1467.561552,683.4589979,770.7090827,452.678889,452.678889,1639.591969,15405.33286,1,1,1,1,1,1,1
-675,84,1172.4383,1467.561552,719.9260023,726.8508654,452.678889,452.678889,1632.960673,15343.02629,1,1,1,1,1,1,1
-675.5,84,1172.4383,1467.561552,697.6717423,710.6062473,452.678889,452.678889,1598.422809,15018.5146,1,1,1,1,1,1,1
-676,84,1172.4383,1467.561552,624.0664249,737.7008696,452.678889,452.678889,1556.698722,14626.48201,1,1,1,1,1,1,1
-676.5,84,1172.4383,1467.561552,644.2042138,729.8843753,452.678889,452.678889,1567.752113,14730.33792,1,1,1,1,1,1,1
-677,84,1172.4383,1467.561552,655.1506689,738.7869245,452.678889,452.678889,1585.558632,14897.64479,1,1,1,1,1,1,1
-677.5,84,1172.4383,1467.561552,688.3402851,707.8423663,452.678889,452.678889,1587.573814,14916.5791,1,1,1,1,1,1,1
-678,84,1172.4383,1467.561552,678.456858,718.1374601,452.678889,452.678889,1587.942928,14920.04699,1,1,1,1,1,1,1
-678.5,84,1172.4383,1467.561552,702.6586634,705.9854241,452.678889,452.678889,1598.752375,15021.61105,1,1,1,1,1,1,1
-679,84,1172.4383,1467.561552,699.953223,726.2384842,452.678889,452.678889,1614.494754,15169.52343,1,1,1,1,1,1,1
-679.5,84,1172.4383,1467.561552,697.7790407,739.7720464,452.678889,452.678889,1624.684352,15265.26367,1,1,1,1,1,1,1
-680,84,1172.4383,1467.561552,691.4282228,747.8575581,452.678889,452.678889,1626.240021,15279.88061,1,1,1,1,1,1,1
-680.5,84,1172.4383,1467.561552,676.2372306,746.2170938,452.678889,452.678889,1611.140923,15138.01201,1,1,1,1,1,1,1
-681,84,1172.4383,1467.561552,634.3592069,769.0597478,452.678889,452.678889,1594.064855,14977.56765,1,1,1,1,1,1,1
-681.5,84,1172.4383,1467.561552,654.7673651,729.5487243,452.678889,452.678889,1576.927289,14816.54622,1,1,1,1,1,1,1
-682,84,1172.4383,1467.561552,662.0604775,705.2764711,452.678889,452.678889,1561.695175,14673.42803,1,1,1,1,1,1,1
-682.5,84,1172.4383,1467.561552,661.3992709,702.310566,452.678889,452.678889,1558.44264,14642.8673,1,1,1,1,1,1,1
-683,84,1172.4383,1467.561552,655.0270864,708.4849389,452.678889,452.678889,1558.2653,14641.201,1,1,1,1,1,1,1
-683.5,84,1172.4383,1467.561552,654.4857721,709.0262532,452.678889,452.678889,1558.2653,14641.201,1,1,1,1,1,1,1
-684,84,1172.4383,1467.561552,629.9525173,734.8023962,452.678889,452.678889,1559.380055,14651.67485,1,1,1,1,1,1,1
-684.5,84,1172.4383,1467.561552,679.6508538,727.277198,452.678889,452.678889,1597.213159,15007.14886,1,1,1,1,1,1,1
-685,84,1172.4383,1467.561552,681.8505632,779.6776088,452.678889,452.678889,1646.194378,15467.36794,1,1,1,1,1,1,1
-685.5,84,1172.4383,1467.561552,654.7046739,796.3147882,452.678889,452.678889,1636.767221,15378.79206,1,1,1,1,1,1,1
-686,84,1172.4383,1467.561552,684.4959709,762.6065402,452.678889,452.678889,1633.252937,15345.77217,1,1,1,1,1,1,1
-686.5,84,1172.4383,1467.561552,711.3585981,786.2384505,452.678889,452.678889,1678.550323,15771.37863,1,1,1,1,1,1,1
-687,84,1172.4383,1467.561552,738.1463808,815.8459998,452.678889,452.678889,1729.141847,16246.7283,1,1,1,1,1,1,1
-687.5,84,1172.4383,1467.561552,717.3351019,869.868278,452.678889,452.678889,1758.935683,16526.66629,1,1,1,1,1,1,1
-688,84,1172.4383,1467.561552,730.6633142,876.5771637,452.678889,452.678889,1776.911783,16695.56673,1,1,1,1,1,1,1
-688.5,84,1172.4383,1467.561552,739.9811172,886.3510086,452.678889,452.678889,1794.038537,16856.48728,1,1,1,1,1,1,1
-689,84,1172.4383,1467.561552,768.9357477,871.2227944,452.678889,452.678889,1806.441649,16973.02484,1,1,1,1,1,1,1
-689.5,84,1172.4383,1467.561552,741.3520182,900.3052271,452.678889,452.678889,1807.785171,16985.64783,1,1,1,1,1,1,1
-690,84,1172.4383,1467.561552,739.2416196,903.5175351,452.678889,452.678889,1808.774391,16994.94239,1,1,1,1,1,1,1
-690.5,84,1172.4383,1467.561552,832.9320295,845.976266,452.678889,452.678889,1841.203002,17299.63668,1,1,1,1,1,1,1
-691,84,1172.4383,1467.561552,788.7088345,949.1383263,452.678889,452.678889,1894.076846,17796.43055,1,1,1,1,1,1,1
-691.5,84,1172.4383,1467.561552,902.2422234,916.0789621,452.678889,452.678889,1967.4728,18486.97848,1,1,1,1,1,1,1
-692,84,1172.4383,1467.561552,859.6861047,1034.628259,452.678889,452.678889,2036.935237,19140.63284,1,1,1,1,1,1,1
-692.5,84,1172.4383,1467.561552,903.5259021,1044.407789,452.678889,452.678889,2085.951256,19601.88706,1,1,1,1,1,1,1
-693,84,1172.4383,1467.561552,938.4361978,1059.885416,452.678889,452.678889,2132.013217,20035.34272,1,1,1,1,1,1,1
-693.5,84,1172.4383,1467.561552,963.0669475,1066.115928,452.678889,452.678889,2160.224076,20300.81483,1,1,1,1,1,1,1
-694,84,1172.4383,1467.561552,1011.058685,1038.001331,452.678889,452.678889,2178.395647,20471.81382,1,1,1,1,1,1,1
-694.5,84,1172.4383,1467.561552,947.5216316,1120.630032,452.678889,452.678889,2195.848076,20636.04573,1,1,1,1,1,1,1
-695,84,1172.4383,1467.561552,991.9201227,1103.251993,452.678889,452.678889,2220.548279,20868.48216,1,1,1,1,1,1,1
-695.5,84,1172.4383,1467.561552,987.176232,1153.428686,452.678889,452.678889,2262.081839,21259.32369,1,1,1,1,1,1,1
-696,84,1172.4383,1467.561552,1044.609645,1138.75462,452.678889,452.678889,2301.067279,21626.17894,1,1,1,1,1,1,1
-696.5,84,1172.4383,1467.561552,1035.790806,1186.115452,452.678889,452.678889,2331.659891,21913.66583,1,1,1,1,1,1,1
-697,84,1172.4383,1467.561552,1052.391468,1210.81599,452.678889,452.678889,2363.519605,22213.01376,1,1,1,1,1,1,1
-697.5,84,1172.4383,1467.561552,1155.995237,1168.592488,452.678889,452.678889,2409.385031,22643.912,1,1,1,1,1,1,1
-698,84,1172.4383,1467.561552,1145.435464,1256.272355,452.678889,452.678889,2478.390107,23291.31658,1,1,1,1,1,1,1
-698.5,84,1172.4383,1467.561552,1212.307037,1291.237151,452.678889,452.678889,2570.563073,24156.01385,1,1,1,1,1,1,1
-699,84,1172.4383,1467.561552,1224.681007,1349.39614,452.678889,452.678889,2634.404844,24754.92976,1,1,1,1,1,1,1
-699.5,84,1172.4383,1467.561552,1290.143156,1324.481736,452.678889,452.678889,2671.103857,25099.21237,1,1,1,1,1,1,1
-700,84,1172.4383,1467.561552,1228.999582,1426.924567,452.678889,452.678889,2708.485894,25449.90254,1,1,1,1,1,1,1
-700.5,84,1172.4383,1467.561552,1275.021573,1442.282676,452.678889,452.678889,2764.041025,25971.07853,1,1,1,1,1,1,1
-701,84,1172.4383,1467.561552,1377.532614,1390.501716,452.678889,452.678889,2808.649447,26389.64524,1,1,1,1,1,1,1
-701.5,84,1172.4383,1467.561552,1352.613999,1429.473782,452.678889,452.678889,2819.556124,26492.07936,1,1,1,1,1,1,1
-702,84,1172.4383,1467.561552,1396.651971,1403.280982,452.678889,452.678889,2832.707537,26615.6476,1,1,1,1,1,1,1
-702.5,84,1172.4383,1467.561552,1308.326702,1516.519962,452.678889,452.678889,2851.066614,26788.14712,1,1,1,1,1,1,1
-703,84,1172.4383,1467.561552,1406.841452,1451.132934,452.678889,452.678889,2878.381119,27044.83604,1,1,1,1,1,1,1
-703.5,84,1172.4383,1467.561552,1455.365384,1484.766705,452.678889,452.678889,2948.395216,27702.83133,1,1,1,1,1,1,1
-704,84,1172.4383,1467.561552,1470.435619,1556.565848,452.678889,452.678889,3022.489552,28399.17328,1,1,1,1,1,1,1
-704.5,84,1172.4383,1467.561552,1415.8981,1680.082876,452.678889,452.678889,3081.325582,28952.11685,1,1,1,1,1,1,1
-705,84,1172.4383,1467.561552,1462.93322,1688.45534,452.678889,452.678889,3128.584489,29396.25769,1,1,1,1,1,1,1
-705.5,84,1172.4383,1467.561552,1545.406846,1651.331518,452.678889,452.678889,3167.265418,29759.78292,1,1,1,1,1,1,1
-706,84,1172.4383,1467.561552,1526.869507,1713.679379,452.678889,452.678889,3204.632691,30110.96193,1,1,1,1,1,1,1
-706.5,84,1172.4383,1467.561552,1526.458058,1753.477815,452.678889,452.678889,3237.599856,30420.77013,1,1,1,1,1,1,1
-707,84,1172.4383,1467.561552,1655.255475,1673.502575,452.678889,452.678889,3276.554254,30786.78324,1,1,1,1,1,1,1
-707.5,84,1172.4383,1467.561552,1559.809138,1842.171949,452.678889,452.678889,3338.457485,31369.22728,1,1,1,1,1,1,1
-708,84,1172.4383,1467.561552,1585.089117,1863.698004,452.678889,452.678889,3378.433311,31745.44211,1,1,1,1,1,1,1
-708.5,84,1172.4383,1467.561552,1644.087774,1825.805855,452.678889,452.678889,3396.478042,31915.266,1,1,1,1,1,1,1
-709,84,1172.4383,1467.561552,1627.564633,1866.646836,452.678889,452.678889,3417.269326,32110.9387,1,1,1,1,1,1,1
-709.5,84,1172.4383,1467.561552,1766.263353,1785.695111,452.678889,452.678889,3466.638977,32575.57001,1,1,1,1,1,1,1
-710,84,1172.4383,1467.561552,1784.641818,1817.842587,452.678889,452.678889,3509.836073,32982.10978,1,1,1,1,1,1,1
-710.5,84,1172.4383,1467.561552,1656.96172,1959.538735,452.678889,452.678889,3521.818569,33094.88017,1,1,1,1,1,1,1
-711,84,1172.4383,1467.561552,1697.677103,1923.568407,452.678889,452.678889,3525.874908,33133.05534,1,1,1,1,1,1,1
-711.5,84,1172.4383,1467.561552,1768.823048,1852.756782,452.678889,452.678889,3526.1607,33135.745,1,1,1,1,1,1,1
-712,84,1172.4383,1467.561552,1805.291692,1811.042761,452.678889,452.678889,3521.677194,33093.54939,1,1,1,1,1,1,1
-712.5,84,1172.4383,1467.561552,1624.309625,1953.367204,452.678889,452.678889,3488.627336,32782.5086,1,1,1,1,1,1,1
-713,84,1172.4383,1467.561552,1754.977705,1783.358295,452.678889,452.678889,3454.992747,32465.96408,1,1,1,1,1,1,1
-713.5,84,1172.4383,1467.561552,1758.534653,1758.534653,452.678889,452.678889,3436.810998,32294.85046,1,1,1,1,1,1,1
-714,84,1172.4383,1467.561552,1629.249009,1888.324405,452.678889,452.678889,3437.24223,32298.9086,1,1,1,1,1,1,1
-714.5,84,1172.4383,1467.561552,1626.25497,1909.081921,452.678889,452.678889,3452.428758,32441.83315,1,1,1,1,1,1,1
-715,84,1172.4383,1467.561552,1765.972601,1788.438695,452.678889,452.678889,3468.736151,32595.30724,1,1,1,1,1,1,1
-715.5,84,1172.4383,1467.561552,1753.837862,1819.66103,452.678889,452.678889,3485.055452,32748.89208,1,1,1,1,1,1,1
-716,84,1172.4383,1467.561552,1757.788285,1829.534746,452.678889,452.678889,3496.873666,32860.11691,1,1,1,1,1,1,1
-716.5,84,1172.4383,1467.561552,1708.950174,1879.842263,452.678889,452.678889,3498.130844,32871.94822,1,1,1,1,1,1,1
-717,84,1172.4383,1467.561552,1749.439064,1829.567788,452.678889,452.678889,3489.763655,32793.20272,1,1,1,1,1,1,1
-717.5,84,1172.4383,1467.561552,1680.143564,1882.540365,452.678889,452.678889,3475.808261,32661.86459,1,1,1,1,1,1,1
-718,84,1172.4383,1467.561552,1645.680221,1925.738278,452.678889,452.678889,3483.275815,32732.14395,1,1,1,1,1,1,1
-718.5,84,1172.4383,1467.561552,1700.929018,1888.931217,452.678889,452.678889,3499.04286,32880.53181,1,1,1,1,1,1,1
-719,84,1172.4383,1467.561552,1776.814258,1824.23092,452.678889,452.678889,3508.605504,32970.52785,1,1,1,1,1,1,1
-719.5,84,1172.4383,1467.561552,1663.173869,1930.66145,452.678889,452.678889,3502.440882,32912.51144,1,1,1,1,1,1,1
-720,84,1172.4383,1467.561552,1629.072003,1984.748105,452.678889,452.678889,3519.527271,33073.31621,1,1,1,1,1,1,1
-720.5,84,1172.4383,1467.561552,1797.608642,1860.022053,452.678889,452.678889,3556.983578,33425.82758,1,1,1,1,1,1,1
-721,84,1172.4383,1467.561552,1669.002907,2010.822073,452.678889,452.678889,3575.957979,33604.4006,1,1,1,1,1,1,1
-721.5,84,1172.4383,1467.561552,1678.918416,2014.224314,452.678889,452.678889,3587.343328,33711.55135,1,1,1,1,1,1,1
-722,84,1172.4383,1467.561552,1667.527783,2034.830449,452.678889,452.678889,3595.221988,33785.69938,1,1,1,1,1,1,1
-722.5,84,1172.4383,1467.561552,1819.923069,1883.418595,452.678889,452.678889,3596.06387,33793.62272,1,1,1,1,1,1,1
-723,84,1172.4383,1467.561552,1813.713695,1884.742344,452.678889,452.678889,3591.88572,33754.30138,1,1,1,1,1,1,1
-723.5,84,1172.4383,1467.561552,1841.068704,1846.94118,452.678889,452.678889,3582.955484,33670.2562,1,1,1,1,1,1,1
-724,84,1172.4383,1467.561552,1662.650818,1999.599961,452.678889,452.678889,3560.933517,33463.00167,1,1,1,1,1,1,1
-724.5,84,1172.4383,1467.561552,1683.970333,1946.845832,452.678889,452.678889,3534.057304,33210.06245,1,1,1,1,1,1,1
-725,84,1172.4383,1467.561552,1696.694545,1916.358596,452.678889,452.678889,3518.871662,33067.14594,1,1,1,1,1,1,1
-725.5,84,1172.4383,1467.561552,1771.997611,1856.029027,452.678889,452.678889,3531.67338,33187.62646,1,1,1,1,1,1,1
-726,84,1172.4383,1467.561552,1717.988594,1889.729177,452.678889,452.678889,3514.309857,33024.21344,1,1,1,1,1,1,1
-726.5,84,1172.4383,1467.561552,1720.386662,1832.70551,452.678889,452.678889,3467.607585,32584.68558,1,1,1,1,1,1,1
-727,84,1172.4383,1467.561552,1695.496525,1800.372599,452.678889,452.678889,3418.684986,32124.26147,1,1,1,1,1,1,1
-727.5,84,1172.4383,1467.561552,1667.722189,1770.880262,452.678889,452.678889,3369.726307,31663.49802,1,1,1,1,1,1,1
-728,84,1172.4383,1467.561552,1661.875105,1700.956703,452.678889,452.678889,3304.945889,31053.83223,1,1,1,1,1,1,1
-728.5,84,1172.4383,1467.561552,1590.953384,1653.170654,452.678889,452.678889,3207.364632,30136.6413,1,1,1,1,1,1,1
-729,84,1172.4383,1467.561552,1449.764181,1685.148434,452.678889,452.678889,3114.531378,29264.18586,1,1,1,1,1,1,1
-729.5,84,1172.4383,1467.561552,1467.418339,1570.981878,452.678889,452.678889,3032.212796,28490.55276,1,1,1,1,1,1,1
-730,84,1172.4383,1467.561552,1413.852796,1529.167125,452.678889,452.678889,2950.85929,27725.98858,1,1,1,1,1,1,1
-730.5,84,1172.4383,1467.561552,1370.194807,1484.377708,452.678889,452.678889,2875.419766,27017.00427,1,1,1,1,1,1,1
-731,84,1172.4383,1467.561552,1301.890601,1490.58061,452.678889,452.678889,2827.338212,26565.20105,1,1,1,1,1,1,1
-731.5,84,1172.4383,1467.561552,1259.205286,1475.791589,452.678889,452.678889,2779.732217,26118.3028,1,1,1,1,1,1,1
-732,84,1172.4383,1467.561552,1237.204643,1425.781662,452.678889,452.678889,2714.877407,25509.86292,1,1,1,1,1,1,1
-732.5,84,1172.4383,1467.561552,1281.365012,1296.13355,452.678889,452.678889,2637.501591,24783.98121,1,1,1,1,1,1,1
-733,84,1172.4383,1467.561552,1219.54359,1265.155415,452.678889,452.678889,2553.506698,23996.00401,1,1,1,1,1,1,1
-733.5,84,1172.4383,1467.561552,1185.239857,1211.170931,452.678889,452.678889,2473.594521,23246.32735,1,1,1,1,1,1,1
-734,84,1172.4383,1467.561552,1112.589503,1221.715929,452.678889,452.678889,2417.382255,22718.98596,1,1,1,1,1,1,1
-734.5,84,1172.4383,1467.561552,1029.172658,1247.601786,452.678889,452.678889,2373.666425,22308.3479,1,1,1,1,1,1,1
-735,84,1172.4383,1467.561552,1073.510664,1111.599064,452.678889,452.678889,2301.801902,21633.02373,1,1,1,1,1,1,1
-735.5,84,1172.4383,1467.561552,956.8566833,1110.111019,452.678889,452.678889,2194.76586,20625.86253,1,1,1,1,1,1,1
-736,84,1172.4383,1467.561552,971.0011523,1020.635463,452.678889,452.678889,2125.902727,19977.84128,1,1,1,1,1,1,1
-736.5,84,1172.4383,1467.561552,955.5840972,976.4816084,452.678889,452.678889,2071.444728,19465.37698,1,1,1,1,1,1,1
-737,84,1172.4383,1467.561552,890.9240706,978.2618916,452.678889,452.678889,2013.96353,18924.46319,1,1,1,1,1,1,1
-737.5,84,1172.4383,1467.561552,849.3703818,956.22602,452.678889,452.678889,1955.83325,18377.44098,1,1,1,1,1,1,1
-738,84,1172.4383,1467.561552,789.5186734,940.9741271,452.678889,452.678889,1887.550955,17735.16934,1,1,1,1,1,1,1
-738.5,84,1172.4383,1467.561552,800.3752833,842.8237625,452.678889,452.678889,1809.168641,16998.64663,1,1,1,1,1,1,1
-739,84,1172.4383,1467.561552,742.4744683,787.0614088,452.678889,452.678889,1707.202469,16040.59014,1,1,1,1,1,1,1
-739.5,84,1172.4383,1467.561552,661.401754,755.7755766,452.678889,452.678889,1606.407353,15093.5359,1,1,1,1,1,1,1
-740,84,1172.4383,1467.561552,644.3578249,701.548605,452.678889,452.678889,1542.47108,14492.80121,1,1,1,1,1,1,1
-740.5,84,1172.4383,1467.561552,591.8185607,690.115796,452.678889,452.678889,1490.409482,14003.63906,1,1,1,1,1,1,1
-741,84,1172.4383,1467.561552,572.535134,624.4707427,452.678889,452.678889,1432.685878,13461.27751,1,1,1,1,1,1,1
-741.5,84,1172.4383,1467.561552,545.5950097,549.3748207,452.678889,452.678889,1354.824602,12729.70619,1,1,1,1,1,1,1
-742,84,1172.4383,1467.561552,468.4677122,542.436964,452.678889,452.678889,1287.703406,12099.04663,1,1,1,1,1,1,1
-742.5,84,1172.4383,1467.561552,463.8387655,470.2184729,452.678889,452.678889,1226.105123,11520.27961,1,1,1,1,1,1,1
-743,84,1172.4383,1467.561552,389.6248849,468.021227,452.678889,452.678889,1164.856845,10944.8008,1,1,1,1,1,1,1
-743.5,84,1172.4383,1467.561552,351.5960327,429.7284844,452.678889,452.678889,1103.681411,10370.00704,1,1,1,1,1,1,1
-744,84,1172.4383,1467.561552,327.7928775,372.2581835,452.678889,452.678889,1040.275361,9774.253488,1,1,1,1,1,1,1
-744.5,84,1172.4383,1467.561552,276.8804031,335.9618713,452.678889,452.678889,974.4112243,9155.405286,1,1,1,1,1,1,1
-745,84,1172.4383,1467.561552,236.9247347,269.217547,452.678889,452.678889,894.0230456,8400.091477,1,1,1,1,1,1,1
-745.5,84,1172.4383,1467.561552,194.9159062,215.8492088,452.678889,452.678889,822.1667037,7724.940875,1,1,1,1,1,1,1
-746,84,1172.4383,1467.561552,188.289019,196.9545046,452.678889,452.678889,802.9395916,7544.286319,1,1,1,1,1,1,1
-746.5,84,1172.4383,1467.561552,183.9813414,188.0058616,452.678889,452.678889,792.9517503,7450.442594,1,1,1,1,1,1,1
-747,84,1172.4383,1467.561552,163.7300542,197.168945,452.678889,452.678889,784.5975547,7371.947673,1,1,1,1,1,1,1
-747.5,84,1172.4383,1467.561552,169.8605053,182.4302738,452.678889,452.678889,778.1123481,7311.014233,1,1,1,1,1,1,1
-748,84,1172.4383,1467.561552,172.9795914,183.6793599,452.678889,452.678889,781.4029244,7341.931458,1,1,1,1,1,1,1
-748.5,84,1172.4383,1467.561552,169.9203307,190.7073983,452.678889,452.678889,784.3930276,7370.026579,1,1,1,1,1,1,1
-749,84,1172.4383,1467.561552,170.119257,175.0033858,452.678889,452.678889,772.7113328,7260.267166,1,1,1,1,1,1,1
-749.5,84,1172.4383,1467.561552,149.4939435,176.6646602,452.678889,452.678889,758.4249664,7126.034673,1,1,1,1,1,1,1
-750,84,1172.4383,1467.561552,134.3444221,157.9888484,452.678889,452.678889,733.4720143,6891.581154,1,1,1,1,1,1,1
-750.5,84,1172.4383,1467.561552,114.4930528,136.8873927,452.678889,452.678889,706.6403669,6639.474877,1,1,1,1,1,1,1
-751,84,1172.4383,1467.561552,127.477678,152.6930429,452.678889,452.678889,725.3319671,6815.098657,1,1,1,1,1,1,1
-751.5,84,1172.4383,1467.561552,161.2096313,166.2817658,452.678889,452.678889,759.5292852,7136.41027,1,1,1,1,1,1,1
-752,84,1172.4383,1467.561552,161.5953238,184.224216,452.678889,452.678889,773.2370527,7265.206558,1,1,1,1,1,1,1
-752.5,84,1172.4383,1467.561552,163.510399,195.2474611,452.678889,452.678889,782.9839311,7356.786839,1,1,1,1,1,1,1
-753,84,1172.4383,1467.561552,167.7266787,197.2070296,452.678889,452.678889,787.6370777,7400.506976,1,1,1,1,1,1,1
-753.5,84,1172.4383,1467.561552,165.9128848,198.4120145,452.678889,452.678889,787.1786063,7396.199272,1,1,1,1,1,1,1
-754,84,1172.4383,1467.561552,161.0478952,189.3705746,452.678889,452.678889,776.7023488,7297.766246,1,1,1,1,1,1,1
-754.5,84,1172.4383,1467.561552,157.5177771,171.7996175,452.678889,452.678889,760.804996,7148.396986,1,1,1,1,1,1,1
-755,84,1172.4383,1467.561552,147.6543465,151.4254887,452.678889,452.678889,738.0243119,6934.353468,1,1,1,1,1,1,1
-755.5,84,1172.4383,1467.561552,129.9247484,137.4757302,452.678889,452.678889,717.0542886,6737.322366,1,1,1,1,1,1,1
-756,84,1172.4383,1467.561552,125.6645966,126.2955416,452.678889,452.678889,707.017269,6643.016101,1,1,1,1,1,1,1
-756.5,84,1172.4383,1467.561552,120.4255931,127.2586044,452.678889,452.678889,704.2404017,6616.925118,1,1,1,1,1,1,1
-757,84,1172.4383,1467.561552,93.37358877,112.5953716,452.678889,452.678889,675.6660121,6348.445627,1,1,1,1,1,1,1
-757.5,84,1172.4383,1467.561552,79.86866837,81.47568164,452.678889,452.678889,643.6404997,6047.538867,1,1,1,1,1,1,1
-758,84,1172.4383,1467.561552,76.18052995,83.54007915,452.678889,452.678889,642.4704079,6036.544648,1,1,1,1,1,1,1
-758.5,84,1172.4383,1467.561552,74.90174044,90.84129706,452.678889,452.678889,646.8095304,6077.314302,1,1,1,1,1,1,1
-759,84,1172.4383,1467.561552,81.39493994,92.34749003,452.678889,452.678889,652.5736475,6131.473153,1,1,1,1,1,1,1
-759.5,84,1172.4383,1467.561552,88.89093166,94.81758115,452.678889,452.678889,659.7540723,6198.939399,1,1,1,1,1,1,1
-760,84,1172.4383,1467.561552,90.60184136,109.5961178,452.678889,452.678889,671.6348538,6310.568972,1,1,1,1,1,1,1
-760.5,84,1172.4383,1467.561552,106.5917667,110.1999662,452.678889,452.678889,683.5897803,6422.895183,1,1,1,1,1,1,1
-761,84,1172.4383,1467.561552,106.0690257,118.6886016,452.678889,452.678889,689.3155425,6476.693532,1,1,1,1,1,1,1
-761.5,84,1172.4383,1467.561552,110.7980481,120.4039543,452.678889,452.678889,693.5391681,6516.378176,1,1,1,1,1,1,1
-762,84,1172.4383,1467.561552,119.4318434,124.6820746,452.678889,452.678889,701.9226897,6595.148597,1,1,1,1,1,1,1
-762.5,84,1172.4383,1467.561552,118.7878366,143.4546803,452.678889,452.678889,713.692218,6705.733443,1,1,1,1,1,1,1
-763,84,1172.4383,1467.561552,128.533117,145.832616,452.678889,452.678889,721.5627631,6779.683319,1,1,1,1,1,1,1
-763.5,84,1172.4383,1467.561552,131.1597171,153.4949378,452.678889,452.678889,728.2431692,6842.451681,1,1,1,1,1,1,1
-764,84,1172.4383,1467.561552,142.101244,154.8874205,452.678889,452.678889,736.5283739,6920.297939,1,1,1,1,1,1,1
-764.5,84,1172.4383,1467.561552,145.7695294,163.8750049,452.678889,452.678889,745.9830779,7009.132399,1,1,1,1,1,1,1
-765,84,1172.4383,1467.561552,149.4444021,156.5509343,452.678889,452.678889,743.2340505,6983.303066,1,1,1,1,1,1,1
-765.5,84,1172.4383,1467.561552,133.454121,155.0810887,452.678889,452.678889,730.8497377,6866.942666,1,1,1,1,1,1,1
-766,84,1172.4383,1467.561552,127.1504104,149.2635252,452.678889,452.678889,722.892429,6792.176688,1,1,1,1,1,1,1
-766.5,84,1172.4383,1467.561552,127.743612,141.8810764,452.678889,452.678889,718.4855445,6750.770014,1,1,1,1,1,1,1
-767,84,1172.4383,1467.561552,136.4631729,137.5315728,452.678889,452.678889,721.322199,6777.423188,1,1,1,1,1,1,1
-767.5,84,1172.4383,1467.561552,137.578024,142.7487887,452.678889,452.678889,725.4329052,6816.046637,1,1,1,1,1,1,1
-768,84,1172.4383,1467.561552,143.7664392,164.2098584,452.678889,452.678889,744.8444397,6998.434152,1,1,1,1,1,1,1
-768.5,84,1172.4383,1467.561552,174.5315151,182.9123511,452.678889,452.678889,781.9952484,7347.49736,1,1,1,1,1,1,1
-769,84,1172.4383,1467.561552,212.6844123,234.1658102,452.678889,452.678889,849.3530325,7980.38004,1,1,1,1,1,1,1
-769.5,84,1172.4383,1467.561552,244.3303393,296.622396,452.678889,452.678889,920.2496766,8646.512553,1,1,1,1,1,1,1
-770,84,1172.4383,1467.561552,277.735614,320.9499752,452.678889,452.678889,963.7444862,9055.18231,1,1,1,1,1,1,1
-770.5,84,1172.4383,1467.561552,314.2542069,335.6670346,452.678889,452.678889,1002.344998,9417.8667,1,1,1,1,1,1,1
-771,84,1172.4383,1467.561552,339.8690627,388.798817,452.678889,452.678889,1061.774195,9976.253313,1,1,1,1,1,1,1
-771.5,84,1172.4383,1467.561552,377.8702533,451.3310112,452.678889,452.678889,1142.056695,10730.57433,1,1,1,1,1,1,1
-772,84,1172.4383,1467.561552,413.37221,485.9856696,452.678889,452.678889,1198.291576,11258.9479,1,1,1,1,1,1,1
-772.5,84,1172.4383,1467.561552,444.1798744,521.4285482,452.678889,452.678889,1251.396159,11757.90968,1,1,1,1,1,1,1
-773,84,1172.4383,1467.561552,503.2446062,558.6520285,452.678889,452.678889,1328.577207,12483.09013,1,1,1,1,1,1,1
-773.5,84,1172.4383,1467.561552,552.5937476,610.7615105,452.678889,452.678889,1409.762162,13245.8902,1,1,1,1,1,1,1
-774,84,1172.4383,1467.561552,569.3186466,677.8427114,452.678889,452.678889,1465.298586,13767.70091,1,1,1,1,1,1,1
-774.5,84,1172.4383,1467.561552,640.9880655,674.2610749,452.678889,452.678889,1515.744599,14241.68355,1,1,1,1,1,1,1
-775,84,1172.4383,1467.561552,689.9610024,692.0580489,452.678889,452.678889,1574.867436,14797.19222,1,1,1,1,1,1,1
-775.5,84,1172.4383,1467.561552,719.4576647,719.4576647,452.678889,452.678889,1625.909011,15276.7703,1,1,1,1,1,1,1
-776,84,1172.4383,1467.561552,662.0304395,796.4146252,452.678889,452.678889,1643.428304,15441.37844,1,1,1,1,1,1,1
-776.5,84,1172.4383,1467.561552,723.2377205,748.3852932,452.678889,452.678889,1655.250024,15552.45336,1,1,1,1,1,1,1
-777,84,1172.4383,1467.561552,708.3727244,838.2110035,452.678889,452.678889,1722.495836,16184.28337,1,1,1,1,1,1,1
-777.5,84,1172.4383,1467.561552,754.3746468,920.6434008,452.678889,452.678889,1837.714313,17266.85706,1,1,1,1,1,1,1
-778,84,1172.4383,1467.561552,824.203126,970.4521978,452.678889,452.678889,1945.917138,18284.19204,1,1,1,1,1,1,1
-778.5,84,1172.4383,1467.561552,944.9477263,956.4071526,452.678889,452.678889,2043.372041,19201.20545,1,1,1,1,1,1,1
-779,84,1172.4383,1467.561552,924.6111509,1052.386628,452.678889,452.678889,2112.519263,19851.89916,1,1,1,1,1,1,1
-779.5,84,1172.4383,1467.561552,951.9584458,1095.264018,452.678889,452.678889,2176.715596,20456.00455,1,1,1,1,1,1,1
-780,84,1172.4383,1467.561552,1020.11136,1110.214098,452.678889,452.678889,2252.68443,21170.89203,1,1,1,1,1,1,1
-780.5,84,1172.4383,1467.561552,1109.082385,1115.869541,452.678889,452.678889,2333.532256,21931.20651,1,1,1,1,1,1,1
-781,84,1172.4383,1467.561552,1138.738606,1181.600112,452.678889,452.678889,2405.90851,22611.26752,1,1,1,1,1,1,1
-781.5,84,1172.4383,1467.561552,1194.893556,1220.899852,452.678889,452.678889,2491.139251,23410.91926,1,1,1,1,1,1,1
-782,84,1172.4383,1467.561552,1150.342384,1360.966959,452.678889,452.678889,2577.592022,24221.95462,1,1,1,1,1,1,1
-782.5,84,1172.4383,1467.561552,1285.717671,1303.717686,452.678889,452.678889,2648.304453,24885.32563,1,1,1,1,1,1,1
-783,84,1172.4383,1467.561552,1211.623943,1430.903864,452.678889,452.678889,2696.359123,25336.1378,1,1,1,1,1,1,1
-783.5,84,1172.4383,1467.561552,1338.249842,1357.162319,452.678889,452.678889,2744.226806,25785.19634,1,1,1,1,1,1,1
-784,84,1172.4383,1467.561552,1258.01812,1513.761023,452.678889,452.678889,2811.105608,26412.74662,1,1,1,1,1,1,1
-784.5,84,1172.4383,1467.561552,1403.468061,1451.873078,452.678889,452.678889,2876.586072,27027.97305,1,1,1,1,1,1,1
-785,84,1172.4383,1467.561552,1465.338433,1467.61087,452.678889,452.678889,2942.269646,27645.26313,1,1,1,1,1,1,1
-785.5,84,1172.4383,1467.561552,1431.740897,1570.168257,452.678889,452.678889,3001.087273,28198.0334,1,1,1,1,1,1,1
-786,84,1172.4383,1467.561552,1425.340379,1634.772653,452.678889,452.678889,3050.732687,28664.60286,1,1,1,1,1,1,1
-786.5,84,1172.4383,1467.561552,1478.343155,1639.081054,452.678889,452.678889,3099.61482,29123.99989,1,1,1,1,1,1,1
-787,84,1172.4383,1467.561552,1522.593365,1652.058279,452.678889,452.678889,3148.425875,29582.72804,1,1,1,1,1,1,1
-787.5,84,1172.4383,1467.561552,1569.615753,1669.307739,452.678889,452.678889,3203.245623,30097.92645,1,1,1,1,1,1,1
-788,84,1172.4383,1467.561552,1660.953421,1668.680808,452.678889,452.678889,3277.127032,30792.16091,1,1,1,1,1,1,1
-788.5,84,1172.4383,1467.561552,1604.860236,1792.823742,452.678889,452.678889,3334.762914,31334.45271,1,1,1,1,1,1,1
-789,84,1172.4383,1467.561552,1705.177512,1721.389007,452.678889,452.678889,3359.435954,31566.65339,1,1,1,1,1,1,1
-789.5,84,1172.4383,1467.561552,1646.614519,1805.614398,452.678889,452.678889,3381.375555,31773.13237,1,1,1,1,1,1,1
-790,84,1172.4383,1467.561552,1733.13257,1746.846007,452.678889,452.678889,3405.100499,31996.41404,1,1,1,1,1,1,1
-790.5,84,1172.4383,1467.561552,1670.150402,1831.403792,452.678889,452.678889,3423.546126,32170.01154,1,1,1,1,1,1,1
-791,84,1172.4383,1467.561552,1693.165307,1803.632356,452.678889,452.678889,3419.48028,32131.74659,1,1,1,1,1,1,1
-791.5,84,1172.4383,1467.561552,1678.330155,1815.299317,452.678889,452.678889,3416.770455,32106.24343,1,1,1,1,1,1,1
-792,84,1172.4383,1467.561552,1599.076133,1900.136452,452.678889,452.678889,3421.543685,32151.1656,1,1,1,1,1,1,1
-792.5,84,1172.4383,1467.561552,1691.441615,1813.255153,452.678889,452.678889,3426.232261,32195.29076,1,1,1,1,1,1,1
-793,84,1172.4383,1467.561552,1665.030149,1834.437385,452.678889,452.678889,3421.761763,32153.21767,1,1,1,1,1,1,1
-793.5,84,1172.4383,1467.561552,1692.512631,1802.93236,452.678889,452.678889,3418.322723,32120.85199,1,1,1,1,1,1,1
-794,84,1172.4383,1467.561552,1670.475505,1840.472629,452.678889,452.678889,3431.578165,32245.60329,1,1,1,1,1,1,1
-794.5,84,1172.4383,1467.561552,1656.957213,1865.516884,452.678889,452.678889,3441.431602,32338.33611,1,1,1,1,1,1,1
-795,84,1172.4383,1467.561552,1591.129067,1932.279791,452.678889,452.678889,3442.231441,32345.86422,1,1,1,1,1,1,1
-795.5,84,1172.4383,1467.561552,1731.500714,1791.913169,452.678889,452.678889,3442.2358,32345.9053,1,1,1,1,1,1,1
-796,84,1172.4383,1467.561552,1630.561953,1892.851929,452.678889,452.678889,3442.2358,32345.9053,1,1,1,1,1,1,1
-796.5,84,1172.4383,1467.561552,1736.032483,1790.884791,452.678889,452.678889,3445.229591,32374.08017,1,1,1,1,1,1,1
-797,84,1172.4383,1467.561552,1754.091768,1789.527966,452.678889,452.678889,3459.509735,32508.4749,1,1,1,1,1,1,1
-797.5,84,1172.4383,1467.561552,1690.83435,1856.965304,452.678889,452.678889,3463.083477,32542.10815,1,1,1,1,1,1,1
-798,84,1172.4383,1467.561552,1725.991366,1805.063898,452.678889,452.678889,3448.768617,32407.38688,1,1,1,1,1,1,1
-798.5,84,1172.4383,1467.561552,1598.823094,1929.206049,452.678889,452.678889,3446.180886,32383.03304,1,1,1,1,1,1,1
-799,84,1172.4383,1467.561552,1736.599947,1797.147758,452.678889,452.678889,3451.069345,32429.03944,1,1,1,1,1,1,1
-799.5,84,1172.4383,1467.561552,1765.441577,1768.247773,452.678889,452.678889,3451.020623,32428.58085,1,1,1,1,1,1,1
-800,84,1172.4383,1467.561552,1593.273668,1916.159918,452.678889,452.678889,3430.283376,32233.41772,1,1,1,1,1,1,1
-800.5,84,1172.4383,1467.561552,1582.46719,1898.542934,452.678889,452.678889,3405.981997,32004.71013,1,1,1,1,1,1,1
-801,84,1172.4383,1467.561552,1713.551593,1738.41066,452.678889,452.678889,3381.148545,31770.99615,1,1,1,1,1,1,1
-801.5,84,1172.4383,1467.561552,1704.628511,1704.628511,452.678889,452.678889,3344.636694,31427.37324,1,1,1,1,1,1,1
-802,84,1172.4383,1467.561552,1648.590188,1710.360841,452.678889,452.678889,3301.627726,31022.60444,1,1,1,1,1,1,1
-802.5,84,1172.4383,1467.561552,1648.149116,1653.476718,452.678889,452.678889,3255.041039,30584.66262,1,1,1,1,1,1,1
-803,84,1172.4383,1467.561552,1610.033014,1610.033014,452.678889,452.678889,3187.04414,29945.6604,1,1,1,1,1,1,1
-803.5,84,1172.4383,1467.561552,1444.370158,1704.835512,452.678889,452.678889,3126.723411,29378.76713,1,1,1,1,1,1,1
-804,84,1172.4383,1467.561552,1481.715295,1618.191941,452.678889,452.678889,3084.674009,28983.58562,1,1,1,1,1,1,1
-804.5,84,1172.4383,1467.561552,1469.847746,1592.335058,452.678889,452.678889,3052.497511,28681.18943,1,1,1,1,1,1,1
-805,84,1172.4383,1467.561552,1440.459072,1589.52945,452.678889,452.678889,3025.038575,28423.12866,1,1,1,1,1,1,1
-805.5,84,1172.4383,1467.561552,1419.419344,1568.831906,452.678889,452.678889,2989.438001,28088.55316,1,1,1,1,1,1,1
-806,84,1172.4383,1467.561552,1448.617075,1460.467006,452.678889,452.678889,2921.913639,27453.95617,1,1,1,1,1,1,1
-806.5,84,1172.4383,1467.561552,1393.307377,1419.127099,452.678889,452.678889,2842.55564,26708.18926,1,1,1,1,1,1,1
-807,84,1172.4383,1467.561552,1324.05803,1375.828866,452.678889,452.678889,2747.726759,25818.06593,1,1,1,1,1,1,1
-807.5,84,1172.4383,1467.561552,1180.957654,1424.401265,452.678889,452.678889,2662.717792,25020.53996,1,1,1,1,1,1,1
-808,84,1172.4383,1467.561552,1227.475665,1294.4159,452.678889,452.678889,2587.169863,24311.80663,1,1,1,1,1,1,1
-808.5,84,1172.4383,1467.561552,1152.596043,1291.237364,452.678889,452.678889,2516.518232,23649.00558,1,1,1,1,1,1,1
-809,84,1172.4383,1467.561552,1185.857286,1197.470332,452.678889,452.678889,2461.75284,23135.2382,1,1,1,1,1,1,1
-809.5,84,1172.4383,1467.561552,1079.197037,1250.460514,452.678889,452.678889,2413.234359,22680.07055,1,1,1,1,1,1,1
-810,84,1172.4383,1467.561552,1122.715082,1158.451503,452.678889,452.678889,2376.846797,22338.23419,1,1,1,1,1,1,1
-810.5,84,1172.4383,1467.561552,1080.140061,1143.22457,452.678889,452.678889,2332.720996,21923.63533,1,1,1,1,1,1,1
-811,84,1172.4383,1467.561552,1057.603675,1102.568779,452.678889,452.678889,2279.62563,21424.38659,1,1,1,1,1,1,1
-811.5,84,1172.4383,1467.561552,1015.693465,1076.755774,452.678889,452.678889,2218.059046,20845.05715,1,1,1,1,1,1,1
-812,84,1172.4383,1467.561552,965.28279,1043.996863,452.678889,452.678889,2142.030425,20129.6077,1,1,1,1,1,1,1
-812.5,84,1172.4383,1467.561552,898.7044278,1010.049583,452.678889,452.678889,2050.135652,19264.85238,1,1,1,1,1,1,1
-813,84,1172.4383,1467.561552,823.9937474,964.0162994,452.678889,452.678889,1939.757622,18226.16538,1,1,1,1,1,1,1
-813.5,84,1172.4383,1467.561552,788.464912,925.5892445,452.678889,452.678889,1872.77286,17596.29343,1,1,1,1,1,1,1
-814,84,1172.4383,1467.561552,759.4076694,908.1294504,452.678889,452.678889,1831.003239,17203.80129,1,1,1,1,1,1,1
-814.5,84,1172.4383,1467.561552,726.804193,886.8482154,452.678889,452.678889,1782.662372,16749.59884,1,1,1,1,1,1,1
-815,84,1172.4383,1467.561552,727.939733,796.5875772,452.678889,452.678889,1702.709934,15998.37907,1,1,1,1,1,1,1
-815.5,84,1172.4383,1467.561552,683.4585856,768.1454929,452.678889,452.678889,1637.290903,15383.71231,1,1,1,1,1,1,1
-816,84,1172.4383,1467.561552,701.8628693,708.7513525,452.678889,452.678889,1600.519063,15038.21005,1,1,1,1,1,1,1
-816.5,84,1172.4383,1467.561552,642.0735864,730.3177206,452.678889,452.678889,1566.230178,14716.03794,1,1,1,1,1,1,1
-817,84,1172.4383,1467.561552,651.0575478,683.1786203,452.678889,452.678889,1532.001709,14394.43302,1,1,1,1,1,1,1
-817.5,84,1172.4383,1467.561552,623.16987,660.6267915,452.678889,452.678889,1491.631484,14015.12093,1,1,1,1,1,1,1
-818,84,1172.4383,1467.561552,586.6084115,600.5117892,452.678889,452.678889,1426.444007,13402.63,1,1,1,1,1,1,1
-818.5,84,1172.4383,1467.561552,527.7675692,558.4826086,452.678889,452.678889,1347.982593,12665.41989,1,1,1,1,1,1,1
-819,84,1172.4383,1467.561552,466.6543809,523.4949769,452.678889,452.678889,1271.067377,11942.73709,1,1,1,1,1,1,1
-819.5,84,1172.4383,1467.561552,425.7521047,462.8567512,452.678889,452.678889,1189.67555,11177.99351,1,1,1,1,1,1,1
-820,84,1172.4383,1467.561552,376.8665148,415.8007562,452.678889,452.678889,1112.773504,10455.434,1,1,1,1,1,1,1
-820.5,84,1172.4383,1467.561552,364.1490956,387.9590654,452.678889,452.678889,1080.261828,10149.96033,1,1,1,1,1,1,1
-821,84,1172.4383,1467.561552,338.6931643,387.1204572,452.678889,452.678889,1059.585795,9955.691414,1,1,1,1,1,1,1
-821.5,84,1172.4383,1467.561552,334.6166148,338.6394458,452.678889,452.678889,1019.926406,9583.058817,1,1,1,1,1,1,1
-822,84,1172.4383,1467.561552,272.051889,309.0083751,452.678889,452.678889,950.4654611,8930.415429,1,1,1,1,1,1,1
-822.5,84,1172.4383,1467.561552,227.3278057,252.2156729,452.678889,452.678889,873.9841894,8211.809926,1,1,1,1,1,1,1
-823,84,1172.4383,1467.561552,171.6717236,207.7414157,452.678889,452.678889,798.5458475,7503.0037,1,1,1,1,1,1,1
-823.5,84,1172.4383,1467.561552,144.1359751,163.7914266,452.678889,452.678889,744.688532,6996.969684,1,1,1,1,1,1,1
-824,84,1172.4383,1467.561552,110.2023476,133.6244583,452.678889,452.678889,701.7972449,6593.970148,1,1,1,1,1,1,1
-824.5,84,1172.4383,1467.561552,83.75616649,95.25518413,452.678889,452.678889,656.2922771,6166.412813,1,1,1,1,1,1,1
-825,84,1172.4383,1467.561552,54.51741935,57.30605938,452.678889,452.678889,607.9624271,5712.313297,1,1,1,1,1,1,1
-825.5,84,1172.4383,1467.561552,13.36603616,13.53511558,452.678889,452.678889,546.7772429,5137.428181,1,1,1,1,1,1,1
-826,84,1172.4383,1467.561552,-26.2458959,-30.31664625,452.678889,452.678889,486.7711458,4573.620723,1,1,1,1,1,1,1
-826.5,84,1172.4383,1467.561552,-32.978108,-36.55508011,452.678889,452.678889,477.4708457,4486.236781,1,1,1,1,1,1,1
-827,84,1172.4383,1467.561552,-31.38485853,-32.83621549,452.678889,452.678889,481.2699759,4521.932781,1,1,1,1,1,1,1
-827.5,84,1172.4383,1467.561552,-56.74122502,-59.05719339,452.678889,452.678889,444.7106529,4178.426899,1,1,1,1,1,1,1
-828,84,1172.4383,1467.561552,-117.5572875,-129.6301263,452.678889,452.678889,357.0391556,3354.679988,1,1,1,1,1,1,1
-828.5,84,1172.4383,1467.561552,-117.1980931,-122.6091076,452.678889,452.678889,360.7270488,3389.33095,1,1,1,1,1,1,1
-829,84,1172.4383,1467.561552,-77.70273071,-91.61748612,452.678889,452.678889,407.6577541,3830.28409,1,1,1,1,1,1,1
-829.5,84,1172.4383,1467.561552,-105.9392954,-107.1067886,452.678889,452.678889,377.1608628,3543.740515,1,1,1,1,1,1,1
-830,84,1172.4383,1467.561552,-137.0717123,-150.5921032,452.678889,452.678889,331.7362278,3116.938538,1,1,1,1,1,1,1
-830.5,84,1172.4383,1467.561552,-138.8531147,-162.2409773,452.678889,452.678889,322.9770696,3034.638687,1,1,1,1,1,1,1
-831,84,1172.4383,1467.561552,-106.650463,-118.6333738,452.678889,452.678889,369.3371137,3470.229796,1,1,1,1,1,1,1
-831.5,84,1172.4383,1467.561552,-101.5102102,-110.1502698,452.678889,452.678889,378.1260975,3552.810176,1,1,1,1,1,1,1
-832,84,1172.4383,1467.561552,-113.9267058,-118.9187693,452.678889,452.678889,364.9430648,3428.944461,1,1,1,1,1,1,1
-832.5,84,1172.4383,1467.561552,-104.3806976,-123.5938013,452.678889,452.678889,367.8133308,3455.912596,1,1,1,1,1,1,1
-833,84,1172.4383,1467.561552,-99.1180617,-116.5522349,452.678889,452.678889,375.4098838,3527.288512,1,1,1,1,1,1,1
-833.5,84,1172.4383,1467.561552,-103.2610202,-104.6245361,452.678889,452.678889,380.736136,3577.333401,1,1,1,1,1,1,1
-834,84,1172.4383,1467.561552,-99.11300818,-108.679655,452.678889,452.678889,380.799505,3577.928641,1,1,1,1,1,1,1
-834.5,84,1172.4383,1467.561552,-103.0967075,-122.7640957,452.678889,452.678889,369.150555,3468.477354,1,1,1,1,1,1,1
-835,84,1172.4383,1467.561552,-114.0244219,-136.5787032,452.678889,452.678889,354.2610569,3328.578218,1,1,1,1,1,1,1
-835.5,84,1172.4383,1467.561552,-127.1176381,-128.9227392,452.678889,452.678889,351.0047463,3297.98231,1,1,1,1,1,1,1
-836,84,1172.4383,1467.561552,-117.5491553,-138.7876881,452.678889,452.678889,350.8272,3296.3141,1,1,1,1,1,1,1
-836.5,84,1172.4383,1467.561552,-121.3529377,-134.9839057,452.678889,452.678889,350.8272,3296.3141,1,1,1,1,1,1,1
-837,84,1172.4383,1467.561552,-119.3179873,-136.8421328,452.678889,452.678889,350.9335293,3297.312767,1,1,1,1,1,1,1
-837.5,84,1172.4383,1467.561552,-117.4623669,-132.6739233,452.678889,452.678889,354.5408651,3331.206462,1,1,1,1,1,1,1
-838,84,1172.4383,1467.561552,-110.5022755,-129.2892001,452.678889,452.678889,360.7365037,3389.419796,1,1,1,1,1,1,1
-838.5,84,1172.4383,1467.561552,-103.3752951,-119.1411691,452.678889,452.678889,371.0819998,3486.624889,1,1,1,1,1,1,1
-839,84,1172.4383,1467.561552,-101.1438841,-102.3727558,452.678889,452.678889,383.797034,3606.093375,1,1,1,1,1,1,1
-839.5,84,1172.4383,1467.561552,-95.69130625,-110.9385933,452.678889,452.678889,381.6070536,3585.51669,1,1,1,1,1,1,1
-840,84,1172.4383,1467.561552,-108.6636975,-132.4458944,452.678889,452.678889,360.0239018,3382.724263,1,1,1,1,1,1,1
-840.5,84,1172.4383,1467.561552,-113.2781354,-135.897739,452.678889,452.678889,355.1160069,3336.610386,1,1,1,1,1,1,1
-841,84,1172.4383,1467.561552,-113.8366417,-126.6539586,452.678889,452.678889,360.3177228,3385.485428,1,1,1,1,1,1,1
-841.5,84,1172.4383,1467.561552,-106.3822754,-121.9875115,452.678889,452.678889,367.5765997,3453.688308,1,1,1,1,1,1,1
-842,84,1172.4383,1467.561552,-99.29861117,-116.3716854,452.678889,452.678889,375.4098838,3527.288512,1,1,1,1,1,1,1
-842.5,84,1172.4383,1467.561552,-86.04985316,-92.25107852,452.678889,452.678889,401.2666207,3770.234268,1,1,1,1,1,1,1
-843,84,1172.4383,1467.561552,-50.3277948,-55.33265513,452.678889,452.678889,451.7548753,4244.613418,1,1,1,1,1,1,1
-843.5,84,1172.4383,1467.561552,-23.23689692,-26.1191235,452.678889,452.678889,491.8993924,4621.804469,1,1,1,1,1,1,1
-844,84,1172.4383,1467.561552,-1.89642645,-2.153708332,452.678889,452.678889,524.4807485,4927.933541,1,1,1,1,1,1,1
-844.5,84,1172.4383,1467.561552,16.90713617,20.6647335,452.678889,452.678889,554.464721,5209.658401,1,1,1,1,1,1,1
-845,84,1172.4383,1467.561552,31.99847657,36.2214328,452.678889,452.678889,576.5464252,5417.133816,1,1,1,1,1,1,1
-845.5,84,1172.4383,1467.561552,50.91202154,60.79778256,452.678889,452.678889,607.8798093,5711.537385,1,1,1,1,1,1,1
-846,84,1172.4383,1467.561552,87.58694441,88.41057221,452.678889,452.678889,654.1984384,6146.739676,1,1,1,1,1,1,1
-846.5,84,1172.4383,1467.561552,108.3125452,112.4397887,452.678889,452.678889,686.443928,6449.712584,1,1,1,1,1,1,1
-847,84,1172.4383,1467.561552,122.9999775,130.4247354,452.678889,452.678889,707.9624563,6651.897188,1,1,1,1,1,1,1
-847.5,84,1172.4383,1467.561552,135.477608,157.9344569,452.678889,452.678889,734.0769765,6897.264782,1,1,1,1,1,1,1
-848,84,1172.4383,1467.561552,165.8393763,198.3839401,452.678889,452.678889,787.1024798,7395.484046,1,1,1,1,1,1,1
-848.5,84,1172.4383,1467.561552,210.8643071,225.7249112,452.678889,452.678889,841.6228636,7907.748292,1,1,1,1,1,1,1
-849,84,1172.4383,1467.561552,248.9184821,254.6566502,452.678889,452.678889,892.0898179,8381.92761,1,1,1,1,1,1,1
-849.5,84,1172.4383,1467.561552,277.3953891,282.9993364,452.678889,452.678889,934.8971018,8784.137104,1,1,1,1,1,1,1
-850,84,1172.4383,1467.561552,288.6040016,323.0615192,452.678889,452.678889,973.5236602,9147.066224,1,1,1,1,1,1,1
-850.5,84,1172.4383,1467.561552,305.1251152,363.8678772,452.678889,452.678889,1016.713942,9552.874853,1,1,1,1,1,1,1
-851,84,1172.4383,1467.561552,338.0188715,412.539921,452.678889,452.678889,1079.246347,10140.41898,1,1,1,1,1,1,1
-851.5,84,1172.4383,1467.561552,390.7038772,427.0201252,452.678889,452.678889,1132.856896,10644.13493,1,1,1,1,1,1,1
-852,84,1172.4383,1467.561552,403.8611993,454.0276975,452.678889,452.678889,1165.052028,10946.63497,1,1,1,1,1,1,1
-852.5,84,1172.4383,1467.561552,423.6640049,460.3934154,452.678889,452.678889,1186.028301,11143.72446,1,1,1,1,1,1,1
-853,84,1172.4383,1467.561552,442.0683544,461.5477305,452.678889,452.678889,1201.704522,11291.01575,1,1,1,1,1,1,1
-853.5,84,1172.4383,1467.561552,442.6906401,487.0201587,452.678889,452.678889,1222.621273,11487.5462,1,1,1,1,1,1,1
-854,84,1172.4383,1467.561552,462.015252,520.2088229,452.678889,452.678889,1264.714227,11883.04405,1,1,1,1,1,1,1
-854.5,84,1172.4383,1467.561552,492.7309301,535.4237928,452.678889,452.678889,1301.530909,12228.96777,1,1,1,1,1,1,1
-855,84,1172.4383,1467.561552,483.930722,575.1521693,452.678889,452.678889,1326.321327,12461.89418,1,1,1,1,1,1,1
-855.5,84,1172.4383,1467.561552,529.3018167,588.5663625,452.678889,452.678889,1373.441499,12904.62772,1,1,1,1,1,1,1
-856,84,1172.4383,1467.561552,594.2601304,598.717388,452.678889,452.678889,1429.231659,13428.82256,1,1,1,1,1,1,1
-856.5,84,1172.4383,1467.561552,612.028352,659.0639045,452.678889,452.678889,1482.442275,13928.7802,1,1,1,1,1,1,1
-857,84,1172.4383,1467.561552,663.3569576,692.5025104,452.678889,452.678889,1551.853447,14580.95594,1,1,1,1,1,1,1
-857.5,84,1172.4383,1467.561552,705.1264516,747.6271272,452.678889,452.678889,1638.32229,15393.40297,1,1,1,1,1,1,1
-858,84,1172.4383,1467.561552,729.4711894,834.2962812,452.678889,452.678889,1737.912607,16329.1372,1,1,1,1,1,1,1
-858.5,84,1172.4383,1467.561552,798.6716288,807.4125389,452.678889,452.678889,1775.874331,16685.81947,1,1,1,1,1,1,1
-859,84,1172.4383,1467.561552,782.2647485,826.7011693,452.678889,452.678889,1778.4595,16710.1093,1,1,1,1,1,1,1
-859.5,84,1172.4383,1467.561552,763.0691287,856.4050209,452.678889,452.678889,1787.885063,16798.67038,1,1,1,1,1,1,1
-860,84,1172.4383,1467.561552,777.0031393,892.5879323,452.678889,452.678889,1832.845373,17221.10951,1,1,1,1,1,1,1
-860.5,84,1172.4383,1467.561552,790.2605533,943.6548928,452.678889,452.678889,1890.549895,17763.29171,1,1,1,1,1,1,1
-861,84,1172.4383,1467.561552,873.1603022,935.7115159,452.678889,452.678889,1958.840859,18405.75296,1,1,1,1,1,1,1
-861.5,84,1172.4383,1467.561552,846.190604,1023.025008,452.678889,452.678889,2013.991299,18924.72449,1,1,1,1,1,1,1
-862,84,1172.4383,1467.561552,873.1885817,1047.542232,452.678889,452.678889,2061.082952,19367.86923,1,1,1,1,1,1,1
-862.5,84,1172.4383,1467.561552,914.1990082,1055.10696,452.678889,452.678889,2105.488451,19785.73719,1,1,1,1,1,1,1
-863,84,1172.4383,1467.561552,952.7611728,1056.350094,452.678889,452.678889,2141.876643,20128.16041,1,1,1,1,1,1,1
-863.5,84,1172.4383,1467.561552,949.2748381,1109.156232,452.678889,452.678889,2186.961848,20552.42433,1,1,1,1,1,1,1
-864,84,1172.4383,1467.561552,1035.511634,1087.803288,452.678889,452.678889,2246.275218,21110.57948,1,1,1,1,1,1,1
-864.5,84,1172.4383,1467.561552,1024.265052,1147.830453,452.678889,452.678889,2290.867694,21530.20646,1,1,1,1,1,1,1
-865,84,1172.4383,1467.561552,1039.156389,1171.814651,452.678889,452.678889,2322.998016,21832.26962,1,1,1,1,1,1,1
-865.5,84,1172.4383,1467.561552,1016.422748,1234.481509,452.678889,452.678889,2354.350857,22126.86623,1,1,1,1,1,1,1
-866,84,1172.4383,1467.561552,1076.228572,1221.235391,452.678889,452.678889,2388.830969,22450.83533,1,1,1,1,1,1,1
-866.5,84,1172.4383,1467.561552,1038.97902,1261.742549,452.678889,452.678889,2391.235109,22473.42392,1,1,1,1,1,1,1
-867,84,1172.4383,1467.561552,1050.504558,1192.384884,452.678889,452.678889,2347.913745,22066.38401,1,1,1,1,1,1,1
-867.5,84,1172.4383,1467.561552,1034.291327,1256.236525,452.678889,452.678889,2383.668585,22402.33044,1,1,1,1,1,1,1
-868,84,1172.4383,1467.561552,1080.193667,1320.236705,452.678889,452.678889,2477.64625,23284.31149,1,1,1,1,1,1,1
-868.5,84,1172.4383,1467.561552,1175.742927,1333.978863,452.678889,452.678889,2576.155688,24208.47927,1,1,1,1,1,1,1
-869,84,1172.4383,1467.561552,1173.676083,1425.605963,452.678889,452.678889,2657.21773,24968.94278,1,1,1,1,1,1,1
-869.5,84,1172.4383,1467.561552,1226.684155,1499.280634,452.678889,452.678889,2771.880374,26044.62191,1,1,1,1,1,1,1
-870,84,1172.4383,1467.561552,1402.802152,1505.252073,452.678889,452.678889,2921.566327,27450.73426,1,1,1,1,1,1,1
-870.5,84,1172.4383,1467.561552,1456.366019,1518.17765,452.678889,452.678889,2977.747355,27978.68421,1,1,1,1,1,1,1
-871,84,1172.4383,1467.561552,1470.525257,1502.622057,452.678889,452.678889,2976.556578,27967.49311,1,1,1,1,1,1,1
-871.5,84,1172.4383,1467.561552,1367.030054,1616.681905,452.678889,452.678889,2985.566201,28052.16537,1,1,1,1,1,1,1
-872,84,1172.4383,1467.561552,1433.744053,1624.338482,452.678889,452.678889,3049.000072,28648.32005,1,1,1,1,1,1,1
-872.5,84,1172.4383,1467.561552,1542.592393,1586.044487,452.678889,452.678889,3109.178533,29213.88013,1,1,1,1,1,1,1
-873,84,1172.4383,1467.561552,1485.315698,1692.856541,452.678889,452.678889,3151.429602,29610.95724,1,1,1,1,1,1,1
-873.5,84,1172.4383,1467.561552,1528.839275,1695.088634,452.678889,452.678889,3190.456458,29977.73296,1,1,1,1,1,1,1
-874,84,1172.4383,1467.561552,1507.362113,1761.155506,452.678889,452.678889,3228.443338,30334.7342,1,1,1,1,1,1,1
-874.5,84,1172.4383,1467.561552,1508.209707,1803.681947,452.678889,452.678889,3263.1399,30660.74401,1,1,1,1,1,1,1
-875,84,1172.4383,1467.561552,1663.600281,1687.291613,452.678889,452.678889,3294.861021,30958.94574,1,1,1,1,1,1,1
-875.5,84,1172.4383,1467.561552,1663.310601,1725.766047,452.678889,452.678889,3327.383807,31265.00178,1,1,1,1,1,1,1
-876,84,1172.4383,1467.561552,1663.306758,1763.415081,452.678889,452.678889,3359.568096,31567.89644,1,1,1,1,1,1,1
-876.5,84,1172.4383,1467.561552,1624.104999,1822.746527,452.678889,452.678889,3376.777933,31729.86278,1,1,1,1,1,1,1
-877,84,1172.4383,1467.561552,1688.678291,1768.77934,452.678889,452.678889,3385.846579,31815.21009,1,1,1,1,1,1,1
-877.5,84,1172.4383,1467.561552,1572.29456,1897.285827,452.678889,452.678889,3396.209659,31912.74065,1,1,1,1,1,1,1
-878,84,1172.4383,1467.561552,1695.294729,1786.985315,452.678889,452.678889,3407.068156,32014.93225,1,1,1,1,1,1,1
-878.5,84,1172.4383,1467.561552,1681.547451,1815.914461,452.678889,452.678889,3420.047696,32137.08613,1,1,1,1,1,1,1
-879,84,1172.4383,1467.561552,1687.964815,1828.62855,452.678889,452.678889,3436.403927,32291.01958,1,1,1,1,1,1,1
-879.5,84,1172.4383,1467.561552,1670.231252,1877.508855,452.678889,452.678889,3463.03207,32541.62452,1,1,1,1,1,1,1
-880,84,1172.4383,1467.561552,1615.92485,1962.490671,452.678889,452.678889,3489.258294,32788.44632,1,1,1,1,1,1,1
-880.5,84,1172.4383,1467.561552,1653.482801,1911.565764,452.678889,452.678889,3477.830112,32680.89254,1,1,1,1,1,1,1
-881,84,1172.4383,1467.561552,1613.639029,1926.601546,452.678889,452.678889,3456.620548,32481.28365,1,1,1,1,1,1,1
-881.5,84,1172.4383,1467.561552,1704.624028,1827.442084,452.678889,452.678889,3449.631484,32415.50755,1,1,1,1,1,1,1
-882,84,1172.4383,1467.561552,1623.112575,1925.679639,452.678889,452.678889,3463.932624,32550.09954,1,1,1,1,1,1,1
-882.5,84,1172.4383,1467.561552,1620.644896,1941.212018,452.678889,452.678889,3475.10211,32655.21873,1,1,1,1,1,1,1
-883,84,1172.4383,1467.561552,1645.557701,1934.816548,452.678889,452.678889,3490.933678,32804.21391,1,1,1,1,1,1,1
-883.5,84,1172.4383,1467.561552,1714.699331,1939.648217,452.678889,452.678889,3554.175988,33399.40415,1,1,1,1,1,1,1
-884,84,1172.4383,1467.561552,1793.567933,1949.087166,452.678889,452.678889,3629.674436,34109.94134,1,1,1,1,1,1,1
-884.5,84,1172.4383,1467.561552,1817.307735,1968.750046,452.678889,452.678889,3666.167785,34453.27432,1,1,1,1,1,1,1
-885,84,1172.4383,1467.561552,1737.250408,2026.299969,452.678889,452.678889,3647.486297,34277.5633,1,1,1,1,1,1,1
-885.5,84,1172.4383,1467.561552,1740.852308,2006.12739,452.678889,452.678889,3633.372123,34144.74124,1,1,1,1,1,1,1
-886,84,1172.4383,1467.561552,1734.599571,1995.722087,452.678889,452.678889,3619.129203,34010.69729,1,1,1,1,1,1,1
-886.5,84,1172.4383,1467.561552,1758.029041,1913.784022,452.678889,452.678889,3569.107688,33539.93064,1,1,1,1,1,1,1
-887,84,1172.4383,1467.561552,1629.816645,1972.588095,452.678889,452.678889,3509.768458,32981.47347,1,1,1,1,1,1,1
-887.5,84,1172.4383,1467.561552,1679.459729,1906.011584,452.678889,452.678889,3495.291191,32845.22336,1,1,1,1,1,1,1
-888,84,1172.4383,1467.561552,1712.502722,1931.120091,452.678889,452.678889,3545.006244,33313.10574,1,1,1,1,1,1,1
-888.5,84,1172.4383,1467.561552,1695.989766,1948.184907,452.678889,452.678889,3545.479351,33317.55787,1,1,1,1,1,1,1
-889,84,1172.4383,1467.561552,1780.726198,1834.234787,452.678889,452.678889,3520.503136,33082.50006,1,1,1,1,1,1,1
-889.5,84,1172.4383,1467.561552,1776.789287,1846.384456,452.678889,452.678889,3527.524613,33148.58089,1,1,1,1,1,1,1
-890,84,1172.4383,1467.561552,1650.26676,1991.414639,452.678889,452.678889,3543.34699,33297.49001,1,1,1,1,1,1,1
-890.5,84,1172.4383,1467.561552,1806.669453,1835.596446,452.678889,452.678889,3543.84636,33302.18963,1,1,1,1,1,1,1
-891,84,1172.4383,1467.561552,1775.588029,1842.159183,452.678889,452.678889,3522.884951,33104.91569,1,1,1,1,1,1,1
-891.5,84,1172.4383,1467.561552,1821.802669,1827.544304,452.678889,452.678889,3549.900358,33359.16539,1,1,1,1,1,1,1
-892,84,1172.4383,1467.561552,1714.595853,1987.570003,452.678889,452.678889,3595.058648,33784.16246,1,1,1,1,1,1,1
-892.5,84,1172.4383,1467.561552,1779.347618,1904.580139,452.678889,452.678889,3579.466431,33637.41954,1,1,1,1,1,1,1
-893,84,1172.4383,1467.561552,1782.892419,1858.646696,452.678889,452.678889,3543.226096,33296.35171,1,1,1,1,1,1,1
-893.5,84,1172.4383,1467.561552,1625.171021,1960.643582,452.678889,452.678889,3495.584389,32847.98337,1,1,1,1,1,1,1
-894,84,1172.4383,1467.561552,1668.295876,1858.872071,452.678889,452.678889,3445.444832,32376.10583,1,1,1,1,1,1,1
-894.5,84,1172.4383,1467.561552,1593.876582,1827.800232,452.678889,452.678889,3355.254981,31527.30458,1,1,1,1,1,1,1
-895,84,1172.4383,1467.561552,1620.45646,1669.616633,452.678889,452.678889,3246.126245,30500.96143,1,1,1,1,1,1,1
-895.5,84,1172.4383,1467.561552,1475.559992,1680.88794,452.678889,452.678889,3132.861584,29436.45337,1,1,1,1,1,1,1
-896,84,1172.4383,1467.561552,1495.726014,1541.080852,452.678889,452.678889,3030.854147,28477.7841,1,1,1,1,1,1,1
-896.5,84,1172.4383,1467.561552,1392.580773,1557.571094,452.678889,452.678889,2956.941831,27783.15288,1,1,1,1,1,1,1
-897,84,1172.4383,1467.561552,1347.365408,1519.369503,452.678889,452.678889,2885.793369,27114.49593,1,1,1,1,1,1,1
-897.5,84,1172.4383,1467.561552,1299.02201,1464.854607,452.678889,452.678889,2805.150605,26356.82833,1,1,1,1,1,1,1
-898,84,1172.4383,1467.561552,1221.770675,1429.496167,452.678889,452.678889,2704.26897,25410.34272,1,1,1,1,1,1,1
-898.5,84,1172.4383,1467.561552,1193.794998,1350.658109,452.678889,452.678889,2607.591438,24503.38655,1,1,1,1,1,1,1
-899,84,1172.4383,1467.561552,1195.965109,1252.998775,452.678889,452.678889,2521.161622,23692.56635,1,1,1,1,1,1,1
-899.5,84,1172.4383,1467.561552,1153.45934,1222.80887,452.678889,452.678889,2455.363717,23075.30032,1,1,1,1,1,1,1
-900,84,1172.4383,1467.561552,1054.671079,1250.876614,452.678889,452.678889,2395.388176,22512.39857,1,1,1,1,1,1,1
-900.5,84,1172.4383,1467.561552,1068.025698,1145.384897,452.678889,452.678889,2324.84926,21849.67426,1,1,1,1,1,1,1
-901,84,1172.4383,1467.561552,1023.042542,1086.323524,452.678889,452.678889,2233.313849,20988.59181,1,1,1,1,1,1,1
-901.5,84,1172.4383,1467.561552,916.9896687,1087.372971,452.678889,452.678889,2137.535327,20087.30757,1,1,1,1,1,1,1
-902,84,1172.4383,1467.561552,894.0108348,1013.197889,452.678889,452.678889,2048.722824,19251.55748,1,1,1,1,1,1,1
-902.5,84,1172.4383,1467.561552,859.4661797,969.1852664,452.678889,452.678889,1976.909968,18575.77921,1,1,1,1,1,1,1
-903,84,1172.4383,1467.561552,863.384288,888.1349511,452.678889,452.678889,1906.44294,17912.69776,1,1,1,1,1,1,1
-903.5,84,1172.4383,1467.561552,824.8103106,826.1961536,452.678889,452.678889,1816.172361,17064.45309,1,1,1,1,1,1,1
-904,84,1172.4383,1467.561552,741.1131037,797.4373817,452.678889,452.678889,1715.289021,16116.56956,1,1,1,1,1,1,1
-904.5,84,1172.4383,1467.561552,713.4382219,718.2960838,452.678889,452.678889,1619.465572,15216.22895,1,1,1,1,1,1,1
-905,84,1172.4383,1467.561552,617.5725613,715.1495434,452.678889,452.678889,1530.644115,14381.67685,1,1,1,1,1,1,1
-905.5,84,1172.4383,1467.561552,568.5058757,679.8015669,452.678889,452.678889,1465.826571,13772.66213,1,1,1,1,1,1,1
-906,84,1172.4383,1467.561552,525.1164755,640.7135698,452.678889,452.678889,1410.944172,13256.99649,1,1,1,1,1,1,1
-906.5,84,1172.4383,1467.561552,496.8961237,596.1947782,452.678889,452.678889,1353.580722,12718.01897,1,1,1,1,1,1,1
-907,84,1172.4383,1467.561552,497.5254748,533.6407477,452.678889,452.678889,1303.943884,12251.63988,1,1,1,1,1,1,1
-907.5,84,1172.4383,1467.561552,468.0302099,534.9814403,452.678889,452.678889,1281.375948,12039.59532,1,1,1,1,1,1,1
-908,84,1172.4383,1467.561552,483.3337998,507.1167877,452.678889,452.678889,1271.307976,11944.99766,1,1,1,1,1,1,1
-908.5,84,1172.4383,1467.561552,464.552354,530.2607986,452.678889,452.678889,1274.804614,11977.85154,1,1,1,1,1,1,1
-909,84,1172.4383,1467.561552,497.5607021,503.0924011,452.678889,452.678889,1279.485793,12021.83563,1,1,1,1,1,1,1
-909.5,84,1172.4383,1467.561552,481.8055123,509.1495007,452.678889,452.678889,1271.712355,11948.79751,1,1,1,1,1,1,1
-910,84,1172.4383,1467.561552,450.2887603,524.327445,452.678889,452.678889,1258.615946,11825.74575,1,1,1,1,1,1,1
-910.5,84,1172.4383,1467.561552,437.7187524,533.2722832,452.678889,452.678889,1255.709851,11798.44011,1,1,1,1,1,1,1
-911,84,1172.4383,1467.561552,441.3255882,529.4678034,452.678889,452.678889,1255.5514,11796.9513,1,1,1,1,1,1,1
-911.5,84,1172.4383,1467.561552,437.2424312,533.5509604,452.678889,452.678889,1255.5514,11796.9513,1,1,1,1,1,1,1
-912,84,1172.4383,1467.561552,481.4533134,489.1614129,452.678889,452.678889,1255.409075,11795.6144,1,1,1,1,1,1,1
-912.5,84,1172.4383,1467.561552,455.6696102,508.9211188,452.678889,452.678889,1250.580037,11750.2413,1,1,1,1,1,1,1
-913,84,1172.4383,1467.561552,443.130002,509.0146544,452.678889,452.678889,1240.604261,11656.511,1,1,1,1,1,1,1
-913.5,84,1172.4383,1467.561552,419.0834745,500.3193573,452.678889,452.678889,1214.35862,11409.91108,1,1,1,1,1,1,1
-914,84,1172.4383,1467.561552,409.1691511,481.1201275,452.678889,452.678889,1191.022404,11190.64843,1,1,1,1,1,1,1
-914.5,84,1172.4383,1467.561552,437.8969946,443.5376607,452.678889,452.678889,1183.924775,11123.95977,1,1,1,1,1,1,1
-915,84,1172.4383,1467.561552,417.5175962,457.7857193,452.678889,452.678889,1179.010882,11077.78994,1,1,1,1,1,1,1
-915.5,84,1172.4383,1467.561552,433.7045974,445.2728108,452.678889,452.678889,1181.955282,11105.45462,1,1,1,1,1,1,1
-916,84,1172.4383,1467.561552,433.9831797,450.9843375,452.678889,452.678889,1186.757575,11150.57631,1,1,1,1,1,1,1
-916.5,84,1172.4383,1467.561552,418.9344412,452.3809574,452.678889,452.678889,1175.814414,11047.75613,1,1,1,1,1,1,1
-917,84,1172.4383,1467.561552,385.7016938,466.8074729,452.678889,452.678889,1160.740036,10906.12007,1,1,1,1,1,1,1
-917.5,84,1172.4383,1467.561552,413.3378864,420.0947656,452.678889,452.678889,1145.44887,10762.44659,1,1,1,1,1,1,1
-918,84,1172.4383,1467.561552,392.8013544,422.782538,452.678889,452.678889,1131.142587,10628.02715,1,1,1,1,1,1,1
-918.5,84,1172.4383,1467.561552,402.5539993,436.1001659,452.678889,452.678889,1149.633595,10801.76572,1,1,1,1,1,1,1
-919,84,1172.4383,1467.561552,446.2425615,448.9128326,452.678889,452.678889,1194.922654,11227.29429,1,1,1,1,1,1,1
-919.5,84,1172.4383,1467.561552,472.1538223,548.0546778,452.678889,452.678889,1295.160483,12169.11221,1,1,1,1,1,1,1
-920,84,1172.4383,1467.561552,520.9393697,623.0831043,452.678889,452.678889,1394.404743,13101.59413,1,1,1,1,1,1,1
-920.5,84,1172.4383,1467.561552,597.3243138,628.2486255,452.678889,452.678889,1450.291801,13626.69956,1,1,1,1,1,1,1
-921,84,1172.4383,1467.561552,649.8789898,651.835029,452.678889,452.678889,1504.395733,14135.05135,1,1,1,1,1,1,1
-921.5,84,1172.4383,1467.561552,657.7938956,708.2835899,452.678889,452.678889,1560.603617,14663.17188,1,1,1,1,1,1,1
-922,84,1172.4383,1467.561552,667.8052388,750.7406734,452.678889,452.678889,1607.634903,15105.06936,1,1,1,1,1,1,1
-922.5,84,1172.4383,1467.561552,715.1891775,721.9666216,452.678889,452.678889,1624.329665,15261.93108,1,1,1,1,1,1,1
-923,84,1172.4383,1467.561552,663.6801959,798.474729,452.678889,452.678889,1646.756328,15472.6479,1,1,1,1,1,1,1
-923.5,84,1172.4383,1467.561552,698.7293021,822.7747834,452.678889,452.678889,1699.99761,15972.89398,1,1,1,1,1,1,1
-924,84,1172.4383,1467.561552,780.7318558,805.0739013,452.678889,452.678889,1757.681366,16514.88121,1,1,1,1,1,1,1
-924.5,84,1172.4383,1467.561552,798.4322777,877.1590658,452.678889,452.678889,1838.227559,17271.68007,1,1,1,1,1,1,1
-925,84,1172.4383,1467.561552,857.0057025,929.8147376,452.678889,452.678889,1938.758587,18216.83142,1,1,1,1,1,1,1
-925.5,84,1172.4383,1467.561552,934.057902,1011.896061,452.678889,452.678889,2084.141955,19584.86139,1,1,1,1,1,1,1
-926,84,1172.4383,1467.561552,962.4540676,1123.0749,452.678889,452.678889,2211.733541,20785.53316,1,1,1,1,1,1,1
-926.5,84,1172.4383,1467.561552,999.7299932,1152.016854,452.678889,452.678889,2272.26677,21355.16704,1,1,1,1,1,1,1
-927,84,1172.4383,1467.561552,1058.977838,1152.576847,452.678889,452.678889,2323.253057,21834.64514,1,1,1,1,1,1,1
-927.5,84,1172.4383,1467.561552,1126.649069,1220.536491,452.678889,452.678889,2430.366326,22840.69807,1,1,1,1,1,1,1
-928,84,1172.4383,1467.561552,1186.296816,1333.754647,452.678889,452.678889,2585.504868,24296.18701,1,1,1,1,1,1,1
-928.5,84,1172.4383,1467.561552,1288.416923,1374.335451,452.678889,452.678889,2714.664795,25507.86857,1,1,1,1,1,1,1
-929,84,1172.4383,1467.561552,1330.681069,1466.283196,452.678889,452.678889,2829.321992,26583.93211,1,1,1,1,1,1,1
-929.5,84,1172.4383,1467.561552,1351.373692,1579.126008,452.678889,452.678889,2940.418103,27627.86505,1,1,1,1,1,1,1
-930,84,1172.4383,1467.561552,1395.345694,1668.781947,452.678889,452.678889,3054.157035,28696.78514,1,1,1,1,1,1,1
-930.5,84,1172.4383,1467.561552,1528.859248,1668.97951,452.678889,452.678889,3168.2046,29768.6091,1,1,1,1,1,1,1
-931,84,1172.4383,1467.561552,1645.723961,1686.690649,452.678889,452.678889,3279.283225,30812.43813,1,1,1,1,1,1,1
-931.5,84,1172.4383,1467.561552,1671.390434,1802.377889,452.678889,452.678889,3399.79059,31946.44127,1,1,1,1,1,1,1
-932,84,1172.4383,1467.561552,1652.617198,1964.304556,452.678889,452.678889,3522.178447,33098.26698,1,1,1,1,1,1,1
-932.5,84,1172.4383,1467.561552,1693.362626,2066.464468,452.678889,452.678889,3644.35449,34248.09909,1,1,1,1,1,1,1
-933,84,1172.4383,1467.561552,1909.502937,1939.446038,452.678889,452.678889,3717.317661,34933.80975,1,1,1,1,1,1,1
-933.5,84,1172.4383,1467.561552,1766.177361,2124.645755,452.678889,452.678889,3758.062263,35316.17533,1,1,1,1,1,1,1
-934,84,1172.4383,1467.561552,1788.998245,2146.263526,452.678889,452.678889,3802.653951,35734.56539,1,1,1,1,1,1,1
-934.5,84,1172.4383,1467.561552,1847.552909,2172.265843,452.678889,452.678889,3887.503457,36530.68092,1,1,1,1,1,1,1
-935,84,1172.4383,1467.561552,2009.2038,2110.787315,452.678889,452.678889,3988.022629,37473.81994,1,1,1,1,1,1,1
-935.5,84,1172.4383,1467.561552,1995.986804,2236.846164,452.678889,452.678889,4101.254835,38536.24106,1,1,1,1,1,1,1
-936,84,1172.4383,1467.561552,2027.844004,2286.717706,452.678889,452.678889,4178.561921,39261.94351,1,1,1,1,1,1,1
-936.5,84,1172.4383,1467.561552,2093.072518,2274.642603,452.678889,452.678889,4227.211556,39719.10668,1,1,1,1,1,1,1
-937,84,1172.4383,1467.561552,1999.084213,2420.183973,452.678889,452.678889,4280.671495,40221.7743,1,1,1,1,1,1,1
-937.5,84,1172.4383,1467.561552,2116.992222,2358.318522,452.678889,452.678889,4339.383075,40773.84114,1,1,1,1,1,1,1
-938,84,1172.4383,1467.561552,2034.288032,2466.591184,452.678889,452.678889,4366.168699,41025.70743,1,1,1,1,1,1,1
-938.5,84,1172.4383,1467.561552,2085.651095,2367.117797,452.678889,452.678889,4315.766897,40551.77771,1,1,1,1,1,1,1
-939,84,1172.4383,1467.561552,2208.556697,2229.749173,452.678889,452.678889,4300.615297,40409.30646,1,1,1,1,1,1,1
-939.5,84,1172.4383,1467.561552,2066.093462,2394.776505,452.678889,452.678889,4324.254237,40631.58495,1,1,1,1,1,1,1
-940,84,1172.4383,1467.561552,2059.515749,2417.692401,452.678889,452.678889,4341.370615,40792.53051,1,1,1,1,1,1,1
-940.5,84,1172.4383,1467.561552,2122.006146,2313.656174,452.678889,452.678889,4297.846446,40383.27095,1,1,1,1,1,1,1
-941,84,1172.4383,1467.561552,2170.274662,2224.782189,452.678889,452.678889,4255.308067,39983.28102,1,1,1,1,1,1,1
-941.5,84,1172.4383,1467.561552,2052.068294,2338.484077,452.678889,452.678889,4250.589122,39938.90915,1,1,1,1,1,1,1
-942,84,1172.4383,1467.561552,2099.82494,2285.704127,452.678889,452.678889,4245.32604,39889.41989,1,1,1,1,1,1,1
-942.5,84,1172.4383,1467.561552,2181.808173,2195.735268,452.678889,452.678889,4236.96165,39810.76918,1,1,1,1,1,1,1
-943,84,1172.4383,1467.561552,2131.563526,2252.664615,452.678889,452.678889,4243.963116,39876.60468,1,1,1,1,1,1,1
-943.5,84,1172.4383,1467.561552,2010.885552,2385.687664,452.678889,452.678889,4256.897038,39998.22251,1,1,1,1,1,1,1
-944,84,1172.4383,1467.561552,2103.516525,2296.995408,452.678889,452.678889,4261.022655,40037.01559,1,1,1,1,1,1,1
-944.5,84,1172.4383,1467.561552,2084.142072,2299.847336,452.678889,452.678889,4243.714511,39874.26654,1,1,1,1,1,1,1
-945,84,1172.4383,1467.561552,2042.324678,2342.288095,452.678889,452.678889,4244.367373,39880.40603,1,1,1,1,1,1,1
-945.5,84,1172.4383,1467.561552,2147.426177,2252.839104,452.678889,452.678889,4260.763957,40034.58329,1,1,1,1,1,1,1
-946,84,1172.4383,1467.561552,2131.640691,2259.891795,452.678889,452.678889,4251.615422,39948.55931,1,1,1,1,1,1,1
-946.5,84,1172.4383,1467.561552,2000.215813,2372.877046,452.678889,452.678889,4232.299139,39766.92732,1,1,1,1,1,1,1
-947,84,1172.4383,1467.561552,2001.102792,2352.89353,452.678889,452.678889,4213.012973,39585.60253,1,1,1,1,1,1,1
-947.5,84,1172.4383,1467.561552,2053.861833,2280.971087,452.678889,452.678889,4196.408913,39429.58383,1,1,1,1,1,1,1
-948,84,1172.4383,1467.561552,2092.709285,2188.658589,452.678889,452.678889,4149.404577,38988.05638,1,1,1,1,1,1,1
-948.5,84,1172.4383,1467.561552,1941.889937,2257.463085,452.678889,452.678889,4067.658283,38221.01605,1,1,1,1,1,1,1
-949,84,1172.4383,1467.561552,1863.801794,2270.582245,452.678889,452.678889,4002.46558,37609.33376,1,1,1,1,1,1,1
-949.5,84,1172.4383,1467.561552,1965.696541,2110.946809,452.678889,452.678889,3944.52466,37065.69272,1,1,1,1,1,1,1
-950,84,1172.4383,1467.561552,1969.157061,2052.830048,452.678889,452.678889,3889.679688,36551.09971,1,1,1,1,1,1,1
-950.5,84,1172.4383,1467.561552,1837.394363,2136.13669,452.678889,452.678889,3841.055872,36094.87805,1,1,1,1,1,1,1
-951,84,1172.4383,1467.561552,1909.370194,2006.601394,452.678889,452.678889,3783.29843,35552.95851,1,1,1,1,1,1,1
-951.5,84,1172.4383,1467.561552,1780.949691,2070.426156,452.678889,452.678889,3718.997228,34949.61586,1,1,1,1,1,1,1
-952,84,1172.4383,1467.561552,1820.520038,1984.954567,452.678889,452.678889,3681.663545,34598.89987,1,1,1,1,1,1,1
-952.5,84,1172.4383,1467.561552,1825.396928,1941.420199,452.678889,452.678889,3650.212451,34303.20778,1,1,1,1,1,1,1
-953,84,1172.4383,1467.561552,1769.069398,1948.995764,452.678889,452.678889,3608.650716,33912.08064,1,1,1,1,1,1,1
-953.5,84,1172.4383,1467.561552,1664.241259,1980.469144,452.678889,452.678889,3545.93688,33321.86377,1,1,1,1,1,1,1
-954,84,1172.4383,1467.561552,1630.996664,1917.788634,452.678889,452.678889,3463.926045,32550.03732,1,1,1,1,1,1,1
-954.5,84,1172.4383,1467.561552,1581.793835,1856.888416,452.678889,452.678889,3369.794208,31664.13711,1,1,1,1,1,1,1
-955,84,1172.4383,1467.561552,1548.335777,1817.611564,452.678889,452.678889,3307.61035,31078.90791,1,1,1,1,1,1,1
-955.5,84,1172.4383,1467.561552,1491.138455,1816.573254,452.678889,452.678889,3259.907453,30630.39293,1,1,1,1,1,1,1
-956,84,1172.4383,1467.561552,1533.627852,1708.866113,452.678889,452.678889,3206.145105,30125.17132,1,1,1,1,1,1,1
-956.5,84,1172.4383,1467.561552,1456.980427,1701.986636,452.678889,452.678889,3135.048412,29457.00635,1,1,1,1,1,1,1
-957,84,1172.4383,1467.561552,1538.829875,1558.852741,452.678889,452.678889,3082.777326,28965.75976,1,1,1,1,1,1,1
-957.5,84,1172.4383,1467.561552,1514.842656,1542.964906,452.678889,452.678889,3048.7663,28646.12287,1,1,1,1,1,1,1
-958,84,1172.4383,1467.561552,1480.8445,1538.812143,452.678889,452.678889,3016.225062,28340.29916,1,1,1,1,1,1,1
-958.5,84,1172.4383,1467.561552,1476.366929,1508.61192,452.678889,452.678889,2986.64703,28062.3237,1,1,1,1,1,1,1
-959,84,1172.4383,1467.561552,1398.75519,1564.724439,452.678889,452.678889,2968.30929,27889.98464,1,1,1,1,1,1,1
-959.5,84,1172.4383,1467.561552,1397.380083,1546.948215,452.678889,452.678889,2951.974366,27736.46809,1,1,1,1,1,1,1
-960,84,1172.4383,1467.561552,1367.141188,1567.92245,452.678889,452.678889,2944.072206,27662.20326,1,1,1,1,1,1,1
-960.5,84,1172.4383,1467.561552,1364.003326,1569.33716,452.678889,452.678889,2942.602658,27648.39212,1,1,1,1,1,1,1
-961,84,1172.4383,1467.561552,1451.565527,1467.868528,452.678889,452.678889,2930.741788,27536.9234,1,1,1,1,1,1,1
-961.5,84,1172.4383,1467.561552,1331.292599,1571.70898,452.678889,452.678889,2916.725892,27405.20141,1,1,1,1,1,1,1
-962,84,1172.4383,1467.561552,1437.150115,1457.885571,452.678889,452.678889,2909.931595,27341.3485,1,1,1,1,1,1,1
-962.5,84,1172.4383,1467.561552,1417.674639,1470.8487,452.678889,452.678889,2904.377343,27289.14919,1,1,1,1,1,1,1
-963,84,1172.4383,1467.561552,1292.143413,1558.903453,452.678889,452.678889,2872.411331,26988.73128,1,1,1,1,1,1,1
-963.5,84,1172.4383,1467.561552,1255.497548,1534.497004,452.678889,452.678889,2825.516088,26548.08059,1,1,1,1,1,1,1
-964,84,1172.4383,1467.561552,1374.89312,1397.00605,452.678889,452.678889,2812.047709,26421.53136,1,1,1,1,1,1,1
-964.5,84,1172.4383,1467.561552,1270.06876,1499.533004,452.678889,452.678889,2810.354399,26405.62154,1,1,1,1,1,1,1
-965,84,1172.4383,1467.561552,1359.400098,1404.632293,452.678889,452.678889,2806.250826,26367.06546,1,1,1,1,1,1,1
-965.5,84,1172.4383,1467.561552,1301.656568,1456.153858,452.678889,452.678889,2800.704119,26315.02497,1,1,1,1,1,1,1
-966,84,1172.4383,1467.561552,1375.137662,1413.975331,452.678889,452.678889,2824.650035,26539.94735,1,1,1,1,1,1,1
-966.5,84,1172.4383,1467.561552,1318.628768,1531.089061,452.678889,452.678889,2871.661328,26981.68813,1,1,1,1,1,1,1
-967,84,1172.4383,1467.561552,1305.988254,1561.824789,452.678889,452.678889,2886.71307,27123.13929,1,1,1,1,1,1,1
-967.5,84,1172.4383,1467.561552,1424.220915,1444.722384,452.678889,452.678889,2887.6772,27132.2002,1,1,1,1,1,1,1
-968,84,1172.4383,1467.561552,1315.619935,1553.323364,452.678889,452.678889,2887.6772,27132.2002,1,1,1,1,1,1,1
-968.5,84,1172.4383,1467.561552,1305.363899,1563.567748,452.678889,452.678889,2887.665693,27132.09249,1,1,1,1,1,1,1
-969,84,1172.4383,1467.561552,1342.671258,1521.346092,452.678889,452.678889,2883.475418,27092.71208,1,1,1,1,1,1,1
-969.5,84,1172.4383,1467.561552,1317.179976,1541.311943,452.678889,452.678889,2878.761503,27048.41028,1,1,1,1,1,1,1
-970,84,1172.4383,1467.561552,1386.321081,1511.303226,452.678889,452.678889,2912.139255,27362.09564,1,1,1,1,1,1,1
-970.5,84,1172.4383,1467.561552,1413.884618,1531.708336,452.678889,452.678889,2953.053412,27746.6093,1,1,1,1,1,1,1
-971,84,1172.4383,1467.561552,1381.736165,1582.185098,452.678889,452.678889,2968.686841,27893.53234,1,1,1,1,1,1,1
-971.5,84,1172.4383,1467.561552,1452.795316,1524.10505,452.678889,452.678889,2979.7562,27997.5634,1,1,1,1,1,1,1
-972,84,1172.4383,1467.561552,1455.121916,1542.691867,452.678889,452.678889,2997.594956,28165.21236,1,1,1,1,1,1,1
-972.5,84,1172.4383,1467.561552,1369.520922,1655.335139,452.678889,452.678889,3020.659598,28381.97529,1,1,1,1,1,1,1
-973,84,1172.4383,1467.561552,1395.796156,1643.768248,452.678889,452.678889,3033.204874,28499.87607,1,1,1,1,1,1,1
-973.5,84,1172.4383,1467.561552,1487.264432,1562.750359,452.678889,452.678889,3042.119402,28583.65474,1,1,1,1,1,1,1
-974,84,1172.4383,1467.561552,1415.948402,1646.402341,452.678889,452.678889,3052.640348,28682.53147,1,1,1,1,1,1,1
-974.5,84,1172.4383,1467.561552,1400.338048,1674.655138,452.678889,452.678889,3063.423231,28783.86914,1,1,1,1,1,1,1
-975,84,1172.4383,1467.561552,1381.11533,1685.316135,452.678889,452.678889,3056.12073,28715.24016,1,1,1,1,1,1,1
-975.5,84,1172.4383,1467.561552,1423.568075,1615.658006,452.678889,452.678889,3032.917352,28497.17352,1,1,1,1,1,1,1
-976,84,1172.4383,1467.561552,1442.683022,1567.93023,452.678889,452.678889,3008.511398,28267.80533,1,1,1,1,1,1,1
-976.5,84,1172.4383,1467.561552,1395.359441,1597.708314,452.678889,452.678889,2993.546389,28127.16363,1,1,1,1,1,1,1
-977,84,1172.4383,1467.561552,1361.353206,1655.957975,452.678889,452.678889,3014.225646,28321.50812,1,1,1,1,1,1,1
-977.5,84,1172.4383,1467.561552,1400.040384,1648.737615,452.678889,452.678889,3041.06375,28573.73411,1,1,1,1,1,1,1
-978,84,1172.4383,1467.561552,1416.319795,1662.636281,452.678889,452.678889,3066.804281,28815.64475,1,1,1,1,1,1,1
-978.5,84,1172.4383,1467.561552,1486.053438,1620.085329,452.678889,452.678889,3089.989393,29033.53924,1,1,1,1,1,1,1
-979,84,1172.4383,1467.561552,1509.004512,1604.889299,452.678889,452.678889,3096.604218,29095.7057,1,1,1,1,1,1,1
-979.5,84,1172.4383,1467.561552,1454.216948,1662.495558,452.678889,452.678889,3099.008658,29118.30303,1,1,1,1,1,1,1
-980,84,1172.4383,1467.561552,1440.048097,1687.801212,452.678889,452.678889,3108.507091,29207.56991,1,1,1,1,1,1,1
-980.5,84,1172.4383,1467.561552,1545.849171,1594.64393,452.678889,452.678889,3119.292185,29308.92826,1,1,1,1,1,1,1
-981,84,1172.4383,1467.561552,1501.990748,1649.592499,452.678889,452.678889,3128.750207,29397.81558,1,1,1,1,1,1,1
-981.5,84,1172.4383,1467.561552,1531.211831,1631.086887,452.678889,452.678889,3137.890702,29483.71847,1,1,1,1,1,1,1
-982,84,1172.4383,1467.561552,1501.066631,1684.676607,452.678889,452.678889,3157.886296,29671.6376,1,1,1,1,1,1,1
-982.5,84,1172.4383,1467.561552,1517.924816,1680.370615,452.678889,452.678889,3168.592927,29772.25885,1,1,1,1,1,1,1
-983,84,1172.4383,1467.561552,1482.605855,1669.172376,452.678889,452.678889,3128.917417,29399.38662,1,1,1,1,1,1,1
-983.5,84,1172.4383,1467.561552,1412.176948,1714.886209,452.678889,452.678889,3107.836547,29201.26747,1,1,1,1,1,1,1
-984,84,1172.4383,1467.561552,1518.318101,1630.142242,452.678889,452.678889,3126.087712,29372.7933,1,1,1,1,1,1,1
-984.5,84,1172.4383,1467.561552,1466.089232,1707.466356,452.678889,452.678889,3147.492343,29573.9549,1,1,1,1,1,1,1
-985,84,1172.4383,1467.561552,1454.692672,1739.663327,452.678889,452.678889,3165.232579,29740.67804,1,1,1,1,1,1,1
-985.5,84,1172.4383,1467.561552,1595.356501,1618.194961,452.678889,452.678889,3181.606414,29894.55991,1,1,1,1,1,1,1
-986,84,1172.4383,1467.561552,1497.23189,1735.422103,452.678889,452.678889,3197.898636,30047.67544,1,1,1,1,1,1,1
-986.5,84,1172.4383,1467.561552,1611.894964,1632.438417,452.678889,452.678889,3207.860025,30141.2926,1,1,1,1,1,1,1
-987,84,1172.4383,1467.561552,1577.820094,1667.448048,452.678889,452.678889,3208.658049,30148.79287,1,1,1,1,1,1,1
-987.5,84,1172.4383,1467.561552,1528.896154,1715.850727,452.678889,452.678889,3208.212779,30144.60834,1,1,1,1,1,1,1
-988,84,1172.4383,1467.561552,1566.465529,1671.328221,452.678889,452.678889,3202.28262,30088.87653,1,1,1,1,1,1,1
-988.5,84,1172.4383,1467.561552,1613.851128,1621.562133,452.678889,452.678889,3200.253116,30069.80318,1,1,1,1,1,1,1
-989,84,1172.4383,1467.561552,1494.527605,1764.742776,452.678889,452.678889,3220.601844,30261.04131,1,1,1,1,1,1,1
-989.5,84,1172.4383,1467.561552,1551.199382,1725.386707,452.678889,452.678889,3235.014666,30396.48241,1,1,1,1,1,1,1
-990,84,1172.4383,1467.561552,1617.398909,1660.589406,452.678889,452.678889,3236.17601,30407.39586,1,1,1,1,1,1,1
-990.5,84,1172.4383,1467.561552,1637.169305,1639.772034,452.678889,452.678889,3235.343618,30399.5747,1,1,1,1,1,1,1
-991,84,1172.4383,1467.561552,1526.418503,1736.618348,452.678889,452.678889,3223.788012,30290.98413,1,1,1,1,1,1,1
-991.5,84,1172.4383,1467.561552,1597.277926,1645.242563,452.678889,452.678889,3206.313981,30126.76322,1,1,1,1,1,1,1
-992,84,1172.4383,1467.561552,1517.514001,1697.551757,452.678889,452.678889,3182.897969,29906.69878,1,1,1,1,1,1,1
-992.5,84,1172.4383,1467.561552,1516.413304,1678.721016,452.678889,452.678889,3165.896532,29746.91798,1,1,1,1,1,1,1
-993,84,1172.4383,1467.561552,1470.135528,1717.542607,452.678889,452.678889,3159.538049,29687.16116,1,1,1,1,1,1,1
-993.5,84,1172.4383,1467.561552,1566.063219,1615.594064,452.678889,452.678889,3154.401969,29638.89162,1,1,1,1,1,1,1
-994,84,1172.4383,1467.561552,1500.883338,1679.050048,452.678889,452.678889,3152.932018,29625.077,1,1,1,1,1,1,1
-994.5,84,1172.4383,1467.561552,1553.923354,1627.654028,452.678889,452.678889,3154.333597,29638.24957,1,1,1,1,1,1,1
-995,84,1172.4383,1467.561552,1548.378994,1641.550589,452.678889,452.678889,3161.457395,29705.19913,1,1,1,1,1,1,1
-995.5,84,1172.4383,1467.561552,1515.814813,1670.040865,452.678889,452.678889,3157.982902,29672.54507,1,1,1,1,1,1,1
-996,84,1172.4383,1467.561552,1545.643853,1616.473935,452.678889,452.678889,3137.736574,29482.26934,1,1,1,1,1,1,1
-996.5,84,1172.4383,1467.561552,1494.595071,1643.997318,452.678889,452.678889,3117.669828,29293.6817,1,1,1,1,1,1,1
-997,84,1172.4383,1467.561552,1461.963612,1676.688093,452.678889,452.678889,3117.720244,29294.15554,1,1,1,1,1,1,1
-997.5,84,1172.4383,1467.561552,1555.787199,1602.321611,452.678889,452.678889,3134.317101,29450.13301,1,1,1,1,1,1,1
-998,84,1172.4383,1467.561552,1577.963132,1639.80973,452.678889,452.678889,3185.205854,29928.38822,1,1,1,1,1,1,1
-998.5,84,1172.4383,1467.561552,1526.112429,1742.092345,452.678889,452.678889,3228.172407,30332.18766,1,1,1,1,1,1,1
-999,84,1172.4383,1467.561552,1562.851589,1732.831894,452.678889,452.678889,3250.249289,30539.62592,1,1,1,1,1,1,1
-999.5,84,1172.4383,1467.561552,1532.228216,1790.164473,452.678889,452.678889,3271.49214,30739.22012,1,1,1,1,1,1,1
-1000,84,1172.4383,1467.561552,1578.463256,1785.585522,452.678889,452.678889,3306.065326,31064.38335,1,1,1,1,1,1,1
-1000.5,84,1172.4383,1467.561552,1638.627119,1748.254863,452.678889,452.678889,3325.507259,31247.34076,1,1,1,1,1,1,1
-1001,84,1172.4383,1467.561552,1502.385739,1815.323013,452.678889,452.678889,3267.990628,30706.3707,1,1,1,1,1,1,1
-1001.5,84,1172.4383,1467.561552,1545.527641,1690.755417,452.678889,452.678889,3200.809076,30075.02193,1,1,1,1,1,1,1
-1002,84,1172.4383,1467.561552,1546.149128,1614.49083,452.678889,452.678889,3136.475982,29470.42244,1,1,1,1,1,1,1
-1002.5,84,1172.4383,1467.561552,1459.104491,1665.287894,452.678889,452.678889,3105.558737,29179.8609,1,1,1,1,1,1,1
-1003,84,1172.4383,1467.561552,1489.117487,1620.956528,452.678889,452.678889,3093.346441,29065.08896,1,1,1,1,1,1,1
-1003.5,84,1172.4383,1467.561552,1492.890615,1617.298166,452.678889,452.678889,3093.443645,29066.00277,1,1,1,1,1,1,1
-1004,84,1172.4383,1467.561552,1428.825513,1729.878514,452.678889,452.678889,3134.823403,29454.89158,1,1,1,1,1,1,1
-1004.5,84,1172.4383,1467.561552,1506.288275,1709.266892,452.678889,452.678889,3183.314899,29910.61637,1,1,1,1,1,1,1
-1005,84,1172.4383,1467.561552,1492.431029,1779.208294,452.678889,452.678889,3230.892447,30357.74511,1,1,1,1,1,1,1
-1005.5,84,1172.4383,1467.561552,1541.826409,1746.957051,452.678889,452.678889,3244.76105,30488.0595,1,1,1,1,1,1,1
-1006,84,1172.4383,1467.561552,1543.491977,1740.533506,452.678889,452.678889,3240.977086,30452.50618,1,1,1,1,1,1,1
-1006.5,84,1172.4383,1467.561552,1493.388457,1780.18909,452.678889,452.678889,3232.667002,30374.42583,1,1,1,1,1,1,1
-1007,84,1172.4383,1467.561552,1507.592368,1740.130014,452.678889,452.678889,3210.74408,30168.39703,1,1,1,1,1,1,1
-1007.5,84,1172.4383,1467.561552,1589.447938,1637.176056,452.678889,452.678889,3192.756214,29999.34619,1,1,1,1,1,1,1
-1008,84,1172.4383,1467.561552,1577.335708,1639.103858,452.678889,452.678889,3184.069439,29917.70799,1,1,1,1,1,1,1
-1008.5,84,1172.4383,1467.561552,1502.252648,1714.670964,452.678889,452.678889,3184.482519,29921.59038,1,1,1,1,1,1,1
-1009,84,1172.4383,1467.561552,1602.500973,1620.38122,452.678889,452.678889,3189.56463,29969.35164,1,1,1,1,1,1,1
-1009.5,84,1172.4383,1467.561552,1540.567046,1689.261634,452.678889,452.678889,3195.489709,30025.0363,1,1,1,1,1,1,1
-1010,84,1172.4383,1467.561552,1478.865572,1760.114037,452.678889,452.678889,3203.295074,30098.39102,1,1,1,1,1,1,1
-1010.5,84,1172.4383,1467.561552,1542.198598,1684.112744,452.678889,452.678889,3192.489313,29996.83836,1,1,1,1,1,1,1
-1011,84,1172.4383,1467.561552,1585.901448,1596.14454,452.678889,452.678889,3154.733668,29642.00866,1,1,1,1,1,1,1
-1011.5,84,1172.4383,1467.561552,1549.158017,1607.238767,452.678889,452.678889,3132.855808,29436.39948,1,1,1,1,1,1,1
-1012,84,1172.4383,1467.561552,1424.278173,1718.520637,452.678889,452.678889,3121.257941,29327.40242,1,1,1,1,1,1,1
-1012.5,84,1172.4383,1467.561552,1551.980016,1576.925821,452.678889,452.678889,3109.407506,29216.03161,1,1,1,1,1,1,1
-1013,84,1172.4383,1467.561552,1498.055915,1612.546121,452.678889,452.678889,3093.796567,29069.31949,1,1,1,1,1,1,1
-1013.5,84,1172.4383,1467.561552,1559.334327,1569.208889,452.678889,452.678889,3109.09957,29213.13739,1,1,1,1,1,1,1
-1014,84,1172.4383,1467.561552,1599.519777,1599.519777,452.678889,452.678889,3169.228258,29778.22979,1,1,1,1,1,1,1
-1014.5,84,1172.4383,1467.561552,1483.494216,1751.764772,452.678889,452.678889,3200.121195,30068.56317,1,1,1,1,1,1,1
-1015,84,1172.4383,1467.561552,1568.33241,1681.244948,452.678889,452.678889,3212.333275,30183.33291,1,1,1,1,1,1,1
-1015.5,84,1172.4383,1467.561552,1577.688502,1675.277481,452.678889,452.678889,3215.222942,30210.48977,1,1,1,1,1,1,1
-1016,84,1172.4383,1467.561552,1473.374642,1747.780497,452.678889,452.678889,3188.091247,29955.50515,1,1,1,1,1,1,1
-1016.5,84,1172.4383,1467.561552,1583.837442,1606.836084,452.678889,452.678889,3162.09187,29711.16167,1,1,1,1,1,1,1
-1017,84,1172.4383,1467.561552,1454.467453,1717.127533,452.678889,452.678889,3145.819203,29558.2301,1,1,1,1,1,1,1
-1017.5,84,1172.4383,1467.561552,1551.651943,1632.963987,452.678889,452.678889,3156.926167,29662.61394,1,1,1,1,1,1,1
-1018,84,1172.4383,1467.561552,1560.602465,1654.526767,452.678889,452.678889,3182.950872,29907.19533,1,1,1,1,1,1,1
-1018.5,84,1172.4383,1467.561552,1533.736186,1721.378624,452.678889,452.678889,3217.056713,30227.72392,1,1,1,1,1,1,1
-1019,84,1172.4383,1467.561552,1624.529435,1701.396459,452.678889,452.678889,3274.243259,30765.06737,1,1,1,1,1,1,1
-1019.5,84,1172.4383,1467.561552,1545.384634,1830.71578,452.678889,452.678889,3316.334689,31161.02399,1,1,1,1,1,1,1
-1020,84,1172.4383,1467.561552,1588.266077,1799.588322,452.678889,452.678889,3326.339306,31255.17117,1,1,1,1,1,1,1
-1020.5,84,1172.4383,1467.561552,1579.801688,1781.4785,452.678889,452.678889,3303.618919,31041.3439,1,1,1,1,1,1,1
-1021,84,1172.4383,1467.561552,1573.140648,1741.541759,452.678889,452.678889,3265.444142,30682.4126,1,1,1,1,1,1,1
-1021.5,84,1172.4383,1467.561552,1475.544051,1788.838131,452.678889,452.678889,3224.780262,30300.30415,1,1,1,1,1,1,1
-1022,84,1172.4383,1467.561552,1593.795938,1619.6833,452.678889,452.678889,3181.543779,29893.97156,1,1,1,1,1,1,1
-1022.5,84,1172.4383,1467.561552,1448.12044,1741.610635,452.678889,452.678889,3161.288815,29703.61447,1,1,1,1,1,1,1
-1023,84,1172.4383,1467.561552,1501.387356,1703.825304,452.678889,452.678889,3174.493143,29827.70968,1,1,1,1,1,1,1
-1023.5,84,1172.4383,1467.561552,1468.132399,1750.138427,452.678889,452.678889,3185.631356,29932.38665,1,1,1,1,1,1,1
-1024,84,1172.4383,1467.561552,1454.372056,1774.725735,452.678889,452.678889,3194.865892,30019.17323,1,1,1,1,1,1,1
-1024.5,84,1172.4383,1467.561552,1565.515814,1680.859098,452.678889,452.678889,3209.601721,30157.66131,1,1,1,1,1,1,1
-1025,84,1172.4383,1467.561552,1508.520216,1756.85663,452.678889,452.678889,3225.809636,30309.98371,1,1,1,1,1,1,1
-1025.5,84,1172.4383,1467.561552,1519.09445,1750.564489,452.678889,452.678889,3229.462153,30344.31084,1,1,1,1,1,1,1
-1026,84,1172.4383,1467.561552,1482.538109,1770.081254,452.678889,452.678889,3214.927807,30207.7166,1,1,1,1,1,1,1
-1026.5,84,1172.4383,1467.561552,1459.089468,1780.463353,452.678889,452.678889,3203.782529,30102.97201,1,1,1,1,1,1,1
-1027,84,1172.4383,1467.561552,1556.932098,1671.793759,452.678889,452.678889,3194.548008,30016.18556,1,1,1,1,1,1,1
-1027.5,84,1172.4383,1467.561552,1454.122205,1757.326531,452.678889,452.678889,3179.812087,29877.69712,1,1,1,1,1,1,1
-1028,84,1172.4383,1467.561552,1465.976764,1726.470038,452.678889,452.678889,3163.604072,29725.37331,1,1,1,1,1,1,1
-1028.5,84,1172.4383,1467.561552,1450.198454,1734.266721,452.678889,452.678889,3156.797019,29661.40053,1,1,1,1,1,1,1
-1029,84,1172.4383,1467.561552,1437.697198,1754.37655,452.678889,452.678889,3163.28676,29722.39132,1,1,1,1,1,1,1
-1029.5,84,1172.4383,1467.561552,1579.097539,1604.448196,452.678889,452.678889,3156.011859,29654.02132,1,1,1,1,1,1,1
-1030,84,1172.4383,1467.561552,1511.443326,1657.242081,452.678889,452.678889,3143.338195,29534.91409,1,1,1,1,1,1,1
-1030.5,84,1172.4383,1467.561552,1479.06229,1696.308284,452.678889,452.678889,3149.03927,29588.49318,1,1,1,1,1,1,1
-1031,84,1172.4383,1467.561552,1526.349662,1661.426046,452.678889,452.678889,3159.619941,29687.93004,1,1,1,1,1,1,1
-1031.5,84,1172.4383,1467.561552,1565.105577,1634.154574,452.678889,452.678889,3169.415258,29779.98712,1,1,1,1,1,1,1
-1032,84,1172.4383,1467.561552,1468.970404,1739.990365,452.678889,452.678889,3177.689234,29857.74668,1,1,1,1,1,1,1
-1032.5,84,1172.4383,1467.561552,1538.513993,1679.997021,452.678889,452.678889,3185.83616,29934.31141,1,1,1,1,1,1,1
-1033,84,1172.4383,1467.561552,1520.232061,1708.865729,452.678889,452.678889,3194.865892,30019.17323,1,1,1,1,1,1,1
-1033.5,84,1172.4383,1467.561552,1555.695381,1690.679531,452.678889,452.678889,3209.601721,30157.66131,1,1,1,1,1,1,1
-1034,84,1172.4383,1467.561552,1612.493418,1652.883427,452.678889,452.678889,3225.809636,30309.98371,1,1,1,1,1,1,1
-1034.5,84,1172.4383,1467.561552,1566.226851,1688.639775,452.678889,452.678889,3216.844778,30225.73149,1,1,1,1,1,1,1
-1035,84,1172.4383,1467.561552,1507.130565,1694.033317,452.678889,452.678889,3171.039783,29795.25455,1,1,1,1,1,1,1
-1035.5,84,1172.4383,1467.561552,1503.632895,1634.223382,452.678889,452.678889,3117.041776,29287.77868,1,1,1,1,1,1,1
-1036,84,1172.4383,1467.561552,1418.269496,1654.110132,452.678889,452.678889,3061.194651,28762.92556,1,1,1,1,1,1,1
-1036.5,84,1172.4383,1467.561552,1413.814771,1599.483322,452.678889,452.678889,3010.801353,28289.32687,1,1,1,1,1,1,1
-1037,84,1172.4383,1467.561552,1461.548631,1503.139864,452.678889,452.678889,2969.340421,27899.67539,1,1,1,1,1,1,1
-1037.5,84,1172.4383,1467.561552,1386.153417,1550.604108,452.678889,452.678889,2945.517357,27675.7845,1,1,1,1,1,1,1
-1038,84,1172.4383,1467.561552,1367.754928,1542.36194,452.678889,452.678889,2922.79482,27462.23718,1,1,1,1,1,1,1
-1038.5,84,1172.4383,1467.561552,1377.085793,1469.407443,452.678889,452.678889,2868.527349,26952.22951,1,1,1,1,1,1,1
-1039,84,1172.4383,1467.561552,1251.344046,1511.874583,452.678889,452.678889,2804.632746,26351.94839,1,1,1,1,1,1,1
-1039.5,84,1172.4383,1467.561552,1269.923944,1415.119392,452.678889,452.678889,2734.841339,25697.14936,1,1,1,1,1,1,1
-1040,84,1172.4383,1467.561552,1306.86476,1317.499917,452.678889,452.678889,2679.920913,25181.9272,1,1,1,1,1,1,1
-1040.5,84,1172.4383,1467.561552,1264.506129,1336.289975,452.678889,452.678889,2658.587794,24981.79561,1,1,1,1,1,1,1
-1041,84,1172.4383,1467.561552,1240.026247,1341.212039,452.678889,452.678889,2640.884906,24815.72089,1,1,1,1,1,1,1
-1041.5,84,1172.4383,1467.561552,1200.58861,1349.497208,452.678889,452.678889,2612.688643,24551.20426,1,1,1,1,1,1,1
-1042,84,1172.4383,1467.561552,1188.896074,1316.17223,452.678889,452.678889,2571.943002,24168.95941,1,1,1,1,1,1,1
-1042.5,84,1172.4383,1467.561552,1157.130232,1255.626623,452.678889,452.678889,2488.390813,23385.13521,1,1,1,1,1,1,1
-1043,84,1172.4383,1467.561552,1092.22313,1227.592768,452.678889,452.678889,2406.349724,22615.35551,1,1,1,1,1,1,1
-1043.5,84,1172.4383,1467.561552,1017.512908,1235.466475,452.678889,452.678889,2355.765398,22140.15683,1,1,1,1,1,1,1
-1044,84,1172.4383,1467.561552,1055.086002,1133.228999,452.678889,452.678889,2305.04698,21663.5822,1,1,1,1,1,1,1
-1044.5,84,1172.4383,1467.561552,1014.864348,1077.639462,452.678889,452.678889,2218.109968,20845.53627,1,1,1,1,1,1,1
-1045,84,1172.4383,1467.561552,917.5202097,1068.093081,452.678889,452.678889,2120.396039,19926.02187,1,1,1,1,1,1,1
-1045.5,84,1172.4383,1467.561552,873.230335,1044.232168,452.678889,452.678889,2058.09533,19339.75493,1,1,1,1,1,1,1
-1046,84,1172.4383,1467.561552,913.5372532,944.2623156,452.678889,452.678889,2003.554324,18826.50944,1,1,1,1,1,1,1
-1046.5,84,1172.4383,1467.561552,830.7139212,963.9907837,452.678889,452.678889,1945.877831,18283.75842,1,1,1,1,1,1,1
-1047,84,1172.4383,1467.561552,836.1644152,895.210651,452.678889,452.678889,1888.327448,17742.45364,1,1,1,1,1,1,1
-1047.5,84,1172.4383,1467.561552,798.2966442,879.442144,452.678889,452.678889,1840.153643,17289.77695,1,1,1,1,1,1,1
-1048,84,1172.4383,1467.561552,764.6243068,860.8223079,452.678889,452.678889,1793.244262,16849.02442,1,1,1,1,1,1,1
-1048.5,84,1172.4383,1467.561552,719.8995868,826.8873626,452.678889,452.678889,1722.678955,16186.00417,1,1,1,1,1,1,1
-1049,84,1172.4383,1467.561552,725.2937124,747.3585121,452.678889,452.678889,1656.17252,15561.12096,1,1,1,1,1,1,1
-1049.5,84,1172.4383,1467.561552,646.4424217,778.4498018,452.678889,452.678889,1613.328295,15158.56398,1,1,1,1,1,1,1
-1050,84,1172.4383,1467.561552,684.4600552,695.744992,452.678889,452.678889,1573.23991,14781.89972,1,1,1,1,1,1,1
-1050.5,84,1172.4383,1467.561552,654.5677841,679.054081,452.678889,452.678889,1531.450755,14389.25615,1,1,1,1,1,1,1
-1051,84,1172.4383,1467.561552,604.5634621,677.2483795,452.678889,452.678889,1490.176322,14001.44851,1,1,1,1,1,1,1
-1051.5,84,1172.4383,1467.561552,548.9560136,654.1963301,452.678889,452.678889,1436.584809,13497.91138,1,1,1,1,1,1,1
-1052,84,1172.4383,1467.561552,509.3247873,621.4522952,452.678889,452.678889,1383.439291,12998.56484,1,1,1,1,1,1,1
-1052.5,84,1172.4383,1467.561552,504.9893545,583.8909373,452.678889,452.678889,1350.205039,12686.30182,1,1,1,1,1,1,1
-1053,84,1172.4383,1467.561552,521.7520845,527.7867238,452.678889,452.678889,1318.670763,12390.01108,1,1,1,1,1,1,1
-1053.5,84,1172.4383,1467.561552,474.2104896,500.9734471,452.678889,452.678889,1259.07184,11830.02912,1,1,1,1,1,1,1
-1054,84,1172.4383,1467.561552,409.7068393,476.7785827,452.678889,452.678889,1187.974312,11162.00873,1,1,1,1,1,1,1
-1054.5,84,1172.4383,1467.561552,400.6571611,429.0391298,452.678889,452.678889,1142.453259,10734.3002,1,1,1,1,1,1,1
-1055,84,1172.4383,1467.561552,367.0219206,411.7841525,452.678889,452.678889,1101.662188,10351.03444,1,1,1,1,1,1,1
-1055.5,84,1172.4383,1467.561552,332.8846003,389.4402256,452.678889,452.678889,1057.054811,9931.910899,1,1,1,1,1,1,1
-1056,84,1172.4383,1467.561552,318.2655322,347.1623819,452.678889,452.678889,1014.0283,9527.640868,1,1,1,1,1,1,1
-1056.5,84,1172.4383,1467.561552,294.8428573,325.3265651,452.678889,452.678889,979.9310151,9207.268894,1,1,1,1,1,1,1
-1057,84,1172.4383,1467.561552,287.4466573,289.8947799,452.678889,452.678889,947.6642235,8904.09515,1,1,1,1,1,1,1
-1057.5,84,1172.4383,1467.561552,230.9834132,277.2495402,452.678889,452.678889,895.5979829,8414.889184,1,1,1,1,1,1,1
-1058,84,1172.4383,1467.561552,200.8319217,245.4612376,452.678889,452.678889,848.9329653,7976.432807,1,1,1,1,1,1,1
-1058.5,84,1172.4383,1467.561552,191.4076706,225.4579246,452.678889,452.678889,826.7624055,7768.121829,1,1,1,1,1,1,1
-1059,84,1172.4383,1467.561552,176.2334966,214.6646994,452.678889,452.678889,807.1988942,7584.306329,1,1,1,1,1,1,1
-1059.5,84,1172.4383,1467.561552,162.924945,188.4472164,452.678889,452.678889,777.4209422,7304.517505,1,1,1,1,1,1,1
-1060,84,1172.4383,1467.561552,149.040526,159.3994186,452.678889,452.678889,745.0756378,7000.606479,1,1,1,1,1,1,1
-1060.5,84,1172.4383,1467.561552,145.4592697,146.1858174,452.678889,452.678889,732.8634781,6885.863146,1,1,1,1,1,1,1
-1061,84,1172.4383,1467.561552,130.9085659,151.669616,452.678889,452.678889,726.8951076,6829.785639,1,1,1,1,1,1,1
-1061.5,84,1172.4383,1467.561552,124.4105766,151.5599822,452.678889,452.678889,722.6049967,6789.476046,1,1,1,1,1,1,1
-1062,84,1172.4383,1467.561552,130.1348373,139.7627696,452.678889,452.678889,718.6618703,6752.427025,1,1,1,1,1,1,1
-1062.5,84,1172.4383,1467.561552,133.9423043,139.6276206,452.678889,452.678889,721.0464692,6774.83265,1,1,1,1,1,1,1
-1063,84,1172.4383,1467.561552,139.5545693,145.2506741,452.678889,452.678889,728.3408305,6843.369285,1,1,1,1,1,1,1
-1063.5,84,1172.4383,1467.561552,153.2448029,156.5698295,452.678889,452.678889,746.1878588,7011.056748,1,1,1,1,1,1,1
-1064,84,1172.4383,1467.561552,153.5391267,175.0548582,452.678889,452.678889,760.2591099,7143.268316,1,1,1,1,1,1,1
-1064.5,84,1172.4383,1467.561552,151.1154904,173.8640588,452.678889,452.678889,757.5369905,7117.690971,1,1,1,1,1,1,1
-1065,84,1172.4383,1467.561552,158.5889109,160.392724,452.678889,452.678889,753.0178447,7075.229957,1,1,1,1,1,1,1
-1065.5,84,1172.4383,1467.561552,161.3279475,161.3279475,452.678889,452.678889,755.7850591,7101.230407,1,1,1,1,1,1,1
-1066,84,1172.4383,1467.561552,155.7517825,170.7968477,452.678889,452.678889,758.7179196,7128.787524,1,1,1,1,1,1,1
-1066.5,84,1172.4383,1467.561552,141.2801883,156.1517871,452.678889,452.678889,736.8016464,6922.86588,1,1,1,1,1,1,1
-1067,84,1172.4383,1467.561552,133.3190562,136.9584156,452.678889,452.678889,718.9094316,6754.753337,1,1,1,1,1,1,1
-1067.5,84,1172.4383,1467.561552,124.9259358,142.3583486,452.678889,452.678889,716.9651072,6736.484691,1,1,1,1,1,1,1
-1068,84,1172.4383,1467.561552,125.3982912,141.6322903,452.678889,452.678889,716.8010409,6734.943382,1,1,1,1,1,1,1
-1068.5,84,1172.4383,1467.561552,125.0711503,135.9354337,452.678889,452.678889,712.8900575,6698.196127,1,1,1,1,1,1,1
-1069,84,1172.4383,1467.561552,122.3311283,132.525389,452.678889,452.678889,708.8967006,6660.675614,1,1,1,1,1,1,1
-1069.5,84,1172.4383,1467.561552,123.91702,144.589674,452.678889,452.678889,717.7595899,6743.949589,1,1,1,1,1,1,1
-1070,84,1172.4383,1467.561552,131.3545156,154.1987791,452.678889,452.678889,728.8262928,6847.93063,1,1,1,1,1,1,1
-1070.5,84,1172.4383,1467.561552,140.1934011,158.5751399,452.678889,452.678889,737.8570482,6932.782175,1,1,1,1,1,1,1
-1071,84,1172.4383,1467.561552,150.7811819,160.8440398,452.678889,452.678889,747.4758792,7023.158833,1,1,1,1,1,1,1
-1071.5,84,1172.4383,1467.561552,154.7091942,173.667046,452.678889,452.678889,760.0955076,7141.730602,1,1,1,1,1,1,1
-1072,84,1172.4383,1467.561552,157.7491176,191.6408861,452.678889,452.678889,775.9268319,7290.478823,1,1,1,1,1,1,1
-1072.5,84,1172.4383,1467.561552,176.3355912,207.6086544,452.678889,452.678889,801.9593102,7535.075558,1,1,1,1,1,1,1
-1073,84,1172.4383,1467.561552,207.5575442,217.9094966,452.678889,452.678889,833.2429896,7829.012606,1,1,1,1,1,1,1
-1073.5,84,1172.4383,1467.561552,228.5028964,246.8354914,452.678889,452.678889,870.8152892,8182.035259,1,1,1,1,1,1,1
-1074,84,1172.4383,1467.561552,238.3928238,288.8316374,452.678889,452.678889,909.906635,8549.33134,1,1,1,1,1,1,1
-1074.5,84,1172.4383,1467.561552,295.4890437,316.8113166,452.678889,452.678889,974.0030073,9151.570039,1,1,1,1,1,1,1
-1075,84,1172.4383,1467.561552,354.3781533,362.5306611,452.678889,452.678889,1052.814421,9892.069133,1,1,1,1,1,1,1
-1075.5,84,1172.4383,1467.561552,402.9514521,426.6888385,452.678889,452.678889,1142.437233,10734.14979,1,1,1,1,1,1,1
-1076,84,1172.4383,1467.561552,425.1860311,504.8983599,452.678889,452.678889,1222.921202,11490.36354,1,1,1,1,1,1,1
-1076.5,84,1172.4383,1467.561552,477.0183316,520.6487624,452.678889,452.678889,1277.093326,11999.35648,1,1,1,1,1,1,1
-1077,84,1172.4383,1467.561552,514.6702436,547.3263779,452.678889,452.678889,1328.656517,12483.8355,1,1,1,1,1,1,1
-1077.5,84,1172.4383,1467.561552,550.3866479,595.3696205,452.678889,452.678889,1395.794815,13114.65507,1,1,1,1,1,1,1
-1078,84,1172.4383,1467.561552,559.9547543,678.2883649,452.678889,452.678889,1458.733452,13706.01664,1,1,1,1,1,1,1
-1078.5,84,1172.4383,1467.561552,593.2057716,725.0292764,452.678889,452.678889,1518.533955,14267.89213,1,1,1,1,1,1,1
-1079,84,1172.4383,1467.561552,673.6729199,722.9326393,452.678889,452.678889,1587.952345,14920.13547,1,1,1,1,1,1,1
-1079.5,84,1172.4383,1467.561552,724.0428265,754.7321693,452.678889,452.678889,1661.666495,15612.74097,1,1,1,1,1,1,1
-1080,84,1172.4383,1467.561552,779.5964031,781.9551001,452.678889,452.678889,1735.924247,16310.45504,1,1,1,1,1,1,1
-1080.5,84,1172.4383,1467.561552,747.0795207,899.2628373,452.678889,452.678889,1811.989027,17025.1466,1,1,1,1,1,1,1
-1081,84,1172.4383,1467.561552,778.9779646,952.084179,452.678889,452.678889,1887.990842,17739.24735,1,1,1,1,1,1,1
-1081.5,84,1172.4383,1467.561552,839.2276649,970.01399,452.678889,452.678889,1959.180378,18408.94903,1,1,1,1,1,1,1
-1082,84,1172.4383,1467.561552,917.8303635,962.6470679,452.678889,452.678889,2024.286318,19021.60293,1,1,1,1,1,1,1
-1082.5,84,1172.4383,1467.561552,959.1590775,980.0487107,452.678889,452.678889,2077.974776,19526.82604,1,1,1,1,1,1,1
-1083,84,1172.4383,1467.561552,988.6285631,1008.600857,452.678889,452.678889,2131.015636,20025.95486,1,1,1,1,1,1,1
-1083.5,84,1172.4383,1467.561552,980.9341346,1097.705195,452.678889,452.678889,2205.436173,20726.27292,1,1,1,1,1,1,1
-1084,84,1172.4383,1467.561552,1002.713928,1173.499614,452.678889,452.678889,2294.633548,21565.64444,1,1,1,1,1,1,1
-1084.5,84,1172.4383,1467.561552,1066.247055,1228.622033,452.678889,452.678889,2386.643214,22430.27726,1,1,1,1,1,1,1
-1085,84,1172.4383,1467.561552,1157.912691,1237.081371,452.678889,452.678889,2472.601182,23236.99034,1,1,1,1,1,1,1
-1085.5,84,1172.4383,1467.561552,1138.363617,1301.524474,452.678889,452.678889,2512.947403,23615.50704,1,1,1,1,1,1,1
-1086,84,1172.4383,1467.561552,1186.304659,1291.225289,452.678889,452.678889,2547.017122,23935.12315,1,1,1,1,1,1,1
-1086.5,84,1172.4383,1467.561552,1218.933143,1272.704939,452.678889,452.678889,2559.786194,24054.91344,1,1,1,1,1,1,1
-1087,84,1172.4383,1467.561552,1162.054727,1326.347248,452.678889,452.678889,2556.857665,24027.44026,1,1,1,1,1,1,1
-1087.5,84,1172.4383,1467.561552,1176.622725,1280.848068,452.678889,452.678889,2528.861743,23764.8033,1,1,1,1,1,1,1
-1088,84,1172.4383,1467.561552,1116.942115,1302.718403,452.678889,452.678889,2494.638382,23443.74559,1,1,1,1,1,1,1
-1088.5,84,1172.4383,1467.561552,1106.478606,1275.108505,452.678889,452.678889,2460.177094,23120.45515,1,1,1,1,1,1,1
-1089,84,1172.4383,1467.561552,1092.470319,1280.412352,452.678889,452.678889,2452.298584,23046.54551,1,1,1,1,1,1,1
-1089.5,84,1172.4383,1467.561552,1099.390547,1290.588903,452.678889,452.678889,2467.773555,23191.72016,1,1,1,1,1,1,1
-1090,84,1172.4383,1467.561552,1163.645023,1245.410942,452.678889,452.678889,2485.040751,23353.70766,1,1,1,1,1,1,1
-1090.5,84,1172.4383,1467.561552,1177.651592,1250.49602,452.678889,452.678889,2502.320397,23515.81253,1,1,1,1,1,1,1
-1091,84,1172.4383,1467.561552,1115.139704,1347.944005,452.678889,452.678889,2533.941391,23812.4566,1,1,1,1,1,1,1
-1091.5,84,1172.4383,1467.561552,1164.045913,1370.745153,452.678889,452.678889,2598.845829,24421.34144,1,1,1,1,1,1,1
-1092,84,1172.4383,1467.561552,1194.850008,1376.889082,452.678889,452.678889,2632.287518,24735.06639,1,1,1,1,1,1,1
-1092.5,84,1172.4383,1467.561552,1185.252398,1389.161419,452.678889,452.678889,2634.7084,24757.7773,1,1,1,1,1,1,1
-1093,84,1172.4383,1467.561552,1241.953708,1329.312105,452.678889,452.678889,2631.859972,24731.0555,1,1,1,1,1,1,1
-1093.5,84,1172.4383,1467.561552,1200.65441,1347.414432,452.678889,452.678889,2610.863147,24534.07916,1,1,1,1,1,1,1
-1094,84,1172.4383,1467.561552,1199.839858,1304.038172,452.678889,452.678889,2570.865554,24158.85165,1,1,1,1,1,1,1
-1094.5,84,1172.4383,1467.561552,1107.250116,1315.358995,452.678889,452.678889,2497.307062,23468.78133,1,1,1,1,1,1,1
-1095,84,1172.4383,1467.561552,1066.526132,1301.400566,452.678889,452.678889,2447.813736,23004.4721,1,1,1,1,1,1,1
-1095.5,84,1172.4383,1467.561552,1106.968475,1233.369617,452.678889,452.678889,2422.842991,22770.21459,1,1,1,1,1,1,1
-1096,84,1172.4383,1467.561552,1155.256722,1164.539835,452.678889,452.678889,2405.437505,22606.85416,1,1,1,1,1,1,1
-1096.5,84,1172.4383,1467.561552,1143.750458,1186.677721,452.678889,452.678889,2413.975828,22687.02359,1,1,1,1,1,1,1
-1097,84,1172.4383,1467.561552,1154.302659,1223.794372,452.678889,452.678889,2457.019198,23090.83075,1,1,1,1,1,1,1
-1097.5,84,1172.4383,1467.561552,1220.966175,1272.73153,452.678889,452.678889,2561.650406,24072.40194,1,1,1,1,1,1,1
-1098,84,1172.4383,1467.561552,1170.386643,1386.602177,452.678889,452.678889,2618.936535,24609.81772,1,1,1,1,1,1,1
-1098.5,84,1172.4383,1467.561552,1227.304887,1340.17365,452.678889,452.678889,2628.432254,24698.89905,1,1,1,1,1,1,1
-1099,84,1172.4383,1467.561552,1268.04941,1299.845295,452.678889,452.678889,2628.807506,24702.41964,1,1,1,1,1,1,1
-1099.5,84,1172.4383,1467.561552,1194.403663,1336.035501,452.678889,452.678889,2594.90667,24384.38724,1,1,1,1,1,1,1
-1100,84,1172.4383,1467.561552,1131.684268,1348.918724,452.678889,452.678889,2549.799022,23961.22074,1,1,1,1,1,1,1
-1100.5,84,1172.4383,1467.561552,1147.554533,1276.629356,452.678889,452.678889,2498.732217,23482.15048,1,1,1,1,1,1,1
-1101,84,1172.4383,1467.561552,1146.170554,1243.686031,452.678889,452.678889,2467.662036,23190.67318,1,1,1,1,1,1,1
-1101.5,84,1172.4383,1467.561552,1140.268719,1235.291113,452.678889,452.678889,2454.722699,23069.28633,1,1,1,1,1,1,1
-1102,84,1172.4383,1467.561552,1100.736905,1260.357327,452.678889,452.678889,2441.628783,22946.44873,1,1,1,1,1,1,1
-1102.5,84,1172.4383,1467.561552,1150.440277,1185.037782,452.678889,452.678889,2418.443862,22728.94518,1,1,1,1,1,1,1
-1103,84,1172.4383,1467.561552,1090.750521,1197.765545,452.678889,452.678889,2382.35642,22389.9933,1,1,1,1,1,1,1
-1103.5,84,1172.4383,1467.561552,1034.179144,1164.272216,452.678889,452.678889,2313.199969,21740.21868,1,1,1,1,1,1,1
-1104,84,1172.4383,1467.561552,1002.323547,1130.279745,452.678889,452.678889,2254.713811,21189.98379,1,1,1,1,1,1,1
-1104.5,84,1172.4383,1467.561552,993.0413069,1099.350167,452.678889,452.678889,2218.006731,20844.56498,1,1,1,1,1,1,1
-1105,84,1172.4383,1467.561552,995.154367,1060.130823,452.678889,452.678889,2184.086188,20525.36372,1,1,1,1,1,1,1
-1105.5,84,1172.4383,1467.561552,963.426633,1061.409304,452.678889,452.678889,2156.250297,20263.42067,1,1,1,1,1,1,1
-1106,84,1172.4383,1467.561552,974.3777101,1019.064053,452.678889,452.678889,2127.552454,19993.36566,1,1,1,1,1,1,1
-1106.5,84,1172.4383,1467.561552,940.4523988,1015.530088,452.678889,452.678889,2093.308257,19671.11829,1,1,1,1,1,1,1
-1107,84,1172.4383,1467.561552,911.1196395,987.0462762,452.678889,452.678889,2040.45535,19173.75785,1,1,1,1,1,1,1
-1107.5,84,1172.4383,1467.561552,851.2986104,974.6014414,452.678889,452.678889,1974.394009,18552.10304,1,1,1,1,1,1,1
-1108,84,1172.4383,1467.561552,871.8575257,914.8167078,452.678889,452.678889,1938.536012,18214.66925,1,1,1,1,1,1,1
-1108.5,84,1172.4383,1467.561552,830.2005841,930.1566925,452.678889,452.678889,1914.478673,17988.28305,1,1,1,1,1,1,1
-1109,84,1172.4383,1467.561552,801.4671273,937.8176739,452.678889,452.678889,1895.379685,17808.68233,1,1,1,1,1,1,1
-1109.5,84,1172.4383,1467.561552,826.9190589,901.5776784,452.678889,452.678889,1885.689162,17717.6211,1,1,1,1,1,1,1
-1110,84,1172.4383,1467.561552,848.8078955,870.1124999,452.678889,452.678889,1877.097682,17636.89672,1,1,1,1,1,1,1
-1110.5,84,1172.4383,1467.561552,774.3264783,932.7568189,452.678889,452.678889,1866.479363,17537.12922,1,1,1,1,1,1,1
-1111,84,1172.4383,1467.561552,811.6140569,855.7996545,452.678889,452.678889,1830.891368,17202.75033,1,1,1,1,1,1,1
-1111.5,84,1172.4383,1467.561552,777.5783682,839.6239086,452.678889,452.678889,1785.847679,16779.52715,1,1,1,1,1,1,1
-1112,84,1172.4383,1467.561552,762.7380062,796.4841467,452.678889,452.678889,1733.834548,16290.82072,1,1,1,1,1,1,1
-1112.5,84,1172.4383,1467.561552,686.7982797,798.191489,452.678889,452.678889,1667.240846,15665.11697,1,1,1,1,1,1,1
-1113,84,1172.4383,1467.561552,661.5498951,776.6020507,452.678889,452.678889,1625.223672,15270.33043,1,1,1,1,1,1,1
-1113.5,84,1172.4383,1467.561552,678.2398889,739.5061135,452.678889,452.678889,1606.917008,15098.32473,1,1,1,1,1,1,1
-1114,84,1172.4383,1467.561552,701.7205048,706.2186413,452.678889,452.678889,1598.119862,15015.6681,1,1,1,1,1,1,1
-1114.5,84,1172.4383,1467.561552,655.5429986,745.8168664,452.678889,452.678889,1592.217818,14960.21332,1,1,1,1,1,1,1
-1115,84,1172.4383,1467.561552,640.2365125,764.4321337,452.678889,452.678889,1595.185265,14988.09472,1,1,1,1,1,1,1
-1115.5,84,1172.4383,1467.561552,650.8766708,779.6215068,452.678889,452.678889,1618.357486,15205.81733,1,1,1,1,1,1,1
-1116,84,1172.4383,1467.561552,697.0865248,747.241744,452.678889,452.678889,1630.763392,15322.38088,1,1,1,1,1,1,1
-1116.5,84,1172.4383,1467.561552,715.1604597,731.9265157,452.678889,452.678889,1633.239635,15345.64757,1,1,1,1,1,1,1
-1117,84,1172.4383,1467.561552,700.674935,769.5918449,452.678889,452.678889,1654.032483,15541.01345,1,1,1,1,1,1,1
-1117.5,84,1172.4383,1467.561552,727.080966,774.4652913,452.678889,452.678889,1682.094192,15804.67626,1,1,1,1,1,1,1
-1118,84,1172.4383,1467.561552,707.9382348,824.5675269,452.678889,452.678889,1709.867772,16065.63242,1,1,1,1,1,1,1
-1118.5,84,1172.4383,1467.561552,761.3900095,799.9289284,452.678889,452.678889,1735.714968,16308.48858,1,1,1,1,1,1,1
-1119,84,1172.4383,1467.561552,726.0670482,844.2428884,452.678889,452.678889,1743.78084,16384.2744,1,1,1,1,1,1,1
-1119.5,84,1172.4383,1467.561552,776.8491884,786.8274772,452.678889,452.678889,1737.830623,16328.36692,1,1,1,1,1,1,1
-1120,84,1172.4383,1467.561552,751.2266986,823.7712703,452.678889,452.678889,1747.987095,16423.795,1,1,1,1,1,1,1
-1120.5,84,1172.4383,1467.561552,720.2507653,873.3544561,452.678889,452.678889,1764.679237,16580.63188,1,1,1,1,1,1,1
-1121,84,1172.4383,1467.561552,744.2212835,876.4043899,452.678889,452.678889,1788.918688,16808.38188,1,1,1,1,1,1,1
-1121.5,84,1172.4383,1467.561552,781.7972954,884.3427446,452.678889,452.678889,1829.749697,17192.02328,1,1,1,1,1,1,1
-1122,84,1172.4383,1467.561552,857.1826093,881.1958006,452.678889,452.678889,1894.553544,17800.90969,1,1,1,1,1,1,1
-1122.5,84,1172.4383,1467.561552,838.4024906,992.0648418,452.678889,452.678889,1978.574942,18591.45111,1,1,1,1,1,1,1
-1123,84,1172.4383,1467.561552,892.0697381,1010.608299,452.678889,452.678889,2044.58053,19212.57742,1,1,1,1,1,1,1
-1123.5,84,1172.4383,1467.561552,888.114438,1078.739147,452.678889,452.678889,2103.247572,19764.64985,1,1,1,1,1,1,1
-1124,84,1172.4383,1467.561552,999.8096975,1034.241455,452.678889,452.678889,2164.675569,20342.70459,1,1,1,1,1,1,1
-1124.5,84,1172.4383,1467.561552,966.2493838,1143.140099,452.678889,452.678889,2233.546497,20990.79828,1,1,1,1,1,1,1
-1125,84,1172.4383,1467.561552,1069.943836,1125.612495,452.678889,452.678889,2310.305544,21712.94973,1,1,1,1,1,1,1
-1125.5,84,1172.4383,1467.561552,1037.677617,1252.728117,452.678889,452.678889,2383.446205,22400.2411,1,1,1,1,1,1,1
-1126,84,1172.4383,1467.561552,1150.723261,1235.069266,452.678889,452.678889,2464.357796,23159.65202,1,1,1,1,1,1,1
-1126.5,84,1172.4383,1467.561552,1146.12455,1335.122667,452.678889,452.678889,2550.381883,23966.68917,1,1,1,1,1,1,1
-1127,84,1172.4383,1467.561552,1247.348885,1334.690716,452.678889,452.678889,2641.610971,24822.53194,1,1,1,1,1,1,1
-1127.5,84,1172.4383,1467.561552,1232.384034,1462.592814,452.678889,452.678889,2743.832024,25781.49342,1,1,1,1,1,1,1
-1128,84,1172.4383,1467.561552,1364.317236,1435.339334,452.678889,452.678889,2831.70858,26606.32445,1,1,1,1,1,1,1
-1128.5,84,1172.4383,1467.561552,1444.283053,1448.742005,452.678889,452.678889,2908.452278,27327.44884,1,1,1,1,1,1,1
-1129,84,1172.4383,1467.561552,1475.662473,1475.662473,452.678889,452.678889,2957.941959,27792.55226,1,1,1,1,1,1,1
-1129.5,84,1172.4383,1467.561552,1484.554523,1512.174976,452.678889,452.678889,2996.669165,28156.51226,1,1,1,1,1,1,1
-1130,84,1172.4383,1467.561552,1454.813003,1597.920849,452.678889,452.678889,3044.438115,28605.44633,1,1,1,1,1,1,1
-1130.5,84,1172.4383,1467.561552,1547.140114,1588.203404,452.678889,452.678889,3114.899351,29267.6441,1,1,1,1,1,1,1
-1131,84,1172.4383,1467.561552,1552.259645,1673.818334,452.678889,452.678889,3192.289203,29994.95785,1,1,1,1,1,1,1
-1131.5,84,1172.4383,1467.561552,1640.167556,1681.081825,452.678889,452.678889,3270.409063,30729.038,1,1,1,1,1,1,1
-1132,84,1172.4383,1467.561552,1549.374502,1867.249014,452.678889,452.678889,3350.993493,31487.21087,1,1,1,1,1,1,1
-1132.5,84,1172.4383,1467.561552,1580.429497,1931.636052,452.678889,452.678889,3432.532966,32254.58894,1,1,1,1,1,1,1
-1133,84,1172.4383,1467.561552,1656.686169,1950.880715,452.678889,452.678889,3514.181039,33023.00065,1,1,1,1,1,1,1
-1133.5,84,1172.4383,1467.561552,1771.71355,1931.316467,452.678889,452.678889,3595.796944,33791.11022,1,1,1,1,1,1,1
-1134,84,1172.4383,1467.561552,1804.385489,2028.464011,452.678889,452.678889,3702.948108,34798.81469,1,1,1,1,1,1,1
-1134.5,84,1172.4383,1467.561552,1821.324131,2171.52565,452.678889,452.678889,3860.533523,36277.62575,1,1,1,1,1,1,1
-1135,84,1172.4383,1467.561552,2024.798731,2130.161846,452.678889,452.678889,4023.113347,37803.06533,1,1,1,1,1,1,1
-1135.5,84,1172.4383,1467.561552,2047.034053,2252.061035,452.678889,452.678889,4164.471025,39129.62556,1,1,1,1,1,1,1
-1136,84,1172.4383,1467.561552,2058.024208,2317.109777,452.678889,452.678889,4235.143857,39793.69908,1,1,1,1,1,1,1
-1136.5,84,1172.4383,1467.561552,2147.80373,2291.415162,452.678889,452.678889,4301.573113,40418.31287,1,1,1,1,1,1,1
-1137,83.99990794,1172.437103,1467.561552,2098.582007,2399.320175,452.6783929,452.6783929,4363.038539,40996.27486,1,1,1,1,1,1,1
-1137.5,83.99815086,1172.412696,1467.561552,2061.912064,2461.905643,452.6689239,452.6689239,4389.968265,41249.49565,1,1,1,1,1,1,1
-1138,83.99348906,1172.347171,1467.561552,2125.658255,2408.487083,452.6438013,452.6438013,4400.434672,41347.91163,1,1,1,1,1,1,1
-1138.5,83.98591932,1172.242367,1467.561552,2091.240751,2447.107202,452.6030077,452.6030077,4404.32192,41384.46408,1,1,1,1,1,1,1
-1139,83.9748993,1172.087546,1467.561552,2192.962154,2347.228064,452.5436205,452.5436205,4405.501951,41395.56064,1,1,1,1,1,1,1
-1139.5,83.95936564,1171.871215,1467.561552,2097.891864,2443.100789,452.459909,452.459909,4405.343773,41394.07442,1,1,1,1,1,1,1
-1140,83.93665897,1171.553794,1467.561552,2256.203212,2285.187482,452.337542,452.337542,4404.170453,41383.04268,1,1,1,1,1,1,1
-1140.5,83.90186343,1171.068436,1467.561552,2124.694755,2417.200559,452.1500276,452.1500276,4402.303425,41365.48916,1,1,1,1,1,1,1
-1141,83.85512478,1170.415903,1467.561552,2070.350992,2471.866782,451.8981514,451.8981514,4399.793783,41341.89259,1,1,1,1,1,1,1
-1141.5,83.79935208,1169.637987,1467.561552,2045.943198,2496.531039,451.5975905,451.5975905,4396.801601,41313.76035,1,1,1,1,1,1,1
-1142,83.73506289,1168.740019,1467.561552,2065.110456,2477.635546,451.2511338,451.2511338,4393.347863,41281.28843,1,1,1,1,1,1,1
-1142.5,83.66163747,1167.715807,1467.561552,2192.273626,2350.742107,450.8554417,450.8554417,4389.408575,41244.25063,1,1,1,1,1,1,1
-1143,83.57949372,1166.569417,1467.561552,2266.04072,2277.209891,450.4127662,450.4127662,4384.999198,41202.79313,1,1,1,1,1,1,1
-1143.5,83.4891954,1165.309206,1467.561552,2271.726537,2271.726537,449.9261454,449.9261454,4380.152414,41157.22356,1,1,1,1,1,1,1
-1144,83.39082037,1163.935862,1467.561552,2271.833165,2271.833165,449.395999,449.395999,4374.870295,41107.56072,1,1,1,1,1,1,1
-1144.5,83.28325681,1162.434328,1467.561552,2167.85688,2376.072119,448.8163353,448.8163353,4369.094794,41053.25934,1,1,1,1,1,1,1
-1145,83.16303797,1160.755844,1467.561552,2158.581799,2385.800936,448.1684718,448.1684718,4362.639081,40992.56237,1,1,1,1,1,1,1
-1145.5,83.02901835,1158.885995,1467.561552,2200.309583,2344.388016,447.4462355,447.4462355,4355.447266,40924.94495,1,1,1,1,1,1,1
-1146,82.88687958,1156.901824,1467.561552,2245.72495,2298.982702,446.6802448,446.6802448,4347.815733,40853.19216,1,1,1,1,1,1,1
-1146.5,82.74074146,1154.862589,1467.561552,2083.63124,2461.053293,445.8927014,445.8927014,4339.972232,40779.44776,1,1,1,1,1,1,1
-1147,82.59143315,1152.77779,1467.561552,2171.453122,2373.17339,445.0880738,445.0880738,4331.953565,40704.05534,1,1,1,1,1,1,1
-1147.5,82.4400575,1150.66502,1467.561552,2202.067167,2342.433787,444.2723052,444.2723052,4323.827576,40627.65413,1,1,1,1,1,1,1
-1148,82.29160404,1148.59372,1467.561552,2224.555097,2319.51334,443.4722844,443.4722844,4315.860932,40552.75151,1,1,1,1,1,1,1
-1148.5,82.14915492,1146.605253,1467.561552,2102.45186,2441.267852,442.7046212,442.7046212,4308.212637,40480.8423,1,1,1,1,1,1,1
-1149,82.00672322,1144.616632,1467.561552,2152.052653,2391.68855,441.9370519,441.9370519,4300.564145,40408.93069,1,1,1,1,1,1,1
-1149.5,81.85881692,1142.551883,1467.561552,2075.820281,2467.98593,441.1399798,441.1399798,4292.622595,40334.26368,1,1,1,1,1,1,1
-1150,81.70462514,1140.400009,1467.561552,2232.290523,2311.58082,440.3090349,440.3090349,4284.346073,40256.44691,1,1,1,1,1,1,1
-1150.5,81.54416987,1138.161072,1467.561552,2146.336237,2397.591626,439.444336,439.444336,4275.734548,40175.48086,1,1,1,1,1,1,1
-1151,81.378546,1135.849648,1467.561552,2094.523044,2449.375494,438.5517833,438.5517833,4266.844106,40091.89271,1,1,1,1,1,1,1
-1151.5,81.20943311,1133.488186,1467.561552,2110.682845,2433.125358,437.640428,437.640428,4257.761459,40006.49715,1,1,1,1,1,1,1
-1152,81.03873876,1131.105632,1467.561552,2174.302425,2369.310666,436.7205503,436.7205503,4248.597619,39920.33811,1,1,1,1,1,1,1
-1152.5,80.86808993,1128.724653,1467.561552,2221.800746,2321.601652,435.8009179,435.8009179,4239.439794,39834.23561,1,1,1,1,1,1,1
-1153,80.69947243,1126.371298,1467.561552,2185.193831,2357.877099,434.8922324,434.8922324,4230.388289,39749.13308,1,1,1,1,1,1,1
-1153.5,80.53635127,1124.094524,1467.561552,2241.733392,2300.856478,434.0131669,434.0131669,4221.631393,39666.80017,1,1,1,1,1,1,1
-1154,80.37764892,1121.878687,1467.561552,2268.873268,2273.475722,433.1579144,433.1579144,4213.10888,39586.67104,1,1,1,1,1,1,1
-1154.5,80.21832671,1119.655237,1467.561552,2128.410847,2413.841645,432.2993216,432.2993216,4204.556833,39506.26468,1,1,1,1,1,1,1
-1155,80.05960352,1117.439229,1467.561552,2071.268125,2470.657451,431.4439568,431.4439568,4196.033773,39426.12997,1,1,1,1,1,1,1
-1155.5,79.90481369,1115.278972,1467.561552,2229.127794,2312.439426,430.6097891,430.6097891,4187.724914,39348.0093,1,1,1,1,1,1,1
-1156,79.75136274,1113.136925,1467.561552,2065.171688,2476.278826,429.7828367,429.7828367,4179.486197,39270.54847,1,1,1,1,1,1,1
-1156.5,79.59524559,1110.958641,1467.561552,2226.265587,2315.124887,428.941516,428.941516,4171.107871,39191.77552,1,1,1,1,1,1,1
-1157,79.43737371,1108.755302,1467.561552,2065.46934,2475.736784,428.090739,428.090739,4162.633373,39112.09771,1,1,1,1,1,1,1
-1157.5,79.28209604,1106.587406,1467.561552,2225.570995,2315.23863,427.2539423,427.2539423,4154.29534,39033.70273,1,1,1,1,1,1,1
-1158,79.13009033,1104.466111,1467.561552,2186.917739,2353.652655,426.4347783,426.4347783,4146.136079,38956.98892,1,1,1,1,1,1,1
-1158.5,78.97734712,1102.334155,1467.561552,2199.636681,2340.850993,425.6116399,425.6116399,4137.936148,38879.8925,1,1,1,1,1,1,1
-1159,78.8235188,1100.186863,1467.561552,2101.13492,2439.136807,424.7826538,424.7826538,4129.699961,38802.45659,1,1,1,1,1,1,1
-1159.5,78.67125978,1098.062064,1467.561552,2108.545723,2431.433322,423.9621247,423.9621247,4122.455373,38734.3732,1,1,1,1,1,1,1
-1160,78.52098565,1095.964498,1467.561552,2211.63623,2328.101403,423.1522922,423.1522922,4115.4168,38668.2296,1,1,1,1,1,1,1
-1160.5,78.36703768,1093.815154,1467.561552,2123.986978,2415.881948,422.3226613,422.3226613,4108.204259,38600.45176,1,1,1,1,1,1,1
-1161,78.20471638,1091.549524,1467.561552,2191.432745,2348.530554,421.4479063,421.4479063,4100.60184,38529.00976,1,1,1,1,1,1,1
-1161.5,78.0404958,1089.258047,1467.561552,2121.450054,2418.140693,420.5629159,420.5629159,4092.912413,38456.74995,1,1,1,1,1,1,1
-1162,77.88145764,1087.038764,1467.561552,2230.936043,2308.21774,419.7058538,419.7058538,4085.465113,38386.76618,1,1,1,1,1,1,1
-1162.5,77.72796653,1084.895935,1467.561552,2146.618306,2392.144795,418.8786849,418.8786849,4078.274864,38319.19716,1,1,1,1,1,1,1
-1163,77.5792597,1082.819757,1467.561552,2232.989512,2305.397112,418.0772987,418.0772987,4071.307786,38253.72593,1,1,1,1,1,1,1
-1163.5,77.43867516,1080.858236,1467.561552,2226.225116,2311.530593,417.3196838,417.3196838,4064.725723,38191.87214,1,1,1,1,1,1,1
-1164,77.31324365,1079.107055,1467.561552,2143.307872,2393.576116,416.643729,416.643729,4058.849287,38136.64982,1,1,1,1,1,1,1
-1164.5,77.19868117,1077.508041,1467.561552,2172.053791,2364.544546,416.0263479,416.0263479,4053.483618,38086.2277,1,1,1,1,1,1,1
-1165,77.08229712,1075.883824,1467.561552,2257.260747,2279.454058,415.3991503,415.3991503,4048.033331,38035.00996,1,1,1,1,1,1,1
-1165.5,76.9565462,1074.128331,1467.561552,2208.817861,2328.173227,414.7214742,414.7214742,4042.142483,37979.65205,1,1,1,1,1,1,1
-1166,76.81870859,1072.205264,1467.561552,2180.708743,2356.570557,413.9786626,413.9786626,4035.689541,37919.01161,1,1,1,1,1,1,1
-1166.5,76.67208607,1070.158742,1467.561552,2098.501542,2438.784231,413.1885088,413.1885088,4028.822194,37854.4775,1,1,1,1,1,1,1
-1167,76.52137499,1068.054531,1467.561552,2106.9326,2430.256141,412.3763216,412.3763216,4021.760951,37788.12173,1,1,1,1,1,1,1
-1167.5,76.36891674,1065.926596,1467.561552,2129.506284,2407.491683,411.5547189,411.5547189,4014.620534,37721.02092,1,1,1,1,1,1,1
-1168,76.22025444,1063.852354,1467.561552,2092.584575,2443.8978,410.7535726,410.7535726,4007.660031,37655.61095,1,1,1,1,1,1,1
-1168.5,76.08117133,1061.911064,1467.561552,2244.554256,2291.323244,410.0040489,410.0040489,4001.145804,37594.39537,1,1,1,1,1,1,1
-1169,75.95382876,1060.133006,1467.561552,2188.669778,2346.547425,409.3177954,409.3177954,3995.179391,37538.32711,1,1,1,1,1,1,1
-1169.5,75.83794175,1058.516141,1467.561552,2196.350063,2338.307949,408.6932764,408.6932764,3989.753669,37487.34071,1,1,1,1,1,1,1
-1170,75.73020376,1057.012549,1467.561552,2061.239154,2473.047104,408.1126726,408.1126726,3984.708069,37439.92571,1,1,1,1,1,1,1
-1170.5,75.62791367,1055.584737,1467.561552,2217.393711,2316.55694,407.5614278,407.5614278,3979.916979,37394.9026,1,1,1,1,1,1,1
-1171,75.53156896,1054.239502,1467.561552,2145.790583,2387.76196,407.0422229,407.0422229,3975.402739,37352.48152,1,1,1,1,1,1,1
-1171.5,75.44304801,1053.003966,1467.561552,2228.79024,2304.296098,406.5651804,406.5651804,3971.256713,37313.52015,1,1,1,1,1,1,1
-1172,75.36424986,1051.903811,1467.561552,2243.623087,2288.948806,406.1405345,406.1405345,3967.565021,37278.82807,1,1,1,1,1,1,1
-1172.5,75.29649212,1050.958447,1467.561552,2086.391057,2445.642292,405.7753857,405.7753857,3964.392667,37249.01683,1,1,1,1,1,1,1
-1173,75.23999052,1050.170204,1467.561552,2061.849773,2469.68819,405.4708966,405.4708966,3961.747757,37224.16204,1,1,1,1,1,1,1
-1173.5,75.19418273,1049.530296,1467.561552,2140.048939,2391.026647,405.2240369,405.2240369,3959.600514,37203.98395,1,1,1,1,1,1,1
-1174,75.15861608,1049.034428,1467.561552,2230.432255,2300.201171,405.032367,405.032367,3957.936389,37188.34551,1,1,1,1,1,1,1
-1174.5,75.13419546,1048.692577,1467.561552,2203.244299,2326.900418,404.9007634,404.9007634,3956.789427,37177.56733,1,1,1,1,1,1,1
-1175,75.12167368,1048.517577,1467.561552,2079.37057,2450.292232,404.8332831,404.8332831,3956.202074,37172.04798,1,1,1,1,1,1,1
-1175.5,75.11950816,1048.48792,1467.561552,2041.260325,2488.069268,404.821613,404.821613,3956.102559,37171.11205,1,1,1,1,1,1,1
-1176,75.12519416,1048.567186,1467.561552,2233.841994,2295.077963,404.8522551,404.8522551,3956.237206,37172.37754,1,1,1,1,1,1,1
-1176.5,75.13656617,1048.725548,1467.561552,2225.106617,2303.447321,404.9135393,404.9135393,3956.587603,37175.67122,1,1,1,1,1,1,1
-1177,75.151867,1048.939552,1467.561552,2062.165168,2466.082025,404.9959959,404.9959959,3957.140254,37180.86445,1,1,1,1,1,1,1
-1177.5,75.17113043,1049.209053,1467.561552,2233.436505,2294.488943,405.0998072,405.0998072,3957.885721,37187.87021,1,1,1,1,1,1,1
-1178,75.19655931,1049.563819,1467.561552,2263.710343,2263.710343,405.2368444,405.2368444,3958.872034,37197.13871,1,1,1,1,1,1,1
-1178.5,75.23048162,1050.036379,1467.561552,2087.080418,2439.718557,405.4196528,405.4196528,3960.181978,37209.44968,1,1,1,1,1,1,1
-1179,75.27355375,1050.63836,1467.561552,2157.347016,2368.772105,405.65177,405.65177,3961.878251,37225.39045,1,1,1,1,1,1,1
-1179.5,75.32583884,1051.368165,1467.561552,2093.828826,2431.632764,405.9335362,405.9335362,3963.986908,37245.20647,1,1,1,1,1,1,1
-1180,75.38559938,1052.202498,1467.561552,2218.711925,2306.236261,406.2555878,406.2555878,3966.477962,37268.6154,1,1,1,1,1,1,1
-1180.5,75.45143866,1053.121254,1467.561552,2200.408186,2324.102502,406.6103979,406.6103979,3969.298375,37295.12036,1,1,1,1,1,1,1
-1181,75.52423626,1054.137318,1467.561552,2076.40015,2447.595962,407.0027067,407.0027067,3972.444769,37324.68795,1,1,1,1,1,1,1
-1181.5,75.60699436,1055.292483,1467.561552,2156.236194,2367.036982,407.4486929,407.4486929,3975.990495,37358.00885,1,1,1,1,1,1,1
-1182,75.70166845,1056.613984,1467.561552,2092.219733,2430.261619,407.9588949,407.9588949,3980.024743,37395.92022,1,1,1,1,1,1,1
-1182.5,75.8080998,1058.09889,1467.561552,2178.246434,2343.446058,408.5324571,408.5324571,3984.584182,37438.7671,1,1,1,1,1,1,1
-1183,75.92478433,1059.727778,1467.561552,2173.036315,2348.004214,409.161274,409.161274,3989.650727,37486.37897,1,1,1,1,1,1,1
-1183.5,76.04965881,1061.470198,1467.561552,2051.753761,2468.787669,409.8342269,409.8342269,3995.158389,37538.13693,1,1,1,1,1,1,1
-1184,76.1815974,1063.31203,1467.561552,2211.394444,2308.723678,410.5452485,410.5452485,4001.049003,37593.4929,1,1,1,1,1,1,1
-1184.5,76.32191225,1065.270884,1467.561552,2079.431007,2440.161308,411.30141,411.30141,4007.325263,37652.47279,1,1,1,1,1,1,1
-1185,76.4726984,1067.375936,1467.561552,2194.314159,2324.659059,412.1140018,412.1140018,4014.045457,37715.62457,1,1,1,1,1,1,1
-1185.5,76.6338597,1069.624876,1467.561552,2134.979583,2383.430942,412.9825056,412.9825056,4021.235019,37783.18735,1,1,1,1,1,1,1
-1186,76.80414569,1072.001984,1467.561552,2044.280371,2473.6339,413.9001827,413.9001827,4028.876668,37854.99854,1,1,1,1,1,1,1
-1186.5,76.98326944,1074.501154,1467.561552,2151.712979,2365.738581,414.8654867,414.8654867,4036.948481,37930.85209,1,1,1,1,1,1,1
-1187,77.17051173,1077.114965,1467.561552,2188.027645,2329.039409,415.8745418,415.8745418,4045.427167,38010.52819,1,1,1,1,1,1,1
-1187.5,77.36339872,1079.807798,1467.561552,2091.397596,2425.526374,416.9140164,416.9140164,4054.237706,38093.32351,1,1,1,1,1,1,1
-1188,77.55951947,1082.544997,1467.561552,2077.780476,2439.133602,417.9709179,417.9709179,4063.280466,38178.30154,1,1,1,1,1,1,1
-1188.5,77.75781219,1085.312397,1467.561552,2077.823396,2439.183987,419.0395242,419.0395242,4072.480107,38264.7525,1,1,1,1,1,1,1
-1189,77.9568804,1088.090465,1467.561552,2117.826865,2399.407258,420.1123096,420.1123096,4081.769265,38352.04568,1,1,1,1,1,1,1
-1189.5,78.15640845,1090.875476,1467.561552,2063.255409,2454.192143,421.1875732,421.1875732,4091.11045,38439.82677,1,1,1,1,1,1,1
-1190,78.3579014,1093.688598,1467.561552,2035.482665,2482.083141,422.2734256,422.2734256,4100.523968,38528.28783,1,1,1,1,1,1,1
-1190.5,78.56163122,1096.531686,1467.561552,2213.356439,2304.379113,423.3713326,423.3713326,4110.027965,38617.59956,1,1,1,1,1,1,1
-1191,78.76575825,1099.380686,1467.561552,2216.340553,2301.661773,424.4713802,424.4713802,4119.583441,38707.39478,1,1,1,1,1,1,1
-1191.5,78.9696726,1102.226864,1467.561552,2213.962309,2304.328118,425.5702816,425.5702816,4129.15676,38797.35827,1,1,1,1,1,1,1
-1192,79.17494742,1105.091922,1467.561552,2254.294794,2264.138476,426.6765147,426.6765147,4139.666384,38896.15334,1,1,1,1,1,1,1
-1192.5,79.38346495,1108.002267,1467.561552,2239.088439,2279.413847,427.8002228,427.8002228,4150.758218,39000.43812,1,1,1,1,1,1,1
-1193,79.59383931,1110.938865,1467.561552,2075.227431,2443.475302,428.9339375,428.9339375,4162.005214,39106.18264,1,1,1,1,1,1,1
-1193.5,79.80416115,1113.874222,1467.561552,2238.155636,2280.83601,430.0673691,430.0673691,4173.30417,39212.41648,1,1,1,1,1,1,1
-1194,80.01361121,1116.79767,1467.561552,2138.148599,2381.184596,431.1961027,431.1961027,4184.597892,39318.6004,1,1,1,1,1,1,1
-1194.5,80.2220126,1119.706477,1467.561552,2185.1148,2334.581501,432.3191849,432.3191849,4195.857821,39424.46669,1,1,1,1,1,1,1
-1195,80.42963755,1122.604685,1467.561552,2070.322894,2449.702705,433.4380829,433.4380829,4207.07645,39529.94504,1,1,1,1,1,1,1
-1195.5,80.637314,1125.503464,1467.561552,2077.088787,2443.221934,434.5572585,434.5572585,4218.278422,39635.26712,1,1,1,1,1,1,1
-1196,80.84505747,1128.403342,1467.561552,2140.606261,2379.996469,435.6767952,435.6767952,4229.474279,39740.53075,1,1,1,1,1,1,1
-1196.5,81.05248314,1131.298428,1467.561552,2229.0715,2291.845309,436.7946192,436.7946192,4240.659627,39845.69632,1,1,1,1,1,1,1
-1197,81.25884149,1134.178535,1467.561552,2176.719313,2344.561742,437.9066915,437.9066915,4251.806694,39950.50138,1,1,1,1,1,1,1
-1197.5,81.46355,1137.035815,1467.561552,2231.803768,2289.867392,439.0098727,439.0098727,4262.887934,40054.68797,1,1,1,1,1,1,1
-1198,81.66655443,1139.869266,1467.561552,2053.95744,2468.108932,440.1038705,440.1038705,4273.887386,40158.10551,1,1,1,1,1,1,1
-1198.5,81.86807286,1142.681186,1467.561552,2240.392656,2282.054333,441.1898603,441.1898603,4284.804347,40260.74749,1,1,1,1,1,1,1
-1199,82.06823636,1145.4757,1467.561552,2117.492237,2405.308886,442.2685483,442.2685483,4295.644818,40362.67081,1,1,1,1,1,1,1
-1199.5,82.26773024,1148.259731,1467.561552,2041.489303,2481.629168,443.3436277,443.3436277,4306.429254,40464.06685,1,1,1,1,1,1,1
-1200,82.46644037,1151.033482,1467.561552,2035.550498,2487.895053,444.4144834,444.4144834,4317.167407,40565.02774,1,1,1,1,1,1,1
-1200.5,82.66416604,1153.793075,1467.561552,2221.498391,2302.279045,445.4800338,445.4800338,4327.854758,40665.5107,1,1,1,1,1,1,1
-1201,82.86079792,1156.538042,1467.561552,2177.413807,2346.692621,446.5396898,446.5396898,4338.487587,40765.4812,1,1,1,1,1,1,1
-1201.5,83.05665736,1159.271718,1467.561552,2047.531699,2476.876317,447.5951831,447.5951831,4349.070787,40864.98532,1,1,1,1,1,1,1
-1202,83.25166454,1161.993225,1467.561552,2036.130763,2488.604265,448.6460835,448.6460835,4359.607548,40964.05201,1,1,1,1,1,1,1
-1202.5,83.44485559,1164.689932,1467.561552,2140.076557,2385.042217,449.6871967,449.6871967,4370.069297,41062.41459,1,1,1,1,1,1,1
-1203,83.63650947,1167.365176,1467.561552,2211.935795,2313.508374,450.720026,450.720026,4380.45042,41160.01855,1,1,1,1,1,1,1
-1203.5,83.82785537,1170.035926,1467.561552,2155.160282,2370.54414,451.7511956,451.7511956,4390.785782,41257.192,1,1,1,1,1,1,1
-1204,83.95934845,1171.871116,1467.561552,1593.617644,1793.223471,452.4598164,452.4598164,3336.425344,31349.42228,1,1,1,1,1,1,1
-1204.5,83.99756987,1172.404397,1467.561552,1347.925709,1413.601933,452.665793,452.665793,2801.231393,26320.54513,1,1,1,1,1,1,1
-1205,84,1172.4383,1467.561552,1310.092297,1414.773796,452.678889,452.678889,2770.886395,26035.29686,1,1,1,1,1,1,1
-1205.5,84,1172.4383,1467.561552,1287.09815,1446.803988,452.678889,452.678889,2779.064103,26112.01378,1,1,1,1,1,1,1
-1206,84,1172.4383,1467.561552,1243.347221,1482.125951,452.678889,452.678889,2771.435487,26040.44842,1,1,1,1,1,1,1
-1206.5,84,1172.4383,1467.561552,1219.287916,1487.837009,452.678889,452.678889,2754.828101,25884.64979,1,1,1,1,1,1,1
-1207,84,1172.4383,1467.561552,1220.405527,1464.165142,452.678889,452.678889,2734.4134,25693.13504,1,1,1,1,1,1,1
-1207.5,84,1172.4383,1467.561552,1193.026772,1455.777045,452.678889,452.678889,2702.040443,25389.43563,1,1,1,1,1,1,1
-1208,84,1172.4383,1467.561552,1265.971239,1359.439332,452.678889,452.678889,2680.866331,25190.79634,1,1,1,1,1,1,1
-1208.5,84,1172.4383,1467.561552,1309.032019,1315.281543,452.678889,452.678889,2679.873074,25181.47802,1,1,1,1,1,1,1
-1209,84,1172.4383,1467.561552,1326.133127,1326.133127,452.678889,452.678889,2705.173484,25418.82781,1,1,1,1,1,1,1
-1209.5,84,1172.4383,1467.561552,1347.82237,1347.82237,452.678889,452.678889,2744.436735,25787.16598,1,1,1,1,1,1,1
-1210,84,1172.4383,1467.561552,1266.150417,1467.714422,452.678889,452.678889,2779.030614,26111.69978,1,1,1,1,1,1,1
-1210.5,84,1172.4383,1467.561552,1264.017346,1483.84645,452.678889,452.678889,2791.700765,26230.56216,1,1,1,1,1,1,1
-1211,84,1172.4383,1467.561552,1368.233979,1385.69444,452.678889,452.678889,2797.190894,26282.06611,1,1,1,1,1,1,1
-1211.5,84,1172.4383,1467.561552,1288.186116,1465.645547,452.678889,452.678889,2797.103579,26281.24664,1,1,1,1,1,1,1
-1212,84,1172.4383,1467.561552,1258.668951,1475.191263,452.678889,452.678889,2779.02723,26111.66834,1,1,1,1,1,1,1
-1212.5,84,1172.4383,1467.561552,1255.752485,1447.123097,452.678889,452.678889,2750.982179,25848.57084,1,1,1,1,1,1,1
-1213,84,1172.4383,1467.561552,1208.558554,1469.980191,452.678889,452.678889,2728.954773,25641.92605,1,1,1,1,1,1,1
-1213.5,84,1172.4383,1467.561552,1318.436737,1364.392422,452.678889,452.678889,2732.837188,25678.34748,1,1,1,1,1,1,1
-1214,84,1172.4383,1467.561552,1314.828552,1366.320953,452.678889,452.678889,2731.3177,25664.09307,1,1,1,1,1,1,1
-1214.5,84,1172.4383,1467.561552,1231.741671,1432.07491,452.678889,452.678889,2715.629676,25516.92032,1,1,1,1,1,1,1
-1215,84,1172.4383,1467.561552,1222.088455,1434.625578,452.678889,452.678889,2709.199753,25456.59961,1,1,1,1,1,1,1
-1215.5,84,1172.4383,1467.561552,1222.496907,1435.105064,452.678889,452.678889,2710.003594,25464.14067,1,1,1,1,1,1,1
-1216,84,1172.4383,1467.561552,1325.503465,1342.385305,452.678889,452.678889,2719.314314,25551.48671,1,1,1,1,1,1,1
-1216.5,84,1172.4383,1467.561552,1266.185336,1414.300485,452.678889,452.678889,2730.71645,25658.45238,1,1,1,1,1,1,1
-1217,84,1172.4383,1467.561552,1288.263985,1400.054959,452.678889,452.678889,2737.805864,25724.96031,1,1,1,1,1,1,1
-1217.5,84,1172.4383,1467.561552,1265.861207,1422.917973,452.678889,452.678889,2738.223049,25728.87385,1,1,1,1,1,1,1
-1218,84,1172.4383,1467.561552,1223.872051,1458.91856,452.678889,452.678889,2732.802734,25678.02478,1,1,1,1,1,1,1
-1218.5,84,1172.4383,1467.561552,1228.901057,1444.9379,452.678889,452.678889,2724.699907,25602.01043,1,1,1,1,1,1,1
-1219,84,1172.4383,1467.561552,1214.483418,1452.378544,452.678889,452.678889,2718.385134,25542.76934,1,1,1,1,1,1,1
-1219.5,84,1172.4383,1467.561552,1198.266416,1462.195552,452.678889,452.678889,2712.593171,25488.43327,1,1,1,1,1,1,1
-1220,84,1172.4383,1467.561552,1195.445832,1461.100462,452.678889,452.678889,2709.048376,25455.17925,1,1,1,1,1,1,1
-1220.5,84,1172.4383,1467.561552,1232.222132,1424.52137,452.678889,452.678889,2709.227118,25456.85604,1,1,1,1,1,1,1
-1221,84,1172.4383,1467.561552,1243.744068,1430.974357,452.678889,452.678889,2725.496507,25609.48334,1,1,1,1,1,1,1
-1221.5,84,1172.4383,1467.561552,1266.41888,1430.349965,452.678889,452.678889,2745.454407,25796.71334,1,1,1,1,1,1,1
-1222,84,1172.4383,1467.561552,1334.420145,1347.275976,452.678889,452.678889,2731.811521,25668.72566,1,1,1,1,1,1,1
-1222.5,84,1172.4383,1467.561552,1316.180833,1340.620735,452.678889,452.678889,2709.280192,25457.35395,1,1,1,1,1,1,1
-1223,84,1172.4383,1467.561552,1312.8038,1339.325089,452.678889,452.678889,2705.049375,25417.66344,1,1,1,1,1,1,1
-1223.5,84,1172.4383,1467.561552,1214.38339,1463.190278,452.678889,452.678889,2728.08073,25633.72652,1,1,1,1,1,1,1
-1224,84,1172.4383,1467.561552,1259.210716,1429.015282,452.678889,452.678889,2737.722666,25724.17949,1,1,1,1,1,1,1
-1224.5,84,1172.4383,1467.561552,1299.941642,1386.953587,452.678889,452.678889,2736.516909,25712.86798,1,1,1,1,1,1,1
-1225,84,1172.4383,1467.561552,1320.241978,1351.223137,452.678889,452.678889,2722.550874,25581.84902,1,1,1,1,1,1,1
-1225.5,84,1172.4383,1467.561552,1215.399093,1437.169474,452.678889,452.678889,2705.447721,25421.4004,1,1,1,1,1,1,1
-1226,84,1172.4383,1467.561552,1281.248434,1348.579542,452.678889,452.678889,2684.865324,25228.31224,1,1,1,1,1,1,1
-1226.5,84,1172.4383,1467.561552,1251.210546,1351.130946,452.678889,452.678889,2659.986457,24994.91704,1,1,1,1,1,1,1
-1227,84,1172.4383,1467.561552,1187.10028,1410.567906,452.678889,452.678889,2655.7563,24955.23284,1,1,1,1,1,1,1
-1227.5,84,1172.4383,1467.561552,1259.002329,1349.635752,452.678889,452.678889,2665.686381,25048.38985,1,1,1,1,1,1,1
-1228,84,1172.4383,1467.561552,1278.551507,1357.637167,452.678889,452.678889,2690.622779,25282.32409,1,1,1,1,1,1,1
-1228.5,84,1172.4383,1467.561552,1293.874643,1373.908126,452.678889,452.678889,2719.218937,25550.59187,1,1,1,1,1,1,1
-1229,84,1172.4383,1467.561552,1290.995164,1396.369526,452.678889,452.678889,2736.942645,25716.86187,1,1,1,1,1,1,1
-1229.5,84,1172.4383,1467.561552,1290.775335,1398.339946,452.678889,452.678889,2738.527809,25731.73264,1,1,1,1,1,1,1
-1230,84,1172.4383,1467.561552,1343.288104,1351.828811,452.678889,452.678889,2743.959974,25782.69362,1,1,1,1,1,1,1
-1230.5,84,1172.4383,1467.561552,1300.915494,1400.407068,452.678889,452.678889,2749.576805,25835.38622,1,1,1,1,1,1,1
-1231,84,1172.4383,1467.561552,1253.010432,1434.715529,452.678889,452.678889,2737.27023,25719.93542,1,1,1,1,1,1,1
-1231.5,84,1172.4383,1467.561552,1265.60954,1403.322312,452.678889,452.678889,2720.258113,25560.34027,1,1,1,1,1,1,1
-1232,84,1172.4383,1467.561552,1241.115281,1423.395156,452.678889,452.678889,2716.256006,25522.79534,1,1,1,1,1,1,1
-1232.5,84,1172.4383,1467.561552,1320.761238,1360.264024,452.678889,452.678889,2731.205015,25663.036,1,1,1,1,1,1,1
-1233,84,1172.4383,1467.561552,1213.848471,1462.293754,452.678889,452.678889,2726.785006,25621.57056,1,1,1,1,1,1,1
-1233.5,84,1172.4383,1467.561552,1234.71576,1427.439928,452.678889,452.678889,2714.126,25502.81357,1,1,1,1,1,1,1
-1234,84,1172.4383,1467.561552,1243.372153,1430.546456,452.678889,452.678889,2724.773115,25602.69656,1,1,1,1,1,1,1
-1234.5,84,1172.4383,1467.561552,1301.669917,1390.944247,452.678889,452.678889,2741.694287,25761.43844,1,1,1,1,1,1,1
-1235,84,1172.4383,1467.561552,1309.839658,1390.860667,452.678889,452.678889,2749.012395,25830.09173,1,1,1,1,1,1,1
-1235.5,84,1172.4383,1467.561552,1317.953197,1373.935783,452.678889,452.678889,2741.037452,25755.2764,1,1,1,1,1,1,1
-1236,84,1172.4383,1467.561552,1204.818111,1453.562423,452.678889,452.678889,2710.707834,25470.74673,1,1,1,1,1,1,1
-1236.5,84,1172.4383,1467.561552,1214.611687,1404.258118,452.678889,452.678889,2674.946112,25135.257,1,1,1,1,1,1,1
-1237,84,1172.4383,1467.561552,1232.773536,1392.358317,452.678889,452.678889,2680.614757,25188.43603,1,1,1,1,1,1,1
-1237.5,84,1172.4383,1467.561552,1243.275001,1401.990959,452.678889,452.678889,2698.838141,25359.3947,1,1,1,1,1,1,1
-1238,84,1172.4383,1467.561552,1304.191632,1366.002165,452.678889,452.678889,2721.400982,25571.06233,1,1,1,1,1,1,1
-1238.5,84,1172.4383,1467.561552,1283.802609,1412.239535,452.678889,452.678889,2744.797329,25790.54916,1,1,1,1,1,1,1
-1239,84,1172.4383,1467.561552,1261.53794,1473.950114,452.678889,452.678889,2780.49912,26125.47653,1,1,1,1,1,1,1
-1239.5,84,1172.4383,1467.561552,1263.426563,1510.945512,452.678889,452.678889,2813.538727,26435.56703,1,1,1,1,1,1,1
-1240,84,1172.4383,1467.561552,1255.979634,1504.415166,452.678889,452.678889,2802.856761,26335.23072,1,1,1,1,1,1,1
-1240.5,84,1172.4383,1467.561552,1320.826462,1416.077082,452.678889,452.678889,2781.78041,26137.49663,1,1,1,1,1,1,1
-1241,84,1172.4383,1467.561552,1232.913331,1490.0039,452.678889,452.678889,2769.122463,26018.74945,1,1,1,1,1,1,1
-1241.5,84,1172.4383,1467.561552,1331.998381,1378.554426,452.678889,452.678889,2757.931065,25913.76016,1,1,1,1,1,1,1
-1242,84,1172.4383,1467.561552,1354.826198,1356.977602,452.678889,452.678889,2759.063038,25924.37937,1,1,1,1,1,1,1
-1242.5,84,1172.4383,1467.561552,1300.19815,1425.727825,452.678889,452.678889,2771.844977,26044.29001,1,1,1,1,1,1,1
-1243,84,1172.4383,1467.561552,1317.672985,1456.375405,452.678889,452.678889,2813.146417,26431.89294,1,1,1,1,1,1,1
-1243.5,84,1172.4383,1467.561552,1401.203474,1412.232512,452.678889,452.678889,2842.658114,26709.14153,1,1,1,1,1,1,1
-1244,84,1172.4383,1467.561552,1354.303398,1457.844146,452.678889,452.678889,2841.708161,26700.21633,1,1,1,1,1,1,1
-1244.5,84,1172.4383,1467.561552,1385.972974,1420.737726,452.678889,452.678889,2837.702137,26662.57639,1,1,1,1,1,1,1
-1245,84,1172.4383,1467.561552,1308.82037,1519.487749,452.678889,452.678889,2853.618403,26812.12333,1,1,1,1,1,1,1
-1245.5,84,1172.4383,1467.561552,1356.68216,1506.587184,452.678889,452.678889,2882.866406,27086.98862,1,1,1,1,1,1,1
-1246,84,1172.4383,1467.561552,1304.403756,1581.62848,452.678889,452.678889,2902.251889,27269.17439,1,1,1,1,1,1,1
-1246.5,84,1172.4383,1467.561552,1405.278951,1508.749929,452.678889,452.678889,2926.132297,27493.60317,1,1,1,1,1,1,1
-1247,84,1172.4383,1467.561552,1409.438368,1552.925483,452.678889,452.678889,2967.357913,27881.0432,1,1,1,1,1,1,1
-1247.5,84,1172.4383,1467.561552,1458.116096,1553.165074,452.678889,452.678889,3009.082057,28273.16891,1,1,1,1,1,1,1
-1248,84,1172.4383,1467.561552,1424.683904,1569.610557,452.678889,452.678889,2994.593754,28137.0071,1,1,1,1,1,1,1
-1248.5,84,1172.4383,1467.561552,1347.05507,1603.061387,452.678889,452.678889,2956.912562,27782.87795,1,1,1,1,1,1,1
-1249,84,1172.4383,1467.561552,1392.379144,1577.596131,452.678889,452.678889,2973.850915,27942.06541,1,1,1,1,1,1,1
-1249.5,84,1172.4383,1467.561552,1463.67482,1533.048366,452.678889,452.678889,2996.664834,28156.47121,1,1,1,1,1,1,1
-1250,84,1172.4383,1467.561552,1483.693641,1516.072392,452.678889,452.678889,2999.259274,28180.85346,1,1,1,1,1,1,1
-1250.5,84,1172.4383,1467.561552,1499.501364,1501.88324,452.678889,452.678889,3000.64008,28193.8305,1,1,1,1,1,1,1
-1251,84,1172.4383,1467.561552,1457.230825,1598.08036,452.678889,452.678889,3046.637301,28626.1143,1,1,1,1,1,1,1
-1251.5,84,1172.4383,1467.561552,1557.23022,1569.378225,452.678889,452.678889,3107.448654,29197.62252,1,1,1,1,1,1,1
-1252,84,1172.4383,1467.561552,1473.845087,1646.120469,452.678889,452.678889,3101.781963,29144.36693,1,1,1,1,1,1,1
-1252.5,84,1172.4383,1467.561552,1412.001597,1683.134647,452.678889,452.678889,3080.605132,28945.34592,1,1,1,1,1,1,1
-1253,84,1172.4383,1467.561552,1470.004245,1605.295802,452.678889,452.678889,3063.686548,28786.34408,1,1,1,1,1,1,1
-1253.5,84,1172.4383,1467.561552,1383.144124,1674.239017,452.678889,452.678889,3048.403944,28642.71781,1,1,1,1,1,1,1
-1254,84,1172.4383,1467.561552,1400.292213,1679.939508,452.678889,452.678889,3067.891671,28825.86397,1,1,1,1,1,1,1
-1254.5,84,1172.4383,1467.561552,1409.413739,1719.897498,452.678889,452.678889,3109.753616,29219.28437,1,1,1,1,1,1,1
-1255,84,1172.4383,1467.561552,1469.601472,1730.592795,452.678889,452.678889,3170.212463,29787.47971,1,1,1,1,1,1,1
-1255.5,84,1172.4383,1467.561552,1587.506541,1667.887609,452.678889,452.678889,3217.29541,30229.96739,1,1,1,1,1,1,1
-1256,84,1172.4383,1467.561552,1478.017578,1783.459988,452.678889,452.678889,3222.484055,30278.73006,1,1,1,1,1,1,1
-1256.5,84,1172.4383,1467.561552,1587.42326,1673.356763,452.678889,452.678889,3221.887956,30273.12805,1,1,1,1,1,1,1
-1257,84,1172.4383,1467.561552,1583.102138,1647.718551,452.678889,452.678889,3196.334783,30032.97833,1,1,1,1,1,1,1
-1257.5,84,1172.4383,1467.561552,1563.357414,1627.167921,452.678889,452.678889,3161.965657,29709.97584,1,1,1,1,1,1,1
-1258,84,1172.4383,1467.561552,1592.005553,1597.066942,452.678889,452.678889,3160.727113,29698.33598,1,1,1,1,1,1,1
-1258.5,84,1172.4383,1467.561552,1493.223252,1730.894715,452.678889,452.678889,3190.618271,29979.25404,1,1,1,1,1,1,1
-1259,84,1172.4383,1467.561552,1543.132021,1778.186669,452.678889,452.678889,3270.436405,30729.29436,1,1,1,1,1,1,1
-1259.5,84,1172.4383,1467.561552,1569.707415,1806.007456,452.678889,452.678889,3316.016368,31158.031,1,1,1,1,1,1,1
-1260,84,1172.4383,1467.561552,1527.529401,1858.035424,452.678889,452.678889,3324.382529,31236.75567,1,1,1,1,1,1,1
-1260.5,84,1172.4383,1467.561552,1571.934671,1817.242706,452.678889,452.678889,3327.470439,31265.81657,1,1,1,1,1,1,1
-1261,84,1172.4383,1467.561552,1631.478761,1743.492786,452.678889,452.678889,3315.324795,31151.51042,1,1,1,1,1,1,1
-1261.5,84,1172.4383,1467.561552,1562.323441,1785.99047,452.678889,452.678889,3292.534562,30937.0253,1,1,1,1,1,1,1
-1262,84,1172.4383,1467.561552,1581.429605,1721.517971,452.678889,452.678889,3256.049386,30594.12769,1,1,1,1,1,1,1
-1262.5,84,1172.4383,1467.561552,1556.061749,1717.100267,452.678889,452.678889,3232.321701,30371.18069,1,1,1,1,1,1,1
-1263,84,1172.4383,1467.561552,1608.10691,1651.087276,452.678889,452.678889,3220.536733,30260.42943,1,1,1,1,1,1,1
-1263.5,84,1172.4383,1467.561552,1624.691929,1627.278926,452.678889,452.678889,3214.37535,30202.52421,1,1,1,1,1,1,1
-1264,84,1172.4383,1467.561552,1504.192382,1776.192243,452.678889,452.678889,3237.990977,30424.446,1,1,1,1,1,1,1
-1264.5,84,1172.4383,1467.561552,1506.145312,1804.064165,452.678889,452.678889,3261.802382,30648.17663,1,1,1,1,1,1,1
-1265,84,1172.4383,1467.561552,1526.815983,1795.208086,452.678889,452.678889,3271.199315,30736.46899,1,1,1,1,1,1,1
-1265.5,84,1172.4383,1467.561552,1577.794329,1752.209526,452.678889,452.678889,3277.545878,30796.10009,1,1,1,1,1,1,1
-1266,84,1172.4383,1467.561552,1508.027643,1828.453154,452.678889,452.678889,3282.697653,30844.50565,1,1,1,1,1,1,1
-1266.5,84,1172.4383,1467.561552,1497.017301,1829.687812,452.678889,452.678889,3274.922002,30771.44645,1,1,1,1,1,1,1
-1267,84,1172.4383,1467.561552,1519.198304,1693.012335,452.678889,452.678889,3180.212485,29881.45197,1,1,1,1,1,1,1
-1267.5,84,1172.4383,1467.561552,1391.635521,1686.761663,452.678889,452.678889,3066.326847,28811.15817,1,1,1,1,1,1,1
-1268,84,1172.4383,1467.561552,1427.954102,1533.858771,452.678889,452.678889,2966.888513,27876.63165,1,1,1,1,1,1,1
-1268.5,84,1172.4383,1467.561552,1455.862894,1462.896179,452.678889,452.678889,2930.166844,27531.52002,1,1,1,1,1,1,1
-1269,84,1172.4383,1467.561552,1469.636767,1469.636767,452.678889,452.678889,2947.664354,27695.96233,1,1,1,1,1,1,1
-1269.5,84,1172.4383,1467.561552,1491.280515,1491.280515,452.678889,452.678889,2984.584895,28042.94361,1,1,1,1,1,1,1
-1270,84,1172.4383,1467.561552,1570.871667,1570.871667,452.678889,452.678889,3120.357579,29318.9411,1,1,1,1,1,1,1
-1270.5,84,1172.4383,1467.561552,1658.953111,1658.953111,452.678889,452.678889,3267.393801,30700.6955,1,1,1,1,1,1,1
-1271,84,1172.4383,1467.561552,1716.302296,1748.302785,452.678889,452.678889,3392.000787,31873.13857,1,1,1,1,1,1,1
-1271.5,84,1172.4383,1467.561552,1601.575344,1929.881163,452.678889,452.678889,3449.110522,32410.6045,1,1,1,1,1,1,1
-1272,84,1172.4383,1467.561552,1702.404423,1827.970054,452.678889,452.678889,3448.186663,32401.91032,1,1,1,1,1,1,1
-1272.5,84,1172.4383,1467.561552,1669.210629,1839.016556,452.678889,452.678889,3429.250632,32223.69797,1,1,1,1,1,1,1
-1273,84,1172.4383,1467.561552,1607.199006,1776.377849,452.678889,452.678889,3322.682456,31220.75564,1,1,1,1,1,1,1
-1273.5,84,1172.4383,1467.561552,1504.510069,1725.23599,452.678889,452.678889,3195.103207,30021.42269,1,1,1,1,1,1,1
-1274,84,1172.4383,1467.561552,1497.118338,1571.258929,452.678889,452.678889,3057.781643,28730.84931,1,1,1,1,1,1,1
-1274.5,84,1172.4383,1467.561552,1373.003216,1537.956448,452.678889,452.678889,2923.513884,27468.99518,1,1,1,1,1,1,1
-1275,84,1172.4383,1467.561552,1362.268354,1401.412169,452.678889,452.678889,2804.813909,26353.71274,1,1,1,1,1,1,1
-1275.5,84,1172.4383,1467.561552,1331.338625,1358.234355,452.678889,452.678889,2738.941686,25735.61596,1,1,1,1,1,1,1
-1276,84,1172.4383,1467.561552,1235.462728,1407.696415,452.678889,452.678889,2696.931063,25341.50323,1,1,1,1,1,1,1
-1276.5,84,1172.4383,1467.561552,1196.00357,1401.726083,452.678889,452.678889,2655.811648,24955.75217,1,1,1,1,1,1,1
-1277,84,1172.4383,1467.561552,1161.407949,1388.873556,452.678889,452.678889,2612.865749,24552.86597,1,1,1,1,1,1,1
-1277.5,84,1172.4383,1467.561552,1159.391405,1338.271663,452.678889,452.678889,2565.240639,24106.08321,1,1,1,1,1,1,1
-1278,84,1172.4383,1467.561552,1179.784614,1260.925106,452.678889,452.678889,2513.690119,23622.47425,1,1,1,1,1,1,1
-1278.5,84,1172.4383,1467.561552,1188.837516,1194.640451,452.678889,452.678889,2461.890139,23136.52602,1,1,1,1,1,1,1
-1279,84,1172.4383,1467.561552,1056.228587,1269.958565,452.678889,452.678889,2410.684307,22656.11023,1,1,1,1,1,1,1
-1279.5,84,1172.4383,1467.561552,1037.044765,1221.407725,452.678889,452.678889,2360.013451,22180.07089,1,1,1,1,1,1,1
-1280,84,1172.4383,1467.561552,1006.351871,1159.769232,452.678889,452.678889,2284.704445,21472.14841,1,1,1,1,1,1,1
-1280.5,84,1172.4383,1467.561552,1022.275757,1053.31537,452.678889,452.678889,2202.648932,20700.04405,1,1,1,1,1,1,1
-1281,84,1172.4383,1467.561552,921.0692057,1068.759143,452.678889,452.678889,2124.248994,19962.27956,1,1,1,1,1,1,1
-1281.5,84,1172.4383,1467.561552,879.0182348,1031.890971,452.678889,452.678889,2052.104435,19283.37949,1,1,1,1,1,1,1
-1282,84,1172.4383,1467.561552,835.3869537,998.9664372,452.678889,452.678889,1982.121712,18624.82263,1,1,1,1,1,1,1
-1282.5,84,1172.4383,1467.561552,840.1921846,917.7689295,452.678889,452.678889,1912.288601,17967.67459,1,1,1,1,1,1,1
-1283,84,1172.4383,1467.561552,791.7441902,889.8583312,452.678889,452.678889,1843.624986,17322.39681,1,1,1,1,1,1,1
-1283.5,84,1172.4383,1467.561552,742.9781628,837.8264389,452.678889,452.678889,1753.196003,16472.73748,1,1,1,1,1,1,1
-1284,84,1172.4383,1467.561552,666.9077468,794.7070661,452.678889,452.678889,1646.271733,15468.09466,1,1,1,1,1,1,1
-1284.5,84,1172.4383,1467.561552,679.2230803,702.2612796,452.678889,452.678889,1574.388072,14792.68751,1,1,1,1,1,1,1
-1285,84,1172.4383,1467.561552,627.6589812,689.1301713,452.678889,452.678889,1516.35032,14247.37441,1,1,1,1,1,1,1
-1285.5,84,1172.4383,1467.561552,587.8562327,661.7937125,452.678889,452.678889,1466.61984,13780.11587,1,1,1,1,1,1,1
-1286,84,1172.4383,1467.561552,541.1924616,633.1651278,452.678889,452.678889,1417.763102,13321.06602,1,1,1,1,1,1,1
-1286.5,84,1172.4383,1467.561552,515.1293675,582.8642879,452.678889,452.678889,1357.510442,12754.94229,1,1,1,1,1,1,1
-1287,84,1172.4383,1467.561552,477.2337162,548.143103,452.678889,452.678889,1299.304125,12208.04539,1,1,1,1,1,1,1
-1287.5,84,1172.4383,1467.561552,469.532809,530.3344354,452.678889,452.678889,1278.856552,12015.92301,1,1,1,1,1,1,1
-1288,84,1172.4383,1467.561552,466.381541,525.9196101,452.678889,452.678889,1272.791886,11958.94082,1,1,1,1,1,1,1
-1288.5,84,1172.4383,1467.561552,467.0384473,489.3154686,452.678889,452.678889,1243.977352,11688.20417,1,1,1,1,1,1,1
-1289,84,1172.4383,1467.561552,416.7624052,433.7731156,452.678889,452.678889,1159.157059,10891.24684,1,1,1,1,1,1,1
-1289.5,84,1172.4383,1467.561552,368.9047289,377.0323881,452.678889,452.678889,1075.316095,10103.49049,1,1,1,1,1,1,1
-1290,84,1172.4383,1467.561552,306.6996829,342.7373126,452.678889,452.678889,1001.999217,9414.617881,1,1,1,1,1,1,1
-1290.5,84,1172.4383,1467.561552,260.7295541,288.7112019,452.678889,452.678889,926.6440846,8706.593497,1,1,1,1,1,1,1
-1291,84,1172.4383,1467.561552,218.7303289,228.9742076,452.678889,452.678889,849.9959051,7986.420053,1,1,1,1,1,1,1
-1291.5,84,1172.4383,1467.561552,163.3438829,189.4750621,452.678889,452.678889,778.5104726,7314.754659,1,1,1,1,1,1,1
-1292,84,1172.4383,1467.561552,136.1443745,138.3379282,452.678889,452.678889,722.0538403,6784.297077,1,1,1,1,1,1,1
-1292.5,84,1172.4383,1467.561552,94.00569142,99.16144438,452.678889,452.678889,666.3242588,6260.671843,1,1,1,1,1,1,1
-1293,84,1172.4383,1467.561552,54.16618672,54.61086062,452.678889,452.678889,605.7673624,5691.689562,1,1,1,1,1,1,1
-1293.5,84,1172.4383,1467.561552,19.39687638,19.7068799,452.678889,452.678889,555.5693586,5220.036774,1,1,1,1,1,1,1
-1294,84,1172.4383,1467.561552,-12.33845215,-12.58771381,452.678889,452.678889,509.4365666,4786.581356,1,1,1,1,1,1,1
-1294.5,84,1172.4383,1467.561552,-40.02727501,-46.80741996,452.678889,452.678889,465.1017261,4370.018053,1,1,1,1,1,1,1
-1295,84,1172.4383,1467.561552,-69.23335888,-75.30630625,452.678889,452.678889,424.7164464,3990.564736,1,1,1,1,1,1,1
-1295.5,84,1172.4383,1467.561552,-92.19567078,-99.87864335,452.678889,452.678889,391.7080076,3680.423174,1,1,1,1,1,1,1
-1296,84,1172.4383,1467.561552,-112.0842223,-121.4245741,452.678889,452.678889,364.6611569,3426.295555,1,1,1,1,1,1,1
-1296.5,84,1172.4383,1467.561552,-151.3270889,-154.9538673,452.678889,452.678889,318.9917428,2997.193367,1,1,1,1,1,1,1
-1297,84,1172.4383,1467.561552,-182.4686089,-208.3373387,452.678889,452.678889,259.866978,2441.666862,1,1,1,1,1,1,1
-1297.5,84,1172.4383,1467.561552,-231.4437153,-242.5009979,452.678889,452.678889,200.5471547,1884.307361,1,1,1,1,1,1,1
-1298,84,1172.4383,1467.561552,-259.7917071,-296.8488366,452.678889,452.678889,141.4838556,1329.358777,1,1,1,1,1,1,1
-1298.5,84,1172.4383,1467.561552,-323.1987033,-332.43818,452.678889,452.678889,70.94019488,666.5423443,1,1,1,1,1,1,1
-1299,84.00073648,1172.44815,1467.561552,-338.9668351,-409.0237433,452.6828579,452.6828579,5.18166782,48.686095,1,1,1,1,1,1,1
-1299.5,84.00227296,1172.470082,1467.561552,-367.6886312,-387.5917024,452.6911381,452.6911381,0,0,1,1,1,1,1,1,1
-1300,84.00295236,1172.479081,1467.561552,-345.7125795,-409.4822613,452.6947994,452.6947994,0,0,1,1,1,1,1,1,1
-1300.5,84.00226352,1172.469942,1467.561552,-360.9866154,-394.1918478,452.6910872,452.6910872,0,0,1,1,1,1,1,1,1
-1301,84.00146352,1172.458145,1467.561552,-362.4838106,-392.6907948,452.686776,452.686776,0,0,1,1,1,1,1,1,1
-1301.5,84.00057146,1172.446245,1467.561552,-341.6271341,-413.5468856,452.6819686,452.6819686,0,0,1,1,1,1,1,1,1
-1302,84.0000397,1172.439408,1467.561552,-348.3132788,-402.6817557,452.6791029,452.6791029,2.99590858,28.14900208,1,1,1,1,1,1,1
-1302.5,84.00156502,1172.45989,1467.561552,-354.5372877,-400.4314137,452.6873229,452.6873229,0.25839142,2.42779792,1,1,1,1,1,1,1
-1303,84.00667124,1172.531389,1467.561552,-362.0429403,-393.4626478,452.7148405,452.7148405,0,0,1,1,1,1,1,1,1
-1303.5,84.01446627,1172.639791,1467.561552,-373.1103418,-382.4615343,452.7568482,452.7568482,0,0,1,1,1,1,1,1,1
-1304,84.02311096,1172.76103,1467.561552,-360.1158115,-395.5030907,452.8034348,452.8034348,0,0,1,1,1,1,1,1,1
-1304.5,84.03125848,1172.87475,1467.561552,-362.3739344,-393.1951508,452.847342,452.847342,0,0,1,1,1,1,1,1,1
-1305,84.03668816,1172.950642,1467.561552,-362.6092832,-392.8267235,452.8766028,452.8766028,0,0,1,1,1,1,1,1,1
-1305.5,84.03949408,1172.989825,1467.561552,-345.193704,-410.1864335,452.891724,452.891724,0,0,1,1,1,1,1,1,1
-1306,84.04117328,1173.012866,1467.561552,-340.2090026,-415.146272,452.9007732,452.9007732,0,0,1,1,1,1,1,1,1
-1306.5,84.04203664,1173.025465,1467.561552,-367.717482,-387.6099502,452.9054259,452.9054259,0,0,1,1,1,1,1,1,1
-1307,84.0421,1173.026032,1467.561552,-349.227273,-406.0610321,452.9057673,452.9057673,0,0,1,1,1,1,1,1,1
-1307.5,84.04219208,1173.027289,1467.561552,-350.9297755,-404.4011243,452.9062636,452.9062636,0,0,1,1,1,1,1,1,1
-1308,84.04413407,1173.054569,1467.561552,-368.6753142,-386.7683571,452.916729,452.916729,0,0,1,1,1,1,1,1,1
-1308.5,84.0478919,1173.106358,1467.561552,-377.1446218,-378.3382375,452.9369801,452.9369801,0,0,1,1,1,1,1,1,1
-1309,84.0519761,1173.164018,1467.561552,-356.8736849,-398.6224522,452.95899,452.95899,0,0,1,1,1,1,1,1,1
-1309.5,84.055984,1173.219808,1467.561552,-344.6446099,-410.848458,452.9805887,452.9805887,0,0,1,1,1,1,1,1,1
-1310,84.0593393,1173.267119,1467.561552,-350.6936735,-404.7697948,452.9986705,452.9986705,0,0,1,1,1,1,1,1,1
-1310.5,84.060521,1173.282865,1467.561552,-340.7912667,-414.5332788,453.0050387,453.0050387,0,0,1,1,1,1,1,1,1
-1311,84.056916,1173.232785,1467.561552,-346.7418688,-408.3419702,452.9856113,452.9856113,0,0,1,1,1,1,1,1,1
-1311.5,84.0474821,1173.100473,1467.561552,-361.1224104,-393.7013643,452.9347717,452.9347717,0,0,1,1,1,1,1,1,1
-1312,84.03196695,1172.884803,1467.561552,-362.1844912,-392.3665321,452.85116,452.85116,0,0,1,1,1,1,1,1,1
-1312.5,84.01219192,1172.609008,1467.561552,-317.4926542,-384.0626624,452.7445917,452.7445917,37.64847336,353.7388558,1,1,1,1,1,1,1
-1313,84.00084147,1172.450089,1467.561552,-188.8551842,-201.0803466,452.6834237,452.6834237,260.5234614,2447.834741,1,1,1,1,1,1,1
-1313.5,84,1172.4383,1467.561552,-123.8063365,-126.598975,452.678889,452.678889,353.8067577,3324.308927,1,1,1,1,1,1,1
-1314,84,1172.4383,1467.561552,-64.55675872,-70.54766014,452.678889,452.678889,431.4217785,4053.566835,1,1,1,1,1,1,1
-1314.5,84,1172.4383,1467.561552,-7.315911209,-7.974719565,452.678889,452.678889,516.4536249,4852.511721,1,1,1,1,1,1,1
-1315,84,1172.4383,1467.561552,63.44979097,74.50931555,452.678889,452.678889,626.7929869,5889.242093,1,1,1,1,1,1,1
-1315.5,84,1172.4383,1467.561552,142.4285734,154.7950392,452.678889,452.678889,737.3985511,6928.473927,1,1,1,1,1,1,1
-1316,84,1172.4383,1467.561552,224.7163503,225.7005639,452.678889,452.678889,852.0394777,8005.621052,1,1,1,1,1,1,1
-1316.5,84,1172.4383,1467.561552,272.229453,287.9325499,452.678889,452.678889,934.7214846,8782.486984,1,1,1,1,1,1,1
-1317,84,1172.4383,1467.561552,307.0504441,326.0432551,452.678889,452.678889,989.6685452,9298.760298,1,1,1,1,1,1,1
-1317.5,84,1172.4383,1467.561552,333.2517747,381.2376582,452.678889,452.678889,1050.990911,9874.935343,1,1,1,1,1,1,1
-1318,84,1172.4383,1467.561552,423.4840226,443.6899911,452.678889,452.678889,1172.539724,11016.98759,1,1,1,1,1,1,1
-1318.5,84,1172.4383,1467.561552,468.9737757,545.9787089,452.678889,452.678889,1290.947933,12129.5319,1,1,1,1,1,1,1
-1319,84,1172.4383,1467.561552,505.6135372,604.7292598,452.678889,452.678889,1367.409795,12847.95443,1,1,1,1,1,1,1
-1319.5,84,1172.4383,1467.561552,574.2491363,626.7248259,452.678889,452.678889,1434.22802,13475.76761,1,1,1,1,1,1,1
-1320,84,1172.4383,1467.561552,654.003728,682.6554828,452.678889,452.678889,1535.809843,14430.21359,1,1,1,1,1,1,1
-1320.5,84,1172.4383,1467.561552,705.7332206,791.273178,452.678889,452.678889,1678.021868,15766.41366,1,1,1,1,1,1,1
-1321,84,1172.4383,1467.561552,810.6187059,848.5984281,452.678889,452.678889,1823.538453,17133.66315,1,1,1,1,1,1,1
-1321.5,84,1172.4383,1467.561552,837.434936,974.4172391,452.678889,452.678889,1961.655239,18432.3064,1,1,1,1,1,1,1
-1322,84,1172.4383,1467.561552,902.1810971,1039.550489,452.678889,452.678889,2080.282305,19548.54042,1,1,1,1,1,1,1
-1322.5,84,1172.4383,1467.561552,972.3328729,1098.109201,452.678889,452.678889,2197.942838,20655.75849,1,1,1,1,1,1,1
-1323,84,1172.4383,1467.561552,1096.427957,1147.923177,452.678889,452.678889,2348.01003,22067.17814,1,1,1,1,1,1,1
-1323.5,84,1172.4383,1467.561552,1146.851481,1285.627312,452.678889,452.678889,2507.147019,23561.03498,1,1,1,1,1,1,1
-1324,84,1172.4383,1467.561552,1273.114252,1284.77408,452.678889,452.678889,2619.750646,24617.45443,1,1,1,1,1,1,1
-1324.5,84,1172.4383,1467.561552,1271.975076,1395.138117,452.678889,452.678889,2718.613393,25544.91106,1,1,1,1,1,1,1
-1325,84,1172.4383,1467.561552,1335.833351,1449.365834,452.678889,452.678889,2820.676827,26502.70166,1,1,1,1,1,1,1
-1325.5,84,1172.4383,1467.561552,1359.902603,1557.461233,452.678889,452.678889,2929.333033,27523.6886,1,1,1,1,1,1,1
-1326,84,1172.4383,1467.561552,1430.014651,1615.042895,452.678889,452.678889,3037.89087,28543.91483,1,1,1,1,1,1,1
-1326.5,84,1172.4383,1467.561552,1459.806121,1708.411979,452.678889,452.678889,3142.939494,29531.16662,1,1,1,1,1,1,1
-1327,84,1172.4383,1467.561552,1556.349029,1728.143582,452.678889,452.678889,3240.922219,30451.97624,1,1,1,1,1,1,1
-1327.5,84,1172.4383,1467.561552,1567.572324,1831.66583,452.678889,452.678889,3336.297188,31348.93373,1,1,1,1,1,1,1
-1328,84,1172.4383,1467.561552,1719.090899,1805.826592,452.678889,452.678889,3443.520348,32357.99407,1,1,1,1,1,1,1
-1328.5,84,1172.4383,1467.561552,1712.520316,1955.228924,452.678889,452.678889,3565.634189,33507.24084,1,1,1,1,1,1,1
-1329,84,1172.4383,1467.561552,1806.830472,2040.597432,452.678889,452.678889,3716.877299,34929.49882,1,1,1,1,1,1,1
-1329.5,84,1172.4383,1467.561552,1995.771756,2051.577135,452.678889,452.678889,3915.129179,36789.88436,1,1,1,1,1,1,1
-1330,84,1172.4383,1467.561552,2086.766539,2168.648548,452.678889,452.678889,4123.913813,38748.84381,1,1,1,1,1,1,1
-1330.5,83.99898734,1172.424583,1467.561552,2207.514237,2214.298143,452.6734317,452.6734317,4284.330585,40256.23931,1,1,1,1,1,1,1
-1331,83.99411288,1172.356564,1467.561552,2226.310916,2267.730147,452.6471631,452.6471631,4358.384622,40952.51356,1,1,1,1,1,1,1
-1331.5,83.98154808,1172.180397,1467.561552,2051.401072,2471.544677,452.579451,452.579451,4387.617255,41227.39045,1,1,1,1,1,1,1
-1332,83.95794981,1171.85101,1467.561552,2249.437537,2285.449315,452.4522791,452.4522791,4398.395963,41328.74368,1,1,1,1,1,1,1
-1332.5,83.92195201,1171.349153,1467.561552,2144.722771,2395.418455,452.2582857,452.2582857,4401.508021,41358.00878,1,1,1,1,1,1,1
-1333,83.87613583,1170.710109,1467.561552,2092.979589,2449.062902,452.0113807,452.0113807,4400.804074,41351.39189,1,1,1,1,1,1,1
-1333.5,83.82393623,1169.980519,1467.561552,2193.896559,2348.422008,451.7300753,451.7300753,4398.119168,41326.14802,1,1,1,1,1,1,1
-1334,83.76620068,1169.174424,1467.561552,2056.945504,2485.509891,451.4189364,451.4189364,4395.018615,41296.99697,1,1,1,1,1,1,1
-1334.5,83.70324602,1168.296185,1467.561552,2252.85672,2289.726799,451.0796716,451.0796716,4391.640791,41265.23844,1,1,1,1,1,1,1
-1335,83.63619764,1167.36089,1467.561552,2104.431144,2438.199391,450.7183456,450.7183456,4388.043556,41231.41644,1,1,1,1,1,1,1
-1335.5,83.56689672,1166.393066,1467.561552,2110.454549,2432.161116,450.3448805,450.3448805,4384.321033,41196.41722,1,1,1,1,1,1,1
-1336,83.49705746,1165.418166,1467.561552,2216.479064,2326.037482,449.9685143,449.9685143,4380.571215,41161.1615,1,1,1,1,1,1,1
-1336.5,83.42810264,1164.455697,1467.561552,2204.941566,2337.453732,449.5969144,449.5969144,4376.869622,41126.35833,1,1,1,1,1,1,1
-1337,83.36051375,1163.511985,1467.561552,2057.241358,2485.023579,449.2326756,449.2326756,4373.239796,41092.23057,1,1,1,1,1,1,1
-1337.5,83.29432375,1162.589198,1467.561552,2085.587583,2456.550219,448.8759754,448.8759754,4369.690552,41058.8607,1,1,1,1,1,1,1
-1338,83.23108988,1161.706732,1467.561552,2214.093593,2327.814931,448.5352059,448.5352059,4366.296466,41026.94909,1,1,1,1,1,1,1
-1338.5,83.17278481,1160.892427,1467.561552,2100.645771,2440.985332,448.2209979,448.2209979,4363.164513,40997.50259,1,1,1,1,1,1,1
-1339,83.1182844,1160.132145,1467.561552,2047.511313,2493.977312,447.9272933,447.9272933,4360.240159,40970.00799,1,1,1,1,1,1,1
-1339.5,83.0651117,1159.389062,1467.561552,2105.971731,2435.447193,447.6407438,447.6407438,4357.381961,40943.13471,1,1,1,1,1,1,1
-1340,83.01056951,1158.6285,1467.561552,2257.164142,2284.301857,447.3468141,447.3468141,4354.456778,40915.63233,1,1,1,1,1,1,1
-1340.5,82.95313813,1157.82702,1467.561552,2249.996413,2291.524904,447.0373144,447.0373144,4351.374267,40886.65002,1,1,1,1,1,1,1
-1341,82.89326653,1156.990677,1467.561552,2248.054747,2293.469994,446.7146643,446.7146643,4348.157509,40856.4058,1,1,1,1,1,1,1
-1341.5,82.83191148,1156.133962,1467.561552,2102.816113,2438.679613,446.3840198,446.3840198,4344.862256,40825.42397,1,1,1,1,1,1,1
-1342,82.76879224,1155.254053,1467.561552,2213.522071,2327.995052,446.0438681,446.0438681,4341.478029,40793.60497,1,1,1,1,1,1,1
-1342.5,82.70350932,1154.342621,1467.561552,2080.250723,2461.277954,445.6920561,445.6920561,4337.972521,40760.64578,1,1,1,1,1,1,1
-1343,82.63703183,1153.41397,1467.561552,2045.645819,2495.815124,445.3338066,445.3338066,4334.400569,40727.06256,1,1,1,1,1,1,1
-1343.5,82.57045846,1152.484672,1467.561552,2209.297527,2332.084216,444.9750405,444.9750405,4330.826218,40693.45632,1,1,1,1,1,1,1
-1344,82.50397625,1151.557449,1467.561552,2142.439222,2398.865633,444.6167656,444.6167656,4327.260079,40659.92705,1,1,1,1,1,1,1
-1344.5,82.43768509,1150.632516,1467.561552,2237.829174,2303.396734,444.2595202,444.2595202,4323.702542,40626.47905,1,1,1,1,1,1,1
-1345,82.37159376,1149.709881,1467.561552,2227.185337,2313.959078,443.9033518,443.9033518,4320.153689,40593.11209,1,1,1,1,1,1,1
-1345.5,82.30570228,1148.790181,1467.561552,2245.791268,2295.269104,443.5482603,443.5482603,4316.616533,40559.85603,1,1,1,1,1,1,1
-1346,82.24046565,1147.879212,1467.561552,2185.783319,2355.165325,443.1966979,443.1966979,4313.112663,40526.91235,1,1,1,1,1,1,1
-1346.5,82.17565558,1146.974807,1467.561552,2158.968123,2381.908591,442.8474342,442.8474342,4309.634158,40494.20745,1,1,1,1,1,1,1
-1347,82.10951763,1146.051329,1467.561552,2218.860739,2322.043203,442.4910145,442.4910145,4306.0822,40460.8113,1,1,1,1,1,1,1
-1347.5,82.04042675,1145.087365,1467.561552,2245.697203,2295.246289,442.1186814,442.1186814,4302.374584,40425.95232,1,1,1,1,1,1,1
-1348,81.96869256,1144.085667,1467.561552,2268.395715,2272.553559,441.7321034,441.7321034,4298.521812,40389.72838,1,1,1,1,1,1,1
-1348.5,81.89490528,1143.05587,1467.561552,2146.765356,2394.165168,441.3344611,441.3344611,4294.560978,40352.488,1,1,1,1,1,1,1
-1349,81.82013158,1142.012155,1467.561552,2237.21908,2303.639559,440.9315031,440.9315031,4290.546821,40314.74661,1,1,1,1,1,1,1
-1349.5,81.74589784,1140.976617,1467.561552,2206.469845,2334.248797,440.5314549,440.5314549,4286.563876,40277.29868,1,1,1,1,1,1,1
-1350,81.67589804,1139.999511,1467.561552,2222.664344,2317.711177,440.1542236,440.1542236,4282.805606,40241.96359,1,1,1,1,1,1,1
-1350.5,81.6133039,1139.125267,1467.561552,2265.743502,2274.257777,439.8169016,439.8169016,4279.443188,40210.34968,1,1,1,1,1,1,1
-1351,81.55831301,1138.3583,1467.561552,2249.265969,2290.387566,439.5205539,439.5205539,4276.493148,40182.61374,1,1,1,1,1,1,1
-1351.5,81.51063591,1137.69219,1467.561552,2246.968262,2292.36156,439.2636203,439.2636203,4273.931216,40158.52604,1,1,1,1,1,1,1
-1352,81.47043595,1137.131586,1467.561552,2123.502992,2415.471279,439.0469813,439.0469813,4271.774761,40138.25063,1,1,1,1,1,1,1
-1352.5,81.43836665,1136.684281,1467.561552,2213.172872,2325.455719,438.8741588,438.8741588,4270.054537,40122.07747,1,1,1,1,1,1,1
-1353,81.41214101,1136.318451,1467.561552,2264.921433,2273.543041,438.7328279,438.7328279,4268.647469,40108.84818,1,1,1,1,1,1,1
-1353.5,81.38879868,1135.991872,1467.561552,2207.58103,2330.77241,438.6070353,438.6070353,4267.391267,40097.03693,1,1,1,1,1,1,1
-1354,81.368504,1135.709023,1467.561552,2242.074756,2296.097484,438.4976665,438.4976665,4266.303407,40086.80904,1,1,1,1,1,1,1
-1354.5,81.35483995,1135.518673,1467.561552,2102.543056,2435.268225,438.4240305,438.4240305,4265.571333,40079.92583,1,1,1,1,1,1,1
-1355,81.35061482,1135.459065,1467.561552,2210.356154,2327.079083,438.4012611,438.4012611,4265.342072,40077.77016,1,1,1,1,1,1,1
-1355.5,81.35599898,1135.534476,1467.561552,2079.45704,2457.480682,438.4302766,438.4302766,4265.489809,40079.15946,1,1,1,1,1,1,1
-1356,81.3710765,1135.744485,1467.561552,2248.715307,2287.595148,438.5115298,438.5115298,4266.008992,40084.04062,1,1,1,1,1,1,1
-1356.5,81.39549602,1136.085339,1467.561552,2083.120376,2452.536832,438.6431275,438.6431275,4266.971758,40093.09216,1,1,1,1,1,1,1
-1357,81.4274089,1136.531572,1467.561552,2125.072827,2410.084052,438.8151071,438.8151071,4268.361709,40106.16065,1,1,1,1,1,1,1
-1357.5,81.46499502,1137.055376,1467.561552,2110.80264,2423.943819,439.01766,439.01766,4270.108516,40122.58397,1,1,1,1,1,1,1
-1358,81.50799278,1137.65565,1467.561552,2087.938029,2446.40375,439.2493764,439.2493764,4272.175179,40142.01411,1,1,1,1,1,1,1
-1358.5,81.55766991,1138.348623,1467.561552,2065.041176,2468.825199,439.5170881,439.5170881,4274.580568,40164.62959,1,1,1,1,1,1,1
-1359,81.61477728,1139.146432,1467.561552,2124.302952,2409.065801,439.8248417,439.8248417,4277.360691,40190.76852,1,1,1,1,1,1,1
-1359.5,81.6794892,1140.04962,1467.561552,2253.728197,2279.143099,440.1735765,440.1735765,4280.534957,40220.61221,1,1,1,1,1,1,1
-1360,81.75082367,1141.045673,1467.561552,2101.769657,2430.69493,440.5580004,440.5580004,4284.084926,40253.98881,1,1,1,1,1,1,1
-1360.5,81.82765462,1142.117344,1467.561552,2084.777356,2447.347331,440.972045,440.972045,4287.96363,40290.45638,1,1,1,1,1,1,1
-1361,81.90952537,1143.259705,1467.561552,2249.221769,2282.591327,441.4132493,441.4132493,4292.139063,40329.71374,1,1,1,1,1,1,1
-1361.5,81.99668855,1144.476551,1467.561552,2162.822587,2368.674765,441.8829747,441.8829747,4296.60534,40371.70577,1,1,1,1,1,1,1
-1362,82.08834138,1145.756288,1467.561552,2049.37243,2481.916061,442.376895,442.376895,4301.335987,40416.18415,1,1,1,1,1,1,1
-1362.5,82.18185221,1147.061037,1467.561552,2203.967264,2327.310089,442.880828,442.880828,4306.238737,40462.27974,1,1,1,1,1,1,1
-1363,82.27541737,1148.367539,1467.561552,2220.355094,2310.981833,443.3850539,443.3850539,4311.219557,40509.10929,1,1,1,1,1,1,1
-1363.5,82.36932077,1149.677701,1467.561552,2199.753206,2331.65178,443.8911025,443.8911025,4316.238983,40556.30222,1,1,1,1,1,1,1
-1364,82.46345773,1150.992474,1467.561552,2177.126008,2354.36855,444.3984099,444.3984099,4321.285018,40603.74524,1,1,1,1,1,1,1
-1364.5,82.55734064,1152.302374,1467.561552,2195.851375,2335.790756,444.9043481,444.9043481,4326.332162,40651.19933,1,1,1,1,1,1,1
-1365,82.65037567,1153.601448,1467.561552,2218.599875,2313.198895,445.405717,445.405717,4331.355737,40698.4312,1,1,1,1,1,1,1
-1365.5,82.7433756,1154.898835,1467.561552,2234.016248,2297.362516,445.9068969,445.9068969,4335.821758,40740.42014,1,1,1,1,1,1,1
-1366,82.836392,1156.197679,1467.561552,2155.29712,2375.946983,446.4081654,446.4081654,4340.547031,40784.84757,1,1,1,1,1,1,1
-1366.5,82.9285733,1157.483941,1467.561552,2165.090528,2366.806575,446.9049337,446.9049337,4346.020711,40836.3116,1,1,1,1,1,1,1
-1367,83.01921087,1158.749062,1467.561552,2175.504316,2356.796343,447.3933826,447.3933826,4351.136241,40884.40801,1,1,1,1,1,1,1
-1367.5,83.1075898,1159.98292,1467.561552,2228.400716,2304.251445,447.8696597,447.8696597,4356.038563,40930.50033,1,1,1,1,1,1,1
-1368,83.19318797,1161.177815,1467.561552,2120.698634,2412.284935,448.3309512,448.3309512,4360.767817,40974.96496,1,1,1,1,1,1,1
-1368.5,83.27626212,1162.33642,1467.561552,2208.511604,2324.760633,448.7786407,448.7786407,4365.342848,41017.98,1,1,1,1,1,1,1
-1369,83.35779778,1163.474538,1467.561552,2103.153019,2430.314429,449.2180391,449.2180391,4369.806331,41059.94613,1,1,1,1,1,1,1
-1369.5,83.43942265,1164.613896,1467.561552,2203.765047,2329.793038,449.6579184,449.6579184,4374.223691,41101.47851,1,1,1,1,1,1,1
-1370,83.52210174,1165.768135,1467.561552,2208.854078,2324.738863,450.1034788,450.1034788,4378.655404,41143.14563,1,1,1,1,1,1,1
-1370.5,83.60659562,1166.94738,1467.561552,2181.127323,2352.428138,450.5588193,450.5588193,4383.148607,41185.39059,1,1,1,1,1,1,1
-1371,83.69333468,1168.158393,1467.561552,2105.442312,2428.058048,451.026259,451.026259,4387.739492,41228.55422,1,1,1,1,1,1,1
-1371.5,83.78182065,1169.392669,1467.561552,2050.066335,2483.423729,451.503113,451.503113,4392.4245,41272.60288,1,1,1,1,1,1,1
-1372,83.87098207,1170.637275,1467.561552,2163.868139,2369.668398,451.9836069,451.9836069,4397.173532,41317.25406,1,1,1,1,1,1,1
-1372.5,83.96023562,1171.883366,1467.561552,2181.111767,2352.513262,452.4645974,452.4645974,4401.9531,41362.19147,1,1,1,1,1,1,1
-1373,84.04939712,1173.127501,1467.561552,2069.94741,2463.778474,452.9450918,452.9450918,4406.740304,41407.20124,1,1,1,1,1,1,1
-1373.5,84.13870304,1174.374419,1467.561552,2146.530419,2387.274065,453.4263645,453.4263645,4411.53655,41452.29596,1,1,1,1,1,1,1
-1374,84.22844779,1175.626649,1467.561552,2193.99766,2339.885676,453.910002,453.910002,4416.348271,41497.53621,1,1,1,1,1,1,1
-1374.5,84.31781801,1176.874426,1467.561552,2181.256384,2352.765694,454.3916212,454.3916212,4421.157115,41542.74871,1,1,1,1,1,1,1
-1375,84.40659772,1178.112987,1467.561552,2247.422997,2286.72964,454.8700581,454.8700581,4425.944525,41587.76063,1,1,1,1,1,1,1
-1375.5,84.49525091,1179.350526,1467.561552,2107.182411,2427.067539,455.3478132,455.3478132,4430.71944,41632.65437,1,1,1,1,1,1,1
-1376,84.58412549,1180.591782,1467.561552,2045.342297,2488.996366,455.8267614,455.8267614,4435.496988,41677.57344,1,1,1,1,1,1,1
-1376.5,84.67283956,1181.829857,1467.561552,2165.076763,2369.393938,456.3048445,456.3048445,4440.269879,41722.44809,1,1,1,1,1,1,1
-1377,84.76061499,1183.054276,1467.561552,2199.296902,2335.335885,456.7778693,456.7778693,4445.010157,41767.01619,1,1,1,1,1,1,1
-1377.5,84.84714213,1184.261782,1467.561552,2199.384372,2335.428766,457.244167,457.244167,4449.698999,41811.10159,1,1,1,1,1,1,1
-1378,84.93070684,1185.428222,1467.561552,2128.230441,2406.930416,457.6945002,457.6945002,4454.274958,41854.12489,1,1,1,1,1,1,1
-1378.5,84.98443153,1186.178461,1467.561552,1883.946353,2201.075055,457.9840244,457.9840244,3999.87055,37586.71941,1,1,1,1,1,1,1
-1379,84.99876344,1186.378631,1467.561552,1875.276975,2066.754368,458.0612595,458.0612595,3855.270502,36228.93155,1,1,1,1,1,1,1
-1379.5,85,1186.3959,1467.561552,1900.020356,2124.720149,458.0679234,458.0679234,3938.226936,37007.28614,1,1,1,1,1,1,1
-1380,85,1186.3959,1467.561552,2032.334744,2084.125575,458.0679234,458.0679234,4030.26337,37870.83437,1,1,1,1,1,1,1
-1380.5,85,1186.3959,1467.561552,2082.167721,2082.167721,458.0679234,458.0679234,4078.303906,38321.58324,1,1,1,1,1,1,1
-1381,85,1186.3959,1467.561552,1978.104533,2173.849291,458.0679234,458.0679234,4065.880212,38205.01551,1,1,1,1,1,1,1
-1381.5,85,1186.3959,1467.561552,1879.151424,2221.708213,458.0679234,458.0679234,4014.609325,37723.95744,1,1,1,1,1,1,1
-1382,85,1186.3959,1467.561552,1835.250282,2198.266821,458.0679234,458.0679234,3947.033458,37089.91477,1,1,1,1,1,1,1
-1382.5,85,1186.3959,1467.561552,1911.223004,2019.067412,458.0679234,458.0679234,3843.449834,36118.02251,1,1,1,1,1,1,1
-1383,85,1186.3959,1467.561552,1853.624065,1982.066635,458.0679234,458.0679234,3748.523171,35227.35647,1,1,1,1,1,1,1
-1383.5,85,1186.3959,1467.561552,1840.026597,1931.735576,458.0679234,458.0679234,3692.537323,34701.38628,1,1,1,1,1,1,1
-1384,85,1186.3959,1467.561552,1755.585078,1976.772471,458.0679234,458.0679234,3659.258864,34388.29628,1,1,1,1,1,1,1
-1384.5,85,1186.3959,1467.561552,1737.243416,1967.467716,458.0679234,458.0679234,3635.623203,34165.85454,1,1,1,1,1,1,1
-1385,85,1186.3959,1467.561552,1758.63145,1921.614782,458.0679234,458.0679234,3614.706212,33968.99907,1,1,1,1,1,1,1
-1385.5,85,1186.3959,1467.561552,1742.271685,1917.420997,458.0679234,458.0679234,3597.134777,33803.62924,1,1,1,1,1,1,1
-1386,85,1186.3959,1467.561552,1689.877952,1958.355982,458.0679234,458.0679234,3587.337965,33711.4291,1,1,1,1,1,1,1
-1386.5,85,1186.3959,1467.561552,1662.935464,1983.325086,458.0679234,458.0679234,3585.6507,33695.5499,1,1,1,1,1,1,1
-1387,85,1186.3959,1467.561552,1658.653008,1986.738218,458.0679234,458.0679234,3584.907961,33688.5595,1,1,1,1,1,1,1
-1387.5,85,1186.3959,1467.561552,1712.786435,1925.801731,458.0679234,458.0679234,3579.091308,33633.8176,1,1,1,1,1,1,1
-1388,85,1186.3959,1467.561552,1742.632123,1895.928212,458.0679234,458.0679234,3579.067138,33633.58954,1,1,1,1,1,1,1
-1388.5,85,1186.3959,1467.561552,1800.55138,1860.436527,458.0679234,458.0679234,3598.241699,33814.04667,1,1,1,1,1,1,1
-1389,85,1186.3959,1467.561552,1815.380393,1852.054744,458.0679234,458.0679234,3603.75371,33865.92186,1,1,1,1,1,1,1
-1389.5,85,1186.3959,1467.561552,1764.870523,1887.50788,458.0679234,458.0679234,3590.88047,33744.76833,1,1,1,1,1,1,1
-1390,85,1186.3959,1467.561552,1784.441324,1844.060627,458.0679234,458.0679234,3570.467832,33552.65909,1,1,1,1,1,1,1
-1390.5,85,1186.3959,1467.561552,1688.143461,1892.436773,458.0679234,458.0679234,3529.497574,33167.07685,1,1,1,1,1,1,1
-1391,85,1186.3959,1467.561552,1733.711126,1786.975564,458.0679234,458.0679234,3478.29167,32685.16426,1,1,1,1,1,1,1
-1391.5,85,1186.3959,1467.561552,1592.042003,1862.738375,458.0679234,458.0679234,3421.945378,32154.8739,1,1,1,1,1,1,1
-1392,85,1186.3959,1467.561552,1637.674583,1764.396707,458.0679234,458.0679234,3376.882726,31730.77694,1,1,1,1,1,1,1
-1392.5,85,1186.3959,1467.561552,1541.499545,1819.779166,458.0679234,458.0679234,3342.007744,31402.55944,1,1,1,1,1,1,1
-1393,85,1186.3959,1467.561552,1508.217762,1814.402255,458.0679234,458.0679234,3308.956041,31091.50111,1,1,1,1,1,1,1
-1393.5,85,1186.3959,1467.561552,1597.307848,1686.677697,458.0679234,458.0679234,3277.380584,30794.63568,1,1,1,1,1,1,1
-1394,85,1186.3959,1467.561552,1494.196448,1728.354863,458.0679234,458.0679234,3225.517104,30307.21843,1,1,1,1,1,1,1
-1394.5,85,1186.3959,1467.561552,1483.637829,1642.897989,458.0679234,458.0679234,3143.664801,29537.96829,1,1,1,1,1,1,1
-1395,85,1186.3959,1467.561552,1461.114133,1607.948639,458.0679234,458.0679234,3094.644817,29077.2764,1,1,1,1,1,1,1
-1395.5,85,1186.3959,1467.561552,1398.188865,1646.08199,458.0679234,458.0679234,3073.498733,28878.54389,1,1,1,1,1,1,1
-1396,85,1186.3959,1467.561552,1480.588801,1538.923188,458.0679234,458.0679234,3052.380774,28680.07655,1,1,1,1,1,1,1
-1396.5,85,1186.3959,1467.561552,1430.145337,1546.867599,458.0679234,458.0679234,3016.132234,28339.41157,1,1,1,1,1,1,1
-1397,85,1186.3959,1467.561552,1444.688617,1499.432508,458.0679234,458.0679234,2988.076856,28075.74545,1,1,1,1,1,1,1
-1397.5,85,1186.3959,1467.561552,1392.318561,1536.744113,458.0679234,458.0679234,2975.233349,27955.04193,1,1,1,1,1,1,1
-1398,85,1186.3959,1467.561552,1339.29624,1558.652878,458.0679234,458.0679234,2948.695211,27705.63551,1,1,1,1,1,1,1
-1398.5,85,1186.3959,1467.561552,1324.353078,1530.34369,458.0679234,458.0679234,2911.803093,27358.92168,1,1,1,1,1,1,1
-1399,85,1186.3959,1467.561552,1339.171728,1469.72475,458.0679234,458.0679234,2872.739952,26991.80427,1,1,1,1,1,1,1
-1399.5,85,1186.3959,1467.561552,1282.063655,1479.084895,458.0679234,458.0679234,2834.602021,26633.5908,1,1,1,1,1,1,1
-1400,85,1186.3959,1467.561552,1234.037987,1471.688524,458.0679234,458.0679234,2785.676814,26174.53164,1,1,1,1,1,1,1
-1400.5,85,1186.3959,1467.561552,1264.535939,1378.275465,458.0679234,458.0679234,2728.73109,25640.30988,1,1,1,1,1,1,1
-1401,85,1186.3959,1467.561552,1230.175063,1347.866767,458.0679234,458.0679234,2670.106507,25090.33767,1,1,1,1,1,1,1
-1401.5,85,1186.3959,1467.561552,1232.165515,1279.146237,458.0679234,458.0679234,2609.708979,24523.73323,1,1,1,1,1,1,1
-1402,85,1186.3959,1467.561552,1137.939875,1295.33715,458.0679234,458.0679234,2539.077467,23861.12166,1,1,1,1,1,1,1
-1402.5,85,1186.3959,1467.561552,1137.025392,1196.416435,458.0679234,458.0679234,2448.715003,23013.409,1,1,1,1,1,1,1
-1403,85,1186.3959,1467.561552,1095.680722,1171.589968,458.0679234,458.0679234,2393.568477,22495.76062,1,1,1,1,1,1,1
-1403.5,85,1186.3959,1467.561552,1046.545169,1188.578249,458.0679234,458.0679234,2368.244839,22257.8794,1,1,1,1,1,1,1
-1404,85,1186.3959,1467.561552,1025.258667,1179.598681,458.0679234,458.0679234,2342.053628,22011.53927,1,1,1,1,1,1,1
-1404.5,85,1186.3959,1467.561552,1001.895975,1152.719025,458.0679234,458.0679234,2296.32748,21581.26129,1,1,1,1,1,1,1
-1405,85,1186.3959,1467.561552,953.3907827,1150.027097,458.0679234,458.0679234,2249.526191,21140.84843,1,1,1,1,1,1,1
-1405.5,85,1186.3959,1467.561552,1008.933259,1053.5505,458.0679234,458.0679234,2212.106425,20788.71846,1,1,1,1,1,1,1
-1406,85,1186.3959,1467.561552,983.559221,1047.273592,458.0679234,458.0679234,2183.171965,20516.43736,1,1,1,1,1,1,1
-1406.5,85,1186.3959,1467.561552,969.8867487,1034.329421,458.0679234,458.0679234,2158.841385,20287.4796,1,1,1,1,1,1,1
-1407,85,1186.3959,1467.561552,956.8208564,1016.005652,458.0679234,458.0679234,2130.146393,20017.4517,1,1,1,1,1,1,1
-1407.5,85,1186.3959,1467.561552,954.5253049,967.0986164,458.0679234,458.0679234,2083.339084,19576.98273,1,1,1,1,1,1,1
-1408,85,1186.3959,1467.561552,879.2621611,996.7740475,458.0679234,458.0679234,2041.665154,19184.81964,1,1,1,1,1,1,1
-1408.5,85,1186.3959,1467.561552,856.69721,989.9422626,458.0679234,458.0679234,2014.792916,18931.9441,1,1,1,1,1,1,1
-1409,85,1186.3959,1467.561552,873.4433968,943.6576883,458.0679234,458.0679234,1987.78968,18677.83686,1,1,1,1,1,1,1
-1409.5,85,1186.3959,1467.561552,803.8588229,952.470566,458.0679234,458.0679234,1932.337341,18156.09224,1,1,1,1,1,1,1
-1410,85,1186.3959,1467.561552,805.2216753,881.8251241,458.0679234,458.0679234,1869.960805,17569.83999,1,1,1,1,1,1,1
-1410.5,85,1186.3959,1467.561552,792.240336,841.2448929,458.0679234,458.0679234,1821.911068,17118.37293,1,1,1,1,1,1,1
-1411,85,1186.3959,1467.561552,760.5167257,820.2887533,458.0679234,458.0679234,1774.653945,16674.35257,1,1,1,1,1,1,1
-1411.5,85,1186.3959,1467.561552,749.2558536,774.5314661,458.0679234,458.0679234,1723.502512,16193.74259,1,1,1,1,1,1,1
-1412,85,1186.3959,1467.561552,692.6251338,776.1017567,458.0679234,458.0679234,1674.108148,15729.64143,1,1,1,1,1,1,1
-1412.5,85,1186.3959,1467.561552,671.2715707,760.2707644,458.0679234,458.0679234,1640.750745,15416.22081,1,1,1,1,1,1,1
-1413,85,1186.3959,1467.561552,640.1238445,756.7288298,458.0679234,458.0679234,1609.631177,15123.82594,1,1,1,1,1,1,1
-1413.5,85,1186.3959,1467.561552,609.7400509,741.9466636,458.0679234,458.0679234,1569.113962,14743.13303,1,1,1,1,1,1,1
-1414,85,1186.3959,1467.561552,622.2737774,692.0052207,458.0679234,458.0679234,1535.555084,14427.81958,1,1,1,1,1,1,1
-1414.5,85,1186.3959,1467.561552,587.3499618,699.2966735,458.0679234,458.0679234,1510.765984,14194.90518,1,1,1,1,1,1,1
-1415,85,1186.3959,1467.561552,585.2042662,671.5342836,458.0679234,458.0679234,1487.456238,13975.89075,1,1,1,1,1,1,1
-1415.5,85,1186.3959,1467.561552,548.4104802,658.4338759,458.0679234,458.0679234,1452.872724,13650.94995,1,1,1,1,1,1,1
-1416,85,1186.3959,1467.561552,542.4243477,612.9321225,458.0679234,458.0679234,1412.981458,13276.13813,1,1,1,1,1,1,1
-1416.5,85,1186.3959,1467.561552,542.5316813,572.1459837,458.0679234,458.0679234,1380.375109,12969.77479,1,1,1,1,1,1,1
-1417,85,1186.3959,1467.561552,530.3010927,569.577816,458.0679234,458.0679234,1368.512722,12858.31788,1,1,1,1,1,1,1
-1417.5,85,1186.3959,1467.561552,516.4669131,586.6627695,458.0679234,458.0679234,1371.118367,12882.79965,1,1,1,1,1,1,1
-1418,85,1186.3959,1467.561552,511.096938,597.4237983,458.0679234,458.0679234,1375.439108,12923.39684,1,1,1,1,1,1,1
-1418.5,85,1186.3959,1467.561552,532.4015875,577.5279114,458.0679234,458.0679234,1376.568848,12934.01153,1,1,1,1,1,1,1
-1419,85,1186.3959,1467.561552,517.5748526,594.7261614,458.0679234,458.0679234,1378.469148,12951.86645,1,1,1,1,1,1,1
-1419.5,85,1186.3959,1467.561552,545.0964323,572.8854715,458.0679234,458.0679234,1383.022413,12994.64792,1,1,1,1,1,1,1
-1420,85,1186.3959,1467.561552,525.3904802,598.6048772,458.0679234,458.0679234,1387.843285,13039.94447,1,1,1,1,1,1,1
-1420.5,85,1186.3959,1467.561552,544.6109389,581.5279553,458.0679234,458.0679234,1389.562102,13056.09432,1,1,1,1,1,1,1
-1421,85,1186.3959,1467.561552,533.2920598,591.1530044,458.0679234,458.0679234,1388.204368,13043.33666,1,1,1,1,1,1,1
-1421.5,85,1186.3959,1467.561552,520.4280966,596.1955523,458.0679234,458.0679234,1381.934206,12984.42352,1,1,1,1,1,1,1
-1422,85,1186.3959,1467.561552,507.8829294,603.1203751,458.0679234,458.0679234,1377.429579,12942.09878,1,1,1,1,1,1,1
-1422.5,85,1186.3959,1467.561552,505.0573564,604.9588115,458.0679234,458.0679234,1376.6385,12934.6659,1,1,1,1,1,1,1
-1423,85,1186.3959,1467.561552,513.7909636,596.2252043,458.0679234,458.0679234,1376.6385,12934.6659,1,1,1,1,1,1,1
-1423.5,85,1186.3959,1467.561552,524.8911252,585.1250426,458.0679234,458.0679234,1376.6385,12934.6659,1,1,1,1,1,1,1
-1424,85,1186.3959,1467.561552,539.4850103,586.9072554,458.0679234,458.0679234,1389.76492,13057.99955,1,1,1,1,1,1,1
-1424.5,85,1186.3959,1467.561552,548.9161391,633.8975157,458.0679234,458.0679234,1434.989626,13482.92329,1,1,1,1,1,1,1
-1425,85,1186.3959,1467.561552,564.4203039,684.1763929,458.0679234,458.0679234,1481.875075,13923.45119,1,1,1,1,1,1,1
-1425.5,85,1186.3959,1467.561552,637.9480344,675.3074551,458.0679234,458.0679234,1535.132052,14423.84473,1,1,1,1,1,1,1
-1426,85,1186.3959,1467.561552,633.3520487,745.8057287,458.0679234,458.0679234,1593.75704,14974.67556,1,1,1,1,1,1,1
-1426.5,85,1186.3959,1467.561552,705.9339195,747.1998277,458.0679234,458.0679234,1660.120323,15598.21411,1,1,1,1,1,1,1
-1427,85,1186.3959,1467.561552,727.7923862,791.2120066,458.0679234,458.0679234,1719.21257,16153.43509,1,1,1,1,1,1,1
-1427.5,85,1186.3959,1467.561552,711.5893243,851.5691497,458.0679234,458.0679234,1758.822659,16525.60473,1,1,1,1,1,1,1
-1428,85,1186.3959,1467.561552,722.1843162,882.6697198,458.0679234,458.0679234,1796.227461,16877.05387,1,1,1,1,1,1,1
-1428.5,85,1186.3959,1467.561552,807.9874504,882.7967956,458.0679234,458.0679234,1873.313776,17601.34385,1,1,1,1,1,1,1
-1429,85,1186.3959,1467.561552,883.744151,923.5389836,458.0679234,458.0679234,1978.951803,18594.77334,1,1,1,1,1,1,1
-1429.5,85,1186.3959,1467.561552,922.2307509,1023.330871,458.0679234,458.0679234,2105.221487,19782.90208,1,1,1,1,1,1,1
-1430,85,1186.3959,1467.561552,969.3968782,1110.797649,458.0679234,458.0679234,2228.295784,20941.06481,1,1,1,1,1,1,1
-1430.5,85,1186.3959,1467.561552,1031.592369,1168.067102,458.0679234,458.0679234,2337.295333,21966.76246,1,1,1,1,1,1,1
-1431,85,1186.3959,1467.561552,1079.880728,1237.344085,458.0679234,458.0679234,2436.133324,22895.21882,1,1,1,1,1,1,1
-1431.5,85,1186.3959,1467.561552,1120.727683,1331.434346,458.0679234,458.0679234,2556.17052,24021.47562,1,1,1,1,1,1,1
-1432,85,1186.3959,1467.561552,1273.235802,1320.858673,458.0679234,458.0679234,2684.636518,25226.6478,1,1,1,1,1,1,1
-1432.5,85,1186.3959,1467.561552,1333.033355,1398.183603,458.0679234,458.0679234,2808.74831,26390.9712,1,1,1,1,1,1,1
-1433,85,1186.3959,1467.561552,1351.936723,1481.8572,458.0679234,458.0679234,2894.780054,27198.96454,1,1,1,1,1,1,1
-1433.5,85,1186.3959,1467.561552,1386.208368,1508.063442,458.0679234,458.0679234,2945.559297,27676.16364,1,1,1,1,1,1,1
-1434,85,1186.3959,1467.561552,1449.918167,1497.979126,458.0679234,458.0679234,2991.298472,28106.02252,1,1,1,1,1,1,1
-1434.5,85,1186.3959,1467.561552,1421.959864,1595.311537,458.0679234,458.0679234,3050.470501,28662.1239,1,1,1,1,1,1,1
-1435,85,1186.3959,1467.561552,1502.993302,1597.33091,458.0679234,458.0679234,3121.308947,29327.86641,1,1,1,1,1,1,1
-1435.5,85,1186.3959,1467.561552,1594.095075,1607.392716,458.0679234,458.0679234,3207.595098,30138.78771,1,1,1,1,1,1,1
-1436,85,1186.3959,1467.561552,1560.056705,1743.168182,458.0679234,458.0679234,3292.834218,30939.98042,1,1,1,1,1,1,1
-1436.5,85,1186.3959,1467.561552,1608.255502,1792.468233,458.0679234,458.0679234,3375.730596,31719.93418,1,1,1,1,1,1,1
-1437,85,1186.3959,1467.561552,1674.573353,1821.719319,458.0679234,458.0679234,3457.436074,32488.88634,1,1,1,1,1,1,1
-1437.5,85,1186.3959,1467.561552,1735.375772,1850.447889,458.0679234,458.0679234,3533.979836,33209.26048,1,1,1,1,1,1,1
-1438,85,1186.3959,1467.561552,1763.070307,1901.987663,458.0679234,458.0679234,3601.7207,33846.78871,1,1,1,1,1,1,1
-1438.5,85,1186.3959,1467.561552,1744.797073,1982.13585,458.0679234,458.0679234,3654.620821,34344.64618,1,1,1,1,1,1,1
-1439,85,1186.3959,1467.561552,1805.809888,1950.384105,458.0679234,458.0679234,3679.637551,34580.0854,1,1,1,1,1,1,1
-1439.5,85,1186.3959,1467.561552,1735.210233,2025.572767,458.0679234,458.0679234,3683.5609,34617.0091,1,1,1,1,1,1,1
-1440,85,1186.3959,1467.561552,1756.812256,2006.675489,458.0679234,458.0679234,3685.874013,34638.77844,1,1,1,1,1,1,1
-1440.5,85,1186.3959,1467.561552,1820.379655,1957.801031,458.0679234,458.0679234,3698.332226,34756.00659,1,1,1,1,1,1,1
-1441,85,1186.3959,1467.561552,1756.893574,2018.618836,458.0679234,458.0679234,3696.125645,34735.25434,1,1,1,1,1,1,1
-1441.5,85,1186.3959,1467.561552,1718.838236,2017.766624,458.0679234,458.0679234,3662.890376,34422.47301,1,1,1,1,1,1,1
-1442,85,1186.3959,1467.561552,1676.401523,2031.279696,458.0679234,458.0679234,3638.162514,34189.75238,1,1,1,1,1,1,1
-1442.5,85,1186.3959,1467.561552,1792.23718,1900.206573,458.0679234,458.0679234,3625.135473,34067.15175,1,1,1,1,1,1,1
-1443,85,1186.3959,1467.561552,1709.005709,1977.895289,458.0679234,458.0679234,3620.396441,34022.55128,1,1,1,1,1,1,1
-1443.5,85,1186.3959,1467.561552,1730.553354,1976.556515,458.0679234,458.0679234,3637.673922,34185.15405,1,1,1,1,1,1,1
-1444,85,1186.3959,1467.561552,1749.533322,1972.878001,458.0679234,458.0679234,3650.756192,34308.27521,1,1,1,1,1,1,1
-1444.5,85,1186.3959,1467.561552,1777.633346,1942.314747,458.0679234,458.0679234,3648.649711,34288.45031,1,1,1,1,1,1,1
-1445,85,1186.3959,1467.561552,1765.075308,1942.527445,458.0679234,458.0679234,3638.095242,34189.11967,1,1,1,1,1,1,1
-1445.5,85,1186.3959,1467.561552,1803.482945,1842.974298,458.0679234,458.0679234,3585.819028,33697.13372,1,1,1,1,1,1,1
-1446,85,1186.3959,1467.561552,1638.030555,1916.030234,458.0679234,458.0679234,3506.825249,32953.7019,1,1,1,1,1,1,1
-1446.5,85,1186.3959,1467.561552,1586.250585,1849.34095,458.0679234,458.0679234,3405.539804,32000.4771,1,1,1,1,1,1,1
-1447,85,1186.3959,1467.561552,1514.772042,1827.160596,458.0679234,458.0679234,3325.467656,31246.89637,1,1,1,1,1,1,1
-1447.5,85,1186.3959,1467.561552,1580.426865,1702.780513,458.0679234,458.0679234,3276.880152,30789.95949,1,1,1,1,1,1,1
-1448,85,1186.3959,1467.561552,1547.958665,1688.87098,458.0679234,458.0679234,3237.739509,30422.08643,1,1,1,1,1,1,1
-1448.5,85,1186.3959,1467.561552,1530.55779,1691.669137,458.0679234,458.0679234,3225.284638,30305.03487,1,1,1,1,1,1,1
-1449,85,1186.3959,1467.561552,1493.040193,1730.307315,458.0679234,458.0679234,3226.240181,30314.0149,1,1,1,1,1,1,1
-1449.5,85,1186.3959,1467.561552,1524.652956,1706.848873,458.0679234,458.0679234,3233.195422,30379.38049,1,1,1,1,1,1,1
-1450,85,1186.3959,1467.561552,1553.034879,1689.635583,458.0679234,458.0679234,3242.721537,30468.90747,1,1,1,1,1,1,1
-1450.5,85,1186.3959,1467.561552,1536.89908,1718.378421,458.0679234,458.0679234,3253.473657,30569.9567,1,1,1,1,1,1,1
-1451,85,1186.3959,1467.561552,1556.778707,1700.981316,458.0679234,458.0679234,3255.591485,30589.8596,1,1,1,1,1,1,1
-1451.5,85,1186.3959,1467.561552,1490.618639,1719.659303,458.0679234,458.0679234,3215.092312,30209.24654,1,1,1,1,1,1,1
-1452,85,1186.3959,1467.561552,1436.690686,1713.380137,458.0679234,458.0679234,3163.739265,29726.6286,1,1,1,1,1,1,1
-1452.5,85,1186.3959,1467.561552,1446.700852,1652.732633,458.0679234,458.0679234,3120.548269,29320.71797,1,1,1,1,1,1,1
-1453,85,1186.3959,1467.561552,1451.656098,1611.394795,458.0679234,458.0679234,3089.516114,29029.07601,1,1,1,1,1,1,1
-1453.5,85,1186.3959,1467.561552,1394.277729,1641.430142,458.0679234,458.0679234,3066.195356,28809.90667,1,1,1,1,1,1,1
-1454,85,1186.3959,1467.561552,1454.320513,1559.826425,458.0679234,458.0679234,3047.805628,28637.07883,1,1,1,1,1,1,1
-1454.5,85,1186.3959,1467.561552,1379.49678,1629.012715,458.0679234,458.0679234,3042.997333,28591.89081,1,1,1,1,1,1,1
-1455,85,1186.3959,1467.561552,1371.038684,1623.422371,458.0679234,458.0679234,3031.013615,28479.26727,1,1,1,1,1,1,1
-1455.5,85,1186.3959,1467.561552,1408.54772,1552.494513,458.0679234,458.0679234,3002.509065,28211.38048,1,1,1,1,1,1,1
-1456,85,1186.3959,1467.561552,1456.033302,1481.216423,458.0679234,458.0679234,2982.216873,28020.67299,1,1,1,1,1,1,1
-1456.5,85,1186.3959,1467.561552,1346.550534,1576.304857,458.0679234,458.0679234,2969.938771,27905.28303,1,1,1,1,1,1,1
-1457,85,1186.3959,1467.561552,1332.659745,1577.960736,458.0679234,458.0679234,2959.503474,27807.21146,1,1,1,1,1,1,1
-1457.5,85,1186.3959,1467.561552,1413.969944,1486.373095,458.0679234,458.0679234,2950.737194,27724.82597,1,1,1,1,1,1,1
-1458,85,1186.3959,1467.561552,1436.306443,1442.485523,458.0679234,458.0679234,2932.355643,27552.07493,1,1,1,1,1,1,1
-1458.5,85,1186.3959,1467.561552,1365.802332,1477.327102,458.0679234,458.0679234,2901.937454,27266.20359,1,1,1,1,1,1,1
-1459,85,1186.3959,1467.561552,1384.536048,1414.756028,458.0679234,458.0679234,2865.41071,26922.93578,1,1,1,1,1,1,1
-1459.5,85,1186.3959,1467.561552,1359.916535,1359.916535,458.0679234,458.0679234,2797.545598,26285.93346,1,1,1,1,1,1,1
-1460,85,1186.3959,1467.561552,1246.151543,1390.401805,458.0679234,458.0679234,2723.067177,25587.17501,1,1,1,1,1,1,1
-1460.5,85,1186.3959,1467.561552,1260.551882,1319.85969,458.0679234,458.0679234,2672.25242,25110.46913,1,1,1,1,1,1,1
-1461,85,1186.3959,1467.561552,1242.839583,1308.419187,458.0679234,458.0679234,2645.865465,24862.92688,1,1,1,1,1,1,1
-1461.5,85,1186.3959,1467.561552,1162.510869,1378.624949,458.0679234,458.0679234,2636.703031,24776.97149,1,1,1,1,1,1,1
-1462,85,1186.3959,1467.561552,1140.442993,1393.874769,458.0679234,458.0679234,2630.531577,24719.07581,1,1,1,1,1,1,1
-1462.5,85,1186.3959,1467.561552,1156.325674,1369.164964,458.0679234,458.0679234,2622.541854,24644.12238,1,1,1,1,1,1,1
-1463,85,1186.3959,1467.561552,1184.340871,1325.998117,458.0679234,458.0679234,2608.827671,24515.46624,1,1,1,1,1,1,1
-1463.5,85,1186.3959,1467.561552,1228.821019,1255.54322,458.0679234,458.0679234,2585.318048,24294.91646,1,1,1,1,1,1,1
-1464,85,1186.3959,1467.561552,1194.724629,1272.26952,458.0679234,458.0679234,2569.595452,24147.41847,1,1,1,1,1,1,1
-1464.5,85,1186.3959,1467.561552,1160.920921,1297.946773,458.0679234,458.0679234,2562.239852,24078.41367,1,1,1,1,1,1,1
-1465,85,1186.3959,1467.561552,1142.092096,1308.386196,458.0679234,458.0679234,2554.646472,24007.17835,1,1,1,1,1,1,1
-1465.5,85,1186.3959,1467.561552,1189.219315,1244.882529,458.0679234,458.0679234,2539.824021,23868.12527,1,1,1,1,1,1,1
-1466,85,1186.3959,1467.561552,1125.474113,1302.546859,458.0679234,458.0679234,2534.320354,23816.494,1,1,1,1,1,1,1
-1466.5,85,1186.3959,1467.561552,1130.547535,1311.867151,458.0679234,458.0679234,2547.348587,23938.7154,1,1,1,1,1,1,1
-1467,85,1186.3959,1467.561552,1201.110765,1256.987032,458.0679234,458.0679234,2561.54339,24071.88033,1,1,1,1,1,1,1
-1467.5,85,1186.3959,1467.561552,1164.938129,1306.451095,458.0679234,458.0679234,2573.57303,24184.73326,1,1,1,1,1,1,1
-1468,85,1186.3959,1467.561552,1123.11417,1355.112228,458.0679234,458.0679234,2579.76233,24242.79669,1,1,1,1,1,1,1
-1468.5,85,1186.3959,1467.561552,1119.08596,1346.252349,458.0679234,458.0679234,2568.097705,24133.36801,1,1,1,1,1,1,1
-1469,85,1186.3959,1467.561552,1173.176648,1278.206228,458.0679234,458.0679234,2555.465834,24014.86511,1,1,1,1,1,1,1
-1469.5,85,1186.3959,1467.561552,1156.305788,1287.258196,458.0679234,458.0679234,2548.388652,23948.47227,1,1,1,1,1,1,1
-1470,85,1186.3959,1467.561552,1165.616198,1273.598281,458.0679234,458.0679234,2544.451925,23911.54103,1,1,1,1,1,1,1
-1470.5,85,1186.3959,1467.561552,1166.644306,1283.976669,458.0679234,458.0679234,2554.775868,24008.39223,1,1,1,1,1,1,1
-1471,85,1186.3959,1467.561552,1220.381895,1246.540793,458.0679234,458.0679234,2569.530398,24146.80846,1,1,1,1,1,1,1
-1471.5,85,1186.3959,1467.561552,1200.094324,1278.156414,458.0679234,458.0679234,2579.783523,24242.99543,1,1,1,1,1,1,1
-1472,85,1186.3959,1467.561552,1134.803818,1351.728171,458.0679234,458.0679234,2587.280038,24313.32241,1,1,1,1,1,1,1
-1472.5,85,1186.3959,1467.561552,1161.227684,1332.043338,458.0679234,458.0679234,2593.380095,24370.548,1,1,1,1,1,1,1
-1473,85,1186.3959,1467.561552,1152.931207,1341.878848,458.0679234,458.0679234,2594.772849,24383.61422,1,1,1,1,1,1,1
-1473.5,85,1186.3959,1467.561552,1125.793278,1342.632574,458.0679234,458.0679234,2570.891533,24159.57765,1,1,1,1,1,1,1
-1474,85,1186.3959,1467.561552,1121.626501,1322.395692,458.0679234,458.0679234,2548.803537,23952.36463,1,1,1,1,1,1,1
-1474.5,85,1186.3959,1467.561552,1115.686881,1330.657149,458.0679234,458.0679234,2550.90437,23972.07289,1,1,1,1,1,1,1
-1475,85,1186.3959,1467.561552,1202.04261,1249.019423,458.0679234,458.0679234,2555.174712,24012.13426,1,1,1,1,1,1,1
-1475.5,85,1186.3959,1467.561552,1148.749573,1303.077368,458.0679234,458.0679234,2555.8671,24018.6298,1,1,1,1,1,1,1
-1476,85,1186.3959,1467.561552,1185.713316,1266.113625,458.0679234,458.0679234,2555.8671,24018.6298,1,1,1,1,1,1,1
-1476.5,85,1186.3959,1467.561552,1133.876791,1317.950151,458.0679234,458.0679234,2555.8671,24018.6298,1,1,1,1,1,1,1
-1477,85,1186.3959,1467.561552,1118.39558,1339.616684,458.0679234,458.0679234,2561.465418,24071.1487,1,1,1,1,1,1,1
-1477.5,85,1186.3959,1467.561552,1194.305738,1280.51045,458.0679234,458.0679234,2576.675395,24213.83725,1,1,1,1,1,1,1
-1478,85,1186.3959,1467.561552,1192.637866,1301.48907,458.0679234,458.0679234,2594.154485,24377.81304,1,1,1,1,1,1,1
-1478.5,85,1186.3959,1467.561552,1193.885876,1319.558074,458.0679234,458.0679234,2611.638664,24541.83663,1,1,1,1,1,1,1
-1479,85,1186.3959,1467.561552,1253.806018,1280.643222,458.0679234,458.0679234,2630.649855,24720.18555,1,1,1,1,1,1,1
-1479.5,85,1186.3959,1467.561552,1209.995585,1351.400927,458.0679234,458.0679234,2655.0409,24949.00361,1,1,1,1,1,1,1
-1480,85,1186.3959,1467.561552,1277.764072,1316.080822,458.0679234,458.0679234,2684.410742,25224.52969,1,1,1,1,1,1,1
-1480.5,85,1186.3959,1467.561552,1243.021007,1388.403473,458.0679234,458.0679234,2718.424863,25543.62473,1,1,1,1,1,1,1
-1481,85,1186.3959,1467.561552,1209.01147,1458.921431,458.0679234,458.0679234,2751.46925,25853.62201,1,1,1,1,1,1,1
-1481.5,85,1186.3959,1467.561552,1283.161707,1403.698023,458.0679234,458.0679234,2768.599344,26014.3241,1,1,1,1,1,1,1
-1482,85,1186.3959,1467.561552,1254.240728,1441.201644,458.0679234,458.0679234,2776.368658,26087.21016,1,1,1,1,1,1,1
-1482.5,85,1186.3959,1467.561552,1230.101589,1467.09984,458.0679234,458.0679234,2777.960589,26102.14408,1,1,1,1,1,1,1
-1483,85,1186.3959,1467.561552,1278.990675,1415.52419,458.0679234,458.0679234,2775.529221,26079.33451,1,1,1,1,1,1,1
-1483.5,85,1186.3959,1467.561552,1258.861421,1429.841271,458.0679234,458.0679234,2770.26818,26029.97937,1,1,1,1,1,1,1
-1484,85,1186.3959,1467.561552,1251.121,1439.461796,458.0679234,458.0679234,2771.970478,26045.94901,1,1,1,1,1,1,1
-1484.5,85,1186.3959,1467.561552,1308.561133,1435.539774,458.0679234,458.0679234,2820.41032,26500.37514,1,1,1,1,1,1,1
-1485,85,1186.3959,1467.561552,1400.287319,1423.810647,458.0679234,458.0679234,2886.490664,27121.06569,1,1,1,1,1,1,1
-1485.5,85,1186.3959,1467.561552,1424.077603,1493.42585,458.0679234,458.0679234,2965.374693,27862.38968,1,1,1,1,1,1,1
-1486,85,1186.3959,1467.561552,1405.42681,1590.055411,458.0679234,458.0679234,3031.885649,28487.46278,1,1,1,1,1,1,1
-1486.5,85,1186.3959,1467.561552,1409.266714,1647.378769,458.0679234,458.0679234,3084.052935,28977.73321,1,1,1,1,1,1,1
-1487,85,1186.3959,1467.561552,1501.015614,1602.341368,458.0679234,458.0679234,3123.894648,29352.16713,1,1,1,1,1,1,1
-1487.5,85,1186.3959,1467.561552,1456.279045,1639.825315,458.0679234,458.0679234,3117.708985,29294.0342,1,1,1,1,1,1,1
-1488,85,1186.3959,1467.561552,1417.643562,1657.025783,458.0679234,458.0679234,3099.427012,29122.21902,1,1,1,1,1,1,1
-1488.5,85,1186.3959,1467.561552,1384.943209,1678.163022,458.0679234,458.0679234,3089.564867,29029.53415,1,1,1,1,1,1,1
-1489,85,1186.3959,1467.561552,1423.522078,1658.868999,458.0679234,458.0679234,3106.012827,29184.11298,1,1,1,1,1,1,1
-1489.5,85,1186.3959,1467.561552,1514.094758,1609.48582,458.0679234,458.0679234,3141.145148,29514.2882,1,1,1,1,1,1,1
-1490,85,1186.3959,1467.561552,1462.030054,1727.548246,458.0679234,458.0679234,3197.4375,30043.3265,1,1,1,1,1,1,1
-1490.5,85,1186.3959,1467.561552,1620.217133,1715.064781,458.0679234,458.0679234,3320.248441,31198.02937,1,1,1,1,1,1,1
-1491,85,1186.3959,1467.561552,1632.279736,1861.477109,458.0679234,458.0679234,3455.268761,32468.48945,1,1,1,1,1,1,1
-1491.5,85,1186.3959,1467.561552,1641.251466,1989.263291,458.0679234,458.0679234,3572.189126,33568.85912,1,1,1,1,1,1,1
-1492,85,1186.3959,1467.561552,1810.487204,1888.487085,458.0679234,458.0679234,3630.717798,34119.68849,1,1,1,1,1,1,1
-1492.5,85,1186.3959,1467.561552,1818.550034,1906.575054,458.0679234,458.0679234,3653.075573,34330.10358,1,1,1,1,1,1,1
-1493,85,1186.3959,1467.561552,1708.47523,2026.297278,458.0679234,458.0679234,3661.323611,34407.72821,1,1,1,1,1,1,1
-1493.5,85,1186.3959,1467.561552,1700.930799,2014.061656,458.0679234,458.0679234,3644.412825,34248.57613,1,1,1,1,1,1,1
-1494,85,1186.3959,1467.561552,1684.88236,2009.465605,458.0679234,458.0679234,3626.762396,34082.4628,1,1,1,1,1,1,1
-1494.5,85,1186.3959,1467.561552,1748.617433,1935.31344,458.0679234,458.0679234,3617.856031,33998.64257,1,1,1,1,1,1,1
-1495,85,1186.3959,1467.561552,1786.80027,1905.417247,458.0679234,458.0679234,3624.940939,34065.32078,1,1,1,1,1,1,1
-1495.5,85,1186.3959,1467.561552,1784.800515,1925.328064,458.0679234,458.0679234,3640.253792,34209.43425,1,1,1,1,1,1,1
-1496,85,1186.3959,1467.561552,1776.561388,1955.232299,458.0679234,458.0679234,3658.77716,34383.76229,1,1,1,1,1,1,1
-1496.5,85,1186.3959,1467.561552,1785.589667,1973.546475,458.0679234,458.0679234,3682.153247,34603.76151,1,1,1,1,1,1,1
-1497,85,1186.3959,1467.561552,1797.203522,1986.38284,458.0679234,458.0679234,3702.618899,34796.28632,1,1,1,1,1,1,1
-1497.5,85,1186.3959,1467.561552,1761.838495,2041.90651,458.0679234,458.0679234,3718.753168,34947.92263,1,1,1,1,1,1,1
-1498,85,1186.3959,1467.561552,1833.885795,1989.16925,458.0679234,458.0679234,3736.145081,35111.20229,1,1,1,1,1,1,1
-1498.5,85,1186.3959,1467.561552,1787.89527,2054.488302,458.0679234,458.0679234,3755.240749,35290.38493,1,1,1,1,1,1,1
-1499,85,1186.3959,1467.561552,1773.822979,2082.313932,458.0679234,458.0679234,3769.041028,35419.86843,1,1,1,1,1,1,1
-1499.5,85,1186.3959,1467.561552,1790.091699,2068.413942,458.0679234,458.0679234,3771.417523,35442.16632,1,1,1,1,1,1,1
-1500,85,1186.3959,1467.561552,1754.853393,2083.887702,458.0679234,458.0679234,3751.584337,35256.07847,1,1,1,1,1,1,1
-1500.5,85,1186.3959,1467.561552,1805.017312,1998.002169,458.0679234,458.0679234,3719.039082,34950.55544,1,1,1,1,1,1,1
-1501,85,1186.3959,1467.561552,1720.860387,2049.337242,458.0679234,458.0679234,3691.405778,34690.80052,1,1,1,1,1,1,1
-1501.5,85,1186.3959,1467.561552,1840.56556,1920.804122,458.0679234,458.0679234,3684.062645,34621.73112,1,1,1,1,1,1,1
-1502,85,1186.3959,1467.561552,1863.983303,1893.540552,458.0679234,458.0679234,3680.774999,34590.79033,1,1,1,1,1,1,1
-1502.5,85,1186.3959,1467.561552,1826.469306,1922.933061,458.0679234,458.0679234,3673.831997,34525.44797,1,1,1,1,1,1,1
-1503,85,1186.3959,1467.561552,1832.903122,1915.868091,458.0679234,458.0679234,3673.292283,34520.36815,1,1,1,1,1,1,1
-1503.5,85,1186.3959,1467.561552,1824.784365,1929.417265,458.0679234,458.0679234,3677.934488,34564.05756,1,1,1,1,1,1,1
-1504,85,1186.3959,1467.561552,1718.137865,2037.670492,458.0679234,458.0679234,3679.30741,34576.97834,1,1,1,1,1,1,1
-1504.5,85,1186.3959,1467.561552,1801.372312,1940.265206,458.0679234,458.0679234,3667.192866,34462.96466,1,1,1,1,1,1,1
-1505,85,1186.3959,1467.561552,1746.710598,1998.514954,458.0679234,458.0679234,3670.260655,34491.83683,1,1,1,1,1,1,1
-1505.5,85,1186.3959,1467.561552,1781.629335,1994.398071,458.0679234,458.0679234,3696.396027,34737.76653,1,1,1,1,1,1,1
-1506,85,1186.3959,1467.561552,1843.712262,1943.661088,458.0679234,458.0679234,3705.813732,34826.34572,1,1,1,1,1,1,1
-1506.5,85,1186.3959,1467.561552,1764.533273,2018.734308,458.0679234,458.0679234,3702.569039,34795.85883,1,1,1,1,1,1,1
-1507,85,1186.3959,1467.561552,1752.877658,2025.421605,458.0679234,458.0679234,3698.509739,34757.69159,1,1,1,1,1,1,1
-1507.5,85,1186.3959,1467.561552,1756.374522,2020.774988,458.0679234,458.0679234,3697.5536,34748.69849,1,1,1,1,1,1,1
-1508,85,1186.3959,1467.561552,1707.912546,2060.606062,458.0679234,458.0679234,3690.175203,34679.25814,1,1,1,1,1,1,1
-1508.5,85,1186.3959,1467.561552,1749.207928,2006.679251,458.0679234,458.0679234,3679.376235,34577.62609,1,1,1,1,1,1,1
-1509,85,1186.3959,1467.561552,1873.470285,1921.479872,458.0679234,458.0679234,3711.432229,34879.06051,1,1,1,1,1,1,1
-1509.5,85,1186.3959,1467.561552,1930.997888,1930.997888,458.0679234,458.0679234,3775.290876,35478.49131,1,1,1,1,1,1,1
-1510,85,1186.3959,1467.561552,1895.018144,2018.49484,458.0679234,458.0679234,3826.614448,35960.06197,1,1,1,1,1,1,1
-1510.5,85,1186.3959,1467.561552,1914.589504,2009.806732,458.0679234,458.0679234,3837.535826,36062.5337,1,1,1,1,1,1,1
-1511,85,1186.3959,1467.561552,1837.775575,2102.818729,458.0679234,458.0679234,3853.789777,36215.03894,1,1,1,1,1,1,1
-1511.5,85,1186.3959,1467.561552,1904.545224,2065.705476,458.0679234,458.0679234,3883.549327,36494.26341,1,1,1,1,1,1,1
-1512,85,1186.3959,1467.561552,1894.287836,2109.050492,458.0679234,458.0679234,3916.7514,36805.78794,1,1,1,1,1,1,1
-1512.5,85,1186.3959,1467.561552,1914.922182,2125.493217,458.0679234,458.0679234,3953.956194,37154.86828,1,1,1,1,1,1,1
-1513,85,1186.3959,1467.561552,1871.764318,2204.062839,458.0679234,458.0679234,3989.490353,37488.27398,1,1,1,1,1,1,1
-1513.5,85,1186.3959,1467.561552,1980.897119,2123.931701,458.0679234,458.0679234,4018.591939,37761.32492,1,1,1,1,1,1,1
-1514,85,1186.3959,1467.561552,1877.09425,2216.324283,458.0679234,458.0679234,4007.142429,37653.89752,1,1,1,1,1,1,1
-1514.5,85,1186.3959,1467.561552,1887.614135,2165.680595,458.0679234,458.0679234,3966.879683,37276.12532,1,1,1,1,1,1,1
-1515,85,1186.3959,1467.561552,1959.736831,2042.868621,458.0679234,458.0679234,3916.01574,36798.88546,1,1,1,1,1,1,1
-1515.5,85,1186.3959,1467.561552,1853.959552,2078.148173,458.0679234,458.0679234,3845.274577,36135.1439,1,1,1,1,1,1,1
-1516,85,1186.3959,1467.561552,1876.999594,1996.208546,458.0679234,458.0679234,3786.171396,35580.59782,1,1,1,1,1,1,1
-1516.5,85,1186.3959,1467.561552,1896.71364,1943.347195,458.0679234,458.0679234,3752.909859,35268.51522,1,1,1,1,1,1,1
-1517,85,1186.3959,1467.561552,1762.906029,2072.917301,458.0679234,458.0679234,3748.657574,35228.61707,1,1,1,1,1,1,1
-1517.5,85,1186.3959,1467.561552,1730.873504,2115.512061,458.0679234,458.0679234,3759.25566,35328.05596,1,1,1,1,1,1,1
-1518,85,1186.3959,1467.561552,1748.72497,2103.644574,458.0679234,458.0679234,3765.260715,35384.39968,1,1,1,1,1,1,1
-1518.5,85,1186.3959,1467.561552,1867.408104,1971.518355,458.0679234,458.0679234,3751.77127,35257.83202,1,1,1,1,1,1,1
-1519,85,1186.3959,1467.561552,1834.702246,1993.402197,458.0679234,458.0679234,3740.910815,35155.93172,1,1,1,1,1,1,1
-1519.5,85,1186.3959,1467.561552,1847.560892,1978.662614,458.0679234,458.0679234,3739.0231,35138.2199,1,1,1,1,1,1,1
-1520,85,1186.3959,1467.561552,1795.508947,2030.714559,458.0679234,458.0679234,3739.0231,35138.2199,1,1,1,1,1,1,1
-1520.5,85,1186.3959,1467.561552,1854.455747,1971.767759,458.0679234,458.0679234,3739.0231,35138.2199,1,1,1,1,1,1,1
-1521,85,1186.3959,1467.561552,1903.715048,1920.030065,458.0679234,458.0679234,3736.536812,35114.89215,1,1,1,1,1,1,1
-1521.5,85,1186.3959,1467.561552,1877.752506,1937.761194,458.0679234,458.0679234,3728.445071,35038.9621,1,1,1,1,1,1,1
-1522,85,1186.3959,1467.561552,1755.91743,2040.700928,458.0679234,458.0679234,3713.120141,34894.99575,1,1,1,1,1,1,1
-1522.5,85,1186.3959,1467.561552,1730.539637,2040.290724,458.0679234,458.0679234,3691.98442,34696.25355,1,1,1,1,1,1,1
-1523,85,1186.3959,1467.561552,1698.694015,2058.343463,458.0679234,458.0679234,3680.359606,34586.88114,1,1,1,1,1,1,1
-1523.5,85,1186.3959,1467.561552,1731.646595,2018.148312,458.0679234,458.0679234,3674.167154,34528.60199,1,1,1,1,1,1,1
-1524,85,1186.3959,1467.561552,1827.049981,1912.394249,458.0679234,458.0679234,3665.318373,34445.32371,1,1,1,1,1,1,1
-1524.5,85,1186.3959,1467.561552,1769.605883,1953.133718,458.0679234,458.0679234,3651.036491,34310.91289,1,1,1,1,1,1,1
-1525,85,1186.3959,1467.561552,1844.975839,1892.547654,458.0679234,458.0679234,3663.675231,34429.85998,1,1,1,1,1,1,1
-1525.5,85,1186.3959,1467.561552,1844.311441,1933.7147,458.0679234,458.0679234,3697.910823,34751.98664,1,1,1,1,1,1,1
-1526,85,1186.3959,1467.561552,1843.888926,1989.134638,458.0679234,458.0679234,3747.066774,35213.63202,1,1,1,1,1,1,1
-1526.5,85,1186.3959,1467.561552,1931.017442,1994.871016,458.0679234,458.0679234,3839.033721,36076.5878,1,1,1,1,1,1,1
-1527,85,1186.3959,1467.561552,2007.376214,2047.929269,458.0679234,458.0679234,3968.898402,37295.06631,1,1,1,1,1,1,1
-1527.5,85,1186.3959,1467.561552,2004.772667,2214.381598,458.0679234,458.0679234,4133.312595,38837.71189,1,1,1,1,1,1,1
-1528,85,1186.3959,1467.561552,1974.941617,2373.492855,458.0679234,458.0679234,4260.774204,40034.81185,1,1,1,1,1,1,1
-1528.5,85,1186.3959,1467.561552,2055.041653,2394.481675,458.0679234,458.0679234,4364.951976,41014.21429,1,1,1,1,1,1,1
-1529,84.99669544,1186.349872,1467.561552,2094.626963,2409.947152,458.050115,458.050115,4422.185935,41552.38739,1,1,1,1,1,1,1
-1529.5,84.9817191,1186.141211,1467.561552,2069.92091,2458.189292,457.969407,457.969407,4445.386337,41770.54202,1,1,1,1,1,1,1
-1530,84.94715009,1185.658524,1467.561552,2082.800682,2455.546813,457.7831134,457.7831134,4453.389906,41845.8016,1,1,1,1,1,1,1
-1530.5,84.88849052,1184.839218,1467.561552,2054.229321,2489.142746,457.466995,457.466995,4454.540559,41856.62466,1,1,1,1,1,1,1
-1531,84.80644534,1183.694256,1467.561552,2187.987708,2356.795482,457.0248507,457.0248507,4450.865369,41822.07103,1,1,1,1,1,1,1
-1531.5,84.70504741,1182.279489,1467.561552,2102.31729,2443.039294,456.4784137,456.4784137,4445.423797,41770.9088,1,1,1,1,1,1,1
-1532,84.58545156,1180.610222,1467.561552,2228.868019,2317.079665,455.8339076,455.8339076,4439.003383,41710.54364,1,1,1,1,1,1,1
-1532.5,84.44518189,1178.651778,1467.561552,2148.63466,2398.028554,455.0779895,455.0779895,4431.470894,41639.72274,1,1,1,1,1,1,1
-1533,84.28239854,1176.379849,1467.561552,2096.720177,2450.623679,454.2007444,454.2007444,4422.732339,41557.56242,1,1,1,1,1,1,1
-1533.5,84.09812549,1173.808299,1467.561552,2180.905582,2367.033649,453.2076906,453.2076906,4412.841749,41464.57045,1,1,1,1,1,1,1
-1534,83.89473923,1170.968835,1467.561552,2099.50177,2448.894968,452.1116351,452.1116351,4401.920483,41361.88847,1,1,1,1,1,1,1
-1534.5,83.6743127,1167.892445,1467.561552,2193.705563,2355.075124,450.9237489,450.9237489,4390.088002,41250.6384,1,1,1,1,1,1,1
-1535,83.43654222,1164.573433,1467.561552,2123.00742,2426.221548,449.6423956,449.6423956,4377.322194,41130.61393,1,1,1,1,1,1,1
-1535.5,83.17730379,1160.955332,1467.561552,2145.903254,2403.974324,448.2453508,448.2453508,4363.406382,40999.77662,1,1,1,1,1,1,1
-1536,82.89363498,1156.99557,1467.561552,2073.411745,2477.093879,446.7166498,446.7166498,4348.176316,40856.5824,1,1,1,1,1,1,1
-1536.5,82.58620405,1152.705048,1467.561552,2083.118919,2467.915305,445.059894,445.059894,4331.673905,40701.42624,1,1,1,1,1,1,1
-1537,82.25949281,1148.144701,1467.561552,2198.785851,2352.491908,443.2992359,443.2992359,4314.133838,40536.51364,1,1,1,1,1,1,1
-1537.5,81.9187173,1143.388851,1467.561552,2107.7746,2443.581996,441.462785,441.462785,4295.841662,40364.52938,1,1,1,1,1,1,1
-1538,81.56578016,1138.462737,1467.561552,2175.503766,2375.916306,439.5607946,439.5607946,4276.894757,40186.38962,1,1,1,1,1,1,1
-1538.5,81.19936787,1133.348291,1467.561552,2242.274665,2309.28033,437.5861861,437.5861861,4257.223356,40001.43824,1,1,1,1,1,1,1
-1539,80.81747618,1128.017575,1467.561552,2149.111787,2402.619416,435.5281587,435.5281587,4236.720307,39808.66747,1,1,1,1,1,1,1
-1539.5,80.41850148,1122.449004,1467.561552,2237.579347,2314.359335,433.3780703,433.3780703,4215.302294,39607.2939,1,1,1,1,1,1,1
-1540,80.00218773,1116.638141,1467.561552,2241.607236,2310.474603,431.1345412,431.1345412,4192.952589,39397.16038,1,1,1,1,1,1,1
-1540.5,79.56961003,1110.600736,1467.561552,2161.936812,2390.216745,428.8033651,428.8033651,4169.731234,39178.83217,1,1,1,1,1,1,1
-1541,79.12149326,1104.346148,1467.561552,2242.075571,2310.112951,426.3884484,426.3884484,4145.674664,38952.6508,1,1,1,1,1,1,1
-1541.5,78.65758419,1097.871138,1467.561552,2156.940999,2395.281893,423.8884264,423.8884264,4122.157302,38731.58482,1,1,1,1,1,1,1
-1542,78.17732146,1091.168145,1467.561552,2218.526197,2333.707214,421.3002741,421.3002741,4099.322002,38516.98241,1,1,1,1,1,1,1
-1542.5,77.68100327,1084.240772,1467.561552,2219.563392,2332.623649,418.6255983,418.6255983,4076.076261,38298.53617,1,1,1,1,1,1,1
-1543,77.16923187,1077.097619,1467.561552,2123.722395,2428.36748,415.8676446,415.8676446,4052.106426,38073.28555,1,1,1,1,1,1,1
-1543.5,76.64260592,1069.746388,1467.561552,2177.540385,2374.390204,413.0296393,413.0296393,4027.438386,37841.47356,1,1,1,1,1,1,1
-1544,76.10136004,1062.191832,1467.561552,2224.245718,2327.499407,410.1128466,410.1128466,4002.088129,37603.25043,1,1,1,1,1,1,1
-1544.5,75.54516603,1054.42882,1467.561552,2263.388322,2288.16463,407.1154979,407.1154979,3976.038046,37358.45145,1,1,1,1,1,1,1
-1545,74.9735275,1046.450703,1467.561552,2209.758396,2341.571898,404.0349182,404.0349182,3949.266442,37106.8716,1,1,1,1,1,1,1
-1545.5,74.38516882,1038.238595,1467.561552,2119.013409,2432.15442,400.8642331,400.8642331,3921.709566,36847.91241,1,1,1,1,1,1,1
-1546,73.77701882,1029.750437,1467.561552,2093.500388,2457.587412,397.5868918,397.5868918,3893.226487,36580.2494,1,1,1,1,1,1,1
-1546.5,73.14728606,1020.960493,1467.561552,2077.250931,2473.715769,394.1932403,394.1932403,3863.730564,36303.06863,1,1,1,1,1,1,1
-1547,72.49602933,1011.870664,1467.561552,2086.690803,2464.079979,390.6835954,390.6835954,3833.228382,36016.43174,1,1,1,1,1,1,1
-1547.5,71.82365927,1002.486415,1467.561552,2077.248434,2473.258838,387.06017,387.06017,3801.809576,35721.1821,1,1,1,1,1,1,1
-1548,71.13068794,992.8134159,1467.561552,2102.071646,2448.094059,383.3257237,383.3257237,3771.404512,35435.48826,1,1,1,1,1,1,1
-1548.5,70.41450386,982.8173402,1467.561552,2210.265013,2339.68614,379.4661831,379.4661831,3740.817828,35148.1011,1,1,1,1,1,1,1
-1549,69.66993521,972.4254298,1467.561552,2174.00595,2375.857397,375.453677,375.453677,3709.019892,34849.33294,1,1,1,1,1,1,1
-1549.5,68.89633755,961.6280654,1467.561552,2169.301024,2380.239489,371.2847326,371.2847326,3675.981152,34538.90619,1,1,1,1,1,1,1
-1550,68.09906103,950.499431,1467.561552,2137.345596,2411.539822,366.988182,366.988182,3641.928955,34218.9577,1,1,1,1,1,1,1
-1550.5,67.28420928,939.1257076,1467.561552,2114.789543,2433.144959,362.5969179,362.5969179,3607.126796,33891.9622,1,1,1,1,1,1,1
-1551,66.45768927,927.5895106,1467.561552,2144.379742,2402.302264,358.1427731,358.1427731,3571.827412,33560.29506,1,1,1,1,1,1,1
-1551.5,65.62508458,915.9686502,1467.561552,2233.655154,2311.533622,353.6558378,353.6558378,3536.26899,33226.19404,1,1,1,1,1,1,1
-1552,64.79193402,904.339988,1467.561552,2168.191917,2375.21525,349.1659608,349.1659608,3501.392335,32898.49882,1,1,1,1,1,1,1
-1552.5,63.962851,892.7679021,1467.561552,2155.682426,2385.783114,344.6980039,344.6980039,3468.367129,32588.19948,1,1,1,1,1,1,1
-1553,63.13949708,881.275857,1467.561552,2092.048915,2447.400083,340.2609213,340.2609213,3436.280037,32286.71451,1,1,1,1,1,1,1
-1553.5,62.32258871,869.8735701,1467.561552,2084.801214,2452.575061,335.858574,335.858574,3404.443724,31987.58558,1,1,1,1,1,1,1
-1554,61.51266445,858.5686799,1467.561552,2108.887032,2426.353897,331.4938643,331.4938643,3372.879428,31691.01284,1,1,1,1,1,1,1
-1554.5,60.71021689,847.3683279,1467.561552,2205.981061,2327.067229,327.1694468,327.1694468,3346.031228,31438.75172,1,1,1,1,1,1,1
-1555,59.76411832,875.8577439,1467.561552,834.325031,827.0940818,322.0708891,322.0708891,1606.921138,15098.36336,1,1,1,1,1,1,1
-1555.5,58.58519774,967.1760041,1467.561552,-82.87766537,-88.64695165,315.7176456,315.7176456,546.7667722,5137.329438,1,1,1,1,1,1,1
-1556,57.47091741,1030.711343,1467.561552,1250.593737,1357.022205,309.7127505,309.7127505,1968.968597,18500.22008,1,1,1,1,1,1,1
-1556.5,56.65839258,1021.791851,1467.561552,2607.861811,2752.790493,305.3340263,305.3340263,3518.222916,33056.74005,1,1,1,1,1,1,1
-1557,56.05095236,1001.391693,1467.561552,3023.812641,3303.091893,302.06051,302.06051,4196.994139,39434.27178,1,1,1,1,1,1,1
-1557.5,55.5219263,991.9394432,1467.561552,3203.490829,3529.062132,299.2095704,299.2095704,4485.70861,42146.97039,1,1,1,1,1,1,1
-1558,54.81203526,1020.82888,1467.561552,1372.229275,1480.164801,295.3839432,295.3839432,2313.386861,21736.19737,1,1,1,1,1,1,1
-1558.5,53.74479229,1114.3668,1467.561552,-87.79446264,-95.80123667,289.6325341,289.6325341,625.5172612,5877.256209,1,1,1,1,1,1,1
-1559,52.69990252,1183.383387,1467.561552,1467.723875,1730.283614,284.0015872,284.0015872,2188.166025,20561.52358,1,1,1,1,1,1,1
-1559.5,52.02901794,1174.624907,1467.561552,3315.354334,3576.681652,280.3861671,280.3861671,4079.463104,38333.51636,1,1,1,1,1,1,1
-1560,51.61897463,1152.763144,1467.561552,3897.509644,4158.674861,278.1764296,278.1764296,4836.753204,45448.25465,1,1,1,1,1,1,1
-1560.5,51.29925435,1145.62336,1467.561552,3949.46867,4609.748103,276.453446,276.453446,5147.000087,48362.21278,1,1,1,1,1,1,1
-1561,51.01730989,1139.326197,1467.561552,4104.84351,4652.753554,274.9340376,274.9340376,5273.942199,49554.47074,1,1,1,1,1,1,1
-1561.5,50.75020172,1133.361606,1467.561552,4215.020211,4620.600719,273.4945825,273.4945825,5306.860333,49863.65208,1,1,1,1,1,1,1
-1562,50.48978404,1127.546689,1467.561552,4069.207364,4787.023729,272.0911827,272.0911827,5297.885689,49779.27196,1,1,1,1,1,1,1
-1562.5,50.23231171,1121.796503,1467.561552,4193.597709,4661.65605,270.7036554,270.7036554,5274.175696,49556.44179,1,1,1,1,1,1,1
-1563,49.97469761,1116.043172,1467.561552,4313.759138,4540.760316,269.3153642,269.3153642,5250.452634,49333.48856,1,1,1,1,1,1,1
-1563.5,49.71548755,1110.25477,1467.561552,4203.901374,4649.889839,267.9184723,267.9184723,5226.585089,49109.1775,1,1,1,1,1,1,1
-1564,49.45572164,1104.453063,1467.561552,4275.040073,4577.795465,266.5185849,266.5185849,5202.662587,48884.3505,1,1,1,1,1,1,1
-1564.5,49.19737738,1098.683669,1467.561552,4358.860929,4492.825185,265.1263587,265.1263587,5178.873157,48660.77403,1,1,1,1,1,1,1
-1565,48.94155154,1092.971118,1467.561552,4291.552891,4558.96909,263.7477045,263.7477045,5155.318355,48439.40212,1,1,1,1,1,1,1
-1565.5,48.688232,1087.313105,1467.561552,4337.634276,4511.737456,262.3825568,262.3825568,5131.988473,48220.14396,1,1,1,1,1,1,1
-1566,48.43707415,1081.703761,1467.561552,4379.38162,4468.864579,261.0290585,261.0290585,5108.859064,48002.77021,1,1,1,1,1,1,1
-1566.5,48.1878301,1076.137706,1467.561552,4290.598629,4556.55497,259.6858737,259.6858737,5085.908151,47787.07408,1,1,1,1,1,1,1
-1567,47.93967602,1070.595781,1467.561552,4334.713538,4511.469467,258.3485629,258.3485629,5063.056884,47572.31416,1,1,1,1,1,1,1
-1567.5,47.69137217,1065.050512,1467.561552,4202.459983,4642.850949,257.0104449,257.0104449,5040.191886,47357.42562,1,1,1,1,1,1,1
-1568,47.44209952,1059.483984,1467.561552,4111.406129,4733.071592,255.667106,255.667106,5017.239139,47141.71223,1,1,1,1,1,1,1
-1568.5,46.95463308,1092.067085,1467.561552,2118.11719,2296.625484,253.0401326,253.0401326,2887.312699,27128.98554,1,1,1,1,1,1,1
-1569,45.99223748,1199.995017,1467.561552,-98.05912871,-101.0693188,247.8537496,247.8537496,714.0204512,6709.359434,1,1,1,1,1,1,1
-1569.5,44.99229226,1292.80365,1467.561552,1809.297737,1923.434366,242.4650104,242.4650104,2254.833704,21189.46826,1,1,1,1,1,1,1
-1570,44.47502206,1291.363085,1467.561552,4324.596386,4736.23158,239.6774235,239.6774235,4532.541601,42591.51569,1,1,1,1,1,1,1
-1570.5,44.31309594,1267.934577,1467.561552,4985.907488,5462.065877,238.8047981,238.8047981,5384.169663,50591.5249,1,1,1,1,1,1,1
-1571,44.25403856,1266.244899,1467.561552,5351.756745,5682.793245,238.4865358,238.4865358,5696.343336,53525.15541,1,1,1,1,1,1,1
-1571.5,44.23611666,1265.73231,1467.561552,5508.106447,5741.5001,238.3899541,238.3899541,5833.079864,54810.3716,1,1,1,1,1,1,1
-1572,44.23282214,1265.63743,1467.561552,5424.808483,5903.744099,238.3721998,238.3721998,5882.77974,55277.1913,1,1,1,1,1,1,1
-1572.5,44.23517886,1265.704357,1467.561552,5250.584756,6106.878,238.3849002,238.3849002,5901.459421,55452.6494,1,1,1,1,1,1,1
-1573,44.24062999,1265.861433,1467.561552,5364.564876,6003.300099,238.4142766,238.4142766,5908.866851,55522.23243,1,1,1,1,1,1,1
-1573.5,44.24784508,1266.06838,1467.561552,5353.648799,6017.951582,238.4531589,238.4531589,5912.234663,55553.87355,1,1,1,1,1,1,1
-1574,44.25563789,1266.290304,1467.561552,5362.505566,6010.47683,238.4951547,238.4951547,5914.154243,55571.91229,1,1,1,1,1,1,1
-1574.5,44.26363086,1266.517821,1467.561552,5358.967938,6014.491581,238.5382291,238.5382291,5915.554277,55585.07154,1,1,1,1,1,1,1
-1575,44.27219146,1266.762694,1467.561552,5148.734138,6224.73171,238.5843624,238.5843624,5916.808355,55596.86053,1,1,1,1,1,1,1
-1575.5,44.28198334,1267.04292,1467.561552,5170.328302,6202.857932,238.6371312,238.6371312,5918.108,55609.07836,1,1,1,1,1,1,1
-1576,44.29332288,1267.367912,1467.561552,5310.10837,6062.686226,238.6982404,238.6982404,5919.556446,55622.69548,1,1,1,1,1,1,1
-1576.5,44.30658584,1267.74846,1467.561552,5349.376362,6022.857518,238.7697149,238.7697149,5921.223878,55638.37196,1,1,1,1,1,1,1
-1577,44.32219584,1268.195504,1467.561552,5340.243525,6031.345063,238.8538377,238.8538377,5923.169612,55656.66511,1,1,1,1,1,1,1
-1577.5,44.33951456,1268.690277,1467.561552,5453.802876,5917.409684,238.9471689,238.9471689,5925.37054,55677.35715,1,1,1,1,1,1,1
-1578,44.35727195,1269.198309,1467.561552,5541.252927,5829.887422,239.0428641,239.0428641,5927.719568,55699.4408,1,1,1,1,1,1,1
-1578.5,44.3749755,1269.705541,1467.561552,5571.874896,5799.298362,239.1382691,239.1382691,5930.126603,55722.06914,1,1,1,1,1,1,1
-1579,44.39267904,1270.212065,1467.561552,5361.722158,6009.513155,239.2336741,239.2336741,5932.553108,55744.88047,1,1,1,1,1,1,1
-1579.5,44.41038258,1270.717989,1467.561552,5248.509693,6122.795912,239.3290791,239.3290791,5934.985034,55767.74247,1,1,1,1,1,1,1
-1580,44.42803987,1271.223359,1467.561552,5454.000445,5917.385689,239.4242349,239.4242349,5937.417219,55790.60681,1,1,1,1,1,1,1
-1580.5,44.44568966,1271.728182,1467.561552,5436.237539,5935.226695,239.5193502,239.5193502,5939.847734,55813.45593,1,1,1,1,1,1,1
-1581,44.46348578,1272.236664,1467.561552,5291.957518,6079.521512,239.6152541,239.6152541,5942.287303,55836.39007,1,1,1,1,1,1,1
-1581.5,44.48199138,1272.767179,1467.561552,5388.767671,5982.518518,239.7149814,239.7149814,5944.79019,55859.9194,1,1,1,1,1,1,1
-1582,44.50216813,1273.344575,1467.561552,5545.380419,5825.476661,239.8237146,239.8237146,5947.449306,55884.91785,1,1,1,1,1,1,1
-1582.5,44.52439938,1273.980242,1467.561552,5435.567121,5934.775575,239.9435196,239.9435196,5950.338822,55912.08305,1,1,1,1,1,1,1
-1583,44.54877291,1274.678108,1467.561552,5370.155755,5999.612046,240.0748694,240.0748694,5953.50124,55941.81385,1,1,1,1,1,1,1
-1583.5,44.57558742,1275.444648,1467.561552,5294.807653,6074.309823,240.2193737,240.2193737,5956.970672,55974.43115,1,1,1,1,1,1,1
-1584,44.6049102,1276.282523,1467.561552,5357.420634,6011.038503,240.3773952,240.3773952,5960.769362,56010.14407,1,1,1,1,1,1,1
-1584.5,44.63617315,1277.177702,1467.561552,5623.164705,5744.852246,240.5458723,240.5458723,5964.869542,56048.6908,1,1,1,1,1,1,1
-1585,44.66818298,1278.094114,1467.561552,5446.060351,5921.908301,240.7183743,240.7183743,5969.15865,56089.01267,1,1,1,1,1,1,1
-1585.5,44.6994012,1278.987827,1467.561552,5251.967841,6116.395081,240.8866104,240.8866104,5973.46458,56129.49151,1,1,1,1,1,1,1
-1586,44.72854886,1279.822693,1467.561552,5264.048294,6105.068988,241.0436881,241.0436881,5977.610933,56168.46937,1,1,1,1,1,1,1
-1586.5,44.75509894,1280.582062,1467.561552,5199.849083,6170.152062,241.1867674,241.1867674,5981.474325,56204.78697,1,1,1,1,1,1,1
-1587,44.77861856,1281.255055,1467.561552,5310.226139,6060.834529,241.3135155,241.3135155,5984.974408,56237.689,1,1,1,1,1,1,1
-1587.5,44.79901672,1281.83856,1467.561552,5322.160103,6049.920117,241.4234419,241.4234419,5988.069614,56266.7839,1,1,1,1,1,1,1
-1588,44.81796717,1282.380715,1467.561552,5310.947463,6061.522009,241.5255665,241.5255665,5990.872646,56293.13285,1,1,1,1,1,1,1
-1588.5,44.83795342,1282.952833,1467.561552,5481.472462,5890.766784,241.6332731,241.6332731,5993.633927,56319.09124,1,1,1,1,1,1,1
-1589,44.86060196,1283.600758,1467.561552,5545.495484,5826.062679,241.7553268,241.7553268,5996.594393,56346.92325,1,1,1,1,1,1,1
-1589.5,44.88912389,1284.415979,1467.561552,5540.856259,5828.789967,241.9090325,241.9090325,6000.105747,56379.93607,1,1,1,1,1,1,1
-1590,44.92697025,1285.498798,1467.561552,5596.42566,5770.575323,242.1129878,242.1129878,6004.600693,56422.19768,1,1,1,1,1,1,1
-1590.5,44.97243394,1286.800168,1467.561552,5519.302776,5845.918955,242.3579932,242.3579932,6010.141603,56474.29217,1,1,1,1,1,1,1
-1591,45.02168861,1288.209239,1467.561552,5291.401021,6072.835259,242.6234284,242.6234284,6016.434945,56533.45888,1,1,1,1,1,1,1
-1591.5,45.07311133,1289.680865,1467.561552,5250.522892,6113.135741,242.9005471,242.9005471,6023.211532,56597.16661,1,1,1,1,1,1,1
-1592,45.12549084,1291.179472,1467.561552,5287.464924,6076.143587,243.1828221,243.1828221,6030.260019,56663.42939,1,1,1,1,1,1,1
-1592.5,45.17635757,1292.635321,1467.561552,5254.354125,6110.010032,243.4569447,243.4569447,6037.30113,56729.6212,1,1,1,1,1,1,1
-1593,45.22294793,1293.968195,1467.561552,5445.854264,5920.046696,243.7080217,243.7080217,6043.990151,56792.50087,1,1,1,1,1,1,1
-1593.5,45.26359772,1295.13061,1467.561552,5546.614725,5821.204191,243.9270849,243.9270849,6050.043292,56849.40196,1,1,1,1,1,1,1
-1594,45.29807656,1296.116477,1467.561552,5350.138847,6019.65451,244.1128925,244.1128925,6055.324899,56899.04928,1,1,1,1,1,1,1
-1594.5,45.32697659,1296.943333,1467.561552,5445.81926,5925.768659,244.2686358,244.2686358,6059.832325,56941.41832,1,1,1,1,1,1,1
-1595,45.35233375,1297.668904,1467.561552,5498.176816,5874.490638,244.4052864,244.4052864,6063.728171,56978.03891,1,1,1,1,1,1,1
-1595.5,45.37726122,1298.382171,1467.561552,5288.385594,6084.486651,244.5396214,244.5396214,6067.334198,57011.93711,1,1,1,1,1,1,1
-1596,45.40357361,1299.135844,1467.561552,5369.035765,6003.647015,244.6814198,244.6814198,6070.941168,57045.84568,1,1,1,1,1,1,1
-1596.5,45.43262863,1299.968168,1467.561552,5296.965115,6074.960938,244.8379983,244.8379983,6074.777276,57081.90956,1,1,1,1,1,1,1
-1597,45.46677461,1300.944843,1467.561552,5278.384682,6092.087945,245.0220121,245.0220121,6079.1188,57122.72628,1,1,1,1,1,1,1
-1597.5,45.5069462,1302.093407,1467.561552,5430.12006,5938.806675,245.2384982,245.2384982,6084.163024,57170.14992,1,1,1,1,1,1,1
-1598,45.5522995,1303.391443,1467.561552,5264.652648,6102.930474,245.4829087,245.4829087,6089.929447,57224.36285,1,1,1,1,1,1,1
-1598.5,45.60226788,1304.821792,1467.561552,5168.899337,6197.449451,245.75219,245.75219,6096.370948,57284.92163,1,1,1,1,1,1,1
-1599,45.65645601,1306.372079,1467.561552,5309.197518,6056.102623,246.0442117,246.0442117,6103.430467,57351.2899,1,1,1,1,1,1,1
-1599.5,45.71469184,1308.038514,1467.561552,5452.183667,5912.058368,246.3580466,246.3580466,6111.073504,57423.14347,1,1,1,1,1,1,1
-1600,45.77838006,1309.860473,1467.561552,5592.276826,5770.441545,246.7012646,246.7012646,6119.396232,57501.38741,1,1,1,1,1,1,1
-1600.5,45.84931587,1311.889362,1467.561552,5653.244031,5707.564515,247.0835401,247.0835401,6128.588706,57587.80853,1,1,1,1,1,1,1
-1601,45.92984034,1314.193929,1467.561552,5595.051736,5763.038061,247.5174893,247.5174893,6138.927936,57685.01179,1,1,1,1,1,1,1
-1601.5,46.02670064,1316.966063,1467.561552,5426.814158,5926.316199,248.0394727,248.0394727,6151.073748,57799.20175,1,1,1,1,1,1,1
-1602,46.14507683,1320.353154,1467.561552,5249.273314,6098.196796,248.6774061,248.6774061,6165.738485,57937.07506,1,1,1,1,1,1,1
-1602.5,46.28017436,1324.218273,1467.561552,5218.100274,6125.595974,249.4054513,249.4054513,6182.839796,58097.85345,1,1,1,1,1,1,1
-1603,46.42357344,1328.322059,1467.561552,5409.552824,5932.357536,250.1782339,250.1782339,6201.629963,58274.50359,1,1,1,1,1,1,1
-1603.5,46.5702845,1332.519221,1467.561552,5531.350258,5810.115136,250.9688648,250.9688648,6221.357814,58459.96459,1,1,1,1,1,1,1
-1604,46.71757676,1336.733322,1467.561552,5416.441519,5925.418865,251.7626279,251.7626279,6241.494369,58649.26534,1,1,1,1,1,1,1
-1604.5,46.86009806,1340.812213,1467.561552,5527.277353,5817.025751,252.5306801,252.5306801,6261.390076,58836.29893,1,1,1,1,1,1,1
-1605,46.99097511,1344.557435,1467.561552,5451.496205,5896.87593,253.235981,253.235981,6280.201882,59013.13912,1,1,1,1,1,1,1
-1605.5,47.10961982,1347.95238,1467.561552,5249.873892,6102.203431,253.8753615,253.8753615,6297.532242,59176.05089,1,1,1,1,1,1,1
-1606,47.21900304,1351.082132,1467.561552,5336.17118,6019.085403,254.4648314,254.4648314,6313.482909,59325.99278,1,1,1,1,1,1,1
-1606.5,47.32134366,1354.009557,1467.561552,5451.031737,5906.719199,255.0163485,255.0163485,6328.296099,59465.24288,1,1,1,1,1,1,1
-1607,47.42040641,1356.843428,1467.561552,5368.531136,5990.43744,255.5502011,255.5502011,6342.390638,59597.73935,1,1,1,1,1,1,1
-1607.5,47.52154595,1359.73709,1467.561552,5168.641901,6190.03,256.0952455,256.0952455,6356.386476,59729.31061,1,1,1,1,1,1,1
-1608,47.62988322,1362.837482,1467.561552,5392.950722,5964.040651,256.6790788,256.6790788,6370.968016,59866.39149,1,1,1,1,1,1,1
-1608.5,47.74946089,1366.258692,1467.561552,5479.054569,5875.203748,257.3234869,257.3234869,6386.74543,60014.71738,1,1,1,1,1,1,1
-1609,47.88258598,1370.066999,1467.561552,5334.931725,6016.029037,258.0409027,258.0409027,6404.15247,60178.36494,1,1,1,1,1,1,1
-1609.5,48.02906384,1374.259422,1467.561552,5418.692974,5929.195713,258.8302769,258.8302769,6423.347318,60358.82004,1,1,1,1,1,1,1
-1610,48.18648618,1378.764962,1467.561552,5360.287666,5985.304148,259.6786313,259.6786313,6444.173888,60554.61339,1,1,1,1,1,1,1
-1610.5,48.3522462,1383.507881,1467.561552,5360.807235,5983.132492,260.5719178,260.5719178,6466.337551,60762.97475,1,1,1,1,1,1,1
-1611,48.52524737,1388.456816,1467.561552,5473.149513,5869.403548,261.504227,261.504227,6489.627278,60981.92102,1,1,1,1,1,1,1
-1611.5,48.70588245,1393.624856,1467.561552,5558.055764,5782.99923,262.4776756,262.4776756,6513.810868,61209.19872,1,1,1,1,1,1,1
-1612,48.89478309,1399.030266,1467.561552,5437.480009,5904.811677,263.4956677,263.4956677,6541.511278,61469.48004,1,1,1,1,1,1,1
-1612.5,48.98166166,1401.515845,1467.561552,4578.402086,4975.328479,263.9638593,263.9638593,5506.468202,51738.66516,1,1,1,1,1,1,1
-1613,49,1402.0408,1467.561552,4127.277181,4923.649318,264.0626852,264.0626852,5185.920212,48728.26729,1,1,1,1,1,1,1
-1613.5,49,1402.0408,1467.561552,4199.926493,4765.284714,264.0626852,264.0626852,5131.563743,48217.78288,1,1,1,1,1,1,1
-1614,49.02890196,1402.86737,1467.561552,4495.666146,4991.210175,264.2184389,264.2184389,5455.040845,51256.34757,1,1,1,1,1,1,1
-1614.5,49.1571805,1406.537969,1467.561552,5046.089326,5524.476426,264.9097364,264.9097364,6110.321304,57413.29698,1,1,1,1,1,1,1
-1615,49.35715947,1412.260266,1467.561552,5397.181098,5634.179121,265.9874299,265.9874299,6402.693788,60162.52579,1,1,1,1,1,1,1
-1615.5,49.59316207,1419.013366,1467.561552,5265.771318,5891.279042,267.259256,267.259256,6519.350667,61259.94329,1,1,1,1,1,1,1
-1616,49.84817493,1426.310611,1467.561552,5253.536412,5915.467178,268.6335291,268.6335291,6563.506207,61675.09168,1,1,1,1,1,1,1
-1616.5,50.11708227,1434.004875,1467.561552,5232.691782,5909.945173,270.08268,270.08268,6583.827435,61865.93803,1,1,1,1,1,1,1
-1617,50.39469683,1441.947765,1467.561552,5163.122736,5940.367019,271.5787544,271.5787544,6596.46877,61984.5041,1,1,1,1,1,1,1
-1617.5,50.67822724,1450.060749,1467.561552,5112.618627,5946.990686,273.1067095,273.1067095,6606.725006,62080.61785,1,1,1,1,1,1,1
-1618,50.96658502,1458.311955,1467.561552,5066.393502,5947.505416,274.6606795,274.6606795,6616.310632,62170.41392,1,1,1,1,1,1,1
-1618.5,51.25629186,1466.601454,1467.561552,4985.203332,5983.325671,276.2219197,276.2219197,6625.718282,62258.53336,1,1,1,1,1,1,1
-1619,51.54195764,1474.774516,1467.561552,5006.647279,5917.941506,277.7613824,277.7613824,6634.990787,62345.38698,1,1,1,1,1,1,1
-1619.5,51.82032206,1482.738545,1467.561552,5150.824919,5731.219274,279.2614978,279.2614978,6644.058901,62430.32768,1,1,1,1,1,1,1
-1620,52.08954604,1490.442806,1467.561552,5234.090231,5607.232108,280.7123551,280.7123551,6652.854846,62512.71988,1,1,1,1,1,1,1
-1620.5,52.34773464,1497.831085,1467.561552,5330.1282,5472.500217,282.1037424,282.1037424,6661.316044,62591.97758,1,1,1,1,1,1,1
-1621,52.59397442,1504.876767,1467.561552,5261.690158,5504.196446,283.430737,283.430737,6669.417595,62667.86765,1,1,1,1,1,1,1
-1621.5,52.82793477,1511.569647,1467.561552,5241.960772,5489.198336,284.6915574,284.6915574,6677.131751,62740.12981,1,1,1,1,1,1,1
-1622,53.04921974,1517.901397,1467.561552,5083.265657,5615.176068,285.8840697,285.8840697,6684.427915,62808.47645,1,1,1,1,1,1,1
-1622.5,53.25810952,1523.879249,1467.561552,5119.684253,5547.864594,287.0097839,287.0097839,6691.304717,62872.89437,1,1,1,1,1,1,1
-1623,53.45578732,1529.534386,1467.561552,4992.347674,5645.772551,288.0750763,288.0750763,6697.788508,62933.62978,1,1,1,1,1,1,1
-1623.5,53.6444017,1534.931668,1467.561552,5047.976453,5561.624794,289.0915258,289.0915258,6703.942754,62991.27642,1,1,1,1,1,1,1
-1624,53.82627578,1540.136514,1467.561552,5055.501206,5526.321598,290.0716514,290.0716514,6709.84135,63046.52718,1,1,1,1,1,1,1
-1624.5,54.00445084,1545.234411,1467.561552,4998.813186,5555.065001,291.0318429,291.0318429,6715.578288,63100.26181,1,1,1,1,1,1,1
-1625,54.184765,1550.393113,1467.561552,5112.526238,5411.809243,292.0035621,292.0035621,6721.322333,63154.06043,1,1,1,1,1,1,1
-1625.5,54.37365817,1555.79768,1467.561552,5050.044491,5442.387437,293.021514,293.021514,6727.275646,63209.81586,1,1,1,1,1,1,1
-1626,54.57297828,1561.501711,1467.561552,4968.092074,5491.049134,294.0956569,294.0956569,6733.535454,63268.44117,1,1,1,1,1,1,1
-1626.5,54.77996702,1567.423768,1467.561552,4982.399016,5442.833954,295.2111263,295.2111263,6740.054342,63329.49351,1,1,1,1,1,1,1
-1627,54.99251673,1573.504809,1467.561552,4926.637225,5463.902,296.356564,296.356564,6746.770745,63392.3968,1,1,1,1,1,1,1
-1627.5,55.21018707,1579.733383,1467.561552,4836.487606,5518.613617,297.529597,297.529597,6753.660591,63456.92485,1,1,1,1,1,1,1
-1628,55.42939539,1586.005147,1467.561552,4829.464416,5491.073804,298.7109181,298.7109181,6760.621014,63522.11516,1,1,1,1,1,1,1
-1628.5,55.64376666,1592.138757,1467.561552,4896.050409,5391.647691,299.8661723,299.8661723,6767.463896,63586.20614,1,1,1,1,1,1,1
-1629,55.85077111,1598.061906,1467.561552,5044.515851,5211.428982,300.9817264,300.9817264,6773.945644,63646.94521,1,1,1,1,1,1,1
-1629.5,56.05245574,1603.833565,1467.561552,4990.542551,5233.854053,302.0686118,302.0686118,6778.396073,63688.76955,1,1,1,1,1,1,1
-1630,56.25221711,1609.549094,1467.561552,4862.013929,5330.537143,303.1451327,303.1451327,6781.562192,63718.62606,1,1,1,1,1,1,1
-1630.5,56.45219581,1615.271094,1467.561552,4947.833466,5212.606669,304.2228248,304.2228248,6784.704999,63748.26389,1,1,1,1,1,1,1
-1631,56.65419942,1621.050617,1467.561552,5043.557443,5084.037915,305.3114292,305.3114292,6787.864506,63778.05979,1,1,1,1,1,1,1
-1631.5,56.86050012,1626.953212,1467.561552,4742.991052,5350.705196,306.4231907,306.4231907,6791.079079,63808.37564,1,1,1,1,1,1,1
-1632,57.07074973,1632.969904,1467.561552,4709.065309,5350.536107,307.5562331,307.5562331,6794.353804,63839.25878,1,1,1,1,1,1,1
-1632.5,57.282802,1639.037755,1467.561552,4630.028063,5395.453647,308.6989901,308.6989901,6797.661704,63870.45459,1,1,1,1,1,1,1
-1633,57.49599205,1645.138194,1467.561552,4708.49702,5282.613721,309.8478786,309.8478786,6800.98839,63901.8275,1,1,1,1,1,1,1
-1633.5,57.71175169,1651.311324,1467.561552,4858.964046,5096.965657,311.0106147,311.0106147,6804.349554,63933.52567,1,1,1,1,1,1,1
-1634,57.93235872,1657.623641,1467.561552,4830.291055,5089.326688,312.1994736,312.1994736,6807.779135,63965.86944,1,1,1,1,1,1,1
-1634.5,58.15661713,1664.040598,1467.561552,4884.398348,4999.034987,313.4080099,313.4080099,6811.265506,63998.74902,1,1,1,1,1,1,1
-1635,58.3806307,1670.449912,1467.561552,4833.015474,5014.783495,314.6152267,314.6152267,6814.752769,64031.6364,1,1,1,1,1,1,1
-1635.5,58.60408385,1676.843519,1467.561552,4607.353823,5204.485655,315.8194234,315.8194234,6818.23,64064.42955,1,1,1,1,1,1,1
-1636,58.8300209,1683.308563,1467.561552,4556.963347,5217.938967,317.0370059,317.0370059,6821.738706,64097.51965,1,1,1,1,1,1,1
-1636.5,59.06125176,1689.9246,1467.561552,4485.606785,5251.185715,318.283117,318.283117,6825.322815,64131.32155,1,1,1,1,1,1,1
-1637,59.29887391,1696.723762,1467.561552,4412.408662,5285.192793,319.5636709,319.5636709,6829.002713,64166.02701,1,1,1,1,1,1,1
-1637.5,59.54255219,1703.696371,1467.561552,4635.64119,5021.9425,320.8768616,320.8768616,6832.775098,64201.60458,1,1,1,1,1,1,1
-1638,59.79068597,1710.795558,1467.561552,4639.89798,4977.298309,322.2140631,322.2140631,6836.615137,64237.82009,1,1,1,1,1,1,1
-1638.5,60.04138208,1717.968995,1467.561552,4609.135865,4967.47891,323.565073,323.565073,6840.493715,64274.39909,1,1,1,1,1,1,1
-1639,60.29237414,1725.150169,1467.561552,4534.909061,5001.593877,324.9176779,324.9176779,6844.373966,64310.99396,1,1,1,1,1,1,1
-1639.5,60.54081062,1732.259404,1467.561552,4553.871279,4943.258935,326.2565106,326.2565106,6848.211902,64347.19058,1,1,1,1,1,1,1
-1640,60.78924098,1739.368097,1467.561552,4616.492348,4840.11624,327.5953104,327.5953104,6852.042778,64383.32053,1,1,1,1,1,1,1
-1640.5,61.04332307,1746.636918,1467.561552,4673.118074,4741.398942,328.9645675,328.9645675,6855.940159,64420.07839,1,1,1,1,1,1,1
-1641,61.30278124,1754.060708,1467.561552,4566.244699,4805.965871,330.3627965,330.3627965,6859.911129,64457.53143,1,1,1,1,1,1,1
-1641.5,61.5639294,1761.532506,1467.561552,4598.191681,4731.955299,331.7701329,331.7701329,6863.907872,64495.22691,1,1,1,1,1,1,1
-1642,61.82688074,1769.056644,1467.561552,4553.928917,4733.288173,333.1871867,333.1871867,6867.932577,64533.18644,1,1,1,1,1,1,1
-1642.5,62.09434974,1776.709583,1467.561552,4512.829019,4730.433644,334.6285863,334.6285863,6872.026133,64571.7957,1,1,1,1,1,1,1
-1643,62.36434281,1784.435297,1467.561552,4418.496039,4781.327514,336.0835883,336.0835883,6876.158647,64610.77212,1,1,1,1,1,1,1
-1643.5,62.63261864,1792.112419,1467.561552,4409.144498,4747.92343,337.529336,337.529336,6880.265216,64649.50353,1,1,1,1,1,1,1
-1644,62.89826894,1799.713113,1467.561552,4296.542443,4807.008927,338.9609346,338.9609346,6874.999294,64600.17139,1,1,1,1,1,1,1
-1644.5,63.15861076,1807.161406,1467.561552,4283.638843,4738.40963,340.3639256,340.3639256,6844.499365,64313.74163,1,1,1,1,1,1,1
-1645,63.40842464,1814.309621,1467.561552,4287.314081,4644.590254,341.7101812,341.7101812,6804.587884,63938.87711,1,1,1,1,1,1,1
-1645.5,63.33404125,1752.97629,1467.561552,1404.63254,1518.949863,341.3093265,341.3093265,2442.207908,22949.47707,1,1,1,1,1,1,1
-1646,62.78293056,1589.341162,1467.561552,-88.79772039,-105.4424379,338.3393721,338.3393721,125.6054967,1182.030739,1,1,1,1,1,1,1
-1646.5,62.27458852,1444.51602,1467.561552,1772.637784,1877.432484,335.5998993,335.5998993,2650.865192,24910.99478,1,1,1,1,1,1,1
-1647,62.14934751,1393.583691,1467.561552,3308.393848,3719.458915,334.9249712,334.9249712,5104.973708,47967.45891,1,1,1,1,1,1,1
-1647.5,62.26988688,1390.621046,1467.561552,3895.248937,4304.840627,335.574562,335.574562,6017.29594,56538.97161,1,1,1,1,1,1,1
-1648,62.48240337,1395.367142,1467.561552,4048.306423,4562.313174,336.7198207,336.7198207,6345.188897,59622.33724,1,1,1,1,1,1,1
-1648.5,62.73198204,1400.94119,1467.561552,4036.54836,4705.676191,338.0648088,338.0648088,6483.656409,60924.96775,1,1,1,1,1,1,1
-1649,62.99663936,1406.851747,1467.561552,4207.124132,4564.509603,339.4910561,339.4910561,6537.029104,61426.89541,1,1,1,1,1,1,1
-1649.5,63.2698639,1412.952896,1467.561552,4265.192389,4497.925044,340.9634726,340.9634726,6559.452612,61637.60268,1,1,1,1,1,1,1
-1650,63.55038004,1419.217189,1467.561552,4239.673186,4501.921012,342.4751837,342.4751837,6571.581192,61751.42596,1,1,1,1,1,1,1
-1650.5,63.83393456,1425.549046,1467.561552,4141.113828,4575.219429,344.0032688,344.0032688,6580.337543,61833.51304,1,1,1,1,1,1,1
-1651,64.11575182,1431.843088,1467.561552,4084.376981,4605.786809,345.5219917,345.5219917,6587.960355,61904.93536,1,1,1,1,1,1,1
-1651.5,64.3956196,1438.092918,1467.561552,4043.106679,4620.48093,347.0302088,347.0302088,6595.173467,61972.50438,1,1,1,1,1,1,1
-1652,64.67510104,1444.333878,1467.561552,4217.576002,4419.153913,348.5363439,348.5363439,6602.236419,62038.66085,1,1,1,1,1,1,1
-1652.5,64.95729387,1450.636599,1467.561552,4218.156685,4390.876141,350.0570907,350.0570907,6609.284892,62104.67783,1,1,1,1,1,1,1
-1653,65.24612387,1457.086538,1467.561552,3988.761435,4591.58253,351.6136055,351.6136055,6616.429204,62171.58947,1,1,1,1,1,1,1
-1653.5,65.54292907,1463.715176,1467.561552,4005.769748,4545.069498,353.213099,353.213099,6623.739178,62240.05145,1,1,1,1,1,1,1
-1654,65.84602676,1470.483753,1467.561552,4133.844972,4387.212472,354.8465028,354.8465028,6631.215263,62310.07003,1,1,1,1,1,1,1
-1654.5,66.1519568,1477.316345,1467.561552,4189.556777,4301.823888,356.4951703,356.4951703,6638.802414,62381.13008,1,1,1,1,1,1,1
-1655,66.45807815,1484.152041,1467.561552,4131.090137,4330.815579,358.1448688,358.1448688,6646.431217,62452.58202,1,1,1,1,1,1,1
-1655.5,66.76254847,1490.952284,1467.561552,3974.809986,4457.960439,359.7856698,359.7856698,6654.046336,62523.90691,1,1,1,1,1,1,1
-1656,67.06491897,1497.704571,1467.561552,3821.458638,4582.34886,361.4151549,361.4151549,6661.618459,62594.82989,1,1,1,1,1,1,1
-1656.5,67.3661202,1504.430059,1467.561552,4056.326076,4318.482468,363.0383387,363.0383387,6669.175881,62665.61558,1,1,1,1,1,1,1
-1657,67.6664614,1511.137167,1467.561552,4172.99321,4172.99321,364.6568877,364.6568877,6676.721359,62736.28976,1,1,1,1,1,1,1
-1657.5,67.96541413,1517.813462,1467.561552,3899.885496,4417.431756,366.2679543,366.2679543,6684.2346,62806.66181,1,1,1,1,1,1,1
-1658,68.2640096,1524.48168,1467.561552,3742.498472,4545.946072,367.8770955,367.8770955,6691.726599,62876.83474,1,1,1,1,1,1,1
-1658.5,68.5639204,1531.179811,1467.561552,3889.089398,4370.217228,369.4933252,369.4933252,6699.231955,62947.13195,1,1,1,1,1,1,1
-1659,68.86577889,1537.921708,1467.561552,3921.653046,4308.29487,371.1200509,371.1200509,6706.772933,63017.76171,1,1,1,1,1,1,1
-1659.5,69.17020696,1544.719577,1467.561552,4038.648287,4161.577591,372.7606242,372.7606242,6714.366424,63088.88336,1,1,1,1,1,1,1
-1660,69.48229908,1551.689943,1467.561552,3969.659313,4199.146834,374.4424994,374.4424994,6722.117194,63161.47624,1,1,1,1,1,1,1
-1660.5,69.80608462,1558.920008,1467.561552,3991.464282,4144.917197,376.1873909,376.1873909,6730.12774,63236.50089,1,1,1,1,1,1,1
-1661,70.13817193,1566.33688,1467.561552,3839.397118,4264.219222,377.9770208,377.9770208,6738.358838,63313.59229,1,1,1,1,1,1,1
-1661.5,70.47600918,1573.881443,1467.561552,3867.229946,4203.133093,379.7976374,379.7976374,6746.749907,63392.18248,1,1,1,1,1,1,1
-1662,70.81941496,1581.550976,1467.561552,3954.928857,4081.609354,381.6482629,381.6482629,6755.284438,63472.11621,1,1,1,1,1,1,1
-1662.5,71.16887674,1589.354169,1467.561552,3961.025877,4041.046601,383.5315245,383.5315245,6763.965642,63553.42388,1,1,1,1,1,1,1
-1663,71.52469144,1597.299755,1467.561552,3972.197158,3994.761926,385.4490221,385.4490221,6772.942001,63637.50774,1,1,1,1,1,1,1
-1663.5,71.88587041,1605.365636,1467.561552,3965.714445,3965.714445,387.395428,387.395428,6778.769327,63692.30826,1,1,1,1,1,1,1
-1664,72.25058875,1613.511364,1467.561552,3719.873549,4175.782524,389.3609077,389.3609077,6783.296513,63735.00298,1,1,1,1,1,1,1
-1664.5,72.61831504,1621.72299,1467.561552,3786.173072,4073.342991,391.3425973,391.3425973,6787.831589,63777.76879,1,1,1,1,1,1,1
-1665,72.98943953,1630.01121,1467.561552,3804.825381,4018.1437,393.3426,393.3426,6792.398845,63820.83894,1,1,1,1,1,1,1
-1665.5,73.36355871,1638.367025,1467.561552,3804.736525,3981.533723,395.3587411,395.3587411,6796.997112,63864.20164,1,1,1,1,1,1,1
-1666,73.73931287,1646.75863,1467.561552,3853.988165,3895.528798,397.3836932,397.3836932,6801.611083,63907.71234,1,1,1,1,1,1,1
-1666.5,74.11730301,1655.199458,1467.561552,3827.818771,3884.471059,399.420695,399.420695,6806.243921,63951.40162,1,1,1,1,1,1,1
-1667,74.49969535,1663.739558,1467.561552,3798.832648,3875.576742,401.4814205,401.4814205,6810.919903,63995.4984,1,1,1,1,1,1,1
-1667.5,74.88858274,1672.424518,1467.561552,3610.263286,4025.438398,403.577148,403.577148,6815.665195,64040.24946,1,1,1,1,1,1,1
-1668,75.2828501,1681.228108,1467.561552,3447.953735,4148.910969,405.7018684,405.7018684,6820.470015,64085.56178,1,1,1,1,1,1,1
-1668.5,75.67874608,1690.069329,1467.561552,3485.614713,4072.509617,407.8353654,407.8353654,6825.292016,64131.03646,1,1,1,1,1,1,1
-1669,76.07604829,1698.941672,1467.561552,3580.66067,3938.363178,409.9764407,409.9764407,6830.123765,64176.60361,1,1,1,1,1,1,1
-1669.5,76.47656166,1707.88571,1467.561552,3421.811748,4057.63848,412.134821,412.134821,6834.985326,64222.4519,1,1,1,1,1,1,1
-1670,76.88132196,1716.925391,1467.561552,3487.722022,3951.656754,414.3160882,414.3160882,6839.890336,64268.71072,1,1,1,1,1,1,1
-1670.5,77.29103465,1726.076363,1467.561552,3374.683447,4024.053313,416.524044,416.524044,6844.847865,64315.46532,1,1,1,1,1,1,1
-1671,77.70707579,1735.366236,1467.561552,3422.335402,3934.964572,418.766104,418.766104,6849.873063,64362.85787,1,1,1,1,1,1,1
-1671.5,78.1289476,1744.788192,1467.561552,3605.218263,3710.234367,421.0395857,421.0395857,6854.945233,64410.69495,1,1,1,1,1,1,1
-1672,78.55290072,1754.25664,1467.561552,3581.422923,3692.498419,423.3242836,423.3242836,6860.015977,64458.52011,1,1,1,1,1,1,1
-1672.5,78.97587257,1763.702067,1467.561552,3460.802948,3771.693459,425.6036935,425.6036935,6865.068318,64506.17226,1,1,1,1,1,1,1
-1673,79.39862529,1773.142675,1467.561552,3470.960588,3719.941562,427.8819224,427.8819224,6870.118198,64553.8005,1,1,1,1,1,1,1
-1673.5,79.82156715,1782.587504,1467.561552,3384.718243,3764.683297,430.1611706,430.1611706,6875.170282,64601.44997,1,1,1,1,1,1,1
-1674,80.24324558,1792.004423,1467.561552,3395.864906,3712.290328,432.4336102,432.4336102,6880.207472,64648.9587,1,1,1,1,1,1,1
-1674.5,80.66244083,1801.366682,1467.561552,3330.262728,3721.844739,434.6926678,434.6926678,6868.852374,64542.44772,1,1,1,1,1,1,1
-1675,80.78735435,1736.524573,1467.561552,662.6336666,748.7918185,435.3658311,435.3658311,1691.339111,15894.66352,1,1,1,1,1,1,1
-1675.5,80.54232828,1576.99595,1467.561552,-89.02970456,-95.40620847,434.0453772,434.0453772,165.1728936,1554.474011,1,1,1,1,1,1,1
-1676,80.4110347,1463.310202,1467.561552,1666.091717,1733.677234,433.3378316,433.3378316,3238.24622,30430.5559,1,1,1,1,1,1,1
-1676.5,80.59620561,1441.211942,1467.561552,2723.987558,2979.538162,434.335724,434.335724,5460.212745,51304.93866,1,1,1,1,1,1,1
-1677,80.95177987,1446.262896,1467.561552,3129.269462,3350.421868,436.2519259,436.2519259,6222.807251,58469.68257,1,1,1,1,1,1,1
-1677.5,81.37063204,1453.745406,1467.561552,3336.347013,3379.480104,438.5091346,438.5091346,6481.039207,60897.78067,1,1,1,1,1,1,1
-1678,81.81478293,1461.680383,1467.561552,3200.163337,3572.585389,440.9026791,440.9026791,6578.185297,61811.48613,1,1,1,1,1,1,1
-1678.5,82.27085686,1469.828543,1467.561552,3148.717322,3622.717779,443.3604771,443.3604771,6616.060822,62167.49772,1,1,1,1,1,1,1
-1679,82.73362417,1478.096171,1467.561552,3272.642264,3478.6054,445.8543461,445.8543461,6634.478605,62340.40412,1,1,1,1,1,1,1
-1679.5,83.19992371,1486.427268,1467.561552,3241.987255,3483.089852,448.3672503,448.3672503,6646.712254,62455.11512,1,1,1,1,1,1,1
-1680,83.66754747,1494.781584,1467.561552,3108.039604,3588.977579,450.8872909,450.8872909,6656.994697,62551.46349,1,1,1,1,1,1,1
-1680.5,84.13543722,1503.140843,1467.561552,3120.692499,3547.71781,453.4087649,453.4087649,6666.687629,62642.26358,1,1,1,1,1,1,1
-1681,84.60270606,1511.488846,1467.561552,3147.271943,3492.475033,455.9268927,455.9268927,6676.20541,62731.4172,1,1,1,1,1,1,1
-1681.5,84.91099657,1516.996954,1467.561552,1729.354361,1887.04735,457.5882809,457.5882809,3734.328525,35089.23424,1,1,1,1,1,1,1
-1682,84.893831,1451.648991,1467.561552,209.0346616,219.2767448,457.495775,457.495775,713.4621666,6705.768544,1,1,1,1,1,1,1
-1682.5,84.68059215,1302.197085,1467.561552,-81.84619822,-86.24335336,456.3466235,456.3466235,119.4689875,1124.135394,1,1,1,1,1,1,1
-1683,84.55302966,1200.388313,1467.561552,998.2734291,997.9411629,455.6591849,455.6591849,2105.176093,19782.88866,1,1,1,1,1,1,1
-1683.5,84.62094357,1181.782285,1467.561552,1704.471716,1794.368905,456.0251752,456.0251752,3446.383899,32387.51807,1,1,1,1,1,1,1
-1684,84.80475819,1183.671091,1467.561552,2032.917704,2088.880556,457.0157586,457.0157586,4038.105106,37944.01132,1,1,1,1,1,1,1
-1684.5,84.95333289,1185.745121,1467.561552,1257.261819,1433.171448,457.8164327,457.8164327,2768.353609,26016.04825,1,1,1,1,1,1,1
-1685,84.99605961,1186.341029,1467.561552,913.446868,1060.725989,458.0466885,458.0466885,2129.376254,20009.91526,1,1,1,1,1,1,1
-1685.5,85,1186.3959,1467.561552,886.92042,972.4092641,458.0679234,458.0679234,2026.393455,19041.10895,1,1,1,1,1,1,1
-1686,85,1186.3959,1467.561552,892.4263099,921.4534029,458.0679234,458.0679234,1984.845842,18650.13456,1,1,1,1,1,1,1
-1686.5,85,1186.3959,1467.561552,864.5757671,896.2552791,458.0679234,458.0679234,1936.351563,18193.78987,1,1,1,1,1,1,1
-1687,85,1186.3959,1467.561552,831.6316828,938.381114,458.0679234,458.0679234,1944.745018,18272.77447,1,1,1,1,1,1,1
-1687.5,85,1186.3959,1467.561552,852.1555156,964.6420878,458.0679234,458.0679234,1987.51227,18675.22593,1,1,1,1,1,1,1
-1688,85,1186.3959,1467.561552,860.0506821,985.6701785,458.0679234,458.0679234,2013.952924,18924.03997,1,1,1,1,1,1,1
-1688.5,85,1186.3959,1467.561552,912.6945755,953.1119238,458.0679234,458.0679234,2032.31464,19096.82901,1,1,1,1,1,1,1
-1689,85,1186.3959,1467.561552,917.5296002,936.0655517,458.0679234,458.0679234,2021.151366,18991.77952,1,1,1,1,1,1,1
-1689.5,85,1186.3959,1467.561552,863.1899643,938.7872105,458.0679234,458.0679234,1973.964335,18547.73601,1,1,1,1,1,1,1
-1690,85,1186.3959,1467.561552,833.5826663,892.3796867,458.0679234,458.0679234,1905.009146,17899.25487,1,1,1,1,1,1,1
-1690.5,85,1186.3959,1467.561552,793.0606207,855.6572102,458.0679234,458.0679234,1835.577061,17246.77595,1,1,1,1,1,1,1
-1691,85,1186.3959,1467.561552,731.7129898,872.96869,458.0679234,458.0679234,1796.072346,16875.59636,1,1,1,1,1,1,1
-1691.5,85,1186.3959,1467.561552,763.9746424,807.874878,458.0679234,458.0679234,1766.619376,16598.86122,1,1,1,1,1,1,1
-1692,85,1186.3959,1467.561552,742.5151979,820.9824619,458.0679234,458.0679234,1759.126483,16528.45904,1,1,1,1,1,1,1
-1692.5,85,1186.3959,1467.561552,759.0642558,815.4913173,458.0679234,458.0679234,1769.047153,16621.67199,1,1,1,1,1,1,1
-1693,85,1186.3959,1467.561552,769.7694748,779.0444369,458.0679234,458.0679234,1745.953846,16404.69093,1,1,1,1,1,1,1
-1693.5,85,1186.3959,1467.561552,723.5379094,783.7943803,458.0679234,458.0679234,1708.74146,16055.05028,1,1,1,1,1,1,1
-1694,85,1186.3959,1467.561552,731.3299314,746.0193198,458.0679234,458.0679234,1681.84424,15802.32797,1,1,1,1,1,1,1
-1694.5,85,1186.3959,1467.561552,690.6768524,760.4315625,458.0679234,458.0679234,1658.303287,15581.14103,1,1,1,1,1,1,1
-1695,85,1186.3959,1467.561552,667.759281,741.0330439,458.0679234,458.0679234,1620.341868,15224.46177,1,1,1,1,1,1,1
-1695.5,85,1186.3959,1467.561552,624.0513168,735.4308828,458.0679234,458.0679234,1576.10678,14808.83653,1,1,1,1,1,1,1
-1696,85,1186.3959,1467.561552,666.0989354,689.9071519,458.0679234,458.0679234,1572.988107,14779.53401,1,1,1,1,1,1,1
-1696.5,85,1186.3959,1467.561552,647.7938268,725.2836626,458.0679234,458.0679234,1588.302741,14923.4278,1,1,1,1,1,1,1
-1697,85,1186.3959,1467.561552,638.428337,734.5358286,458.0679234,458.0679234,1588.201582,14922.47705,1,1,1,1,1,1,1
-1697.5,85,1186.3959,1467.561552,607.8711208,733.9897689,458.0679234,458.0679234,1560.299404,14660.31331,1,1,1,1,1,1,1
-1698,85,1186.3959,1467.561552,612.2233859,712.8235944,458.0679234,458.0679234,1545.215523,14518.58734,1,1,1,1,1,1,1
-1698.5,85,1186.3959,1467.561552,624.6930646,695.9082724,458.0679234,458.0679234,1541.227074,14481.11275,1,1,1,1,1,1,1
-1699,85,1186.3959,1467.561552,641.4417042,664.8540891,458.0679234,458.0679234,1528.393378,14360.52965,1,1,1,1,1,1,1
-1699.5,85,1186.3959,1467.561552,595.9857304,691.4224372,458.0679234,458.0679234,1511.449339,14201.32598,1,1,1,1,1,1,1
-1700,85,1186.3959,1467.561552,621.3606168,654.2438688,458.0679234,458.0679234,1501.196364,14104.99076,1,1,1,1,1,1,1
-1700.5,85,1186.3959,1467.561552,588.9118808,683.4539803,458.0679234,458.0679234,1498.593829,14080.53763,1,1,1,1,1,1,1
-1701,85,1186.3959,1467.561552,583.191657,665.5987525,458.0679234,458.0679234,1481.508387,13920.00622,1,1,1,1,1,1,1
-1701.5,85,1186.3959,1467.561552,589.4879906,623.4936806,458.0679234,458.0679234,1458.009658,13699.21555,1,1,1,1,1,1,1
-1702,85,1186.3959,1467.561552,582.5893559,596.7457509,458.0679234,458.0679234,1432.200994,13456.72214,1,1,1,1,1,1,1
-1702.5,85,1186.3959,1467.561552,563.190806,583.8323383,458.0679234,458.0679234,1406.301114,13213.3711,1,1,1,1,1,1,1
-1703,85,1186.3959,1467.561552,509.8559206,593.5081596,458.0679234,458.0679234,1371.306456,12884.56718,1,1,1,1,1,1,1
-1703.5,85,1186.3959,1467.561552,501.4230277,545.7053784,458.0679234,458.0679234,1326.230124,12461.03732,1,1,1,1,1,1,1
-1704,85,1186.3959,1467.561552,464.9969354,517.8799963,458.0679234,458.0679234,1274.728453,11977.13587,1,1,1,1,1,1,1
-1704.5,85,1186.3959,1467.561552,423.9023602,493.491404,458.0679234,458.0679234,1222.239213,11483.95559,1,1,1,1,1,1,1
-1705,85,1186.3959,1467.561552,404.6775119,452.8739309,458.0679234,458.0679234,1174.272818,11033.27149,1,1,1,1,1,1,1
-1705.5,85,1186.3959,1467.561552,376.7233318,423.0514839,458.0679234,458.0679234,1127.960937,10598.13312,1,1,1,1,1,1,1
-1706,85,1186.3959,1467.561552,356.9000075,408.9651392,458.0679234,458.0679234,1100.78022,10342.74761,1,1,1,1,1,1,1
-1706.5,85,1186.3959,1467.561552,349.6180285,402.2486994,458.0679234,458.0679234,1089.559766,10237.3218,1,1,1,1,1,1,1
-1707,85,1186.3959,1467.561552,342.0198156,393.5066695,458.0679234,458.0679234,1076.532456,10114.91923,1,1,1,1,1,1,1
-1707.5,85,1186.3959,1467.561552,347.5085686,369.0130645,458.0679234,458.0679234,1062.063082,9978.967586,1,1,1,1,1,1,1
-1708,85,1186.3959,1467.561552,329.0976695,383.4480343,458.0679234,458.0679234,1059.067645,9950.823302,1,1,1,1,1,1,1
-1708.5,85,1186.3959,1467.561552,337.139135,397.2899609,458.0679234,458.0679234,1075.784262,10107.88964,1,1,1,1,1,1,1
-1709,85,1186.3959,1467.561552,346.0591135,374.9388495,458.0679234,458.0679234,1065.492239,10011.18722,1,1,1,1,1,1,1
-1709.5,85,1186.3959,1467.561552,332.9007303,353.492528,458.0679234,458.0679234,1039.364909,9765.69967,1,1,1,1,1,1,1
-1710,85,1186.3959,1467.561552,337.3602145,364.0871246,458.0679234,458.0679234,1050.706805,9872.266002,1,1,1,1,1,1,1
-1710.5,85,1186.3959,1467.561552,357.215249,380.7394164,458.0679234,458.0679234,1078.663403,10134.94137,1,1,1,1,1,1,1
-1711,85,1186.3959,1467.561552,336.208307,386.7378573,458.0679234,458.0679234,1067.01394,10025.48489,1,1,1,1,1,1,1
-1711.5,85,1186.3959,1467.561552,306.0124457,327.1120527,458.0679234,458.0679234,999.2328404,9388.624924,1,1,1,1,1,1,1
-1712,85,1186.3959,1467.561552,271.589628,278.289051,458.0679234,458.0679234,936.51592,8799.347207,1,1,1,1,1,1,1
-1712.5,85,1186.3959,1467.561552,233.6331335,253.8142724,458.0679234,458.0679234,889.4798936,8357.404749,1,1,1,1,1,1,1
-1713,85,1186.3959,1467.561552,222.9314919,238.6445097,458.0679234,458.0679234,869.988008,8174.262018,1,1,1,1,1,1,1
-1713.5,85,1186.3959,1467.561552,217.1390802,230.5703635,458.0679234,458.0679234,859.5415856,8076.109259,1,1,1,1,1,1,1
-1714,85,1186.3959,1467.561552,225.6571975,243.5530477,458.0679234,458.0679234,875.74076,8228.314531,1,1,1,1,1,1,1
-1714.5,85,1186.3959,1467.561552,246.9580709,281.130902,458.0679234,458.0679234,920.098832,8645.095632,1,1,1,1,1,1,1
-1715,85,1186.3959,1467.561552,270.7473751,306.4389428,458.0679234,458.0679234,957.0890036,8992.649081,1,1,1,1,1,1,1
-1715.5,85,1186.3959,1467.561552,290.0168996,327.0403336,458.0679234,458.0679234,987.1277136,9274.887212,1,1,1,1,1,1,1
-1716,85,1186.3959,1467.561552,300.5905022,350.2056556,458.0679234,458.0679234,1012.546688,9513.720222,1,1,1,1,1,1,1
-1716.5,85,1186.3959,1467.561552,315.2730401,358.2612244,458.0679234,458.0679234,1029.676551,9674.669046,1,1,1,1,1,1,1
-1717,85,1186.3959,1467.561552,360.2479804,393.0351944,458.0679234,458.0679234,1091.226633,10252.98337,1,1,1,1,1,1,1
-1717.5,85,1186.3959,1467.561552,431.7098188,452.4176368,458.0679234,458.0679234,1195.574899,11233.42252,1,1,1,1,1,1,1
-1718,85,1186.3959,1467.561552,467.6704074,519.7705279,458.0679234,458.0679234,1278.387093,12011.51242,1,1,1,1,1,1,1
-1718.5,85,1186.3959,1467.561552,486.9157085,586.3562706,458.0679234,458.0679234,1347.185113,12657.92661,1,1,1,1,1,1,1
-1719,85,1186.3959,1467.561552,536.4202451,644.8723606,458.0679234,458.0679234,1433.770987,13471.47279,1,1,1,1,1,1,1
-1719.5,85,1186.3959,1467.561552,618.2352448,716.3762602,458.0679234,458.0679234,1556.809954,14627.52674,1,1,1,1,1,1,1
-1720,85,1186.3959,1467.561552,699.4242269,778.68662,458.0679234,458.0679234,1682.527103,15808.74397,1,1,1,1,1,1,1
-1720.5,85,1186.3959,1467.561552,796.1846412,810.9366679,458.0679234,458.0679234,1798.261745,16896.16774,1,1,1,1,1,1,1
-1721,85,1186.3959,1467.561552,848.5128146,891.1055509,458.0679234,458.0679234,1917.351069,18015.28816,1,1,1,1,1,1,1
-1721.5,85,1186.3959,1467.561552,863.3595734,1011.313546,458.0679234,458.0679234,2040.419007,19173.0928,1,1,1,1,1,1,1
-1722,85,1186.3959,1467.561552,971.8818631,1055.04784,458.0679234,458.0679234,2179.604812,20482.86914,1,1,1,1,1,1,1
-1722.5,85,1186.3959,1467.561552,1051.527919,1153.72484,458.0679234,458.0679234,2340.618742,21997.88257,1,1,1,1,1,1,1
-1723,85,1186.3959,1467.561552,1156.842452,1237.45715,458.0679234,458.0679234,2505.320792,23544.33441,1,1,1,1,1,1,1
-1723.5,85,1186.3959,1467.561552,1270.382991,1305.675486,458.0679234,458.0679234,2668.312207,25073.50507,1,1,1,1,1,1,1
-1724,85,1186.3959,1467.561552,1238.725143,1462.816459,458.0679234,458.0679234,2781.888223,26138.99,1,1,1,1,1,1,1
-1724.5,85,1186.3959,1467.561552,1342.399355,1463.957121,458.0679234,458.0679234,2870.93792,26975.00171,1,1,1,1,1,1,1
-1725,85,1186.3959,1467.561552,1435.040902,1499.267088,458.0679234,458.0679234,2979.706772,27997.08277,1,1,1,1,1,1,1
-1725.5,85,1186.3959,1467.561552,1414.518689,1677.276313,458.0679234,458.0679234,3114.033232,29259.48898,1,1,1,1,1,1,1
-1726,85,1186.3959,1467.561552,1565.014822,1678.873507,458.0679234,458.0679234,3243.717013,30478.26135,1,1,1,1,1,1,1
-1726.5,85,1186.3959,1467.561552,1562.319246,1822.000128,458.0679234,458.0679234,3362.098005,31591.71504,1,1,1,1,1,1,1
-1727,85,1186.3959,1467.561552,1649.808329,1851.625523,458.0679234,458.0679234,3461.831988,32530.25766,1,1,1,1,1,1,1
-1727.5,85,1186.3959,1467.561552,1671.64209,1939.843469,458.0679234,458.0679234,3555.92018,33415.74763,1,1,1,1,1,1,1
-1728,85,1186.3959,1467.561552,1829.45902,1916.765538,458.0679234,458.0679234,3671.114346,34499.87116,1,1,1,1,1,1,1
-1728.5,85,1186.3959,1467.561552,1884.514882,2018.443048,458.0679234,458.0679234,3817.643862,35875.79392,1,1,1,1,1,1,1
-1729,85,1186.3959,1467.561552,1855.222515,2179.81876,458.0679234,458.0679234,3948.563936,37104.27473,1,1,1,1,1,1,1
-1729.5,85,1186.3959,1467.561552,1923.060765,2229.665076,458.0679234,458.0679234,4066.65558,38212.29062,1,1,1,1,1,1,1
-1730,85,1186.3959,1467.561552,2099.307247,2191.316615,458.0679234,458.0679234,4201.302206,39475.91766,1,1,1,1,1,1,1
-1730.5,84.9976684,1186.363177,1467.561552,2209.705894,2218.170555,458.0553583,458.0553583,4342.0958,40799.30109,1,1,1,1,1,1,1
-1731,84.9885793,1186.236634,1467.561552,2085.724376,2411.86583,458.0063769,458.0063769,4414.16889,41477.00323,1,1,1,1,1,1,1
-1731.5,84.97034362,1185.981752,1467.561552,2168.248425,2357.077653,457.9081041,457.9081041,4441.880769,41737.57964,1,1,1,1,1,1,1
-1732,84.94253191,1185.59325,1467.561552,2109.071253,2427.528124,457.7582259,457.7582259,4451.848403,41831.30718,1,1,1,1,1,1,1
-1732.5,84.90512484,1185.071435,1467.561552,2107.303988,2434.124553,457.5566379,457.5566379,4454.555974,41856.76834,1,1,1,1,1,1,1
-1733,84.85700514,1184.399939,1467.561552,2112.588444,2430.61251,457.2973192,457.2973192,4453.406313,41845.96053,1,1,1,1,1,1,1
-1733.5,84.79532721,1183.539048,1467.561552,2131.143528,2412.741833,456.9649347,456.9649347,4450.268344,41816.45747,1,1,1,1,1,1,1
-1734,84.71801653,1182.4602,1467.561552,2227.024845,2317.391122,456.5483048,456.5483048,4446.118773,41777.4431,1,1,1,1,1,1,1
-1734.5,84.62553584,1181.169008,1467.561552,2140.397307,2404.472675,456.0499231,456.0499231,4441.152644,41730.75143,1,1,1,1,1,1,1
-1735,84.52280292,1179.734966,1467.561552,2240.859126,2304.132406,455.4962919,455.4962919,4435.636934,41678.89252,1,1,1,1,1,1,1
-1735.5,84.41570398,1178.239898,1467.561552,2163.34055,2381.641169,454.919132,454.919132,4429.886692,41624.8282,1,1,1,1,1,1,1
-1736,84.30756866,1176.731341,1467.561552,2208.784687,2336.055849,454.3363871,454.3363871,4424.084405,41570.27441,1,1,1,1,1,1,1
-1736.5,84.20246763,1175.264723,1467.561552,2226.821311,2317.711977,453.769994,453.769994,4418.443404,41517.23734,1,1,1,1,1,1,1
-1737,84.10139234,1173.853149,1467.561552,2117.832523,2426.484534,453.2252958,453.2252958,4413.01421,41466.19175,1,1,1,1,1,1,1
-1737.5,84.00194657,1172.465622,1467.561552,2199.130383,2345.057792,452.6893791,452.6893791,4407.67749,41416.01577,1,1,1,1,1,1,1
-1738,83.90326438,1171.087972,1467.561552,2226.585983,2317.467044,452.1575774,452.1575774,4402.378565,41366.19541,1,1,1,1,1,1,1
-1738.5,83.80536104,1169.721641,1467.561552,2208.41272,2335.502248,451.629973,451.629973,4397.123496,41316.78654,1,1,1,1,1,1,1
-1739,83.70754006,1168.355848,1467.561552,2167.579155,2376.261406,451.1028123,451.1028123,4391.870299,41267.39567,1,1,1,1,1,1,1
-1739.5,83.60770945,1166.96307,1467.561552,2140.2512,2403.600271,450.5648218,450.5648218,4386.513379,41217.02991,1,1,1,1,1,1,1
-1740,83.50681307,1165.554923,1467.561552,2063.288733,2480.422576,450.0210877,450.0210877,4381.097411,41166.1087,1,1,1,1,1,1,1
-1740.5,83.40776,1164.172377,1467.561552,2116.77035,2426.724826,449.4872873,449.4872873,4375.779909,41116.11349,1,1,1,1,1,1,1
-1741,83.30913974,1162.795176,1467.561552,2099.356287,2444.107436,448.9558193,448.9558193,4370.482679,41066.30832,1,1,1,1,1,1,1
-1741.5,83.20732562,1161.374267,1467.561552,2071.993837,2471.519809,448.4071395,448.4071395,4365.017595,41014.92546,1,1,1,1,1,1,1
-1742,83.10357739,1159.925954,1467.561552,2211.307102,2332.081966,447.8480367,447.8480367,4359.447092,40962.55138,1,1,1,1,1,1,1
-1742.5,83.00357965,1158.530855,1467.561552,2230.792463,2312.207963,447.3091455,447.3091455,4354.081346,40912.10192,1,1,1,1,1,1,1
-1743,82.90922986,1157.213709,1467.561552,2172.013019,2370.738106,446.8006912,446.8006912,4349.015163,40864.46932,1,1,1,1,1,1,1
-1743.5,82.81695577,1155.925903,1467.561552,2121.822393,2420.811462,446.3034229,446.3034229,4344.061976,40817.89968,1,1,1,1,1,1,1
-1744,82.72672874,1154.666052,1467.561552,2094.264266,2448.131216,445.8171864,445.8171864,4339.216443,40772.34165,1,1,1,1,1,1,1
-1744.5,82.64083884,1153.467798,1467.561552,2143.181703,2398.91928,445.3543228,445.3543228,4334.607731,40729.01038,1,1,1,1,1,1,1
-1745,82.55874883,1152.322483,1467.561552,2247.039632,2294.884006,444.9119369,444.9119369,4330.20247,40687.5918,1,1,1,1,1,1,1
-1745.5,82.47580704,1151.164544,1467.561552,2217.246076,2324.739722,444.4649607,444.4649607,4325.748765,40645.71761,1,1,1,1,1,1,1
-1746,82.38866956,1149.948585,1467.561552,2113.378946,2428.67197,443.9953738,443.9953738,4321.071812,40601.74462,1,1,1,1,1,1,1
-1746.5,82.29792295,1148.681384,1467.561552,2125.128566,2416.935519,443.5063372,443.5063372,4316.197826,40555.91907,1,1,1,1,1,1,1
-1747,82.20348673,1147.363535,1467.561552,2116.919578,2425.199088,442.9974172,442.9974172,4311.129186,40508.26368,1,1,1,1,1,1,1
-1747.5,82.10454719,1145.982585,1467.561552,2058.531206,2483.661988,442.4642286,442.4642286,4305.817809,40458.32573,1,1,1,1,1,1,1
-1748,82.00130626,1144.541939,1467.561552,2115.395285,2426.822676,441.9078597,441.9078597,4300.276631,40406.22704,1,1,1,1,1,1,1
-1748.5,81.89630488,1143.07611,1467.561552,2223.959855,2318.134996,441.3420036,441.3420036,4294.638623,40353.21863,1,1,1,1,1,1,1
-1749,81.79208817,1141.621466,1467.561552,2123.504048,2418.413314,440.7803762,440.7803762,4289.043871,40300.61622,1,1,1,1,1,1,1
-1749.5,81.68964038,1140.191851,1467.561552,2213.836987,2327.886236,440.2282815,440.2282815,4283.545305,40248.91865,1,1,1,1,1,1,1
-1750,81.58885525,1138.784459,1467.561552,2105.735872,2435.82533,439.685147,439.685147,4278.132122,40198.02338,1,1,1,1,1,1,1
-1750.5,81.48880698,1137.387551,1467.561552,2084.128371,2457.301005,439.1459834,439.1459834,4272.759299,40147.50757,1,1,1,1,1,1,1
-1751,81.38896079,1135.994306,1467.561552,2071.243242,2470.069002,438.6079089,438.6079089,4267.400542,40097.12402,1,1,1,1,1,1,1
-1751.5,81.28896874,1134.598354,1467.561552,2048.506471,2492.706463,438.0690483,438.0690483,4262.031523,40046.64473,1,1,1,1,1,1,1
-1752,81.1885383,1133.197431,1467.561552,2167.618665,2373.490201,437.5278252,437.5278252,4256.643194,39995.98312,1,1,1,1,1,1,1
-1752.5,81.08846682,1131.800991,1467.561552,2149.213609,2391.745174,436.9885366,436.9885366,4251.272123,39945.48423,1,1,1,1,1,1,1
-1753,80.99032017,1130.430689,1467.561552,2187.252286,2353.48086,436.4596209,436.4596209,4246.001723,39895.93176,1,1,1,1,1,1,1
-1753.5,80.89602902,1129.114757,1467.561552,2149.048236,2391.387742,435.9514826,435.9514826,4240.94052,39848.34579,1,1,1,1,1,1,1
-1754,80.80703115,1127.872461,1467.561552,2169.207024,2370.908345,435.47187,435.47187,4236.162273,39803.42066,1,1,1,1,1,1,1
-1754.5,80.72558279,1126.734904,1467.561552,2090.727201,2448.932287,435.032942,435.032942,4231.786856,39762.2824,1,1,1,1,1,1,1
-1755,80.65462831,1125.744274,1467.561552,2224.149273,2314.976572,434.6505659,434.6505659,4227.976771,39726.45988,1,1,1,1,1,1,1
-1755.5,80.59641591,1124.931788,1467.561552,2233.988741,2304.541631,434.3368573,434.3368573,4224.851817,39697.07919,1,1,1,1,1,1,1
-1756,80.55200806,1124.312633,1467.561552,2258.855357,2279.092549,434.0975418,434.0975418,4222.470246,39674.68704,1,1,1,1,1,1,1
-1756.5,80.52089298,1123.878612,1467.561552,2268.715119,2268.715119,433.9298616,433.9298616,4220.800846,39658.99157,1,1,1,1,1,1,1
-1757,80.50224888,1123.617807,1467.561552,2180.364244,2356.574719,433.8293879,433.8293879,4219.797771,39649.56086,1,1,1,1,1,1,1
-1757.5,80.4971464,1123.546505,1467.561552,2154.772654,2381.590828,433.8018905,433.8018905,4219.523715,39646.98406,1,1,1,1,1,1,1
-1758,80.50827432,1123.70234,1467.561552,2189.557169,2345.869703,433.8618592,433.8618592,4219.829962,39649.86287,1,1,1,1,1,1,1
-1758.5,80.53731722,1124.107232,1467.561552,2146.264693,2387.972385,434.0183724,434.0183724,4220.830497,39659.26929,1,1,1,1,1,1,1
-1759,80.58403193,1124.759659,1467.561552,2218.589208,2314.40231,434.2701196,434.2701196,4222.669607,39676.56034,1,1,1,1,1,1,1
-1759.5,80.64608453,1125.625361,1467.561552,2243.30811,2288.627466,434.6045232,434.6045232,4225.346643,39701.72946,1,1,1,1,1,1,1
-1760,80.72043675,1126.66318,1467.561552,2084.217551,2446.823386,435.0052099,435.0052099,4228.768449,39733.90079,1,1,1,1,1,1,1
-1760.5,80.80625631,1127.861652,1467.561552,2162.054347,2368.158521,435.4676944,435.4676944,4232.863904,39772.40591,1,1,1,1,1,1,1
-1761,80.90396054,1129.225029,1467.561552,2249.696211,2279.693961,435.9942258,435.9942258,4237.610091,39817.02904,1,1,1,1,1,1,1
-1761.5,81.01414709,1130.762972,1467.561552,2175.98309,2352.558992,436.588025,436.588025,4243.018683,39867.88043,1,1,1,1,1,1,1
-1762,81.13759287,1132.486453,1467.561552,2203.65442,2324.010006,437.2532786,437.2532786,4249.120428,39925.24924,1,1,1,1,1,1,1
-1762.5,81.2749559,1134.40309,1467.561552,2129.668237,2397.097704,437.9935326,437.9935326,4255.946358,39989.42602,1,1,1,1,1,1,1
-1763,81.42718899,1136.527995,1467.561552,2175.30756,2350.475615,438.813922,438.813922,4263.541308,40060.83379,1,1,1,1,1,1,1
-1763.5,81.59655246,1138.892485,1467.561552,2247.639846,2277.027924,439.7266276,439.7266276,4271.994722,40140.31231,1,1,1,1,1,1,1
-1764,81.787417,1141.555761,1467.561552,2172.876225,2350.341143,440.7552031,440.7552031,4281.472006,40229.41798,1,1,1,1,1,1,1
-1764.5,82.00107139,1144.537905,1467.561552,2130.106481,2391.735445,441.9065939,441.9065939,4292.0967,40329.3112,1,1,1,1,1,1,1
-1765,82.2309265,1147.746098,1467.561552,2071.482713,2449.521322,443.145291,443.145291,4303.729881,40438.68649,1,1,1,1,1,1,1
-1765.5,82.47075244,1151.093803,1467.561552,2038.981663,2481.482884,444.4377213,444.4377213,4316.111983,40555.10266,1,1,1,1,1,1,1
-1766,82.72299105,1154.614855,1467.561552,2069.577474,2450.110305,445.7970438,445.7970438,4329.188996,40678.05342,1,1,1,1,1,1,1
-1766.5,82.99389024,1158.395125,1467.561552,2060.669915,2457.94592,447.2569289,447.2569289,4343.133561,40809.16046,1,1,1,1,1,1,1
-1767,83.28549705,1162.465195,1467.561552,2037.52728,2479.960457,448.8284081,448.8284081,4358.095798,40949.83534,1,1,1,1,1,1,1
-1767.5,83.59670587,1166.808682,1467.561552,2068.334503,2448.114022,450.5055231,450.5055231,4374.107806,41100.38063,1,1,1,1,1,1,1
-1768,83.92460521,1171.386104,1467.561552,2221.259735,2294.388451,452.2725839,452.2725839,4391.095861,41260.10259,1,1,1,1,1,1,1
-1768.5,84.26688196,1176.163753,1467.561552,2149.188599,2365.792929,454.1171251,454.1171251,4408.948471,41427.9535,1,1,1,1,1,1,1
-1769,84.4766007,1179.090583,1467.561552,782.9473341,916.9643002,455.2473066,455.2473066,1906.861288,17916.99493,1,1,1,1,1,1,1
-1769.5,84.5116,1179.579,1467.561552,409.2202313,437.586219,455.435919,455.435919,1161.020565,10908.75553,1,1,1,1,1,1,1
-1770,84.41570328,1178.240023,1467.561552,517.5645895,597.1948816,454.9191283,454.9191283,1441.257399,13542.83226,1,1,1,1,1,1,1
-1770.5,84.27830036,1176.322866,1467.561552,-372.9170676,-377.5442381,454.1786592,454.1786592,0,0.0001,1,1,1,1,1,1,1
-1771,84.15157494,1174.554262,1467.561552,-372.5797528,-378.326451,453.4957316,453.4957316,0,0.0001,1,1,1,1,1,1,1
-1771.5,84.0424736,1173.031336,1467.561552,-365.0443625,-386.2831746,452.9077807,452.9077807,0,0.0001,1,1,1,1,1,1,1
-1772,84.02405487,1172.77403,1467.561552,343.3983187,338.8557357,452.8085215,452.8085215,1125.854915,10580.96399,1,1,1,1,1,1,1
-1772.5,84.22327924,1175.554533,1467.561552,1431.633434,1479.926642,453.8821485,453.8821485,2938.555719,27614.97487,1,1,1,1,1,1,1
-1773,84.58746516,1180.637933,1467.561552,1867.296512,1900.405498,455.8447589,455.8447589,3695.637919,34728.51963,1,1,1,1,1,1,1
-1773.5,84.89824174,1184.975797,1467.561552,789.5544857,774.8932502,457.5195446,457.5195446,1889.223802,17753.31493,1,1,1,1,1,1,1
-1774,85,1186.3959,1467.561552,-255.6402698,-284.7417119,458.0679234,458.0679234,154.8627697,1455.064578,1,1,1,1,1,1,1
-1774.5,85,1186.3959,1467.561552,-322.9060841,-365.4357549,458.0679234,458.0679234,49.35614916,463.74199,1,1,1,1,1,1,1
-1775,85.00345728,1186.444032,1467.561552,-355.0793475,-399.7247033,458.0865548,458.0865548,2.204741,20.71527744,1,1,1,1,1,1,1
-1775.5,85.01725802,1186.636526,1467.561552,-352.0800441,-406.3995228,458.1609275,458.1609275,0,0,1,1,1,1,1,1,1
-1776,85.04590094,1187.036519,1467.561552,-343.3761155,-415.8072702,458.3152851,458.3152851,0,0,1,1,1,1,1,1,1
-1776.5,85.09035461,1187.657337,1467.561552,-341.9621737,-417.9537679,458.5548475,458.5548475,0,0,1,1,1,1,1,1,1
-1777,85.14942837,1188.481712,1467.561552,-352.5591824,-408.035805,458.873198,458.873198,0,0,1,1,1,1,1,1,1
-1777.5,85.22049352,1189.473106,1467.561552,-363.6234586,-397.5601484,459.2561705,459.2561705,0,0,1,1,1,1,1,1,1
-1778,85.30087591,1190.595245,1467.561552,-371.813417,-389.8942063,459.689354,459.689354,0,0,1,1,1,1,1,1,1
-1778.5,85.38854298,1191.819132,1467.561552,-377.2755323,-384.8972603,460.1617949,460.1617949,0,0,1,1,1,1,1,1,1
-1779,85.48081785,1193.107195,1467.561552,-371.2329184,-391.2797022,460.6590673,460.6590673,0,0,1,1,1,1,1,1,1
-1779.5,85.57746344,1194.456142,1467.561552,-355.8592668,-407.1213273,461.1798937,461.1798937,0,0,1,1,1,1,1,1,1
-1780,85.68288039,1195.927259,1467.561552,-355.7992315,-407.9024859,461.7479893,461.7479893,0,0,1,1,1,1,1,1,1
-1780.5,85.79960653,1197.556413,1467.561552,-373.5177401,-390.9064686,462.3770305,462.3770305,0,0,1,1,1,1,1,1,1
-1781,85.92620556,1199.323313,1467.561552,-372.1039285,-392.9852292,463.059277,463.059277,0,0,1,1,1,1,1,1,1
-1781.5,86.0628755,1201.230942,1467.561552,-365.9231231,-400.0328994,463.795796,463.795796,0,0,1,1,1,1,1,1,1
-1782,86.2133994,1203.332408,1467.561552,-374.5190062,-392.6004338,464.6069745,464.6069745,0,0,1,1,1,1,1,1,1
-1782.5,86.37957481,1205.651653,1467.561552,-376.081993,-392.1925417,465.5024995,465.5024995,0,0,1,1,1,1,1,1,1
-1783,86.55819429,1208.144556,1467.561552,-373.1031192,-396.1816626,466.465086,466.465086,0,0,1,1,1,1,1,1,1
-1783.5,86.74519443,1210.754985,1467.561552,-375.6634786,-394.5290746,467.4728362,467.4728362,0,0,1,1,1,1,1,1,1
-1784,86.93819019,1213.448389,1467.561552,-369.3090795,-401.7471174,468.512897,468.512897,0,0,1,1,1,1,1,1,1
-1784.5,87.13764715,1216.232129,1467.561552,-369.2685328,-402.7856002,469.5877774,469.5877774,0,0,1,1,1,1,1,1,1
-1785,87.33227817,1218.948754,1467.561552,-492.7866775,-552.1388601,470.6366507,470.6366507,0,0,1,1,1,1,1,1,1
-1785.5,87.46261599,1220.767994,1467.561552,-1053.64734,-1125.400043,471.3390456,471.3390456,0,0,1,1,1,1,1,1,1
-1786,87.5,1221.2899,1467.561552,-1383.008693,-1556.731046,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1786.5,87.5,1221.2899,1467.561552,-1413.009988,-1564.865982,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1787,87.5,1221.2899,1467.561552,-1445.345418,-1555.404709,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1787.5,87.5,1221.2899,1467.561552,-1440.422838,-1557.143587,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1788,87.5,1221.2899,1467.561552,-1434.4846,-1540.155769,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1788.5,87.5,1221.2899,1467.561552,-1408.918957,-1543.335134,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1789,87.5,1221.2899,1467.561552,-1420.420996,-1518.534433,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1789.5,87.5,1221.2899,1467.561552,-1441.617971,-1500.45952,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1790,87.5,1221.2899,1467.561552,-1441.527518,-1517.159178,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1790.5,87.5,1221.2899,1467.561552,-1439.987775,-1529.059184,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1791,87.5,1221.2899,1467.561552,-1440.959395,-1513.273614,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1791.5,87.5,1221.2899,1467.561552,-1394.511981,-1534.004062,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1792,87.5,1221.2899,1467.561552,-1367.915062,-1539.269646,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1792.5,87.5,1221.2899,1467.561552,-1406.197238,-1486.763603,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1793,87.5,1221.2899,1467.561552,-1394.593859,-1504.190841,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1793.5,87.5,1221.2899,1467.561552,-1387.664821,-1530.277433,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1794,87.5,1221.2899,1467.561552,-1401.973266,-1535.827388,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1794.5,87.5,1221.2899,1467.561552,-1384.332511,-1582.289167,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1795,87.5,1221.2899,1467.561552,-1406.637732,-1632.674367,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1795.5,87.5,1221.2899,1467.561552,-1421.335733,-1691.389034,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1796,87.5,1221.2899,1467.561552,-1492.254093,-1631.893518,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1796.5,87.5,1221.2899,1467.561552,-1473.408041,-1627.620078,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1797,87.5,1221.2899,1467.561552,-1465.385877,-1589.23377,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1797.5,87.5,1221.2899,1467.561552,-1422.800368,-1518.389909,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1798,87.5,1221.2899,1467.561552,-1278.297479,-1426.323194,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1798.5,87.5,1221.2899,1467.561552,-1138.399118,-1299.059555,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1799,87.5,1221.2899,1467.561552,-1008.182021,-1209.148177,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1799.5,87.5,1221.2899,1467.561552,-922.3528142,-1080.391303,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1800,87.5,1221.2899,1467.561552,-834.6022744,-921.8189879,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1800.5,87.5,1221.2899,1467.561552,-696.3148011,-793.9616944,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1801,87.5,1221.2899,1467.561552,-584.857116,-639.8410474,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1801.5,87.5,1221.2899,1467.561552,-450.7041329,-491.1044702,471.5405094,471.5405094,0,0,1,1,1,1,1,1,1
-1802,87.48896346,1221.135721,1467.561552,-358.8271553,-425.1504244,471.4810331,471.4810331,0,0,1,1,1,1,1,1,1
-1802.5,87.44678187,1220.546998,1467.561552,-352.8872046,-409.6687159,471.253715,471.253715,0,0.0000554378,1,1,1,1,1,1,1
-1803,87.3659979,1219.419209,1467.561552,-362.1929058,-398.6106183,470.8183675,470.8183675,0,0.0001,1,1,1,1,1,1,1
-1803.5,87.24926195,1217.789952,1467.561552,-366.0277203,-392.9923259,470.1892734,470.1892734,0,0.0001,1,1,1,1,1,1,1
-1804,87.09621788,1215.65385,1467.561552,-361.2674788,-395.7221306,469.3645137,469.3645137,0,0.0001,1,1,1,1,1,1,1
-1804.5,86.90518759,1212.987221,1467.561552,-364.7702155,-390.0469153,468.3350449,468.3350449,0,0.0001,1,1,1,1,1,1,1
-1805,86.678816,1209.827917,1467.561552,-354.3804905,-398.3733279,467.1151205,467.1151205,0,0.000154983,1,1,1,1,1,1,1
-1805.5,86.42152972,1206.236904,1467.561552,-360.0754173,-390.631927,465.7285959,465.7285959,0,0.0000903136,1,1,1,1,1,1,1
-1806,86.13165566,1202.190733,1467.561552,-357.8070373,-390.4884505,464.1664547,464.1664547,0,0,1,1,1,1,1,1,1
-1806.5,85.80404311,1197.618014,1467.561552,-338.9982263,-406.775818,462.4009394,462.4009394,0,0,1,1,1,1,1,1,1
-1807,85.44187076,1192.562976,1467.561552,-338.7014143,-405.0073798,460.4491801,460.4491801,0,0,1,1,1,1,1,1,1
-1807.5,85.14418634,1188.408552,1467.561552,444.5506834,521.8638457,458.8449485,458.8449485,1364.721863,12825.20674,1,1,1,1,1,1,1
-1808,85.01737696,1186.638718,1467.561552,1388.357532,1569.579404,458.1615684,458.1615684,2991.753641,28113.42953,1,1,1,1,1,1,1
-1808.5,85,1186.3959,1467.561552,1704.19772,1883.586953,458.0679234,458.0679234,3535.657596,33225.05105,1,1,1,1,1,1,1
-1809,85,1186.3959,1467.561552,1771.254907,2069.543078,458.0679234,458.0679234,3760.327621,35337.40662,1,1,1,1,1,1,1
-1809.5,85,1186.3959,1467.561552,1891.735821,2139.275065,458.0679234,458.0679234,3944.519291,37066.32528,1,1,1,1,1,1,1
-1810,85,1186.3959,1467.561552,1972.44198,2263.641321,458.0679234,458.0679234,4147.947079,38975.43967,1,1,1,1,1,1,1
-1810.5,84.99540922,1186.332061,1467.561552,2067.389247,2339.313872,458.0431835,458.0431835,4319.485882,40586.69533,1,1,1,1,1,1,1
-1811,84.97935,1186.10814,1467.561552,2153.157255,2336.580772,457.9566398,457.9566398,4405.077974,41391.5214,1,1,1,1,1,1,1
-1811.5,84.95172346,1185.722044,1467.561552,2172.725777,2349.927018,457.8077594,457.8077594,4437.728635,41698.53829,1,1,1,1,1,1,1
-1812,84.91535835,1185.214034,1467.561552,2212.152194,2323.729093,457.6117866,457.6117866,4449.352442,41807.8391,1,1,1,1,1,1,1
-1812.5,84.87176469,1184.605908,1467.561552,2212.993984,2328.323676,457.3768589,457.3768589,4452.502753,41837.46385,1,1,1,1,1,1,1
-1813,84.82377666,1183.93619,1467.561552,2129.877921,2413.117837,457.1182498,457.1182498,4451.636405,41829.32005,1,1,1,1,1,1,1
-1813.5,84.77550774,1183.262178,1467.561552,2054.83785,2488.186669,456.8581269,456.8581269,4449.203261,41806.44384,1,1,1,1,1,1,1
-1814,84.72893705,1182.612473,1467.561552,2129.933447,2412.982794,456.6071558,456.6071558,4446.704324,41782.94864,1,1,1,1,1,1,1
-1814.5,84.68255409,1181.965541,1467.561552,2117.724345,2425.191406,456.3571965,456.3571965,4444.21628,41759.55567,1,1,1,1,1,1,1
-1815,84.63410836,1181.288963,1467.561552,2081.00244,2461.978115,456.0961207,456.0961207,4441.614007,41735.08898,1,1,1,1,1,1,1
-1815.5,84.58055907,1180.541548,1467.561552,2149.22943,2393.965492,455.8075418,455.8075418,4438.739235,41708.06047,1,1,1,1,1,1,1
-1816,84.5192625,1179.686487,1467.561552,2217.481438,2325.970461,455.4772124,455.4772124,4435.450582,41677.14016,1,1,1,1,1,1,1
-1816.5,84.45092035,1178.732696,1467.561552,2151.488499,2392.114335,455.1089143,455.1089143,4431.782074,41642.64831,1,1,1,1,1,1,1
-1817,84.37824697,1177.717999,1467.561552,2091.729966,2451.906111,454.7172749,454.7172749,4427.879356,41605.95494,1,1,1,1,1,1,1
-1817.5,84.30364748,1176.676373,1467.561552,2124.94641,2418.644964,454.3152557,454.3152557,4423.873038,41568.28729,1,1,1,1,1,1,1
-1818,84.22825616,1175.624375,1467.561552,2184.129501,2359.403979,453.9089693,453.9089693,4419.826779,41530.24422,1,1,1,1,1,1,1
-1818.5,84.15226531,1174.563706,1467.561552,2226.305371,2317.174978,453.499452,453.499452,4415.74724,41491.88838,1,1,1,1,1,1,1
-1819,84.07509502,1173.486348,1467.561552,2214.150363,2329.312605,453.0835787,453.0835787,4411.603498,41452.92887,1,1,1,1,1,1,1
-1819.5,83.99547749,1172.375422,1467.561552,2167.189974,2376.307528,452.654517,452.654517,4407.330635,41412.75509,1,1,1,1,1,1,1
-1820,83.913031,1171.224688,1467.561552,2135.448769,2408.05925,452.2102101,452.2102101,4402.904656,41371.14164,1,1,1,1,1,1,1
-1820.5,83.82862581,1170.046114,1467.561552,2195.992715,2347.475596,451.7553476,451.7553476,4398.371463,41328.52012,1,1,1,1,1,1,1
-1821,83.74287641,1168.849307,1467.561552,2152.187363,2391.236224,451.2932411,451.2932411,4393.768134,41285.2394,1,1,1,1,1,1,1
-1821.5,83.65572075,1167.63306,1467.561552,2067.24254,2476.147658,450.8235563,450.8235563,4389.090162,41241.25725,1,1,1,1,1,1,1
-1822,83.56680188,1166.391628,1467.561552,2139.702675,2403.668811,450.3443694,450.3443694,4384.315432,41196.36492,1,1,1,1,1,1,1
-1822.5,83.47552187,1165.117702,1467.561552,2119.084553,2424.289063,449.8524583,449.8524583,4379.415735,41150.29742,1,1,1,1,1,1,1
-1823,83.38106766,1163.799298,1467.561552,2152.996099,2390.418236,449.3434413,449.3434413,4374.344942,41102.62145,1,1,1,1,1,1,1
-1823.5,83.28232892,1162.421154,1467.561552,2249.027676,2294.462579,448.8113349,448.8113349,4369.044296,41052.78444,1,1,1,1,1,1,1
-1824,83.17911949,1160.980584,1467.561552,2225.001924,2318.533597,448.2551357,448.2551357,4363.503554,41000.69007,1,1,1,1,1,1,1
-1824.5,83.07334815,1159.504006,1467.561552,2239.607174,2303.850632,447.6851303,447.6851303,4357.82427,40947.29305,1,1,1,1,1,1,1
-1825,82.96748723,1158.026445,1467.561552,2163.689564,2379.618295,447.1146422,447.1146422,4352.141137,40893.85983,1,1,1,1,1,1,1
-1825.5,82.86231423,1156.55842,1467.561552,2115.071994,2428.100856,446.5478613,446.5478613,4346.494723,40840.77223,1,1,1,1,1,1,1
-1826,82.75754628,1155.09654,1467.561552,2145.980584,2397.064291,445.9832632,445.9832632,4340.872132,40787.90845,1,1,1,1,1,1,1
-1826.5,82.65381331,1153.648733,1467.561552,2135.147928,2407.720004,445.4242426,445.4242426,4335.303491,40735.55186,1,1,1,1,1,1,1
-1827,82.55213624,1152.229687,1467.561552,2135.049734,2407.609275,444.8763014,444.8763014,4329.845349,40684.23423,1,1,1,1,1,1,1
-1827.5,82.45212145,1150.833947,1467.561552,2099.218409,2443.297651,444.3373182,444.3373182,4324.477167,40633.7623,1,1,1,1,1,1,1
-1828,82.35279089,1149.447165,1467.561552,2102.507907,2439.878714,443.8020224,443.8020224,4319.143432,40583.6139,1,1,1,1,1,1,1
-1828.5,82.25506432,1148.082843,1467.561552,2194.28422,2347.884215,443.2753706,443.2753706,4313.895822,40534.27526,1,1,1,1,1,1,1
-1829,82.16076684,1146.766576,1467.561552,2212.606696,2329.29802,442.7671982,442.7671982,4308.833136,40486.67584,1,1,1,1,1,1,1
-1829.5,82.07034618,1145.504898,1467.561552,2108.796802,2432.865839,442.2799182,442.2799182,4303.980542,40441.05165,1,1,1,1,1,1,1
-1830,81.98330937,1144.290567,1467.561552,2079.217088,2462.232647,441.8108739,441.8108739,4299.309977,40397.1389,1,1,1,1,1,1,1
-1830.5,81.89863848,1143.108551,1467.561552,2182.760707,2358.530988,441.3545795,441.3545795,4294.763644,40354.39386,1,1,1,1,1,1,1
-1831,81.81462445,1141.935879,1467.561552,2188.737949,2352.467533,440.901825,440.901825,4290.253223,40311.9863,1,1,1,1,1,1,1
-1831.5,81.72932986,1140.745384,1467.561552,2181.635359,2359.561327,440.4421695,440.4421695,4285.674285,40268.93479,1,1,1,1,1,1,1
-1832,81.64104872,1139.513166,1467.561552,2213.397567,2327.836397,439.9664194,439.9664194,4280.934983,40224.37594,1,1,1,1,1,1,1
-1832.5,81.5489681,1138.22782,1467.561552,2167.133448,2374.146493,439.4701938,439.4701938,4275.991259,40177.89518,1,1,1,1,1,1,1
-1833,81.45274136,1136.884718,1467.561552,2193.338048,2347.995045,438.9516246,438.9516246,4270.825308,40129.32447,1,1,1,1,1,1,1
-1833.5,81.35289732,1135.491339,1467.561552,2165.578035,2375.750763,438.4135616,438.4135616,4265.466085,40078.93673,1,1,1,1,1,1,1
-1834,81.25120272,1134.072071,1467.561552,2065.467856,2475.776551,437.8655259,437.8655259,4260.007289,40027.61297,1,1,1,1,1,1,1
-1834.5,81.14953906,1132.653166,1467.561552,2137.379038,2403.712539,437.3176569,437.3176569,4254.549888,39976.30179,1,1,1,1,1,1,1
-1835,81.04938401,1131.25468,1467.561552,2142.985141,2397.908851,436.7779179,436.7779179,4249.171093,39925.72989,1,1,1,1,1,1,1
-1835.5,80.95112017,1129.882645,1467.561552,2136.270016,2404.440366,436.2483707,436.2483707,4243.893963,39876.11435,1,1,1,1,1,1,1
-1836,80.8540392,1128.52787,1467.561552,2143.706423,2396.86231,435.725198,435.725198,4238.683163,39827.12205,1,1,1,1,1,1,1
-1836.5,80.75647406,1127.166398,1467.561552,2170.40144,2370.118698,435.1994161,435.1994161,4233.446651,39777.88804,1,1,1,1,1,1,1
-1837,80.65592333,1125.762885,1467.561552,2154.245046,2386.3209,434.6575448,434.6575448,4228.048299,39727.13259,1,1,1,1,1,1,1
-1837.5,80.55159105,1124.30643,1467.561552,2147.528578,2393.036172,434.0952945,434.0952945,4222.446398,39674.46332,1,1,1,1,1,1,1
-1838,80.44515288,1122.821211,1467.561552,2213.19537,2327.27859,433.5216956,433.5216956,4216.734085,39620.75545,1,1,1,1,1,1,1
-1838.5,80.33884173,1121.337939,1467.561552,2225.288677,2315.015962,432.9487812,432.9487812,4211.029156,39567.1173,1,1,1,1,1,1,1
-1839,80.23688875,1119.914581,1467.561552,2258.854805,2281.043039,432.399353,432.399353,4205.554509,39515.64478,1,1,1,1,1,1,1
-1839.5,80.14595281,1118.645131,1467.561552,2211.665997,2327.564375,431.9092961,431.9092961,4200.671798,39469.73712,1,1,1,1,1,1,1
-1840,80.07255358,1117.621032,1467.561552,2097.839895,2440.518039,431.5137452,431.5137452,4196.732967,39432.7037,1,1,1,1,1,1,1
-1840.5,80.01972735,1116.88385,1467.561552,2134.418518,2403.090389,431.2290628,431.2290628,4193.897604,39406.04556,1,1,1,1,1,1,1
-1841,79.98473233,1116.395211,1467.561552,2234.638083,2302.252763,431.0404734,431.0404734,4192.01802,39388.3739,1,1,1,1,1,1,1
-1841.5,79.96360696,1116.100305,1467.561552,2257.065317,2279.312971,430.9266281,430.9266281,4190.88383,39377.71023,1,1,1,1,1,1,1
-1842,79.95512792,1115.981991,1467.561552,2152.376067,2383.513062,430.8809342,430.8809342,4190.42881,39373.43216,1,1,1,1,1,1,1
-1842.5,79.95894312,1116.034945,1467.561552,2075.557762,2459.758459,430.9014945,430.9014945,4190.506866,39374.16564,1,1,1,1,1,1,1
-1843,79.97358822,1116.239025,1467.561552,2154.848733,2379.828933,430.9804174,430.9804174,4190.994029,39378.74557,1,1,1,1,1,1,1
-1843.5,79.9971195,1116.567463,1467.561552,2118.125015,2415.93877,431.1072283,431.1072283,4191.910225,39387.35973,1,1,1,1,1,1,1
-1844,80.02926615,1117.016618,1467.561552,2120.950795,2412.459893,431.2804677,431.2804677,4193.277962,39400.21872,1,1,1,1,1,1,1
-1844.5,80.07103111,1117.59966,1467.561552,2163.670579,2369.038,431.5055405,431.5055405,4195.132098,39417.65104,1,1,1,1,1,1,1
-1845,80.12448519,1118.345108,1467.561552,2095.256216,2436.577755,431.7936064,431.7936064,4197.548156,39440.36673,1,1,1,1,1,1,1
-1845.5,80.19370944,1119.31161,1467.561552,2119.321321,2411.337722,432.1666583,432.1666583,4200.683796,39469.8476,1,1,1,1,1,1,1
-1846,80.28095351,1120.52985,1467.561552,2104.631942,2424.802485,432.6368196,432.6368196,4204.681245,39507.43122,1,1,1,1,1,1,1
-1846.5,80.38409185,1121.969227,1467.561552,2060.963468,2467.416741,433.1926356,433.1926356,4209.54478,39553.1577,1,1,1,1,1,1,1
-1847,80.50074898,1123.597162,1467.561552,2152.296542,2375.148002,433.8213049,433.8213049,4215.201379,39606.34039,1,1,1,1,1,1,1
-1847.5,80.63017002,1125.403146,1467.561552,2183.143616,2343.44355,434.5187593,434.5187593,4221.591403,39666.41899,1,1,1,1,1,1,1
-1848,80.77169938,1127.378812,1467.561552,2161.403666,2364.405634,435.2814659,435.2814659,4228.671469,39732.98574,1,1,1,1,1,1,1
-1848.5,80.92455145,1129.51246,1467.561552,2113.741745,2411.376899,436.105191,436.105191,4236.398308,39805.6335,1,1,1,1,1,1,1
-1849,81.08833964,1131.798388,1467.561552,2105.364977,2419.094739,436.9878512,436.9878512,4244.739658,39884.05889,1,1,1,1,1,1,1
-1849.5,81.26384471,1134.247833,1467.561552,2207.318237,2316.435584,437.9336541,437.9336541,4253.704628,39968.34789,1,1,1,1,1,1,1
-1850,81.45221099,1136.876748,1467.561552,2179.375931,2343.62713,438.9487664,438.9487664,4263.332898,40058.87308,1,1,1,1,1,1,1
-1850.5,81.65500505,1139.707658,1467.561552,2079.277799,2442.854581,440.0416305,440.0416305,4273.691081,40156.26065,1,1,1,1,1,1,1
-1851,81.87508027,1142.779558,1467.561552,2092.442338,2428.638825,441.2276235,441.2276235,4284.894069,40261.59118,1,1,1,1,1,1,1
-1851.5,82.11546599,1146.134425,1467.561552,2100.699031,2419.145866,442.5230704,442.5230704,4297.08596,40376.21943,1,1,1,1,1,1,1
-1852,82.37712788,1149.786407,1467.561552,2102.253704,2416.353296,443.9331754,443.9331754,4310.363544,40501.05515,1,1,1,1,1,1,1
-1852.5,82.65620976,1153.682196,1467.561552,2194.636118,2323.089935,445.4371572,445.4371572,4324.657087,40635.44299,1,1,1,1,1,1,1
-1853,82.94730373,1157.745283,1467.561552,2234.73882,2282.433295,447.0058726,447.0058726,4339.764732,40777.48523,1,1,1,1,1,1,1
-1853.5,83.24970517,1161.965574,1467.561552,2141.362006,2375.245935,448.6355243,448.6355243,4355.56696,40926.05848,1,1,1,1,1,1,1
-1854,83.56628675,1166.384184,1467.561552,2113.33074,2402.580882,450.3415934,450.3415934,4372.103456,41081.53538,1,1,1,1,1,1,1
-1854.5,83.89802619,1171.014855,1467.561552,2144.742718,2370.505109,452.1293486,452.1293486,4389.427585,41244.41718,1,1,1,1,1,1,1
-1855,84.24340637,1175.835808,1467.561552,2156.572523,2358.124721,453.9906143,453.9906143,4407.515739,41414.4827,1,1,1,1,1,1,1
-1855.5,84.60195306,1180.84053,1467.561552,2203.205195,2310.946489,455.9228347,455.9228347,4426.342186,41591.48975,1,1,1,1,1,1,1
-1856,84.88224321,1184.752958,1467.561552,1353.974951,1388.026145,457.433328,457.433328,2835.188442,26640.05029,1,1,1,1,1,1,1
-1856.5,84.98983639,1186.254345,1467.561552,438.6297791,466.9489841,458.0131513,458.0131513,1214.082754,11407.31954,1,1,1,1,1,1,1
-1857,85,1186.3959,1467.561552,261.5082947,278.4948183,458.0679234,458.0679234,929.074996,8729.433946,1,1,1,1,1,1,1
-1857.5,85,1186.3959,1467.561552,203.2723515,215.6975827,458.0679234,458.0679234,837.8888528,7872.664067,1,1,1,1,1,1,1
-1858,85,1186.3959,1467.561552,162.0316092,180.8521852,458.0679234,458.0679234,780.566085,7334.069126,1,1,1,1,1,1,1
-1858.5,85,1186.3959,1467.561552,130.2464627,142.7159864,458.0679234,458.0679234,728.9879631,6849.449378,1,1,1,1,1,1,1
-1859,85,1186.3959,1467.561552,97.97067161,108.9826947,458.0679234,458.0679234,681.8959993,6406.980843,1,1,1,1,1,1,1
-1859.5,85,1186.3959,1467.561552,82.48170853,94.75108015,458.0679234,458.0679234,660.9734943,6210.396585,1,1,1,1,1,1,1
-1860,85,1186.3959,1467.561552,87.96567241,99.19533272,458.0679234,458.0679234,668.1269561,6277.609214,1,1,1,1,1,1,1
-1860.5,85,1186.3959,1467.561552,98.51268982,111.0887779,458.0679234,458.0679234,684.2948565,6429.520145,1,1,1,1,1,1,1
-1861,85,1186.3959,1467.561552,110.77737,130.8755348,458.0679234,458.0679234,706.1192236,6634.578467,1,1,1,1,1,1,1
-1861.5,85,1186.3959,1467.561552,125.7950058,139.167391,458.0679234,458.0679234,721.9374555,6783.204166,1,1,1,1,1,1,1
-1862,85,1186.3959,1467.561552,127.2231625,136.8624186,458.0679234,458.0679234,721.2909769,6777.129789,1,1,1,1,1,1,1
-1862.5,85,1186.3959,1467.561552,116.6454276,130.1779573,458.0679234,458.0679234,709.6414641,6667.672882,1,1,1,1,1,1,1
-1863,85,1186.3959,1467.561552,103.3915629,119.0653597,458.0679234,458.0679234,693.22318,6513.40938,1,1,1,1,1,1,1
-1863.5,85,1186.3959,1467.561552,94.89886357,106.7590235,458.0679234,458.0679234,678.5714547,6375.743995,1,1,1,1,1,1,1
-1864,85,1186.3959,1467.561552,92.56257791,101.5317225,458.0679234,458.0679234,673.1221482,6324.543112,1,1,1,1,1,1,1
-1864.5,85,1186.3959,1467.561552,99.27996482,108.181857,458.0679234,458.0679234,682.7536301,6415.039325,1,1,1,1,1,1,1
-1865,85,1186.3959,1467.561552,113.9979726,122.4498593,458.0679234,458.0679234,702.6635699,6602.110042,1,1,1,1,1,1,1
-1865.5,85,1186.3959,1467.561552,117.9146079,127.7408252,458.0679234,458.0679234,708.8831399,6660.54771,1,1,1,1,1,1,1
-1866,85,1186.3959,1467.561552,109.9330775,120.3399703,458.0679234,458.0679234,698.7123044,6564.98407,1,1,1,1,1,1,1
-1866.5,85,1186.3959,1467.561552,103.4131459,111.9087426,458.0679234,458.0679234,688.4162443,6468.244034,1,1,1,1,1,1,1
-1867,85,1186.3959,1467.561552,101.1805732,108.6057402,458.0679234,458.0679234,684.427794,6430.769571,1,1,1,1,1,1,1
-1867.5,85,1186.3959,1467.561552,97.96533468,101.8179774,458.0679234,458.0679234,677.2211253,6363.056802,1,1,1,1,1,1,1
-1868,85,1186.3959,1467.561552,85.22652765,92.39046066,458.0679234,458.0679234,661.2509513,6213.003534,1,1,1,1,1,1,1
-1868.5,85,1186.3959,1467.561552,70.54307627,84.52551048,458.0679234,458.0679234,645.0052254,6060.361777,1,1,1,1,1,1,1
-1869,85,1186.3959,1467.561552,68.87652118,76.36907635,458.0679234,458.0679234,637.9276354,5993.862047,1,1,1,1,1,1,1
-1869.5,85,1186.3959,1467.561552,65.80487125,73.77772612,458.0679234,458.0679234,633.8472636,5955.523486,1,1,1,1,1,1,1
-1870,85,1186.3959,1467.561552,58.22660218,67.62948715,458.0679234,458.0679234,623.9576963,5862.602556,1,1,1,1,1,1,1
-1870.5,85,1186.3959,1467.561552,60.75327804,64.89159174,458.0679234,458.0679234,623.8054232,5861.171599,1,1,1,1,1,1,1
-1871,85,1186.3959,1467.561552,70.3575607,75.84273483,458.0679234,458.0679234,638.61541,6000.323987,1,1,1,1,1,1,1
-1871.5,85,1186.3959,1467.561552,81.08403026,92.81605736,458.0679234,458.0679234,658.5730632,6187.842633,1,1,1,1,1,1,1
-1872,85,1186.3959,1467.561552,96.29994432,111.7232374,458.0679234,458.0679234,683.1579447,6418.838022,1,1,1,1,1,1,1
-1872.5,85,1186.3959,1467.561552,109.2208748,125.6627269,458.0679234,458.0679234,701.8700598,6594.654119,1,1,1,1,1,1,1
-1873,85,1186.3959,1467.561552,110.5298642,131.3706505,458.0679234,458.0679234,706.4458405,6637.647309,1,1,1,1,1,1,1
-1873.5,85,1186.3959,1467.561552,106.5012671,123.5472691,458.0679234,458.0679234,698.537057,6563.337459,1,1,1,1,1,1,1
-1874,85,1186.3959,1467.561552,97.6596867,109.0477375,458.0679234,458.0679234,682.2100279,6409.931487,1,1,1,1,1,1,1
-1874.5,85,1186.3959,1467.561552,88.688513,96.94555087,458.0679234,458.0679234,667.0273888,6267.278224,1,1,1,1,1,1,1
-1875,85,1186.3959,1467.561552,83.63722097,93.74040614,458.0679234,458.0679234,661.0785262,6211.383601,1,1,1,1,1,1,1
-1875.5,85,1186.3959,1467.561552,73.6949957,88.26270377,458.0679234,458.0679234,649.9684828,6106.995349,1,1,1,1,1,1,1
-1876,85,1186.3959,1467.561552,56.71337435,68.06712121,458.0679234,458.0679234,623.1828575,5855.322218,1,1,1,1,1,1,1
-1876.5,85,1186.3959,1467.561552,37.69050066,43.52010553,458.0679234,458.0679234,591.7917902,5560.376899,1,1,1,1,1,1,1
-1877,85,1186.3959,1467.561552,21.74493028,23.61840172,458.0679234,458.0679234,565.9647845,5317.71066,1,1,1,1,1,1,1
-1877.5,85,1186.3959,1467.561552,9.655738176,10.23619701,458.0679234,458.0679234,547.6131061,5145.281501,1,1,1,1,1,1,1
-1878,85,1186.3959,1467.561552,2.469777241,2.899303717,458.0679234,458.0679234,537.1496928,5046.968886,1,1,1,1,1,1,1
-1878.5,85,1186.3959,1467.561552,7.597338021,8.580426582,458.0679234,458.0679234,544.937155,5120.138573,1,1,1,1,1,1,1
-1879,85,1186.3959,1467.561552,25.77249054,27.36488927,458.0679234,458.0679234,571.5656724,5370.335806,1,1,1,1,1,1,1
-1879.5,85,1186.3959,1467.561552,45.20163463,48.88733677,458.0679234,458.0679234,601.0706716,5647.559785,1,1,1,1,1,1,1
-1880,85,1186.3959,1467.561552,57.55222364,60.11128715,458.0679234,458.0679234,618.055348,5807.145185,1,1,1,1,1,1,1
-1880.5,85,1186.3959,1467.561552,50.56792197,54.44169636,458.0679234,458.0679234,608.9378865,5721.47891,1,1,1,1,1,1,1
-1881,85,1186.3959,1467.561552,20.53006172,23.89141063,458.0679234,458.0679234,565.2855229,5311.328246,1,1,1,1,1,1,1
-1881.5,85,1186.3959,1467.561552,-18.21122684,-19.36582813,458.0679234,458.0679234,506.3142549,4757.244249,1,1,1,1,1,1,1
-1882,84.98223097,1186.147782,1467.561552,-208.2738756,-233.7668646,457.9721655,457.9721655,220.6277185,2072.981362,1,1,1,1,1,1,1
-1882.5,84.93266178,1185.4562,1467.561552,-348.7023869,-406.2228936,457.7050354,457.7050354,0,0.0001,1,1,1,1,1,1,1
-1883,84.87039756,1184.587576,1467.561552,-357.7205586,-397.1594725,457.3694914,457.3694914,0,0.0001,1,1,1,1,1,1,1
-1883.5,84.80931415,1183.734776,1467.561552,-361.6767627,-393.0401172,457.0403108,457.0403108,0,0.0001,1,1,1,1,1,1,1
-1884,84.74641515,1182.856297,1467.561552,-366.7709611,-387.6624065,456.7013459,456.7013459,0,0.0001,1,1,1,1,1,1,1
-1884.5,84.67988816,1181.927979,1467.561552,-360.8284817,-393.2910694,456.3428297,456.3428297,0,0.0001,1,1,1,1,1,1,1
-1885,84.61199952,1180.980315,1467.561552,-348.8666875,-405.1315923,455.9769755,455.9769755,0,0.0001,1,1,1,1,1,1,1
-1885.5,84.54683727,1180.07048,1467.561552,-362.7726107,-391.2417623,455.6258138,455.6258138,0,0.0001,1,1,1,1,1,1,1
-1886,84.48446139,1179.200117,1467.561552,-373.1886219,-380.727786,455.2896681,455.2896681,0,0.0001,1,1,1,1,1,1,1
-1886.5,84.42218988,1178.331161,1467.561552,-358.9338851,-394.7887509,454.9540848,454.9540848,0,0.0001,1,1,1,1,1,1,1
-1887,84.35828858,1177.439128,1467.561552,-348.6219929,-404.859648,454.6097185,454.6097185,0,0.0001,1,1,1,1,1,1,1
-1887.5,84.29143139,1176.505633,1467.561552,-364.3507655,-388.8204322,454.2494228,454.2494228,0,0.0001,1,1,1,1,1,1,1
-1888,84.21969886,1175.504459,1467.561552,-376.3809455,-376.3809455,453.8628537,453.8628537,0,0.0001,1,1,1,1,1,1,1
-1888.5,84.14202614,1174.420325,1467.561552,-360.0710153,-392.2682951,453.4442728,453.4442728,0,0.0001,1,1,1,1,1,1,1
-1889,84.06065702,1173.284362,1467.561552,-345.9596806,-406.1265816,453.0057717,453.0057717,0,0.0001,1,1,1,1,1,1,1
-1889.5,83.97924637,1172.148286,1467.561552,-341.8809971,-410.0682923,452.567047,452.567047,0,0.0001,1,1,1,1,1,1,1
-1890,83.89885972,1171.026817,1467.561552,-338.3025188,-413.4808563,452.1338405,452.1338405,0,0.0001,1,1,1,1,1,1,1
-1890.5,83.81873842,1169.908378,1467.561552,-340.2164798,-411.368092,451.7020641,451.7020641,0,0.0001,1,1,1,1,1,1,1
-1891,83.73911171,1168.797048,1467.561552,-355.9147655,-395.526614,451.272953,451.272953,0,0.0001,1,1,1,1,1,1,1
-1891.5,83.66138768,1167.71269,1467.561552,-368.1679093,-383.1951709,450.8540956,450.8540956,0,0.0001,1,1,1,1,1,1,1
-1892,83.58571595,1166.65604,1467.561552,-368.1050319,-383.1297271,450.446298,450.446298,0,0.0001,1,1,1,1,1,1,1
-1892.5,83.50969135,1165.594538,1467.561552,-365.9827219,-384.9911604,450.0365988,450.0365988,0,0.0001,1,1,1,1,1,1,1
-1893,83.43087159,1164.49456,1467.561552,-358.0888387,-392.5588962,449.6118364,449.6118364,0,0.0001,1,1,1,1,1,1,1
-1893.5,83.34871541,1163.347978,1467.561552,-350.6644442,-399.6620838,449.1690939,449.1690939,0,0.0001,1,1,1,1,1,1,1
-1894,83.26336142,1162.156561,1467.561552,-342.7891277,-407.2064304,448.7091183,448.7091183,0,0.0001,1,1,1,1,1,1,1
-1894.5,83.17438823,1160.914546,1467.561552,-349.2311946,-400.3938337,448.2296388,448.2296388,0,0.0001,1,1,1,1,1,1,1
-1895,83.08211529,1159.62684,1467.561552,-357.686423,-391.619488,447.7323767,447.7323767,0,0.0001,1,1,1,1,1,1,1
-1895.5,82.98977637,1158.338176,1467.561552,-347.9485615,-401.2361717,447.2347591,447.2347591,0,0.0001,1,1,1,1,1,1,1
-1896,82.90221629,1157.11608,1467.561552,-354.7531937,-394.5079853,446.7628948,446.7628948,0,0.0001,1,1,1,1,1,1,1
-1896.5,82.82312441,1156.012176,1467.561552,-355.3829031,-394.0825953,446.336666,446.336666,0,0.0001,1,1,1,1,1,1,1
-1897,82.7546596,1155.056662,1467.561552,-356.740941,-393.0188346,445.9677067,445.9677067,0,0.0001,1,1,1,1,1,1,1
-1897.5,82.6997965,1154.290635,1467.561552,-359.723359,-390.5319359,445.6720476,445.6720476,0,0.0000473611,1,1,1,1,1,1,1
-1898,82.66140876,1153.754875,1467.561552,-344.9966974,-405.8575079,445.4651748,445.4651748,0,0,1,1,1,1,1,1,1
-1898.5,82.63757768,1153.42224,1467.561552,-355.858867,-395.4078747,445.3367483,445.3367483,0,0,1,1,1,1,1,1,1
-1899,82.6235822,1153.226824,1467.561552,-358.1773476,-393.3696705,445.2613261,445.2613261,0,0,1,1,1,1,1,1,1
-1899.5,82.61512392,1153.108677,1467.561552,-345.7607243,-405.8930242,445.2157441,445.2157441,0,0,1,1,1,1,1,1,1
-1900,82.60658942,1152.989578,1467.561552,-341.7398769,-409.7615597,445.1697515,445.1697515,0,0,1,1,1,1,1,1,1
-1900.5,82.59223044,1152.789236,1467.561552,-349.8566965,-401.2806033,445.0923704,445.0923704,0,0,1,1,1,1,1,1,1
-1901,82.56788172,1152.449648,1467.561552,-366.2127517,-384.4037829,444.9611544,444.9611544,0,0,1,1,1,1,1,1,1
-1901.5,82.53095062,1151.934344,1467.561552,-367.3075105,-382.6848203,444.7621314,444.7621314,0,0,1,1,1,1,1,1,1
-1902,82.48073213,1151.233263,1467.561552,-353.6037069,-395.750964,444.4915022,444.4915022,0,0.0000525095,1,1,1,1,1,1,1
-1902.5,82.41894898,1150.37064,1467.561552,-342.4888601,-406.3222062,444.1585507,444.1585507,0,0.0001,1,1,1,1,1,1,1
-1903,82.34923688,1149.397551,1467.561552,-342.4917718,-405.9263109,443.7828698,443.7828698,0,0.0001,1,1,1,1,1,1,1
-1903.5,82.27552047,1148.368758,1467.561552,-340.2350076,-407.9242337,443.3856095,443.3856095,0,0.0001,1,1,1,1,1,1,1
-1904,82.20012231,1147.316549,1467.561552,-340.4861298,-407.4517662,442.9792862,442.9792862,0,0.0001,1,1,1,1,1,1,1
-1904.5,82.12342051,1146.246056,1467.561552,-341.9879,-405.7138342,442.5659376,442.5659376,0,0.0001,1,1,1,1,1,1,1
-1905,82.04553706,1145.158582,1467.561552,-345.9613407,-401.5196429,442.146221,442.146221,0,0.0001,1,1,1,1,1,1,1
-1905.5,81.96759348,1144.070797,1467.561552,-359.0502305,-388.2872802,441.7261804,441.7261804,0,0.0001,1,1,1,1,1,1,1
-1906,81.89102343,1143.002501,1467.561552,-356.4034924,-390.8304151,441.3135417,441.3135417,0,0.0001,1,1,1,1,1,1,1
-1906.5,81.81635082,1141.959753,1467.561552,-343.524615,-403.6084809,440.9111285,440.9111285,0,0.0001,1,1,1,1,1,1,1
-1907,81.74648477,1140.984565,1467.561552,-338.0688148,-409.2156519,440.5346179,440.5346179,0,0.0001,1,1,1,1,1,1,1
-1907.5,81.6878007,1140.165746,1467.561552,-348.1521035,-399.5748683,440.2183674,440.2183674,0,0.0000479704,1,1,1,1,1,1,1
-1908,81.64313631,1139.542296,1467.561552,-359.1160229,-389.0423581,439.9776695,439.9776695,0,0,1,1,1,1,1,1,1
-1908.5,81.61060946,1139.088664,1467.561552,-365.1251075,-383.3907464,439.8023812,439.8023812,0,0,1,1,1,1,1,1,1
-1909,81.5886132,1138.781433,1467.561552,-366.7959671,-382.0700187,439.6838426,439.6838426,0,0,1,1,1,1,1,1,1
-1909.5,81.57645104,1138.611478,1467.561552,-365.3178472,-383.9005709,439.6183003,439.6183003,0,0,1,1,1,1,1,1,1
-1910,81.57368332,1138.572703,1467.561552,-361.4501746,-388.1289253,439.603385,439.603385,0,0,1,1,1,1,1,1,1
-1910.5,81.58026756,1138.664754,1467.561552,-350.3903971,-399.5827947,439.6388677,439.6388677,0,0,1,1,1,1,1,1,1
-1911,81.59895639,1138.925862,1467.561552,-356.9848822,-393.6152696,439.7395824,439.7395824,0,0,1,1,1,1,1,1,1
-1911.5,81.63542354,1139.434586,1467.561552,-358.4661912,-393.044516,439.9361052,439.9361052,0,0,1,1,1,1,1,1,1
-1912,81.69459013,1140.259989,1467.561552,-359.768014,-392.8565088,440.2549559,440.2549559,0,0,1,1,1,1,1,1,1
-1912.5,81.77907643,1141.438986,1467.561552,-365.4592058,-388.3963573,440.7102555,440.7102555,0,0,1,1,1,1,1,1,1
-1913,81.88865521,1142.968983,1467.561552,-354.5535537,-400.5196426,441.3007793,441.3007793,0,0,1,1,1,1,1,1,1
-1913.5,82.020822,1144.81407,1467.561552,-363.6671391,-392.5435488,442.0130307,442.0130307,0,0,1,1,1,1,1,1,1
-1914,82.17220568,1146.926974,1467.561552,-362.7707544,-394.4879703,442.8288426,442.8288426,0,0,1,1,1,1,1,1,1
-1914.5,82.34040705,1149.274824,1467.561552,-354.7818283,-403.5118757,443.7352855,443.7352855,0,0,1,1,1,1,1,1,1
-1915,82.52488266,1151.849854,1467.561552,-358.7066785,-400.6681667,444.7294309,444.7294309,0,0,1,1,1,1,1,1,1
-1915.5,82.72617141,1154.659307,1467.561552,-353.4422762,-407.0906651,445.8141829,445.8141829,0,0,1,1,1,1,1,1,1
-1916,82.89765845,1157.052298,1467.561552,-1058.823395,-1178.350645,446.7383325,446.7383325,0,0,1,1,1,1,1,1,1
-1916.5,82.51801362,1151.753614,1467.561552,-5290.569028,-5733.937058,444.6924134,444.6924134,0,0,1,1,1,1,1,1,1
-1917,81.63935034,1139.488724,1467.561552,-5616.055924,-6315.784029,439.9572668,439.9572668,0,0,1,1,1,1,1,1,1
-1917.5,80.73930447,1126.927217,1467.561552,-5962.656718,-6128.117138,435.1068887,435.1068887,0,0,1,1,1,1,1,1,1
-1918,79.83933679,1114.364925,1467.561552,-5664.313436,-6575.605814,430.2569319,430.2569319,0,0,1,1,1,1,1,1,1
-1918.5,78.94328658,1101.858751,1467.561552,-6144.869108,-6186.125791,425.4280865,425.4280865,0,0,1,1,1,1,1,1,1
-1919,78.5,1095.6715,1467.561552,-2004.105565,-2045.426149,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1919.5,78.5,1095.6715,1467.561552,-1937.537303,-2273.437727,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1920,78.5,1095.6715,1467.561552,-2182.297364,-2182.424921,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1920.5,78.5,1095.6715,1467.561552,-2255.050333,-2301.144916,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1921,78.5,1095.6715,1467.561552,-2259.007249,-2497.087642,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1921.5,78.5,1095.6715,1467.561552,-2289.505754,-2633.244099,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1922,78.5,1095.6715,1467.561552,-2516.248197,-2568.418522,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1922.5,78.5,1095.6715,1467.561552,-2364.42182,-2888.667577,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1923,78.5,1095.6715,1467.561552,-2630.526682,-2794.371642,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1923.5,78.5,1095.6715,1467.561552,-2521.452697,-3081.059761,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1924,78.5,1095.6715,1467.561552,-2703.247869,-3048.692861,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1924.5,78.5,1095.6715,1467.561552,-2699.48511,-3167.692075,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1925,78.5,1095.6715,1467.561552,-2947.306607,-3008.040945,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1925.5,78.5,1095.6715,1467.561552,-2771.638232,-3253.292832,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1926,78.5,1095.6715,1467.561552,-2852.658708,-3216.827905,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1926.5,78.5,1095.6715,1467.561552,-2870.779553,-3237.997722,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1927,78.5,1095.6715,1467.561552,-2779.006925,-3395.592496,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1927.5,78.5,1095.6715,1467.561552,-2967.02617,-3278.783101,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1928,78.5,1095.6715,1467.561552,-3111.825204,-3240.337584,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1928.5,78.5,1095.6715,1467.561552,-2952.488372,-3606.700763,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1929,78.5,1095.6715,1467.561552,-3352.492069,-3420.02162,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1929.5,78.5,1095.6715,1467.561552,-3492.473849,-3493.277415,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1930,78.5,1095.6715,1467.561552,-3443.875887,-3731.293921,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1930.5,78.5,1095.6715,1467.561552,-3451.72085,-3892.366065,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1931,78.5,1095.6715,1467.561552,-3533.737691,-3985.082362,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1931.5,78.5,1095.6715,1467.561552,-3579.076394,-4116.678003,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1932,78.5,1095.6715,1467.561552,-3854.654057,-4011.527701,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1932.5,78.5,1095.6715,1467.561552,-4016.988733,-4019.058162,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1933,78.5,1095.6715,1467.561552,-3737.255517,-4475.205152,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1933.5,78.5,1095.6715,1467.561552,-4018.057791,-4352.401774,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1934,78.5,1095.6715,1467.561552,-4150.54093,-4321.176318,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1934.5,78.5,1095.6715,1467.561552,-3989.585256,-4589.643944,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1935,78.5,1095.6715,1467.561552,-4133.671436,-4569.311764,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1935.5,78.5,1095.6715,1467.561552,-4078.836626,-4692.061236,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1936,78.5,1095.6715,1467.561552,-4218.786203,-4569.838116,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1936.5,78.5,1095.6715,1467.561552,-4314.495933,-4490.09554,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1937,78.5,1095.6715,1467.561552,-4394.054684,-4395.525293,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1937.5,78.5,1095.6715,1467.561552,-4114.786601,-4638.533489,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1938,78.5,1095.6715,1467.561552,-4321.017454,-4323.40595,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1938.5,78.5,1095.6715,1467.561552,-3838.916084,-4691.219387,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1939,78.5,1095.6715,1467.561552,-3931.853277,-4523.240308,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1939.5,78.5,1095.6715,1467.561552,-3982.559167,-4401.530897,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1940,78.5,1095.6715,1467.561552,-3990.16442,-4323.163245,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1940.5,78.5,1095.6715,1467.561552,-3909.073699,-4407.603149,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1941,78.5,1095.6715,1467.561552,-4039.102593,-4374.703366,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1941.5,78.5,1095.6715,1467.561552,-4247.349455,-4248.068879,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1942,78.5,1095.6715,1467.561552,-4153.506697,-4411.169641,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1942.5,78.5,1095.6715,1467.561552,-4043.809745,-4559.270215,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1943,78.5,1095.6715,1467.561552,-4181.366288,-4441.495247,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1943.5,78.5,1095.6715,1467.561552,-3908.871335,-4681.001148,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1944,78.5,1095.6715,1467.561552,-4066.238453,-4493.757251,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1944.5,78.5,1095.6715,1467.561552,-4165.018043,-4424.14176,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1945,78.5,1095.6715,1467.561552,-3924.831343,-4699.837828,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1945.5,78.5,1095.6715,1467.561552,-4161.114044,-4508.63754,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1946,78.5,1095.6715,1467.561552,-4060.288635,-4671.249996,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1946.5,78.5,1095.6715,1467.561552,-4135.014028,-4663.152318,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1947,78.5,1095.6715,1467.561552,-4124.504556,-4743.788224,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1947.5,78.5,1095.6715,1467.561552,-4410.330788,-4499.428379,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1948,78.5,1095.6715,1467.561552,-4422.095728,-4513.710546,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1948.5,78.5,1095.6715,1467.561552,-4030.179149,-4925.216904,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1949,78.5,1095.6715,1467.561552,-4123.25923,-4838.180532,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1949.5,78.5,1095.6715,1467.561552,-4450.419716,-4450.66736,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1950,78.5,1095.6715,1467.561552,-4376.872037,-4467.541939,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1950.5,78.5,1095.6715,1467.561552,-3974.557067,-4857.79197,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1951,78.5,1095.6715,1467.561552,-3968.710534,-4848.45826,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1951.5,78.5,1095.6715,1467.561552,-4306.661157,-4484.201499,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1952,78.5,1095.6715,1467.561552,-4000.924766,-4790.417587,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1952.5,78.5,1095.6715,1467.561552,-4319.302924,-4496.854267,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1953,78.5,1095.6715,1467.561552,-4079.764095,-4692.874718,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1953.5,78.5,1095.6715,1467.561552,-4218.265889,-4478.939134,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1954,78.5,1095.6715,1467.561552,-4251.092248,-4424.110829,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1954.5,78.5,1095.6715,1467.561552,-4334.272765,-4334.999936,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1955,78.5,1095.6715,1467.561552,-4197.765179,-4458.912959,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1955.5,78.5,1095.6715,1467.561552,-3920.231536,-4695.397521,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1956,78.5,1095.6715,1467.561552,-3953.745715,-4640.303419,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1956.5,78.5,1095.6715,1467.561552,-4140.644469,-4486.455488,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1957,78.5,1095.6715,1467.561552,-4024.966169,-4630.091694,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1957.5,78.5,1095.6715,1467.561552,-4162.445213,-4510.586038,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1958,78.5,1095.6715,1467.561552,-3964.788375,-4746.605305,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1958.5,78.5,1095.6715,1467.561552,-4381.018398,-4382.990572,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1959,78.5,1095.6715,1467.561552,-4050.051955,-4754.408817,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1959.5,78.5,1095.6715,1467.561552,-4069.233244,-4776.110443,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1960,78.5,1095.6715,1467.561552,-4243.254895,-4689.114897,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1960.5,78.5,1095.6715,1467.561552,-4424.262719,-4605.627194,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1961,78.5,1095.6715,1467.561552,-4335.614018,-4791.722995,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1961.5,78.5,1095.6715,1467.561552,-4421.010785,-4788.888431,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1962,78.5,1095.6715,1467.561552,-4534.448423,-4721.383542,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1962.5,78.5,1095.6715,1467.561552,-4221.719902,-5056.21496,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1963,78.5,1095.6715,1467.561552,-4310.7142,-4958.524298,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1963.5,78.5,1095.6715,1467.561552,-4488.291323,-4766.9842,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1964,78.5,1095.6715,1467.561552,-4295.329072,-4942.21524,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1964.5,78.5,1095.6715,1467.561552,-4240.464184,-4975.986674,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1965,78.5,1095.6715,1467.561552,-4528.705815,-4621.991563,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1965.5,78.5,1095.6715,1467.561552,-4174.864304,-4900.378221,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1966,78.5,1095.6715,1467.561552,-4242.401402,-4783.984559,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1966.5,78.5,1095.6715,1467.561552,-4220.165044,-4759.973235,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1967,78.5,1095.6715,1467.561552,-4018.517833,-4909.029389,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1967.5,78.5,1095.6715,1467.561552,-4405.75373,-4495.768756,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1968,78.5,1095.6715,1467.561552,-4240.644651,-4686.236247,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1968.5,78.5,1095.6715,1467.561552,-4389.580196,-4568.232863,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1969,78.5,1095.6715,1467.561552,-4496.273741,-4496.525893,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1969.5,78.5,1095.6715,1467.561552,-4457.566697,-4547.873237,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1970,78.5,1095.6715,1467.561552,-4411.431119,-4593.546257,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1970.5,78.5,1095.6715,1467.561552,-4050.039393,-4948.091609,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1971,78.5,1095.6715,1467.561552,-4356.975364,-4626.994932,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1971.5,78.5,1095.6715,1467.561552,-4244.913973,-4691.747023,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1972,78.5,1095.6715,1467.561552,-4227.256623,-4673.282888,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1972.5,78.5,1095.6715,1467.561552,-4059.523905,-4862.782095,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1973,78.5,1095.6715,1467.561552,-4029.095528,-4922.772503,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1973.5,78.5,1095.6715,1467.561552,-4313.591303,-4673.583557,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1974,78.5,1095.6715,1467.561552,-4241.352914,-4781.186033,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1974.5,78.5,1095.6715,1467.561552,-4520.860078,-4522.127239,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1975,78.5,1095.6715,1467.561552,-4299.408328,-4751.711147,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1975.5,78.5,1095.6715,1467.561552,-4339.659635,-4701.561185,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1976,78.5,1095.6715,1467.561552,-4286.538149,-4739.083376,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1976.5,78.5,1095.6715,1467.561552,-4063.482099,-4966.196836,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1977,78.5,1095.6715,1467.561552,-4113.95254,-4927.422434,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1977.5,78.5,1095.6715,1467.561552,-4171.371494,-4894.890747,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1978,78.5,1095.6715,1467.561552,-4499.154161,-4591.334234,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1978.5,78.5,1095.6715,1467.561552,-4280.613172,-4827.888701,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1979,78.5,1095.6715,1467.561552,-4146.361606,-4965.681545,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1979.5,78.5,1095.6715,1467.561552,-4275.196522,-4819.343162,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1980,78.5,1095.6715,1467.561552,-4540.755982,-4541.010054,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1980.5,78.5,1095.6715,1467.561552,-4491.78813,-4582.27406,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1981,78.5,1095.6715,1467.561552,-4547.87718,-4548.388588,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1981.5,78.5,1095.6715,1467.561552,-4473.850009,-4658.553263,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1982,78.5,1095.6715,1467.561552,-4129.674295,-5045.373732,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1982.5,78.5,1095.6715,1467.561552,-4467.226687,-4743.815769,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1983,78.5,1095.6715,1467.561552,-4419.556615,-4787.853,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1983.5,78.5,1095.6715,1467.561552,-4414.446246,-4781.781331,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1984,78.5,1095.6715,1467.561552,-4496.86689,-4681.982965,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1984.5,78.5,1095.6715,1467.561552,-4214.352886,-4946.728277,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1985,78.5,1095.6715,1467.561552,-4289.283405,-4837.392078,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1985.5,78.5,1095.6715,1467.561552,-4174.767409,-4899.161565,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1986,78.5,1095.6715,1467.561552,-4433.671249,-4614.895746,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1986.5,78.5,1095.6715,1467.561552,-4384.934973,-4656.429569,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1987,78.5,1095.6715,1467.561552,-4348.740896,-4710.60557,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1987.5,78.5,1095.6715,1467.561552,-4454.962244,-4637.845709,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1988,78.5,1095.6715,1467.561552,-4311.624129,-4860.943112,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1988.5,78.5,1095.6715,1467.561552,-4528.217618,-4713.306806,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1989,78.5,1095.6715,1467.561552,-4480.236224,-4758.959496,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1989.5,78.5,1095.6715,1467.561552,-4191.043125,-5019.478138,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1990,78.5,1095.6715,1467.561552,-4251.025744,-4889.872286,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1990.5,78.5,1095.6715,1467.561552,-4400.189452,-4673.927077,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1991,78.5,1095.6715,1467.561552,-4101.615445,-4910.987863,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1991.5,78.5,1095.6715,1467.561552,-4403.819468,-4585.36542,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1992,78.5,1095.6715,1467.561552,-4090.989039,-4900.195662,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1992.5,78.5,1095.6715,1467.561552,-4106.270948,-4918.221531,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1993,78.5,1095.6715,1467.561552,-4168.447619,-4893.670571,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1993.5,78.5,1095.6715,1467.561552,-4119.932545,-4933.474499,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1994,78.5,1095.6715,1467.561552,-4335.880435,-4697.466442,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1994.5,78.5,1095.6715,1467.561552,-4277.073284,-4727.556056,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1995,78.5,1095.6715,1467.561552,-4217.764154,-4757.265713,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1995.5,78.5,1095.6715,1467.561552,-4016.943039,-4909.321807,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1996,78.5,1095.6715,1467.561552,-4025.781618,-4821.011616,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1996.5,78.5,1095.6715,1467.561552,-4161.921607,-4600.274337,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1997,78.5,1095.6715,1467.561552,-4077.424098,-4598.720768,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1997.5,78.5,1095.6715,1467.561552,-3943.486738,-4722.982353,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1998,78.5,1095.6715,1467.561552,-4041.255558,-4648.049823,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1998.5,78.5,1095.6715,1467.561552,-4292.397864,-4380.826102,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1999,78.5,1095.6715,1467.561552,-3980.178374,-4672.910805,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-1999.5,78.5,1095.6715,1467.561552,-3900.08804,-4765.964398,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2000,78.5,1095.6715,1467.561552,-4034.529834,-4642.661465,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2000.5,78.5,1095.6715,1467.561552,-3901.672228,-4767.899687,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2001,78.5,1095.6715,1467.561552,-4040.523943,-4646.931023,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2001.5,78.5,1095.6715,1467.561552,-4373.993308,-4374.979596,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2002,78.5,1095.6715,1467.561552,-4226.523114,-4579.766861,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2002.5,78.5,1095.6715,1467.561552,-4075.917606,-4782.610379,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2003,78.5,1095.6715,1467.561552,-4440.53376,-4441.031546,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2003.5,78.5,1095.6715,1467.561552,-4354.871286,-4534.143659,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2004,78.5,1095.6715,1467.561552,-4086.048542,-4795.315962,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2004.5,78.5,1095.6715,1467.561552,-4302.098827,-4567.441065,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2005,78.5,1095.6715,1467.561552,-4427.187406,-4429.414925,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2005.5,78.5,1095.6715,1467.561552,-4022.744303,-4816.553077,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2006,78.5,1095.6715,1467.561552,-4319.066836,-4497.111521,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2006.5,78.5,1095.6715,1467.561552,-3995.351768,-4785.641129,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2007,78.5,1095.6715,1467.561552,-3959.629499,-4742.325625,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2007.5,78.5,1095.6715,1467.561552,-3984.512774,-4583.327629,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2008,78.5,1095.6715,1467.561552,-4044.259073,-4293.955094,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2008.5,78.5,1095.6715,1467.561552,-3979.781968,-4062.137688,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2009,78.5,1095.6715,1467.561552,-3457.805989,-4225.752759,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2009.5,78.5,1095.6715,1467.561552,-3359.943327,-3944.492698,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2010,78.5,1095.6715,1467.561552,-3160.724644,-3784.300614,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2010.5,78.5,1095.6715,1467.561552,-3261.611624,-3328.03181,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2011,78.5,1095.6715,1467.561552,-2992.015474,-3242.211733,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2011.5,78.5,1095.6715,1467.561552,-2688.604018,-3219.025524,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2012,78.5,1095.6715,1467.561552,-2794.766525,-2852.439836,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2012.5,78.5,1095.6715,1467.561552,-2439.698048,-2922.120532,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2013,78.5,1095.6715,1467.561552,-2319.098958,-2722.420516,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2013.5,78.5,1095.6715,1467.561552,-2167.134371,-2543.362303,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2014,78.5,1095.6715,1467.561552,-2118.963509,-2249.918921,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2014.5,78.5,1095.6715,1467.561552,-1942.793948,-2022.496694,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2015,78.5,1095.6715,1467.561552,-1665.1103,-1877.865911,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2015.5,78.5,1095.6715,1467.561552,-1453.723042,-1706.629317,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2016,78.5,1095.6715,1467.561552,-1268.712814,-1519.070668,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2016.5,78.5,1095.6715,1467.561552,-1198.462248,-1223.206736,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2017,78.5,1095.6715,1467.561552,-942.3482004,-1151.412954,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2017.5,78.5,1095.6715,1467.561552,-889.2632415,-963.4156344,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2018,78.5,1095.6715,1467.561552,-767.0603124,-847.8035032,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2018.5,78.5,1095.6715,1467.561552,-635.9049281,-702.933219,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2019,78.5,1095.6715,1467.561552,-472.699185,-554.8850385,423.0391998,423.0391998,0,0,1,1,1,1,1,1,1
-2019.5,78.49996108,1095.670955,1467.561552,-346.7941583,-399.0667028,423.0389901,423.0389901,0,0,1,1,1,1,1,1,1
-2020,78.48597853,1095.475208,1467.561552,-333.767269,-407.7075938,422.9636376,422.9636376,0,0.000000279888,1,1,1,1,1,1,1
-2020.5,78.44252247,1094.869722,1467.561552,-370.0598476,-370.0952952,422.7294515,422.7294515,0,0.0001,1,1,1,1,1,1,1
-2021,78.36849752,1093.836273,1467.561552,-362.0188189,-376.7650087,422.3305285,422.3305285,0,0.0001,1,1,1,1,1,1,1
-2021.5,78.2672271,1092.422486,1467.561552,-368.7536944,-368.8567264,421.7847787,421.7847787,0,0.0001,1,1,1,1,1,1,1
-2022,78.14371602,1090.698128,1467.561552,-331.4565679,-405.0743826,421.1191732,421.1191732,0,0.0001,1,1,1,1,1,1,1
-2022.5,78.00375598,1088.745281,1467.561552,-360.5017815,-375.2401659,420.3649238,420.3649238,0,0.0001,1,1,1,1,1,1,1
-2023,77.85371007,1086.651431,1467.561552,-360.2033898,-374.905569,419.5563212,419.5563212,0,0.0001,1,1,1,1,1,1,1
-2023.5,77.69947019,1084.497969,1467.561552,-352.6986243,-382.0534576,418.7251172,418.7251172,0,0.0001,1,1,1,1,1,1,1
-2024,77.54498538,1082.341987,1467.561552,-341.5269536,-392.9111372,417.8925932,417.8925932,0,0.0001,1,1,1,1,1,1,1
-2024.5,77.55494004,1082.48015,1467.561552,1175.080458,1198.929835,417.9462392,417.9462392,2281.330414,21437.76225,1,1,1,1,1,1,1
-2025,77.79519976,1085.833663,1467.561552,1746.594111,1892.039596,419.2410071,419.2410071,3313.255228,31132.46441,1,1,1,1,1,1,1
-2025.5,78.12860563,1090.487409,1467.561552,2013.397718,2139.388877,421.0377428,421.0377428,3766.576161,35392.05454,1,1,1,1,1,1,1
-2026,78.49950289,1095.664728,1467.561552,1963.572048,2397.841715,423.0365209,423.0365209,3979.423999,37390.46269,1,1,1,1,1,1,1
-2026.5,78.88568895,1101.055288,1467.561552,2134.964107,2311.118729,425.1176909,425.1176909,4069.720312,38238.89749,1,1,1,1,1,1,1
-2027,79.27815895,1106.533124,1467.561552,2239.497346,2241.092645,427.2327252,427.2327252,4117.293683,38685.91537,1,1,1,1,1,1,1
-2027.5,79.67297715,1112.043536,1467.561552,2179.687068,2315.182876,429.360414,429.360414,4148.57115,38979.85789,1,1,1,1,1,1,1
-2028,80.06719808,1117.545685,1467.561552,2160.905372,2340.190728,431.4848842,431.4848842,4175.674888,39234.69402,1,1,1,1,1,1,1
-2028.5,80.45994987,1123.027086,1467.561552,2183.574345,2320.429033,433.6014371,433.6014371,4199.271989,39456.55843,1,1,1,1,1,1,1
-2029,80.85320768,1128.51646,1467.561552,2137.616745,2367.811831,435.7207169,435.7207169,4221.468264,39665.24933,1,1,1,1,1,1,1
-2029.5,81.24808685,1134.028811,1467.561552,2033.297478,2472.993573,437.8487344,437.8487344,4243.146054,39869.06582,1,1,1,1,1,1,1
-2030,81.64426427,1139.558549,1467.561552,2249.867078,2257.078352,439.9837482,439.9837482,4264.659767,40071.33903,1,1,1,1,1,1,1
-2030.5,82.04143488,1145.101991,1467.561552,2117.221392,2390.293236,442.1241142,442.1241142,4286.139893,40273.29666,1,1,1,1,1,1,1
-2031,82.43918635,1150.653355,1467.561552,2072.298103,2435.782823,444.2676105,444.2676105,4307.625844,40475.30895,1,1,1,1,1,1,1
-2031.5,82.83678312,1156.202122,1467.561552,2031.19694,2477.481267,446.4102732,446.4102732,4329.109659,40677.30143,1,1,1,1,1,1,1
-2032,83.23262817,1161.727881,1467.561552,2095.229795,2414.160287,448.5434958,448.5434958,4350.542163,40878.81082,1,1,1,1,1,1,1
-2032.5,83.62552916,1167.211578,1467.561552,2055.611196,2454.545019,450.6608528,450.6608528,4371.857904,41079.22336,1,1,1,1,1,1,1
-2033,84.01477033,1172.644606,1467.561552,2143.629432,2367.332339,452.7584868,452.7584868,4393.00694,41278.06799,1,1,1,1,1,1,1
-2033.5,84.40122538,1178.038367,1467.561552,2161.698291,2349.979856,454.8411063,454.8411063,4413.997637,41475.42394,1,1,1,1,1,1,1
-2034,84.77821818,1183.300618,1467.561552,2008.776551,2355.640918,456.8727335,456.8727335,4300.091823,40405.20048,1,1,1,1,1,1,1
-2034.5,84.98112286,1186.132097,1467.561552,596.9477774,645.3796623,457.9661939,457.9661939,1476.631847,13874.18667,1,1,1,1,1,1,1
-2035,85,1186.3959,1467.561552,446.1043918,456.4121917,458.0679234,458.0679234,1210.31451,11371.91308,1,1,1,1,1,1,1
-2035.5,85,1186.3959,1467.561552,438.7061607,474.8199705,458.0679234,458.0679234,1219.139624,11454.83244,1,1,1,1,1,1,1
-2036,85,1186.3959,1467.561552,441.7418416,469.9215582,458.0679234,458.0679234,1217.646809,11440.8069,1,1,1,1,1,1,1
-2036.5,85,1186.3959,1467.561552,421.1249461,463.776494,458.0679234,458.0679234,1196.195103,11239.24978,1,1,1,1,1,1,1
-2037,85,1186.3959,1467.561552,421.1892857,429.3033197,458.0679234,458.0679234,1168.614062,10980.10314,1,1,1,1,1,1,1
-2037.5,85,1186.3959,1467.561552,416.7411823,417.8957848,458.0679234,458.0679234,1155.905733,10860.69732,1,1,1,1,1,1,1
-2038,85,1186.3959,1467.561552,397.4507094,424.3829567,458.0679234,458.0679234,1145.641864,10764.25964,1,1,1,1,1,1,1
-2038.5,85,1186.3959,1467.561552,369.7126158,440.7838761,458.0679234,458.0679234,1136.555072,10678.88163,1,1,1,1,1,1,1
-2039,85,1186.3959,1467.561552,383.5744162,415.9176171,458.0679234,458.0679234,1127.734553,10596.00581,1,1,1,1,1,1,1
-2039.5,85,1186.3959,1467.561552,369.326021,406.3459907,458.0679234,458.0679234,1108.641527,10416.61059,1,1,1,1,1,1,1
-2040,85,1186.3959,1467.561552,376.9209488,376.9209488,458.0679234,458.0679234,1091.143095,10252.19835,1,1,1,1,1,1,1
-2040.5,85,1186.3959,1467.561552,377.7413242,379.5276972,458.0679234,458.0679234,1093.8898,10278.00615,1,1,1,1,1,1,1
-2041,85,1186.3959,1467.561552,362.4390105,401.3506938,458.0679234,458.0679234,1099.117149,10327.12177,1,1,1,1,1,1,1
-2041.5,85,1186.3959,1467.561552,359.4230385,412.7406074,458.0679234,458.0679234,1105.829184,10390.18664,1,1,1,1,1,1,1
-2042,85,1186.3959,1467.561552,373.2929806,412.9966354,458.0679234,458.0679234,1117.150957,10496.56389,1,1,1,1,1,1,1
-2042.5,85,1186.3959,1467.561552,392.613322,441.413658,458.0679234,458.0679234,1155.415771,10856.09413,1,1,1,1,1,1,1
-2043,85,1186.3959,1467.561552,429.7723844,455.9133844,458.0679234,458.0679234,1196.822984,11245.14926,1,1,1,1,1,1,1
-2043.5,85,1186.3959,1467.561552,450.0664651,469.3442159,458.0679234,458.0679234,1223.856521,11499.15156,1,1,1,1,1,1,1
-2044,85,1186.3959,1467.561552,457.2690423,495.8670118,458.0679234,458.0679234,1250.889636,11753.15093,1,1,1,1,1,1,1
-2044.5,85,1186.3959,1467.561552,481.9998539,531.1351861,458.0679234,458.0679234,1298.98247,12205.02254,1,1,1,1,1,1,1
-2045,85,1186.3959,1467.561552,532.2824042,553.4691026,458.0679234,458.0679234,1357.188157,12751.91398,1,1,1,1,1,1,1
-2045.5,85,1186.3959,1467.561552,557.7793124,572.3215285,458.0679234,458.0679234,1392.737058,13085.92515,1,1,1,1,1,1,1
-2046,85,1186.3959,1467.561552,538.1071464,615.6601855,458.0679234,458.0679234,1411.707972,13264.17296,1,1,1,1,1,1,1
-2046.5,85,1186.3959,1467.561552,564.0766552,578.6758564,458.0679234,458.0679234,1402.87848,13181.2122,1,1,1,1,1,1,1
-2047,85,1186.3959,1467.561552,525.0217025,601.8953339,458.0679234,458.0679234,1390.184744,13061.94434,1,1,1,1,1,1,1
-2047.5,85,1186.3959,1467.561552,519.6638215,550.8439736,458.0679234,458.0679234,1344.969132,12637.10616,1,1,1,1,1,1,1
-2048,85,1186.3959,1467.561552,491.1360469,505.0509064,458.0679234,458.0679234,1285.397799,12077.38381,1,1,1,1,1,1,1
-2048.5,85,1186.3959,1467.561552,421.777214,514.5772626,458.0679234,458.0679234,1237.438372,11626.7643,1,1,1,1,1,1,1
-2049,85,1186.3959,1467.561552,410.9424243,480.6355635,458.0679234,458.0679234,1201.546364,11289.52917,1,1,1,1,1,1,1
-2049.5,85,1186.3959,1467.561552,418.1166967,453.3757716,458.0679234,458.0679234,1185.446707,11138.25999,1,1,1,1,1,1,1
-2050,85,1186.3959,1467.561552,404.8776345,447.9106275,458.0679234,458.0679234,1170.454112,10997.39141,1,1,1,1,1,1,1
-2050.5,85,1186.3959,1467.561552,395.2117698,445.6643362,458.0679234,458.0679234,1160.906143,10907.68036,1,1,1,1,1,1,1
-2051,85,1186.3959,1467.561552,395.7528873,444.5367937,458.0679234,458.0679234,1160.436468,10903.26736,1,1,1,1,1,1,1
-2051.5,85,1186.3959,1467.561552,426.1984039,446.5209529,458.0679234,458.0679234,1186.430641,11147.50422,1,1,1,1,1,1,1
-2052,85,1186.3959,1467.561552,397.5244511,475.3137997,458.0679234,458.0679234,1186.526375,11148.40395,1,1,1,1,1,1,1
-2052.5,85,1186.3959,1467.561552,379.7084121,436.1023867,458.0679234,458.0679234,1140.814946,10718.90742,1,1,1,1,1,1,1
-2053,85,1186.3959,1467.561552,360.7630727,398.738133,458.0679234,458.0679234,1095.714418,10295.14959,1,1,1,1,1,1,1
-2053.5,85,1186.3959,1467.561552,339.5506146,376.6137409,458.0679234,458.0679234,1061.794859,9976.447137,1,1,1,1,1,1,1
-2054,85,1186.3959,1467.561552,304.3312431,362.1144521,458.0679234,458.0679234,1024.336482,9624.494893,1,1,1,1,1,1,1
-2054.5,85,1186.3959,1467.561552,289.1210617,294.9618913,458.0679234,458.0679234,962.2852546,9041.472019,1,1,1,1,1,1,1
-2055,85,1186.3959,1467.561552,261.0035892,267.2401626,458.0679234,458.0679234,920.2152452,8646.189224,1,1,1,1,1,1,1
-2055.5,85,1186.3959,1467.561552,241.1825322,267.5336016,458.0679234,458.0679234,905.5037655,8507.962571,1,1,1,1,1,1,1
-2056,85,1186.3959,1467.561552,222.2443548,265.037676,458.0679234,458.0679234,889.3561243,8356.241714,1,1,1,1,1,1,1
-2056.5,85,1186.3959,1467.561552,216.4960003,235.1309497,458.0679234,458.0679234,862.4926315,8103.83676,1,1,1,1,1,1,1
-2057,85,1186.3959,1467.561552,186.94237,215.4167831,458.0679234,458.0679234,825.3744333,7755.08102,1,1,1,1,1,1,1
-2057.5,85,1186.3959,1467.561552,149.9085251,178.2545283,458.0679234,458.0679234,769.4753802,7229.862057,1,1,1,1,1,1,1
-2058,85,1186.3959,1467.561552,140.077347,141.0470345,458.0679234,458.0679234,734.0461546,6896.975766,1,1,1,1,1,1,1
-2058.5,85,1186.3959,1467.561552,117.3942698,137.7211129,458.0679234,458.0679234,714.8578088,6716.684435,1,1,1,1,1,1,1
-2059,85,1186.3959,1467.561552,79.65034389,91.56728335,458.0679234,458.0679234,656.6405278,6169.685252,1,1,1,1,1,1,1
-2059.5,85,1186.3959,1467.561552,32.53649836,35.96139292,458.0679234,458.0679234,582.6318911,5474.312183,1,1,1,1,1,1,1
-2060,85,1186.3959,1467.561552,-12.28772173,-13.82847931,458.0679234,458.0679234,514.4808878,4833.976328,1,1,1,1,1,1,1
-2060.5,85,1186.3959,1467.561552,-47.05820878,-56.9613498,458.0679234,458.0679234,458.7649189,4310.479151,1,1,1,1,1,1,1
-2061,85,1186.3959,1467.561552,-86.6660897,-94.50514969,458.0679234,458.0679234,405.158585,3806.802702,1,1,1,1,1,1,1
-2061.5,85,1186.3959,1467.561552,-116.4280573,-139.2985582,458.0679234,458.0679234,353.5908876,3322.280721,1,1,1,1,1,1,1
-2062,85,1186.3959,1467.561552,-143.5260729,-168.4871291,458.0679234,458.0679234,317.7599749,2985.619403,1,1,1,1,1,1,1
-2062.5,85,1186.3959,1467.561552,-167.943991,-196.9268733,458.0679234,458.0679234,280.1703028,2632.433165,1,1,1,1,1,1,1
-2063,85,1186.3959,1467.561552,-208.9149758,-239.2055297,458.0679234,458.0679234,220.7101404,2073.755995,1,1,1,1,1,1,1
-2063.5,85,1186.3959,1467.561552,-281.8582945,-299.9729705,458.0679234,458.0679234,125.2407102,1176.74125,1,1,1,1,1,1,1
-2064,85.00014976,1186.397964,1467.561552,-335.8043455,-371.5255235,458.0687305,458.0687305,35.83593528,336.7089399,1,1,1,1,1,1,1
-2064.5,85.00354164,1186.444764,1467.561552,-356.7345769,-401.1430435,458.0870094,458.0870094,0,0,1,1,1,1,1,1,1
-2065,85.01088376,1186.547205,1467.561552,-366.7292979,-391.2421356,458.1265763,458.1265763,0,0,1,1,1,1,1,1,1
-2065.5,85.01899958,1186.661461,1467.561552,-348.8494998,-409.1333834,458.1703128,458.1703128,0,0,1,1,1,1,1,1,1
-2066,85.0251047,1186.746289,1467.561552,-353.4631284,-404.3756651,458.2032135,458.2032135,0,0,1,1,1,1,1,1,1
-2066.5,85.0250543,1186.746023,1467.561552,-373.5450178,-383.9686694,458.2029419,458.2029419,0,0,1,1,1,1,1,1,1
-2067,85.0221517,1186.704666,1467.561552,-345.5967319,-411.9994424,458.1872997,458.1872997,0,0,1,1,1,1,1,1,1
-2067.5,85.0235008,1186.724364,1467.561552,-364.3056679,-393.5511391,458.19457,458.19457,0,0,1,1,1,1,1,1,1
-2068,85.0300653,1186.815305,1467.561552,-374.3302149,-383.6921441,458.2299463,458.2299463,0,0,1,1,1,1,1,1,1
-2068.5,85.0401768,1186.956638,1467.561552,-357.2379478,-400.9467181,458.2844375,458.2844375,0,0,1,1,1,1,1,1,1
-2069,85.0548778,1187.161666,1467.561552,-375.4306218,-383.0150788,458.3636617,458.3636617,0,0,1,1,1,1,1,1,1
-2069.5,85.07572444,1187.453004,1467.561552,-374.6924659,-384.0707586,458.476005,458.476005,0,0,1,1,1,1,1,1,1
-2070,85.09708256,1187.751246,1467.561552,-355.8172352,-402.7701803,458.5911046,458.5911046,0,0,1,1,1,1,1,1,1
-2070.5,85.1111792,1187.948371,1467.561552,-342.301455,-415.9727136,458.6670719,458.6670719,0,0,1,1,1,1,1,1,1
-2071,85.11900382,1188.057139,1467.561552,-363.1870925,-394.9497673,458.7092391,458.7092391,0,0,1,1,1,1,1,1,1
-2071.5,85.12316163,1188.115049,1467.561552,-349.0449815,-408.9673174,458.7316457,458.7316457,0,0,1,1,1,1,1,1,1
-2072,85.12435717,1188.131481,1467.561552,-356.0385549,-401.8739673,458.7380884,458.7380884,0,0,1,1,1,1,1,1,1
-2072.5,85.1234289,1188.118109,1467.561552,-352.9362842,-404.907675,458.733086,458.733086,0,0,1,1,1,1,1,1,1
-2073,85.1219763,1188.097882,1467.561552,-363.4179031,-394.4511733,458.7252579,458.7252579,0,0,1,1,1,1,1,1,1
-2073.5,85.12158532,1188.092728,1467.561552,-356.045265,-401.8801053,458.7231509,458.7231509,0,0,1,1,1,1,1,1,1
-2074,85.12363187,1188.121994,1467.561552,-353.0411824,-405.027402,458.7341798,458.7341798,0,0,1,1,1,1,1,1,1
-2074.5,85.13076648,1188.220797,1467.561552,-364.5461868,-393.7970324,458.7726284,458.7726284,0,0,1,1,1,1,1,1,1
-2075,85.14040464,1188.355098,1467.561552,-374.8231342,-383.4888508,458.8245688,458.8245688,0,0,1,1,1,1,1,1,1
-2075.5,85.14667136,1188.443466,1467.561552,-362.815302,-395.3052993,458.8583404,458.8583404,0,0,1,1,1,1,1,1,1
-2076,85.15027612,1188.493261,1467.561552,-341.1520016,-416.9635575,458.8777666,458.8777666,0,0,1,1,1,1,1,1,1
-2076.5,85.15392376,1188.544204,1467.561552,-341.5257735,-416.6185529,458.8974238,458.8974238,0,0,1,1,1,1,1,1,1
-2077,85.15626672,1188.576444,1467.561552,-349.2320476,-408.7919385,458.9100501,458.9100501,0,0,1,1,1,1,1,1,1
-2077.5,85.15330012,1188.53513,1467.561552,-360.4596807,-397.2638032,458.894063,458.894063,0,0,1,1,1,1,1,1,1
-2078,85.1471334,1188.449382,1467.561552,-369.8533593,-387.8944762,458.8608303,458.8608303,0,0,1,1,1,1,1,1,1
-2078.5,85.1438,1188.40299,1467.561552,-341.4268253,-416.4976473,458.8428665,458.8428665,0,0,1,1,1,1,1,1,1
-2079,85.14371908,1188.4017,1467.561552,-348.6795542,-409.3194767,458.8424305,458.8424305,0,0,1,1,1,1,1,1,1
-2079.5,85.14185724,1188.376287,1467.561552,-349.1207793,-408.6613322,458.8323969,458.8323969,0,0,1,1,1,1,1,1,1
-2080,85.13680008,1188.30523,1467.561552,-360.0975456,-397.622832,458.8051437,458.8051437,0,0,1,1,1,1,1,1,1
-2080.5,85.1327048,1188.248486,1467.561552,-362.8627014,-394.98016,458.7830741,458.7830741,0,0,1,1,1,1,1,1,1
-2081,85.13033361,1188.215666,1467.561552,-345.1788576,-412.6640191,458.7702957,458.7702957,0,0,1,1,1,1,1,1,1
-2081.5,85.11968228,1188.066476,1467.561552,-353.3280697,-403.8187764,458.7128953,458.7128953,0,0,1,1,1,1,1,1,1
-2082,85.09101573,1187.66571,1467.561552,-377.0826953,-379.2306393,458.5584103,458.5584103,0,0,1,1,1,1,1,1,1
-2082.5,85.04535195,1187.028298,1467.561552,-343.266125,-387.5451482,458.3123266,458.3123266,17.45764297,164.0291072,1,1,1,1,1,1,1
-2083,85.00943668,1186.526965,1467.561552,-94.39729535,-115.5585332,458.118778,458.118778,385.0517619,3617.882266,1,1,1,1,1,1,1
-2083.5,85,1186.3959,1467.561552,86.08386319,100.1044681,458.0679234,458.0679234,667.4846396,6271.57477,1,1,1,1,1,1,1
-2084,85,1186.3959,1467.561552,183.2828043,193.9691737,458.0679234,458.0679234,806.4597774,7577.361619,1,1,1,1,1,1,1
-2084.5,85,1186.3959,1467.561552,225.112896,226.746226,458.0679234,458.0679234,862.6684151,8105.488946,1,1,1,1,1,1,1
-2085,85,1186.3959,1467.561552,233.4154281,266.6823117,458.0679234,458.0679234,899.0113454,8446.96114,1,1,1,1,1,1,1
-2085.5,85,1186.3959,1467.561552,265.9833367,266.5078361,458.0679234,458.0679234,923.415018,8676.253858,1,1,1,1,1,1,1
-2086,85,1186.3959,1467.561552,274.3505991,285.0333519,458.0679234,458.0679234,943.6769473,8866.631276,1,1,1,1,1,1,1
-2086.5,85,1186.3959,1467.561552,268.1583289,270.3452186,458.0679234,458.0679234,927.9450175,8718.817079,1,1,1,1,1,1,1
-2087,85,1186.3959,1467.561552,237.2967593,284.5304191,458.0679234,458.0679234,915.3808913,8600.766643,1,1,1,1,1,1,1
-2087.5,85,1186.3959,1467.561552,261.7160522,316.5482272,458.0679234,458.0679234,957.9010554,9000.278941,1,1,1,1,1,1,1
-2088,85,1186.3959,1467.561552,322.7116641,324.1936731,458.0679234,458.0679234,1009.745908,9487.403821,1,1,1,1,1,1,1
-2088.5,85,1186.3959,1467.561552,384.9626417,416.5543645,458.0679234,458.0679234,1129.357753,10611.25722,1,1,1,1,1,1,1
-2089,85,1186.3959,1467.561552,485.9479023,519.6468688,458.0679234,458.0679234,1292.937854,12148.22898,1,1,1,1,1,1,1
-2089.5,85,1186.3959,1467.561552,486.9029163,592.7812409,458.0679234,458.0679234,1352.325337,12706.22358,1,1,1,1,1,1,1
-2090,85,1186.3959,1467.561552,524.1715253,592.7686613,458.0679234,458.0679234,1382.188129,12986.80959,1,1,1,1,1,1,1
-2090.5,85,1186.3959,1467.561552,513.2996383,610.391065,458.0679234,458.0679234,1387.599218,13037.65089,1,1,1,1,1,1,1
-2091,85,1186.3959,1467.561552,533.9138483,544.2013219,458.0679234,458.0679234,1351.068007,12694.40999,1,1,1,1,1,1,1
-2091.5,85,1186.3959,1467.561552,525.3874587,529.3244111,458.0679234,458.0679234,1332.308869,12518.15175,1,1,1,1,1,1,1
-2092,85,1186.3959,1467.561552,485.4914053,568.2481175,458.0679234,458.0679234,1331.528228,12510.81728,1,1,1,1,1,1,1
-2092.5,85,1186.3959,1467.561552,522.0455693,579.2767438,458.0679234,458.0679234,1369.669215,12869.18393,1,1,1,1,1,1,1
-2093,85,1186.3959,1467.561552,528.4418729,632.9688367,458.0679234,458.0679234,1417.493868,13318.53591,1,1,1,1,1,1,1
-2093.5,85,1186.3959,1467.561552,580.1547792,688.2855046,458.0679234,458.0679234,1497.002535,14065.5861,1,1,1,1,1,1,1
-2094,85,1186.3959,1467.561552,716.6390179,718.7700388,458.0679234,458.0679234,1644.220031,15448.81759,1,1,1,1,1,1,1
-2094.5,85,1186.3959,1467.561552,736.800379,783.1297113,458.0679234,458.0679234,1720.042637,16161.23422,1,1,1,1,1,1,1
-2095,85,1186.3959,1467.561552,750.3991936,815.3063564,458.0679234,458.0679234,1761.108046,16547.0778,1,1,1,1,1,1,1
-2095.5,85,1186.3959,1467.561552,759.2378352,869.1665495,458.0679234,458.0679234,1817.354487,17075.55982,1,1,1,1,1,1,1
-2096,85,1186.3959,1467.561552,850.6859067,888.9148815,458.0679234,458.0679234,1917.175998,18013.51968,1,1,1,1,1,1,1
-2096.5,85,1186.3959,1467.561552,865.6516279,974.2488138,458.0679234,458.0679234,2008.63134,18873.96243,1,1,1,1,1,1,1
-2097,85,1186.3959,1467.561552,924.359296,999.4323169,458.0679234,458.0679234,2085.321464,19595.63707,1,1,1,1,1,1,1
-2097.5,85,1186.3959,1467.561552,983.7088374,1028.935666,458.0679234,458.0679234,2166.545334,20359.97566,1,1,1,1,1,1,1
-2098,85,1186.3959,1467.561552,994.5390557,1137.426867,458.0679234,458.0679234,2275.373727,21384.05996,1,1,1,1,1,1,1
-2098.5,85,1186.3959,1467.561552,1119.158266,1149.789369,458.0679234,458.0679234,2395.20024,22511.06546,1,1,1,1,1,1,1
-2099,85,1186.3959,1467.561552,1123.546254,1308.404825,458.0679234,458.0679234,2537.876884,23849.85834,1,1,1,1,1,1,1
-2099.5,85,1186.3959,1467.561552,1293.828521,1304.152675,458.0679234,458.0679234,2688.154088,25259.64687,1,1,1,1,1,1,1
-2100,85,1186.3959,1467.561552,1275.58119,1489.971147,458.0679234,458.0679234,2839.236687,26677.09492,1,1,1,1,1,1,1
-2100.5,85,1186.3959,1467.561552,1424.408542,1514.025152,458.0679234,458.0679234,2983.227094,28030.16686,1,1,1,1,1,1,1
-2101,85,1186.3959,1467.561552,1504.927627,1630.338263,458.0679234,458.0679234,3151.046655,29607.34079,1,1,1,1,1,1,1
-2101.5,85,1186.3959,1467.561552,1586.137519,1715.005564,458.0679234,458.0679234,3291.177055,30924.29788,1,1,1,1,1,1,1
-2102,85,1186.3959,1467.561552,1664.051033,1733.620464,458.0679234,458.0679234,3373.121022,31695.37492,1,1,1,1,1,1,1
-2102.5,85,1186.3959,1467.561552,1672.169983,1782.329206,458.0679234,458.0679234,3421.704597,32152.60806,1,1,1,1,1,1,1
-2103,85,1186.3959,1467.561552,1620.767121,1866.530225,458.0679234,458.0679234,3449.746737,32416.52016,1,1,1,1,1,1,1
-2103.5,85,1186.3959,1467.561552,1632.328532,1903.255808,458.0679234,458.0679234,3491.029206,32805.0407,1,1,1,1,1,1,1
-2104,85,1186.3959,1467.561552,1798.390416,1847.273447,458.0679234,458.0679234,3585.101052,33690.36904,1,1,1,1,1,1,1
-2104.5,85,1186.3959,1467.561552,1756.117089,2047.245545,458.0679234,458.0679234,3720.41187,34963.38561,1,1,1,1,1,1,1
-2105,85,1186.3959,1467.561552,1984.948465,2037.084606,458.0679234,458.0679234,3935.509958,36981.79359,1,1,1,1,1,1,1
-2105.5,84.99942904,1186.387902,1467.561552,1977.207459,2274.851592,458.0648465,458.0648465,4166.229511,39146.68097,1,1,1,1,1,1,1
-2106,84.98569016,1186.195575,1467.561552,2056.497231,2372.867177,457.9908072,457.9908072,4342.024162,40798.6236,1,1,1,1,1,1,1
-2106.5,84.93866481,1185.539716,1467.561552,2030.558836,2470.121823,457.737386,457.737386,4412.615863,41462.40217,1,1,1,1,1,1,1
-2107,84.85004652,1184.303572,1467.561552,2155.105093,2375.364136,457.2598189,457.2598189,4437.483144,41696.23468,1,1,1,1,1,1,1
-2107.5,84.72620092,1182.574602,1467.561552,2220.022987,2323.208538,456.5924107,456.5924107,4443.189438,41749.89792,1,1,1,1,1,1,1
-2108,84.58192931,1180.56119,1467.561552,2095.541538,2451.214696,455.8149261,455.8149261,4438.814999,41708.77256,1,1,1,1,1,1,1
-2108.5,84.42727812,1178.402354,1467.561552,2177.59919,2369.334003,454.9815055,454.9815055,4430.511435,41630.70187,1,1,1,1,1,1,1
-2109,84.27536847,1176.281622,1467.561552,2068.530119,2477.689923,454.1628591,454.1628591,4422.354708,41554.01212,1,1,1,1,1,1,1
-2109.5,84.13898753,1174.378413,1467.561552,2071.022129,2474.416683,453.4278976,453.4278976,4415.034643,41485.18814,1,1,1,1,1,1,1
-2110,84.01445935,1172.639585,1467.561552,2134.308683,2410.735121,452.7568109,452.7568109,4408.346638,41422.30746,1,1,1,1,1,1,1
-2110.5,83.89391863,1170.958138,1467.561552,2093.376611,2451.487945,452.1072128,452.1072128,4401.87942,41361.502,1,1,1,1,1,1,1
-2111,83.77230252,1169.259981,1467.561552,2156.118816,2388.757736,451.4518194,451.4518194,4395.347657,41300.09058,1,1,1,1,1,1,1
-2111.5,83.64551807,1167.491151,1467.561552,2089.812986,2455.174309,450.7685737,450.7685737,4388.544673,41236.12789,1,1,1,1,1,1,1
-2112,83.50321858,1165.504168,1467.561552,2070.05577,2475.723946,450.0017168,450.0017168,4380.90226,41164.27364,1,1,1,1,1,1,1
-2112.5,83.33431213,1163.147565,1467.561552,2118.403967,2428.268485,449.0914741,449.0914741,4371.838191,41079.05248,1,1,1,1,1,1,1
-2113,83.13928516,1160.4252,1467.561552,2226.593984,2320.793418,448.0404671,448.0404671,4361.367365,40980.60582,1,1,1,1,1,1,1
-2113.5,82.92330593,1157.410099,1467.561552,2182.954703,2364.867594,446.8765476,446.8765476,4349.770739,40871.57315,1,1,1,1,1,1,1
-2114,82.69350096,1154.202053,1467.561552,2181.515978,2366.431386,445.6381207,445.6381207,4337.431766,40755.56181,1,1,1,1,1,1,1
-2114.5,82.45388362,1150.857705,1467.561552,2141.168633,2406.87547,444.3468147,444.3468147,4324.56869,40634.62231,1,1,1,1,1,1,1
-2115,82.20635351,1147.402884,1467.561552,2251.949287,2296.05808,443.0128664,443.0128664,4311.280444,40509.68568,1,1,1,1,1,1,1
-2115.5,81.95299301,1143.866928,1467.561552,2273.963983,2273.963983,441.6474979,441.6474979,4297.680315,40381.81669,1,1,1,1,1,1,1
-2116,81.6937513,1140.248931,1467.561552,2272.711643,2275.163667,440.2504354,440.2504354,4283.76498,40250.98416,1,1,1,1,1,1,1
-2116.5,81.42479541,1136.495135,1467.561552,2229.70665,2318.36143,438.8010229,438.8010229,4269.327016,40115.23697,1,1,1,1,1,1,1
-2117,81.1366091,1132.472343,1467.561552,2269.529738,2279.173165,437.247977,437.247977,4253.85434,39969.76214,1,1,1,1,1,1,1
-2117.5,80.82288575,1128.093602,1467.561552,2074.350942,2474.961813,435.557311,435.557311,4237.012909,39811.4183,1,1,1,1,1,1,1
-2118,80.48377291,1123.360022,1467.561552,2274.491165,2275.380904,433.7298202,433.7298202,4218.806484,39640.24041,1,1,1,1,1,1,1
-2118.5,80.1197235,1118.278716,1467.561552,2249.316135,2301.066903,431.7679455,431.7679455,4199.26259,39456.48712,1,1,1,1,1,1,1
-2119,79.73123297,1112.856517,1467.561552,2071.297369,2479.528034,429.6743567,429.6743567,4178.407494,39260.40679,1,1,1,1,1,1,1
-2119.5,79.32117104,1107.132921,1467.561552,2117.90317,2433.154838,427.4645188,427.4645188,4156.393491,39053.42992,1,1,1,1,1,1,1
-2120,78.9007649,1101.265771,1467.561552,2250.796461,2299.786948,425.1989357,425.1989357,4133.84857,38841.46174,1,1,1,1,1,1,1
-2120.5,78.48043242,1095.398078,1467.561552,2070.871266,2479.137802,422.9337495,422.9337495,4113.5161,38650.36815,1,1,1,1,1,1,1
-2121,78.05869904,1089.512065,1467.561552,2161.057431,2388.53716,420.6610138,420.6610138,4093.764757,38464.7601,1,1,1,1,1,1,1
-2121.5,77.62988767,1083.527352,1467.561552,2160.989504,2388.462084,418.3501346,418.3501346,4073.682415,38276.04044,1,1,1,1,1,1,1
-2122,77.19251233,1077.421448,1467.561552,2160.827217,2388.282714,415.9931038,415.9931038,4053.193185,38083.49786,1,1,1,1,1,1,1
-2122.5,76.75095457,1071.259281,1467.561552,2228.519543,2320.062777,413.6135338,413.6135338,4032.515049,37889.18074,1,1,1,1,1,1,1
-2123,76.31215924,1065.134199,1467.561552,2205.807648,2341.912741,411.2488507,411.2488507,4011.961482,37696.03283,1,1,1,1,1,1,1
-2123.5,75.88229797,1059.135082,1467.561552,2227.652907,2319.040272,408.9323135,408.9323135,3991.830677,37506.85885,1,1,1,1,1,1,1
-2124,75.46030056,1053.244091,1467.561552,2137.753172,2408.188256,406.658155,406.658155,3972.062486,37321.09208,1,1,1,1,1,1,1
-2124.5,75.0407446,1047.387949,1467.561552,2136.293842,2409.012204,404.3971535,404.3971535,3952.411532,37136.42706,1,1,1,1,1,1,1
-2125,74.62210275,1041.54481,1467.561552,2046.768256,2497.898983,402.1410782,402.1410782,3932.804163,36952.1709,1,1,1,1,1,1,1
-2125.5,74.20435588,1035.714204,1467.561552,2156.008068,2388.013005,399.889826,399.889826,3913.238574,36768.30872,1,1,1,1,1,1,1
-2126,73.78701596,1029.889393,1467.561552,2268.983456,2274.42104,397.6407667,397.6407667,3893.692594,36584.62971,1,1,1,1,1,1,1
-2126.5,73.3661653,1024.01543,1467.561552,2249.417512,2293.62489,395.3727881,395.3727881,3873.981898,36399.40324,1,1,1,1,1,1,1
-2127,72.93825742,1018.042475,1467.561552,2248.611504,2294.037999,393.0667778,393.0667778,3853.938757,36211.05299,1,1,1,1,1,1,1
-2127.5,72.50888471,1012.049391,1467.561552,2072.479068,2469.360391,390.7528735,390.7528735,3833.828186,36022.06835,1,1,1,1,1,1,1
-2128,72.08410162,1006.121248,1467.561552,2153.717018,2387.24978,388.4637028,388.4637028,3813.935395,35835.13047,1,1,1,1,1,1,1
-2128.5,71.66323987,1000.246396,1467.561552,2243.904364,2296.298016,386.1956644,386.1956644,3794.221318,35649.87255,1,1,1,1,1,1,1
-2129,71.24461145,994.4032261,1467.561552,2116.490441,2422.953113,383.9396614,383.9396614,3776.26956,35481.19921,1,1,1,1,1,1,1
-2129.5,70.82893368,988.6012889,1467.561552,2045.401025,2493.206179,381.6995596,381.6995596,3758.516059,35314.39054,1,1,1,1,1,1,1
-2130,70.41711209,982.85429,1467.561552,2236.539432,2301.22455,379.4802389,379.4802389,3740.930973,35149.16367,1,1,1,1,1,1,1
-2130.5,70.00934189,977.1627222,1467.561552,2202.692158,2334.239771,377.2827513,377.2827513,3723.515247,34985.5285,1,1,1,1,1,1,1
-2131,69.60309009,971.4918721,1467.561552,2049.767977,2486.485116,375.0934463,375.0934463,3706.163145,34822.49159,1,1,1,1,1,1,1
-2131.5,69.19560481,965.8050529,1467.561552,2190.869151,2344.732863,372.8974941,372.8974941,3688.762386,34658.99675,1,1,1,1,1,1,1
-2132,68.78736989,960.1060223,1467.561552,2092.740961,2442.146869,370.6975021,370.6975021,3671.323882,34495.14715,1,1,1,1,1,1,1
-2132.5,68.37881332,954.4038826,1467.561552,2170.770443,2363.385634,368.4957767,368.4957767,3653.876081,34331.21033,1,1,1,1,1,1,1
-2133,67.97023904,948.701309,1467.561552,2176.038112,2357.374621,366.2939559,366.2939559,3636.426798,34167.25972,1,1,1,1,1,1,1
-2133.5,67.56166477,942.9986236,1467.561552,2091.187598,2441.470194,364.0921351,364.0921351,3618.977166,34003.30661,1,1,1,1,1,1,1
-2134,67.1538337,937.3062437,1467.561552,2147.795736,2384.040222,361.8943194,361.8943194,3601.559473,33839.65261,1,1,1,1,1,1,1
-2134.5,66.74798421,931.6414108,1467.561552,2089.289873,2441.685219,359.7071826,359.7071826,3584.22567,33676.7874,1,1,1,1,1,1,1
-2135,66.34377639,925.9997345,1467.561552,2104.772594,2425.37969,357.5288927,357.5288927,3566.96284,33514.58861,1,1,1,1,1,1,1
-2135.5,65.94014857,920.3664692,1467.561552,2126.985224,2402.378335,355.3537285,355.3537285,3549.725542,33352.62971,1,1,1,1,1,1,1
-2136,65.53654167,914.732325,1467.561552,2169.939186,2358.63082,353.178677,353.178677,3532.485958,33190.64961,1,1,1,1,1,1,1
-2136.5,65.1322199,909.0898986,1467.561552,2256.074444,2271.714261,350.9997731,350.9997731,3515.220765,33028.42825,1,1,1,1,1,1,1
-2137,64.72745146,903.4395613,1467.561552,2242.881203,2284.098071,348.8184621,348.8184621,3498.266342,32869.12792,1,1,1,1,1,1,1
-2137.5,64.32257336,897.7885171,1467.561552,2096.673487,2429.444064,346.6365601,346.6365601,3482.385214,32719.91142,1,1,1,1,1,1,1
-2138,63.91866555,892.1505196,1467.561552,2245.282793,2279.931881,344.459887,344.459887,3466.643271,32572.00233,1,1,1,1,1,1,1
-2138.5,63.51774131,886.5556687,1467.561552,2221.317951,2302.852137,342.2992925,342.2992925,3451.021908,32425.22703,1,1,1,1,1,1,1
-2139,63.12251085,881.0384391,1467.561552,2094.466055,2428.604508,340.1693819,340.1693819,3435.617145,32280.48659,1,1,1,1,1,1,1
-2139.5,62.73326203,875.60614,1467.561552,2080.109653,2441.867853,338.0717067,338.0717067,3420.449759,32137.97622,1,1,1,1,1,1,1
-2140,62.35229848,870.2883928,1467.561552,2119.857442,2400.875494,336.018681,336.018681,3405.601936,31998.4679,1,1,1,1,1,1,1
-2140.5,61.98352812,865.1412499,1467.561552,2204.440959,2314.911534,334.0313648,334.0313648,3391.230764,31863.43862,1,1,1,1,1,1,1
-2141,61.62897647,860.1922053,1467.561552,2253.842835,2264.151831,332.1206738,332.1206738,3377.412367,31733.60331,1,1,1,1,1,1,1
-2141.5,61.2875702,855.4275206,1467.561552,2058.886223,2457.836884,330.2808236,330.2808236,3364.108961,31608.60675,1,1,1,1,1,1,1
-2142,60.95854442,850.8352493,1467.561552,2091.609111,2423.880642,328.5076924,328.5076924,3353.144273,31505.58473,1,1,1,1,1,1,1
-2142.5,60.64056122,846.3964822,1467.561552,2118.985967,2395.359119,326.79407,326.79407,3343.72685,31417.1003,1,1,1,1,1,1,1
-2143,60.3317625,842.087042,1467.561552,2078.409627,2427.637117,325.1299431,325.1299431,3326.827949,31258.32108,1,1,1,1,1,1,1
-2143.5,60.03003184,837.8748461,1467.561552,2041.407012,2438.910068,323.5039062,323.5039062,3291.008614,30921.76858,1,1,1,1,1,1,1
-2144,59.73320987,833.7321526,1467.561552,2103.404196,2349.255879,321.9043224,321.9043224,3253.166551,30566.21089,1,1,1,1,1,1,1
-2144.5,59.44100786,829.6533383,1467.561552,2102.059475,2323.328893,320.3296357,320.3296357,3215.907664,30216.1325,1,1,1,1,1,1,1
-2145,59.15529326,825.6662439,1467.561552,2070.314766,2328.284423,318.7899099,318.7899099,3179.487448,29873.93398,1,1,1,1,1,1,1
-2145.5,58.87833128,821.7996008,1467.561552,1979.684526,2392.878871,317.2973523,317.2973523,3144.167126,29542.0701,1,1,1,1,1,1,1
-2146,58.60891628,818.0399032,1467.561552,1975.001214,2372.338845,315.8454656,315.8454656,3109.823369,29219.38203,1,1,1,1,1,1,1
-2146.5,58.14162841,865.1601156,1467.561552,211.4271197,265.9535451,313.3272352,313.3272352,857.2310766,8054.400097,1,1,1,1,1,1,1
-2147,57.44539177,970.2901398,1467.561552,-80.80984832,-91.3524768,309.575192,309.575192,552.3560055,5189.845071,1,1,1,1,1,1,1
-2147.5,56.92487893,1022.405366,1467.561552,1793.747918,1865.607053,306.7701304,306.7701304,2522.8797,23704.67369,1,1,1,1,1,1,1
-2148,56.71669754,1015.324409,1467.561552,2760.246791,2872.909925,305.6482337,305.6482337,3757.254472,35302.61002,1,1,1,1,1,1,1
-2148.5,56.66205249,1012.308581,1467.561552,3014.05262,3418.570536,305.3537496,305.3537496,4339.564616,40774.08188,1,1,1,1,1,1,1
-2149,56.67274652,1012.499571,1467.561552,3292.229386,3533.813509,305.4113801,305.4113801,4656.208617,43749.07975,1,1,1,1,1,1,1
-2149.5,56.46510814,1118.189995,1467.561552,973.4390425,1037.839611,304.2924097,304.2924097,2160.548594,20300.19295,1,1,1,1,1,1,1
-2150,55.89954114,1373.955258,1467.561552,-96.40619352,-110.8338682,301.2445498,301.2445498,1189.183107,11176.60676,1,1,1,1,1,1,1
-2150.5,55.54129287,1563.101944,1467.561552,2817.108773,2867.813899,299.3139375,299.3139375,4050.62711,38061.45236,1,1,1,1,1,1,1
-2151,55.69861637,1599.967606,1467.561552,4591.677444,4751.309972,300.1617592,300.1617592,6107.12562,57384.35765,1,1,1,1,1,1,1
-2151.5,56.08532175,1604.774676,1467.561552,4693.024898,5377.72955,302.2457279,302.2457279,6706.555034,63014.82313,1,1,1,1,1,1,1
-2152,56.53076651,1617.519363,1467.561552,4870.519388,5182.039404,304.646245,304.646245,6749.037421,63413.71103,1,1,1,1,1,1,1
-2152.5,56.98146627,1630.415228,1467.561552,4838.481691,5184.055975,307.0750815,307.0750815,6784.344167,63745.28509,1,1,1,1,1,1,1
-2153,57.43628458,1643.428365,1467.561552,4691.637038,5267.108056,309.526113,309.526113,6797.664042,63870.59413,1,1,1,1,1,1,1
-2153.5,57.89298721,1656.495491,1467.561552,4603.560013,5283.9101,311.9872992,311.9872992,6806.183253,63950.86715,1,1,1,1,1,1,1
-2154,58.35061556,1669.589952,1467.561552,4557.556426,5257.029452,314.4534741,314.4534741,6813.694698,64021.68706,1,1,1,1,1,1,1
-2154.5,58.80883666,1682.701647,1467.561552,4619.125498,5122.104299,316.9228434,316.9228434,6820.990776,64090.48696,1,1,1,1,1,1,1
-2155,59.26813361,1695.843178,1467.561552,4550.660992,5116.801024,319.3980104,319.3980104,6828.236392,64158.81368,1,1,1,1,1,1,1
-2155.5,59.72894349,1709.027929,1467.561552,4440.522427,5152.817239,321.8813307,321.8813307,6835.469462,64227.02397,1,1,1,1,1,1,1
-2156,60.1898162,1722.215441,1467.561552,4591.96194,4927.658965,324.3649896,324.3649896,6842.675401,64294.98035,1,1,1,1,1,1,1
-2156.5,60.64786896,1735.321831,1467.561552,4676.145098,4770.612676,326.8334517,326.8334517,6849.81065,64362.27148,1,1,1,1,1,1,1
-2157,61.10091359,1748.285703,1467.561552,4530.56172,4844.233193,329.2749248,329.2749248,6856.809659,64428.28018,1,1,1,1,1,1,1
-2157.5,61.54772945,1761.070031,1467.561552,4419.376953,4884.574527,331.6828308,331.6828308,6863.66046,64492.89364,1,1,1,1,1,1,1
-2158,61.98748073,1773.651494,1467.561552,4276.6205,4957.645556,334.0526656,334.0526656,6870.39038,64556.36763,1,1,1,1,1,1,1
-2158.5,62.42030704,1786.036263,1467.561552,4252.43244,4913.107223,336.3851815,336.3851815,6877.015059,64618.84914,1,1,1,1,1,1,1
-2159,62.84637295,1798.227636,1467.561552,4324.361886,4760.411055,338.6812653,338.6812653,6872.379609,64575.5288,1,1,1,1,1,1,1
-2159.5,63.26330076,1810.158158,1467.561552,4273.305713,4685.570805,340.9281036,340.9281036,6827.767197,64156.5865,1,1,1,1,1,1,1
-2160,63.38188287,1739.077733,1467.561552,1609.316711,1777.517834,341.5671467,341.5671467,2675.603192,25141.13946,1,1,1,1,1,1,1
-2160.5,63.02407678,1541.403889,1467.561552,-82.5976395,-97.64135266,339.6389174,339.6389174,0,0,1,1,1,1,1,1,1
-2161,62.6507513,1311.190815,1467.561552,1382.831548,1621.80415,337.6270535,337.6270535,1920.125442,18041.93934,1,1,1,1,1,1,1
-2161.5,62.58487539,1160.330985,1467.561552,2686.023381,2920.906766,337.2720459,337.2720459,3890.520106,36556.39898,1,1,1,1,1,1,1
-2162,62.69591934,1120.108208,1467.561552,2998.227418,3322.341223,337.8704656,337.8704656,4663.221769,43816.93626,1,1,1,1,1,1,1
-2162.5,62.86720769,1123.168732,1467.561552,3130.853907,3602.165248,338.7935444,338.7935444,5015.980244,47130.99751,1,1,1,1,1,1,1
-2163,63.0704,1126.798621,1467.561552,3207.310846,3690.131833,339.8885548,339.8885548,5181.865077,48689.23489,1,1,1,1,1,1,1
-2163.5,63.28881066,1130.700576,1467.561552,3280.004347,3682.833552,341.0655773,341.0655773,5258.401932,49408.31973,1,1,1,1,1,1,1
-2164,63.51602651,1134.759535,1467.561552,3383.442481,3605.354826,342.2900513,342.2900513,5297.555641,49776.23993,1,1,1,1,1,1,1
-2164.5,63.74920992,1138.925523,1467.561552,3408.219675,3590.876239,343.5466848,343.5466848,5323.511543,50020.1569,1,1,1,1,1,1,1
-2165,63.98669513,1143.168367,1467.561552,3289.546765,3713.732849,344.8265007,344.8265007,5344.398708,50216.4502,1,1,1,1,1,1,1
-2165.5,64.22632906,1147.4496,1467.561552,3329.813965,3675.42578,346.1178962,346.1178962,5363.382073,50394.85584,1,1,1,1,1,1,1
-2166,64.46607213,1151.733038,1467.561552,3355.014213,3651.40549,347.4098799,347.4098799,5381.631143,50566.36181,1,1,1,1,1,1,1
-2166.5,64.70486299,1155.998799,1467.561552,3350.106104,3657.242369,348.6967321,348.6967321,5399.554114,50734.80416,1,1,1,1,1,1,1
-2167,64.94195456,1160.235135,1467.561552,3255.537866,3752.68077,349.9744267,349.9744267,5417.280109,50901.39543,1,1,1,1,1,1,1
-2167.5,65.17710096,1164.436299,1467.561552,3297.860293,3711.204091,351.2416387,351.2416387,5434.841745,51066.44186,1,1,1,1,1,1,1
-2168,65.4095315,1168.588264,1467.561552,3364.804053,3645.204391,352.4942149,352.4942149,5452.220723,51229.77145,1,1,1,1,1,1,1
-2168.5,65.63781431,1172.666734,1467.561552,3343.443203,3667.64732,353.7244388,353.7244388,5469.353912,51390.79075,1,1,1,1,1,1,1
-2169,65.86247885,1176.680896,1467.561552,3330.708553,3681.309453,354.9351637,354.9351637,5486.220941,51549.30872,1,1,1,1,1,1,1
-2169.5,66.08644111,1180.682126,1467.561552,3242.973585,3769.632891,356.1421041,356.1421041,5502.924703,51706.29292,1,1,1,1,1,1,1
-2170,66.31105691,1184.695489,1467.561552,3279.221182,3733.888268,357.3525663,357.3525663,5519.580721,51862.82852,1,1,1,1,1,1,1
-2170.5,66.53474628,1188.691853,1467.561552,3309.431898,3704.376812,358.558036,358.558036,5536.175087,52018.78531,1,1,1,1,1,1,1
-2171,66.75525228,1192.631016,1467.561552,3385.665232,3629.035079,359.7463505,359.7463505,5552.109903,52168.55513,1,1,1,1,1,1,1
-2171.5,66.97113169,1196.487325,1467.561552,3348.725364,3667.030694,360.909732,360.909732,5567.514328,52313.34693,1,1,1,1,1,1,1
-2172,67.18139637,1200.244362,1467.561552,3409.471694,3607.443813,362.0428556,362.0428556,5583.528381,52463.87458,1,1,1,1,1,1,1
-2172.5,67.38607324,1203.901422,1467.561552,3429.222242,3588.849272,363.1458663,363.1458663,5600.881877,52627.00413,1,1,1,1,1,1,1
-2173,67.58583371,1207.470409,1467.561552,3404.28032,3614.854361,364.2223823,364.2223823,5618.491798,52792.54838,1,1,1,1,1,1,1
-2173.5,67.78387236,1211.008765,1467.561552,3359.618426,3660.095187,365.2896194,365.2896194,5635.809294,52955.34407,1,1,1,1,1,1,1
-2174,67.98487975,1214.599917,1467.561552,3311.880637,3707.916279,366.3728552,366.3728552,5653.127076,53118.14483,1,1,1,1,1,1,1
-2174.5,68.19247813,1218.308574,1467.561552,3366.862204,3652.578992,367.4916099,367.4916099,5670.764894,53283.95636,1,1,1,1,1,1,1
-2175,68.40939195,1222.183317,1467.561552,3381.471464,3637.291829,368.660566,368.660566,5689.000355,53455.38728,1,1,1,1,1,1,1
-2175.5,68.63576274,1226.227513,1467.561552,3323.33712,3694.795087,369.880486,369.880486,5707.972637,53633.74605,1,1,1,1,1,1,1
-2176,68.86970252,1230.407423,1467.561552,3298.317716,3719.379552,371.1411955,371.1411955,5727.65393,53818.76934,1,1,1,1,1,1,1
-2176.5,69.10989623,1234.699072,1467.561552,3320.969243,3696.41099,372.4356077,372.4356077,5747.953489,54009.60455,1,1,1,1,1,1,1
-2177,69.35443082,1239.067822,1467.561552,3264.675363,3752.716384,373.753413,373.753413,5768.73899,54205.00712,1,1,1,1,1,1,1
-2177.5,69.59945444,1243.444988,1467.561552,3251.144063,3766.718618,375.0738537,375.0738537,5789.765969,54402.67763,1,1,1,1,1,1,1
-2178,69.84271891,1247.790947,1467.561552,3286.594949,3731.904722,376.3848143,376.3848143,5810.806545,54600.47474,1,1,1,1,1,1,1
-2178.5,70.08496088,1252.11842,1467.561552,3322.010861,3697.048501,377.6902646,377.6902646,5831.78878,54797.72327,1,1,1,1,1,1,1
-2179,70.32648738,1256.434223,1467.561552,3334.347057,3685.330957,378.9918592,378.9918592,5852.711617,54994.41401,1,1,1,1,1,1,1
-2179.5,70.56557692,1260.706156,1467.561552,3288.388417,3732.124988,380.280321,380.280321,5873.490063,55189.74615,1,1,1,1,1,1,1
-2180,70.80193422,1264.928532,1467.561552,3195.162355,3826.095164,381.5540586,381.5540586,5894.066142,55383.1756,1,1,1,1,1,1,1
-2180.5,71.03908606,1269.164615,1467.561552,3182.995526,3838.550585,382.832078,382.832078,5914.581505,55576.03541,1,1,1,1,1,1,1
-2181,71.27976009,1273.464788,1467.561552,3218.221292,3803.449309,384.1290786,384.1290786,5935.25109,55770.34644,1,1,1,1,1,1,1
-2181.5,71.52243053,1277.800336,1467.561552,3183.282461,3838.728369,385.436838,385.436838,5956.095725,55966.30334,1,1,1,1,1,1,1
-2182,71.76468377,1282.128711,1467.561552,3394.92753,3627.592782,386.742349,386.742349,5976.999049,56162.81049,1,1,1,1,1,1,1
-2182.5,72.00700547,1286.457272,1467.561552,3370.208753,3652.705536,388.048229,388.048229,5997.923382,56359.51549,1,1,1,1,1,1,1
-2183,72.25246657,1290.842959,1467.561552,3324.375719,3698.552336,389.3710273,389.3710273,6019.00927,56557.73973,1,1,1,1,1,1,1
-2183.5,72.50404418,1295.337649,1467.561552,3312.133302,3710.588891,390.7267877,390.7267877,6040.473767,56759.52474,1,1,1,1,1,1,1
-2184,72.76195482,1299.944735,1467.561552,3395.473473,3627.045151,392.116677,392.116677,6062.423439,56965.87128,1,1,1,1,1,1,1
-2184.5,73.02548065,1304.652739,1467.561552,3298.240913,3724.110476,393.5368267,393.5368267,6084.86669,57176.85749,1,1,1,1,1,1,1
-2185,73.29449387,1309.458662,1467.561552,3373.300454,3648.900183,394.9865483,394.9865483,6107.794911,57392.40247,1,1,1,1,1,1,1
-2185.5,73.56872399,1314.358919,1467.561552,3416.916998,3605.190966,396.4643838,396.4643838,6131.195013,57612.38393,1,1,1,1,1,1,1
-2186,73.84754334,1319.340015,1467.561552,3309.794527,3712.310062,397.9669509,397.9669509,6155.019976,57836.35874,1,1,1,1,1,1,1
-2186.5,74.12970401,1324.381054,1467.561552,3313.449414,3708.805703,399.4875244,399.4875244,6179.192845,58063.60394,1,1,1,1,1,1,1
-2187,74.41341809,1329.450438,1467.561552,3335.741139,3686.871785,401.0164694,401.0164694,6203.586528,58292.92413,1,1,1,1,1,1,1
-2187.5,74.69753731,1334.525665,1467.561552,3432.709326,3590.365525,402.5475976,402.5475976,6228.085002,58523.22874,1,1,1,1,1,1,1
-2188,74.98297862,1339.625623,1467.561552,3452.30697,3571.047233,404.0858507,404.0858507,6252.691674,58754.5507,1,1,1,1,1,1,1
-2188.5,75.27305006,1344.807767,1467.561552,3344.135605,3679.169884,405.6490556,405.6490556,6277.581754,58988.53785,1,1,1,1,1,1,1
-2189,75.5690319,1350.095321,1467.561552,3447.268571,3575.967308,407.244112,407.244112,6302.898263,59226.5346,1,1,1,1,1,1,1
-2189.5,75.86947455,1355.462621,1467.561552,3267.034512,3756.276105,408.8632077,408.8632077,6328.622917,59468.36795,1,1,1,1,1,1,1
-2190,76.17422144,1360.907463,1467.561552,3381.27701,3642.027146,410.5054992,410.5054992,6354.737524,59713.86671,1,1,1,1,1,1,1
-2190.5,76.4850277,1366.460303,1467.561552,3304.243858,3718.902109,412.1804448,412.1804448,6381.324644,59963.8082,1,1,1,1,1,1,1
-2191,76.80206898,1372.124511,1467.561552,3279.950184,3743.106149,413.8889912,413.8889912,6408.43011,60218.62301,1,1,1,1,1,1,1
-2191.5,77.12412297,1377.878086,1467.561552,3300.849659,3722.234722,415.6245512,415.6245512,6436.006734,60477.86615,1,1,1,1,1,1,1
-2192,77.45052806,1383.709193,1467.561552,3350.520142,3672.627605,417.3835594,417.3835594,6463.994285,60740.9722,1,1,1,1,1,1,1
-2192.5,77.78198731,1389.631845,1467.561552,3420.890599,3602.233573,419.1698048,419.1698048,6492.337039,61007.38868,1,1,1,1,1,1,1
-2193,78.11935809,1395.65973,1467.561552,3291.468269,3731.602615,420.9879075,420.9879075,6520.878415,61275.56627,1,1,1,1,1,1,1
-2193.5,78.46135769,1401.769895,1467.561552,3303.033494,3714.29037,422.8309551,422.8309551,6543.749075,61490.39803,1,1,1,1,1,1,1
-2194,78.80529976,1407.913992,1467.561552,3251.332727,3751.719319,424.6844707,424.6844707,6557.880702,61623.05861,1,1,1,1,1,1,1
-2194.5,79.1483595,1414.043377,1467.561552,3187.771278,3796.60437,426.5332315,426.5332315,6567.205916,61710.50881,1,1,1,1,1,1,1
-2195,79.48897859,1420.128849,1467.561552,3143.741119,3820.62134,428.3688395,428.3688395,6574.87095,61782.33808,1,1,1,1,1,1,1
-2195.5,79.82709349,1426.169521,1467.561552,3325.144355,3618.791097,430.1909523,430.1909523,6581.944581,61848.60465,1,1,1,1,1,1,1
-2196,80.16347333,1432.179455,1467.561552,3292.277473,3631.094896,432.0037148,432.0037148,6588.792187,61912.74651,1,1,1,1,1,1,1
-2196.5,80.49956669,1438.183976,1467.561552,3219.197818,3683.441755,433.8149335,433.8149335,6595.555098,61976.09089,1,1,1,1,1,1,1
-2197,80.83653114,1444.203898,1467.561552,3174.983749,3706.783053,435.6308465,435.6308465,6602.296025,62039.22783,1,1,1,1,1,1,1
-2197.5,81.17380569,1450.229203,1467.561552,3156.04953,3704.927709,437.4484307,437.4484307,6609.033991,62102.33676,1,1,1,1,1,1,1
-2198,81.51003103,1456.235561,1467.561552,3146.545979,3693.771367,439.2603606,439.2603606,6615.758838,62165.32363,1,1,1,1,1,1,1
-2198.5,81.84486573,1462.21792,1467.561552,3237.161279,3582.543647,441.0647963,441.0647963,6622.459206,62228.08083,1,1,1,1,1,1,1
-2199,82.17940832,1468.194514,1467.561552,3163.45951,3635.55083,442.8676578,442.8676578,6629.143407,62290.68619,1,1,1,1,1,1,1
-2199.5,82.51220511,1474.140768,1467.561552,3118.195559,3660.490439,444.6611112,444.6611112,6635.799778,62353.03125,1,1,1,1,1,1,1
-2200,82.83888988,1479.97684,1467.561552,3259.20422,3499.855277,446.4216266,446.4216266,6642.367253,62414.54513,1,1,1,1,1,1,1
-2200.5,83.15728131,1485.66474,1467.561552,3227.569437,3512.357749,448.137449,448.137449,6648.791734,62474.72068,1,1,1,1,1,1,1
-2201,83.46821303,1491.220465,1467.561552,3267.547968,3453.638443,449.8130707,449.8130707,6655.064912,62533.47859,1,1,1,1,1,1,1
-2201.5,83.77168906,1496.642783,1467.561552,3234.472366,3468.490643,451.4485135,451.4485135,6661.183521,62590.78899,1,1,1,1,1,1,1
-2202,84.06548444,1501.891158,1467.561552,3059.185028,3626.380229,453.0317869,453.0317869,6667.127673,62646.466,1,1,1,1,1,1,1
-2202.5,84.35137215,1506.998916,1467.561552,3200.495259,3467.725489,454.5724456,454.5724456,6672.912839,62700.65428,1,1,1,1,1,1,1
-2203,84.63746911,1512.109947,1467.561552,3083.88607,3566.350286,456.114232,456.114232,6678.645649,62754.34971,1,1,1,1,1,1,1
-2203.5,84.87285378,1516.315115,1467.561552,2583.370559,3007.615469,457.382728,457.382728,5598.636299,52605.93782,1,1,1,1,1,1,1
-2204,84.98194166,1518.264143,1467.561552,1985.80548,2191.719838,457.9706064,457.9706064,4181.083042,39290.34629,1,1,1,1,1,1,1
-2204.5,85,1518.5868,1467.561552,1809.190578,1989.694632,458.0679234,458.0679234,3808.057898,35786.74141,1,1,1,1,1,1,1
-2205,85,1518.5868,1467.561552,1818.329494,1921.152431,458.0679234,458.0679234,3758.492007,35321.0439,1,1,1,1,1,1,1
-2205.5,85,1518.5868,1467.561552,1714.436152,2013.810009,458.0679234,458.0679234,3749.173238,35233.48603,1,1,1,1,1,1,1
-2206,85,1518.5868,1467.561552,1753.331869,2016.301681,458.0679234,458.0679234,3783.498616,35556.00185,1,1,1,1,1,1,1
-2206.5,85,1518.5868,1467.561552,1822.435629,1964.013036,458.0679234,458.0679234,3797.445195,35687.04138,1,1,1,1,1,1,1
-2207,85,1518.5868,1467.561552,1806.190969,1976.652209,458.0679234,458.0679234,3794.454482,35658.94103,1,1,1,1,1,1,1
-2207.5,85,1518.5868,1467.561552,1826.759105,1929.865316,458.0679234,458.0679234,3772.708886,35454.62276,1,1,1,1,1,1,1
-2208,85,1518.5868,1467.561552,1698.015516,1993.183806,458.0679234,458.0679234,3718.44755,34944.79242,1,1,1,1,1,1,1
-2208.5,85,1518.5868,1467.561552,1742.508972,1887.559919,458.0679234,458.0679234,3667.74717,34468.42008,1,1,1,1,1,1,1
-2209,85,1518.5868,1467.561552,1661.139805,1921.120271,458.0679234,458.0679234,3628.096049,34095.8645,1,1,1,1,1,1,1
-2209.5,85,1518.5868,1467.561552,1645.701754,1883.897043,458.0679234,458.0679234,3582.927948,33671.22773,1,1,1,1,1,1,1
-2210,85,1518.5868,1467.561552,1658.258589,1787.647118,458.0679234,458.0679234,3508.56336,32971.69605,1,1,1,1,1,1,1
-2210.5,85,1518.5868,1467.561552,1630.985193,1731.870875,458.0679234,458.0679234,3434.395202,32273.95519,1,1,1,1,1,1,1
-2211,85,1518.5868,1467.561552,1526.054839,1773.553904,458.0679234,458.0679234,3377.91199,31742.58646,1,1,1,1,1,1,1
-2211.5,85,1518.5868,1467.561552,1586.112792,1659.027772,458.0679234,458.0679234,3329.26896,31284.9742,1,1,1,1,1,1,1
-2212,85,1518.5868,1467.561552,1596.579928,1596.579928,458.0679234,458.0679234,3282.847996,30848.26623,1,1,1,1,1,1,1
-2212.5,85,1518.5868,1467.561552,1532.413253,1627.435201,458.0679234,458.0679234,3253.394415,30571.24168,1,1,1,1,1,1,1
-2213,85,1518.5868,1467.561552,1517.266369,1668.793824,458.0679234,458.0679234,3276.603937,30789.54487,1,1,1,1,1,1,1
-2213.5,85,1518.5868,1467.561552,1590.359301,1679.40486,458.0679234,458.0679234,3351.260277,31491.85826,1,1,1,1,1,1,1
-2214,85,1518.5868,1467.561552,1614.622285,1786.182176,458.0679234,458.0679234,3468.28671,32592.79135,1,1,1,1,1,1,1
-2214.5,85,1518.5868,1467.561552,1638.090008,1875.573568,458.0679234,458.0679234,3569.075543,33540.96834,1,1,1,1,1,1,1
-2215,85,1518.5868,1467.561552,1690.963407,1916.115624,458.0679234,458.0679234,3648.555254,34288.07553,1,1,1,1,1,1,1
-2215.5,85,1518.5868,1467.561552,1814.978257,1868.677712,458.0679234,458.0679234,3712.190861,34886.00554,1,1,1,1,1,1,1
-2216,85,1518.5868,1467.561552,1862.240497,1862.240497,458.0679234,458.0679234,3746.051018,35204.1501,1,1,1,1,1,1,1
-2216.5,85,1518.5868,1467.561552,1789.966924,1959.729715,458.0679234,458.0679234,3766.96435,35400.64839,1,1,1,1,1,1,1
-2217,85,1518.5868,1467.561552,1785.48103,1983.174842,458.0679234,458.0679234,3782.688007,35548.38528,1,1,1,1,1,1,1
-2217.5,85,1518.5868,1467.561552,1734.799196,2037.048975,458.0679234,458.0679234,3785.33571,35573.26238,1,1,1,1,1,1,1
-2218,85,1518.5868,1467.561552,1798.915666,1967.717504,458.0679234,458.0679234,3781.010075,35532.61934,1,1,1,1,1,1,1
-2218.5,85,1518.5868,1467.561552,1809.128604,1950.217859,458.0679234,458.0679234,3774.966416,35475.83398,1,1,1,1,1,1,1
-2219,85,1518.5868,1467.561552,1729.523518,2020.71527,458.0679234,458.0679234,3767.41292,35404.86293,1,1,1,1,1,1,1
-2219.5,85,1518.5868,1467.561552,1730.134371,2010.460499,458.0679234,458.0679234,3759.414376,35329.71015,1,1,1,1,1,1,1
-2220,85,1518.5868,1467.561552,1749.501299,1982.648738,458.0679234,458.0679234,3752.411081,35263.90799,1,1,1,1,1,1,1
-2220.5,85,1518.5868,1467.561552,1768.664532,1964.522469,458.0679234,458.0679234,3753.271511,35271.99235,1,1,1,1,1,1,1
-2221,85,1518.5868,1467.561552,1804.219195,1934.806935,458.0679234,458.0679234,3758.113625,35317.48821,1,1,1,1,1,1,1
-2221.5,85,1518.5868,1467.561552,1766.131338,1992.325934,458.0679234,458.0679234,3774.229413,35468.90955,1,1,1,1,1,1,1
-2222,85,1518.5868,1467.561552,1809.636724,1989.448404,458.0679234,458.0679234,3808.052127,35786.69593,1,1,1,1,1,1,1
-2222.5,85,1518.5868,1467.561552,1796.122428,2005.421838,458.0679234,458.0679234,3810.00669,35805.06471,1,1,1,1,1,1,1
-2223,85,1518.5868,1467.561552,1759.644744,2014.465025,458.0679234,458.0679234,3787.212054,35590.89207,1,1,1,1,1,1,1
-2223.5,85,1518.5868,1467.561552,1822.630814,1944.407424,458.0679234,458.0679234,3781.346836,35535.78348,1,1,1,1,1,1,1
-2224,85,1518.5868,1467.561552,1734.650343,2037.54789,458.0679234,458.0679234,3785.626825,35575.99748,1,1,1,1,1,1,1
-2224.5,85,1518.5868,1467.561552,1773.790149,2009.484661,458.0679234,458.0679234,3794.813442,35662.31369,1,1,1,1,1,1,1
-2225,85,1518.5868,1467.561552,1864.139176,1939.524676,458.0679234,458.0679234,3811.798652,35821.90021,1,1,1,1,1,1,1
-2225.5,85,1518.5868,1467.561552,1785.780506,2088.682767,458.0679234,458.0679234,3874.379736,36409.70574,1,1,1,1,1,1,1
-2226,85,1518.5868,1467.561552,1820.372139,2157.843395,458.0679234,458.0679234,3966.54139,37275.33034,1,1,1,1,1,1,1
-2226.5,85,1518.5868,1467.561552,1884.621306,2212.381533,458.0679234,458.0679234,4072.058201,38266.3936,1,1,1,1,1,1,1
-2227,85,1518.5868,1467.561552,1951.454625,2290.838038,458.0679234,458.0679234,4199.667851,39464.95812,1,1,1,1,1,1,1
-2227.5,85,1518.5868,1467.561552,2018.700881,2369.779296,458.0679234,458.0679234,4326.804157,40659.07193,1,1,1,1,1,1,1
-2228,85,1518.5868,1467.561552,2165.988386,2356.201807,458.0679234,458.0679234,4461.746698,41926.32938,1,1,1,1,1,1,1
-2228.5,85,1518.5868,1467.561552,2166.125253,2443.903292,458.0679234,458.0679234,4557.274199,42823.38209,1,1,1,1,1,1,1
-2229,85,1518.5868,1467.561552,2225.386988,2446.502417,458.0679234,458.0679234,4625.517919,43464.21873,1,1,1,1,1,1,1
-2229.5,85,1518.5868,1467.561552,2274.924848,2464.501918,458.0679234,458.0679234,4700.024414,44163.86476,1,1,1,1,1,1,1
-2230,85,1518.5868,1467.561552,2244.855457,2584.263307,458.0679234,458.0679234,4796.911354,45073.74815,1,1,1,1,1,1,1
-2230.5,85,1518.5868,1467.561552,2247.104909,2678.436723,458.0679234,458.0679234,4894.84759,45993.71863,1,1,1,1,1,1,1
-2231,85,1518.5868,1467.561552,2379.0255,2640.845977,458.0679234,458.0679234,4988.850655,46876.81497,1,1,1,1,1,1,1
-2231.5,85,1518.5868,1467.561552,2426.539478,2668.874248,458.0679234,458.0679234,5067.148153,47612.34443,1,1,1,1,1,1,1
-2232,85,1518.5868,1467.561552,2412.498746,2748.557404,458.0679234,458.0679234,5141.343853,48309.2948,1,1,1,1,1,1,1
-2232.5,85,1518.5868,1467.561552,2554.373043,2683.347981,458.0679234,458.0679234,5230.068844,49142.71029,1,1,1,1,1,1,1
-2233,85,1518.5868,1467.561552,2480.651468,2857.349162,458.0679234,458.0679234,5346.123001,50232.83579,1,1,1,1,1,1,1
-2233.5,85,1518.5868,1467.561552,2486.051842,2977.79836,458.0679234,458.0679234,5488.646232,51571.5514,1,1,1,1,1,1,1
-2234,85,1518.5868,1467.561552,2527.493154,3074.098078,458.0679234,458.0679234,5632.133791,52919.15663,1,1,1,1,1,1,1
-2234.5,85,1518.5868,1467.561552,2572.893147,3144.647179,458.0679234,458.0679234,5750.906845,54034.73831,1,1,1,1,1,1,1
-2235,85,1518.5868,1467.561552,2773.982262,3047.792328,458.0679234,458.0679234,5863.396622,55092.0599,1,1,1,1,1,1,1
-2235.5,85,1518.5868,1467.561552,2944.628971,2987.886242,458.0679234,458.0679234,5984.858202,56233.95571,1,1,1,1,1,1,1
-2236,85,1518.5868,1467.561552,2844.176962,3211.003565,458.0679234,458.0679234,6119.400456,57498.82598,1,1,1,1,1,1,1
-2236.5,85,1518.5868,1467.561552,2822.110478,3363.837238,458.0679234,458.0679234,6259.056177,58810.01726,1,1,1,1,1,1,1
-2237,85,1518.5868,1467.561552,3038.7219,3272.287586,458.0679234,458.0679234,6377.034565,59917.88756,1,1,1,1,1,1,1
-2237.5,85,1518.5868,1467.561552,3107.115741,3283.187294,458.0679234,458.0679234,6445.244734,60558.84367,1,1,1,1,1,1,1
-2238,85,1518.5868,1467.561552,3176.960121,3273.056439,458.0679234,458.0679234,6495.054703,61027.02839,1,1,1,1,1,1,1
-2238.5,85,1518.5868,1467.561552,3200.591363,3314.961437,458.0679234,458.0679234,6552.116718,61563.50237,1,1,1,1,1,1,1
-2239,85,1518.5868,1467.561552,3128.414847,3459.239225,458.0679234,458.0679234,6625.023363,62249.44204,1,1,1,1,1,1,1
-2239.5,85,1518.5868,1467.561552,3113.461607,3510.924791,458.0679234,458.0679234,6663.615645,62612.59796,1,1,1,1,1,1,1
-2240,84.99984932,1518.58356,1467.561552,3070.620253,3569.096018,458.0671114,458.0671114,6679.685948,62763.82105,1,1,1,1,1,1,1
-2240.5,84.9979165,1518.548748,1467.561552,3032.032886,3613.774563,458.0566953,458.0566953,6685.716135,62820.56667,1,1,1,1,1,1,1
-2241,84.99210258,1518.446105,1467.561552,3225.250844,3422.941176,458.0253639,458.0253639,6687.441295,62836.80559,1,1,1,1,1,1,1
-2241.5,84.98181352,1518.261995,1467.561552,3316.631014,3333.039868,457.9699158,457.9699158,6687.816298,62840.34332,1,1,1,1,1,1,1
-2242,84.9669488,1517.995708,1467.561552,3225.309355,3425.700893,457.8898093,457.8898093,6687.668886,62838.96954,1,1,1,1,1,1,1
-2242.5,84.9492945,1517.680259,1467.561552,3117.906157,3534.28282,457.7946697,457.7946697,6687.33999,62835.88991,1,1,1,1,1,1,1
-2243,84.9315472,1517.363257,1467.561552,3093.757491,3559.484426,457.6990289,457.6990289,6686.992692,62832.6379,1,1,1,1,1,1,1
-2243.5,84.91462741,1517.061778,1467.561552,3119.27103,3534.969623,457.6078476,457.6078476,6686.662472,62829.54546,1,1,1,1,1,1,1
-2244,84.89860576,1516.775483,1467.561552,3203.092151,3452.097502,457.5215063,457.5215063,6686.348933,62826.60876,1,1,1,1,1,1,1
-2244.5,84.88295867,1516.496288,1467.561552,3253.29006,3402.875592,457.4371836,457.4371836,6686.043143,62823.74482,1,1,1,1,1,1,1
-2245,84.8670584,1516.211278,1467.561552,3287.076567,3370.116457,457.3514965,457.3514965,6685.730957,62820.82129,1,1,1,1,1,1,1
-2245.5,84.85068458,1515.91898,1467.561552,3270.770474,3387.454421,457.2632575,457.2632575,6685.410811,62817.82334,1,1,1,1,1,1,1
-2246,84.83441112,1515.628756,1467.561552,3313.120245,3346.093037,457.1755592,457.1755592,6685.092965,62814.84626,1,1,1,1,1,1,1
-2246.5,84.81896581,1515.353115,1467.561552,3229.845383,3430.254045,457.0923239,457.0923239,6684.791107,62812.01922,1,1,1,1,1,1,1
-2247,84.80497008,1515.102062,1467.561552,3147.116124,3513.760198,457.0169004,457.0169004,6684.516136,62809.44383,1,1,1,1,1,1,1
-2247.5,84.79340102,1514.895122,1467.561552,3105.797417,3555.588305,456.9545544,456.9545544,6684.289431,62807.32088,1,1,1,1,1,1,1
-2248,84.78551086,1514.754323,1467.561552,3172.807182,3488.824023,456.912034,456.912034,6684.135224,62805.87674,1,1,1,1,1,1,1
-2248.5,84.7793632,1514.644163,1467.561552,3272.932927,3389.116297,456.8789041,456.8789041,6684.014568,62804.7471,1,1,1,1,1,1,1
-2249,84.7721096,1514.51465,1467.561552,3097.571894,3565.028431,456.8398142,456.8398142,6683.872774,62803.41861,1,1,1,1,1,1,1
-2249.5,84.7643344,1514.376598,1467.561552,3232.112321,3430.931553,456.7979134,456.7979134,6683.721572,62802.00236,1,1,1,1,1,1,1
-2250,84.7575872,1514.255594,1467.561552,3173.103247,3490.283469,456.7615525,456.7615525,6683.589022,62800.76134,1,1,1,1,1,1,1
-2250.5,84.75088742,1514.136402,1467.561552,3056.864184,3607.006272,456.7254471,456.7254471,6683.458456,62799.53844,1,1,1,1,1,1,1
-2251,84.7428097,1513.991775,1467.561552,3232.75866,3431.723942,456.681916,456.681916,6683.300074,62798.05518,1,1,1,1,1,1,1
-2251.5,84.73491114,1513.850753,1467.561552,3073.615271,3591.224503,456.6393504,456.6393504,6683.145529,62796.60834,1,1,1,1,1,1,1
-2252,84.72946654,1513.753624,1467.561552,3099.469598,3565.539315,456.6100093,456.6100093,6683.039185,62795.61235,1,1,1,1,1,1,1
-2252.5,84.72574388,1513.687091,1467.561552,3032.425325,3632.774789,456.5899477,456.5899477,6682.966255,62794.92933,1,1,1,1,1,1,1
-2253,84.72241906,1513.627118,1467.561552,3049.541556,3615.85999,456.5720302,456.5720302,6682.900607,62794.31457,1,1,1,1,1,1,1
-2253.5,84.71928914,1513.570897,1467.561552,3162.427652,3503.132588,456.5551629,456.5551629,6682.839049,62793.7377,1,1,1,1,1,1,1
-2254,84.16065251,1503.591984,1467.561552,-462.199085,-542.5815346,453.5446509,453.5446509,0,0,1,1,1,1,1,1,1
-2254.5,83.4041437,1490.075979,1467.561552,15.58038068,-41.87228113,449.4677989,449.4677989,761.4643148,7155.562723,1,1,1,1,1,1,1
-2255,82.93730745,1481.735727,1467.561552,2324.325442,2431.882743,446.9520023,446.9520023,4610.383467,43322.62611,1,1,1,1,1,1,1
-2255.5,82.81490389,1479.548145,1467.561552,3048.689454,3156.981558,446.2923653,446.2923653,6101.900764,57332.9872,1,1,1,1,1,1,1
-2256,82.79694016,1479.227356,1467.561552,3055.046145,3497.424551,446.1955581,446.1955581,6416.436772,60289.1983,1,1,1,1,1,1,1
-2256.5,82.80907077,1479.444396,1467.561552,3227.16011,3481.655674,446.2609304,446.2609304,6567.739451,61712.31796,1,1,1,1,1,1,1
-2257,82.8402143,1480.001245,1467.561552,3310.580293,3445.706019,446.428764,446.428764,6621.15875,62214.97027,1,1,1,1,1,1,1
-2257.5,82.88607087,1480.819793,1467.561552,3291.39456,3476.950031,446.6758866,446.6758866,6638.722481,62380.20562,1,1,1,1,1,1,1
-2258,82.94696194,1481.907807,1467.561552,3132.166149,3636.417312,447.0040307,447.0040307,6645.0967,62440.13438,1,1,1,1,1,1,1
-2258.5,83.02054462,1483.221892,1467.561552,3077.998178,3686.832982,447.4005703,447.4005703,6648.09016,62468.2384,1,1,1,1,1,1,1
-2259,83.1037962,1484.709957,1467.561552,3050.482867,3709.027229,447.8492159,447.8492159,6650.146106,62487.51205,1,1,1,1,1,1,1
-2259.5,83.19573944,1486.353019,1467.561552,3214.641059,3538.702565,448.3447012,448.3447012,6652.023521,62505.09816,1,1,1,1,1,1,1
-2260,83.29606986,1488.145567,1467.561552,3347.339471,3399.223761,448.8853853,448.8853853,6653.958374,62523.21683,1,1,1,1,1,1,1
-2260.5,83.40456136,1490.083663,1467.561552,3369.631083,3369.631083,449.4700497,449.4700497,6656.022296,62542.54364,1,1,1,1,1,1,1
-2261,83.5217019,1492.175442,1467.561552,3114.938391,3616.401765,450.1013241,450.1013241,6658.243936,62563.34657,1,1,1,1,1,1,1
-2261.5,83.64960178,1494.460923,1467.561552,3100.335931,3622.190546,450.7905809,450.7905809,6660.661171,62585.9804,1,1,1,1,1,1,1
-2262,83.78914396,1496.954377,1467.561552,3221.816597,3491.272414,451.5425785,451.5425785,6663.298379,62610.67467,1,1,1,1,1,1,1
-2262.5,83.93778827,1499.610237,1467.561552,3226.057351,3477.251862,452.3436278,452.3436278,6666.131812,62637.20716,1,1,1,1,1,1,1
-2263,84.09377125,1502.396938,1467.561552,3062.445695,3630.660381,453.1842255,453.1842255,6669.133214,62665.31334,1,1,1,1,1,1,1
-2263.5,84.25932432,1505.353923,1467.561552,3031.939875,3650.077895,454.0763967,454.0763967,6672.319045,62695.14727,1,1,1,1,1,1,1
-2264,84.43709954,1508.529378,1467.561552,3109.95917,3560.149199,455.0344334,455.0344334,6675.730884,62727.09718,1,1,1,1,1,1,1
-2264.5,84.62547441,1511.895673,1467.561552,3179.185563,3478.605729,456.0495921,456.0495921,6679.362615,62761.10694,1,1,1,1,1,1,1
-2265,84.82195018,1515.406402,1467.561552,3064.614558,3580.452724,457.1084068,457.1084068,6683.176157,62796.82025,1,1,1,1,1,1,1
-2265.5,84.95757,1517.829228,1467.561552,2425.573473,2905.357237,457.8392667,457.8392667,5318.939762,49978.50237,1,1,1,1,1,1,1
-2266,84.99653071,1518.524919,1467.561552,2106.903793,2523.653993,458.0492272,458.0492272,4578.167576,43019.65291,1,1,1,1,1,1,1
-2266.5,85,1518.5868,1467.561552,2077.955935,2378.885175,458.0679234,458.0679234,4391.572219,41267.34836,1,1,1,1,1,1,1
-2267,85,1518.5868,1467.561552,2039.498354,2299.859846,458.0679234,458.0679234,4284.185709,40258.78321,1,1,1,1,1,1,1
-2267.5,85,1518.5868,1467.561552,1965.634091,2250.135151,458.0679234,458.0679234,4176.928773,39251.38439,1,1,1,1,1,1,1
-2268,85,1518.5868,1467.561552,1866.142127,2246.523371,458.0679234,458.0679234,4085.970559,38397.06488,1,1,1,1,1,1,1
-2268.5,85,1518.5868,1467.561552,1919.747837,2111.086575,458.0679234,458.0679234,4013.281618,37714.33677,1,1,1,1,1,1,1
-2269,85,1518.5868,1467.561552,1814.763349,2141.284299,458.0679234,458.0679234,3946.849855,37090.37826,1,1,1,1,1,1,1
-2269.5,85,1518.5868,1467.561552,1810.280902,2082.6023,458.0679234,458.0679234,3890.742646,36563.39336,1,1,1,1,1,1,1
-2270,85,1518.5868,1467.561552,1887.216605,1944.459037,458.0679234,458.0679234,3836.372391,36052.72262,1,1,1,1,1,1,1
-2270.5,85,1518.5868,1467.561552,1741.962314,2024.747597,458.0679234,458.0679234,3781.202649,35534.42242,1,1,1,1,1,1,1
-2271,85,1518.5868,1467.561552,1825.691507,1917.953018,458.0679234,458.0679234,3761.944102,35353.47904,1,1,1,1,1,1,1
-2271.5,85,1518.5868,1467.561552,1736.209026,2019.76782,458.0679234,458.0679234,3772.172558,35449.58347,1,1,1,1,1,1,1
-2272,85,1518.5868,1467.561552,1782.90848,1989.305359,458.0679234,458.0679234,3785.639192,35576.11378,1,1,1,1,1,1,1
-2272.5,85,1518.5868,1467.561552,1869.848704,1907.004167,458.0679234,458.0679234,3789.486118,35612.25904,1,1,1,1,1,1,1
-2273,85,1518.5868,1467.561552,1868.237897,1925.529703,458.0679234,458.0679234,3803.515724,35744.07912,1,1,1,1,1,1,1
-2273.5,85,1518.5868,1467.561552,1806.099784,2027.738403,458.0679234,458.0679234,3838.415303,36071.90507,1,1,1,1,1,1,1
-2274,85,1518.5868,1467.561552,1744.192692,2100.260903,458.0679234,458.0679234,3847.722481,36159.32813,1,1,1,1,1,1,1
-2274.5,85,1518.5868,1467.561552,1723.351698,2106.318743,458.0679234,458.0679234,3834.59092,36035.9903,1,1,1,1,1,1,1
-2275,85,1518.5868,1467.561552,1788.188385,2025.941397,458.0679234,458.0679234,3820.787606,35906.3433,1,1,1,1,1,1,1
-2275.5,85,1518.5868,1467.561552,1838.498431,1971.548022,458.0679234,458.0679234,3817.160195,35872.27304,1,1,1,1,1,1,1
-2276,85,1518.5868,1467.561552,1785.573971,2014.059246,458.0679234,458.0679234,3808.412308,35790.08505,1,1,1,1,1,1,1
-2276.5,85,1518.5868,1467.561552,1855.755529,1921.127741,458.0679234,458.0679234,3789.511866,35612.50136,1,1,1,1,1,1,1
-2277,85,1518.5868,1467.561552,1848.032203,1904.53239,458.0679234,458.0679234,3769.342592,35422.99362,1,1,1,1,1,1,1
-2277.5,85,1518.5868,1467.561552,1859.688648,1878.122396,458.0679234,458.0679234,3757.105927,35308.01997,1,1,1,1,1,1,1
-2278,85,1518.5868,1467.561552,1858.120743,1858.120743,458.0679234,458.0679234,3739.216879,35139.93739,1,1,1,1,1,1,1
-2278.5,85,1518.5868,1467.561552,1709.721319,1957.641226,458.0679234,458.0679234,3698.677136,34759.03305,1,1,1,1,1,1,1
-2279,85,1518.5868,1467.561552,1663.919189,1963.06532,458.0679234,458.0679234,3665.188414,34444.37897,1,1,1,1,1,1,1
-2279.5,85,1518.5868,1467.561552,1752.729452,1851.075755,458.0679234,458.0679234,3645.964741,34263.75646,1,1,1,1,1,1,1
-2280,85,1518.5868,1467.561552,1732.224877,1848.909216,458.0679234,458.0679234,3627.162101,34087.08937,1,1,1,1,1,1,1
-2280.5,85,1518.5868,1467.561552,1739.603931,1801.399586,458.0679234,458.0679234,3593.049858,33766.44033,1,1,1,1,1,1,1
-2281,85,1518.5868,1467.561552,1685.965249,1799.326877,458.0679234,458.0679234,3543.737746,33302.60149,1,1,1,1,1,1,1
-2281.5,85,1518.5868,1467.561552,1612.614539,1800.314092,458.0679234,458.0679234,3479.112913,32694.63944,1,1,1,1,1,1,1
-2282,85,1518.5868,1467.561552,1609.963922,1735.37216,458.0679234,458.0679234,3418.749594,32126.7679,1,1,1,1,1,1,1
-2282.5,85,1518.5868,1467.561552,1531.925406,1753.834053,458.0679234,458.0679234,3365.544481,31626.23788,1,1,1,1,1,1,1
-2283,85,1518.5868,1467.561552,1583.844367,1648.227651,458.0679234,458.0679234,3317.597834,31175.17713,1,1,1,1,1,1,1
-2283.5,85,1518.5868,1467.561552,1597.919944,1597.919944,458.0679234,458.0679234,3285.240829,30870.77659,1,1,1,1,1,1,1
-2284,85,1518.5868,1467.561552,1559.367091,1607.008579,458.0679234,458.0679234,3259.098027,30624.87258,1,1,1,1,1,1,1
-2284.5,85,1518.5868,1467.561552,1549.165764,1588.312299,458.0679234,458.0679234,3233.935351,30388.288,1,1,1,1,1,1,1
-2285,85,1518.5868,1467.561552,1457.670569,1652.586044,458.0679234,458.0679234,3210.361674,30166.67156,1,1,1,1,1,1,1
-2285.5,85,1518.5868,1467.561552,1430.36701,1653.900844,458.0679234,458.0679234,3187.855911,29955.09449,1,1,1,1,1,1,1
-2286,85,1518.5868,1467.561552,1417.817271,1631.252129,458.0679234,458.0679234,3157.37358,29668.5297,1,1,1,1,1,1,1
-2286.5,85,1518.5868,1467.561552,1465.411315,1517.754144,458.0679234,458.0679234,3100.30144,29131.99392,1,1,1,1,1,1,1
-2287,85,1518.5868,1467.561552,1442.242722,1486.225588,458.0679234,458.0679234,3052.934258,28686.69463,1,1,1,1,1,1,1
-2287.5,85,1518.5868,1467.561552,1422.01627,1480.05775,458.0679234,458.0679234,3030.812705,28478.81312,1,1,1,1,1,1,1
-2288,85,1518.5868,1467.561552,1333.441967,1542.373451,458.0679234,458.0679234,3010.469406,28287.83917,1,1,1,1,1,1,1
-2288.5,85,1518.5868,1467.561552,1325.439302,1472.649055,458.0679234,458.0679234,2950.953722,27729.22078,1,1,1,1,1,1,1
-2289,84.88656104,1455.920361,1467.561552,266.0103514,289.523825,457.4565969,457.4565969,836.8672234,7865.441695,1,1,1,1,1,1,1
-2289.5,84.62510852,1310.54651,1467.561552,-81.61676454,-86.66522421,456.0476203,456.0476203,121.5745759,1143.961328,1,1,1,1,1,1,1
-2290,84.43750935,1203.9102,1467.561552,885.3701044,979.444879,455.0366419,455.0366419,1976.822433,18576.80638,1,1,1,1,1,1,1
-2290.5,84.44326555,1179.663273,1467.561552,1662.535638,1778.428958,455.0676623,455.0676623,3386.666919,31826.20188,1,1,1,1,1,1,1
-2291,84.56928307,1180.38373,1467.561552,2004.274365,2095.569254,455.746775,455.746775,4004.194372,37625.59446,1,1,1,1,1,1,1
-2291.5,84.74609031,1182.851921,1467.561552,2003.612806,2356.046718,456.6995953,456.6995953,4268.120492,40104.10368,1,1,1,1,1,1,1
-2292,84.9075213,1185.105201,1467.561552,1806.978198,1942.255654,457.5695525,457.5695525,3694.801681,34719.06898,1,1,1,1,1,1,1
-2292.5,84.98653842,1186.208028,1467.561552,1346.07404,1354.771836,457.9953784,457.9953784,2770.374895,26034.28739,1,1,1,1,1,1,1
-2293,85,1186.3959,1467.561552,1165.786206,1219.417881,458.0679234,458.0679234,2495.566026,23452.9297,1,1,1,1,1,1,1
-2293.5,85,1186.3959,1467.561552,1157.327869,1174.825737,458.0679234,458.0679234,2447.548819,23002.46819,1,1,1,1,1,1,1
-2294,85,1186.3959,1467.561552,1089.777714,1192.47743,458.0679234,458.0679234,2405.108159,22604.14944,1,1,1,1,1,1,1
-2294.5,85,1186.3959,1467.561552,1061.259174,1178.849053,458.0679234,458.0679234,2371.992656,22293.09291,1,1,1,1,1,1,1
-2295,85,1186.3959,1467.561552,1066.199791,1126.513827,458.0679234,458.0679234,2330.897565,21906.55347,1,1,1,1,1,1,1
-2295.5,85,1186.3959,1467.561552,1051.525696,1078.186712,458.0679234,458.0679234,2273.56262,21367.03817,1,1,1,1,1,1,1
-2296,85,1186.3959,1467.561552,1015.463074,1051.606082,458.0679234,458.0679234,2216.297828,20828.16029,1,1,1,1,1,1,1
-2296.5,85,1186.3959,1467.561552,946.5010222,1061.845278,458.0679234,458.0679234,2162.615816,20322.9981,1,1,1,1,1,1,1
-2297,85,1186.3959,1467.561552,887.7646061,1068.694062,458.0679234,458.0679234,2115.183817,19876.65,1,1,1,1,1,1,1
-2297.5,85,1186.3959,1467.561552,932.7301593,995.0521249,458.0679234,458.0679234,2088.969703,19629.96793,1,1,1,1,1,1,1
-2298,85,1186.3959,1467.561552,930.0403867,977.8177638,458.0679234,458.0679234,2070.755845,19458.57088,1,1,1,1,1,1,1
-2298.5,85,1186.3959,1467.561552,894.6369458,993.9045332,458.0679234,458.0679234,2053.097205,19292.39817,1,1,1,1,1,1,1
-2299,85,1186.3959,1467.561552,919.4883903,947.2931394,458.0679234,458.0679234,2033.205112,19105.20827,1,1,1,1,1,1,1
-2299.5,85,1186.3959,1467.561552,897.6598779,924.9549115,458.0679234,458.0679234,1992.829895,18725.2661,1,1,1,1,1,1,1
-2300,85,1186.3959,1467.561552,841.257652,915.7501267,458.0679234,458.0679234,1932.977181,18162.12897,1,1,1,1,1,1,1
-2300.5,85,1186.3959,1467.561552,764.3099338,896.6802716,458.0679234,458.0679234,1846.585649,17350.21134,1,1,1,1,1,1,1
-2301,85,1186.3959,1467.561552,774.0805653,810.286239,458.0679234,458.0679234,1777.848053,16704.36397,1,1,1,1,1,1,1
-2301.5,85,1186.3959,1467.561552,731.2155467,812.2623922,458.0679234,458.0679234,1741.166822,16359.713,1,1,1,1,1,1,1
-2302,85,1186.3959,1467.561552,719.4845411,791.2462021,458.0679234,458.0679234,1711.789561,16083.68903,1,1,1,1,1,1,1
-2302.5,85,1186.3959,1467.561552,685.5046278,788.6512159,458.0679234,458.0679234,1678.979167,15775.40814,1,1,1,1,1,1,1
-2303,85,1186.3959,1467.561552,698.2001039,748.7607409,458.0679234,458.0679234,1654.582109,15546.17792,1,1,1,1,1,1,1
-2303.5,85,1186.3959,1467.561552,720.1777854,727.2680917,458.0679234,458.0679234,1655.017412,15550.26808,1,1,1,1,1,1,1
-2304,85,1186.3959,1467.561552,690.7157997,744.6553856,458.0679234,458.0679234,1644.185738,15448.49531,1,1,1,1,1,1,1
-2304.5,85,1186.3959,1467.561552,655.2798899,746.3550018,458.0679234,458.0679234,1613.920972,15164.13271,1,1,1,1,1,1,1
-2305,85,1186.3959,1467.561552,664.960534,699.1495192,458.0679234,458.0679234,1580.257484,14847.83612,1,1,1,1,1,1,1
-2305.5,85,1186.3959,1467.561552,639.5393194,692.8246396,458.0679234,458.0679234,1551.778781,14580.25488,1,1,1,1,1,1,1
-2306,85,1186.3959,1467.561552,613.6076222,668.1368761,458.0679234,458.0679234,1507.465034,14163.89009,1,1,1,1,1,1,1
-2306.5,85,1186.3959,1467.561552,570.4982562,618.0397775,458.0679234,458.0679234,1437.65606,13507.97687,1,1,1,1,1,1,1
-2307,85,1186.3959,1467.561552,509.0799919,594.061089,458.0679234,458.0679234,1371.127779,12882.88833,1,1,1,1,1,1,1
-2307.5,85,1186.3959,1467.561552,478.6842856,556.4774031,458.0679234,458.0679234,1316.637349,12370.90539,1,1,1,1,1,1,1
-2308,85,1186.3959,1467.561552,461.4937729,530.9659538,458.0679234,458.0679234,1282.409535,12049.30602,1,1,1,1,1,1,1
-2308.5,85,1186.3959,1467.561552,462.0199011,556.6246964,458.0679234,458.0679234,1303.398067,12246.51121,1,1,1,1,1,1,1
-2309,85,1186.3959,1467.561552,489.191189,579.4459169,458.0679234,458.0679234,1343.47045,12623.02449,1,1,1,1,1,1,1
-2309.5,84.92208123,1185.308031,1467.561552,-169.1701969,-192.17249,457.6480165,457.6480165,286.9856464,2696.469369,1,1,1,1,1,1,1
-2310,84.74269255,1182.804592,1467.561552,-360.1228484,-388.8628728,456.6812847,456.6812847,0,0.0001,1,1,1,1,1,1,1
-2310.5,84.53892125,1179.960015,1467.561552,-371.7890025,-376.5145313,455.5831542,455.5831542,0,0.0001,1,1,1,1,1,1,1
-2311,84.33033659,1177.049474,1467.561552,-350.2382239,-397.3763449,454.4590842,454.4590842,0,0.0001,1,1,1,1,1,1,1
-2311.5,84.11707659,1174.072426,1467.561552,-358.2739936,-388.6398708,453.3098188,453.3098188,0,0.0001,1,1,1,1,1,1,1
-2312,83.89909599,1171.029908,1467.561552,-347.2556884,-398.9506188,452.1351138,452.1351138,0,0.0001,1,1,1,1,1,1,1
-2312.5,83.67638126,1167.921704,1467.561552,-337.0782208,-408.4110357,450.9348965,450.9348965,0,0.0001,1,1,1,1,1,1,1
-2313,83.4490825,1164.74886,1467.561552,-364.2990961,-380.4651186,449.7099757,449.7099757,0,0.0001,1,1,1,1,1,1,1
-2313.5,83.21712808,1161.511388,1467.561552,-348.7566234,-395.2757407,448.4599653,448.4599653,0,0.0001,1,1,1,1,1,1,1
-2314,83.0553299,1159.253103,1467.561552,305.4312139,367.6382131,447.5880293,447.5880293,1034.596164,9720.893275,1,1,1,1,1,1,1
-2314.5,83.00531326,1158.554888,1467.561552,682.1643422,751.2575181,447.3184879,447.3184879,1610.692486,15133.79856,1,1,1,1,1,1,1
-2315,83,1158.4807,1467.561552,748.9756671,786.4272142,447.2898546,447.2898546,1691.0393,15888.7239,1,1,1,1,1,1,1
-2315.5,83,1158.4807,1467.561552,734.3739857,801.0288956,447.2898546,447.2898546,1691.0393,15888.7239,1,1,1,1,1,1,1
-2316,83,1158.4807,1467.561552,735.3075107,800.0953707,447.2898546,447.2898546,1691.0393,15888.7239,1,1,1,1,1,1,1
-2316.5,83,1158.4807,1467.561552,748.9756671,786.4272142,447.2898546,447.2898546,1691.0393,15888.7239,1,1,1,1,1,1,1
-2317,83,1158.4807,1467.561552,764.3296959,771.0731854,447.2898546,447.2898546,1691.0393,15888.7239,1,1,1,1,1,1,1
-2317.5,83,1158.4807,1467.561552,737.7457305,797.6571509,447.2898546,447.2898546,1691.0393,15888.7239,1,1,1,1,1,1,1
-2318,83,1158.4807,1467.561552,711.3429425,824.0599388,447.2898546,447.2898546,1691.0393,15888.7239,1,1,1,1,1,1,1
-2318.5,83,1158.4807,1467.561552,718.9817892,830.8411389,447.2898546,447.2898546,1703.974664,16010.26184,1,1,1,1,1,1,1
-2319,83,1158.4807,1467.561552,777.7572877,814.150295,447.2898546,447.2898546,1741.728771,16364.99309,1,1,1,1,1,1,1
-2319.5,83,1158.4807,1467.561552,766.879677,859.6185909,447.2898546,447.2898546,1772.760113,16656.55859,1,1,1,1,1,1,1
-2320,83,1158.4807,1467.561552,804.1999209,829.3057912,447.2898546,447.2898546,1779.045623,16715.61639,1,1,1,1,1,1,1
-2320.5,83,1158.4807,1467.561552,769.3911068,858.2118303,447.2898546,447.2898546,1773.750099,16665.86045,1,1,1,1,1,1,1
-2321,83,1158.4807,1467.561552,784.8280983,822.3227201,447.2898546,447.2898546,1755.403685,16493.48048,1,1,1,1,1,1,1
-2321.5,83,1158.4807,1467.561552,784.411006,800.257693,447.2898546,447.2898546,1735.235641,16303.9845,1,1,1,1,1,1,1
-2322,83,1158.4807,1467.561552,739.0185549,827.8860573,447.2898546,447.2898546,1719.299509,16154.25173,1,1,1,1,1,1,1
-2322.5,83,1158.4807,1467.561552,726.0399941,822.3780107,447.2898546,447.2898546,1702.715416,15998.43056,1,1,1,1,1,1,1
-2323,83,1158.4807,1467.561552,704.9697544,820.2011257,447.2898546,447.2898546,1681.86012,15802.47716,1,1,1,1,1,1,1
-2323.5,83,1158.4807,1467.561552,683.2581715,827.6766717,447.2898546,447.2898546,1669.089051,15682.48219,1,1,1,1,1,1,1
-2324,83,1158.4807,1467.561552,696.1793877,824.4552195,447.2898546,447.2898546,1677.790406,15764.23872,1,1,1,1,1,1,1
-2324.5,83,1158.4807,1467.561552,741.9981025,792.774657,447.2898546,447.2898546,1690.473227,15883.4043,1,1,1,1,1,1,1
-2325,83,1158.4807,1467.561552,756.7093928,787.5954905,447.2898546,447.2898546,1699.02482,15963.75406,1,1,1,1,1,1,1
-2325.5,83,1158.4807,1467.561552,713.1737085,841.4761135,447.2898546,447.2898546,1708.305275,16050.95149,1,1,1,1,1,1,1
-2326,83,1158.4807,1467.561552,706.3861073,863.3607978,447.2898546,447.2898546,1721.849001,16178.20594,1,1,1,1,1,1,1
-2326.5,83,1158.4807,1467.561552,762.3248875,821.6443807,447.2898546,447.2898546,1734.606994,16298.0781,1,1,1,1,1,1,1
-2327,83,1158.4807,1467.561552,768.355369,825.1246157,447.2898546,447.2898546,1743.13896,16378.24323,1,1,1,1,1,1,1
-2327.5,83,1158.4807,1467.561552,770.8786714,822.1735455,447.2898546,447.2898546,1742.755006,16374.63539,1,1,1,1,1,1,1
-2328,83,1158.4807,1467.561552,781.544158,792.0349947,447.2898546,447.2898546,1725.286589,16210.50487,1,1,1,1,1,1,1
-2328.5,83,1158.4807,1467.561552,752.5616317,800.9253521,447.2898546,447.2898546,1707.262793,16041.15629,1,1,1,1,1,1,1
-2329,83,1158.4807,1467.561552,764.558025,778.1672933,447.2898546,447.2898546,1697.608495,15950.44635,1,1,1,1,1,1,1
-2329.5,83,1158.4807,1467.561552,713.4139626,821.0631851,447.2898546,447.2898546,1690.208355,15880.91582,1,1,1,1,1,1,1
-2330,83,1158.4807,1467.561552,736.0925821,790.1783378,447.2898546,447.2898546,1682.84653,15811.74549,1,1,1,1,1,1,1
-2330.5,83,1158.4807,1467.561552,740.6343729,795.3794638,447.2898546,447.2898546,1691.587327,15893.87251,1,1,1,1,1,1,1
-2331,83,1158.4807,1467.561552,741.3634154,842.062571,447.2898546,447.2898546,1734.120589,16293.50797,1,1,1,1,1,1,1
-2331.5,83,1158.4807,1467.561552,751.2872173,864.3842177,447.2898546,447.2898546,1763.047214,16565.29763,1,1,1,1,1,1,1
-2332,83,1158.4807,1467.561552,760.9812046,835.5221205,447.2898546,447.2898546,1745.851656,16403.7312,1,1,1,1,1,1,1
-2332.5,83,1158.4807,1467.561552,727.6327395,852.3808065,447.2898546,447.2898546,1731.058884,16264.74056,1,1,1,1,1,1,1
-2333,83,1158.4807,1467.561552,769.9262707,826.0934241,447.2898546,447.2898546,1745.417148,16399.64883,1,1,1,1,1,1,1
-2333.5,83,1158.4807,1467.561552,745.2870405,851.969091,447.2898546,447.2898546,1746.526801,16410.07456,1,1,1,1,1,1,1
-2334,83,1158.4807,1467.561552,743.9691724,808.0553538,447.2898546,447.2898546,1705.95018,16028.82352,1,1,1,1,1,1,1
-2334.5,83,1158.4807,1467.561552,705.6875005,810.0407902,447.2898546,447.2898546,1673.389967,15722.89317,1,1,1,1,1,1,1
-2335,83,1158.4807,1467.561552,717.3646824,803.3413184,447.2898546,447.2898546,1677.854495,15764.84091,1,1,1,1,1,1,1
-2335.5,83,1158.4807,1467.561552,745.2816202,773.8598343,447.2898546,447.2898546,1676.450917,15751.65326,1,1,1,1,1,1,1
-2336,83,1158.4807,1467.561552,718.4379055,756.0051296,447.2898546,447.2898546,1636.352261,15374.89277,1,1,1,1,1,1,1
-2336.5,83,1158.4807,1467.561552,674.5505322,762.2845892,447.2898546,447.2898546,1602.615641,15057.9095,1,1,1,1,1,1,1
-2337,83,1158.4807,1467.561552,707.0215721,740.3326252,447.2898546,447.2898546,1612.05126,15146.56503,1,1,1,1,1,1,1
-2337.5,83,1158.4807,1467.561552,710.2076284,747.5621019,447.2898546,447.2898546,1621.394875,15234.3562,1,1,1,1,1,1,1
-2338,83,1158.4807,1467.561552,667.9911211,766.7470451,447.2898546,447.2898546,1600.734094,15040.231,1,1,1,1,1,1,1
-2338.5,83,1158.4807,1467.561552,637.7107836,772.4564992,447.2898546,447.2898546,1578.692182,14833.12838,1,1,1,1,1,1,1
-2339,83,1158.4807,1467.561552,681.4147654,723.2335854,447.2898546,447.2898546,1573.741209,14786.6098,1,1,1,1,1,1,1
-2339.5,83,1158.4807,1467.561552,679.7526149,726.7603286,447.2898546,447.2898546,1575.413006,14802.31832,1,1,1,1,1,1,1
-2340,83,1158.4807,1467.561552,683.9268713,729.4171419,447.2898546,447.2898546,1581.54177,14859.90278,1,1,1,1,1,1,1
-2340.5,83,1158.4807,1467.561552,676.610805,753.0688646,447.2898546,447.2898546,1596.196729,14997.59799,1,1,1,1,1,1,1
-2341,83,1158.4807,1467.561552,717.4362229,747.8318133,447.2898546,447.2898546,1628.121398,15297.55705,1,1,1,1,1,1,1
-2341.5,83,1158.4807,1467.561552,729.7026578,768.1642943,447.2898546,447.2898546,1657.365311,15572.32807,1,1,1,1,1,1,1
-2342,83,1158.4807,1467.561552,703.5190496,807.9137493,447.2898546,447.2898546,1669.535993,15686.68201,1,1,1,1,1,1,1
-2342.5,83,1158.4807,1467.561552,728.7792082,790.9890641,447.2898546,447.2898546,1677.014342,15756.94743,1,1,1,1,1,1,1
-2343,83,1158.4807,1467.561552,747.0361089,780.9369344,447.2898546,447.2898546,1684.374493,15826.10183,1,1,1,1,1,1,1
-2343.5,83,1158.4807,1467.561552,731.7068436,798.1200281,447.2898546,447.2898546,1686.0373,15841.725,1,1,1,1,1,1,1
-2344,83,1158.4807,1467.561552,720.746329,796.6143636,447.2898546,447.2898546,1674.853511,15736.64434,1,1,1,1,1,1,1
-2344.5,83,1158.4807,1467.561552,717.8212275,781.102592,447.2898546,447.2898546,1658.314023,15581.24214,1,1,1,1,1,1,1
-2345,83,1158.4807,1467.561552,679.6043154,795.9963009,447.2898546,447.2898546,1637.391747,15384.66014,1,1,1,1,1,1,1
-2345.5,83,1158.4807,1467.561552,713.1585388,742.2159549,447.2898546,447.2898546,1619.247208,15214.17682,1,1,1,1,1,1,1
-2346,83,1158.4807,1467.561552,722.2930815,722.2930815,447.2898546,447.2898546,1609.568214,15123.23467,1,1,1,1,1,1,1
-2346.5,83,1158.4807,1467.561552,692.8135644,761.0351303,447.2898546,447.2898546,1617.877685,15201.30902,1,1,1,1,1,1,1
-2347,83,1158.4807,1467.561552,681.8911003,819.2023448,447.2898546,447.2898546,1660.260777,15599.5338,1,1,1,1,1,1,1
-2347.5,83,1158.4807,1467.561552,708.375554,838.7966538,447.2898546,447.2898546,1701.596841,15987.92011,1,1,1,1,1,1,1
-2348,83,1158.4807,1467.561552,771.2793351,798.626481,447.2898546,447.2898546,1721.991942,16179.54924,1,1,1,1,1,1,1
-2348.5,83,1158.4807,1467.561552,769.4732054,819.1971918,447.2898546,447.2898546,1738.8247,16337.70684,1,1,1,1,1,1,1
-2349,83,1158.4807,1467.561552,748.5301594,863.5005793,447.2898546,447.2898546,1759.781545,16534.61402,1,1,1,1,1,1,1
-2349.5,83,1158.4807,1467.561552,778.2706711,844.7195826,447.2898546,447.2898546,1769.612562,16626.98489,1,1,1,1,1,1,1
-2350,83,1158.4807,1467.561552,766.3340246,839.4901693,447.2898546,447.2898546,1754.212681,16482.2903,1,1,1,1,1,1,1
-2350.5,83,1158.4807,1467.561552,775.2160462,817.617148,447.2898546,447.2898546,1742.558477,16372.78931,1,1,1,1,1,1,1
-2351,83,1158.4807,1467.561552,754.1712091,848.9222955,447.2898546,447.2898546,1751.763455,16459.27783,1,1,1,1,1,1,1
-2351.5,83,1158.4807,1467.561552,790.5753166,815.2718474,447.2898546,447.2898546,1754.233587,16482.48683,1,1,1,1,1,1,1
-2352,83,1158.4807,1467.561552,784.6108781,796.9000068,447.2898546,447.2898546,1732.402667,16277.36671,1,1,1,1,1,1,1
-2352.5,83,1158.4807,1467.561552,756.9778576,796.6711498,447.2898546,447.2898546,1707.407076,16042.51241,1,1,1,1,1,1,1
-2353,83,1158.4807,1467.561552,744.2933286,790.3320912,447.2898546,447.2898546,1690.341634,15882.16792,1,1,1,1,1,1,1
-2353.5,83,1158.4807,1467.561552,749.0609723,770.9853277,447.2898546,447.2898546,1677.263629,15759.28925,1,1,1,1,1,1,1
-2354,83,1158.4807,1467.561552,730.0039144,780.4272944,447.2898546,447.2898546,1668.637968,15678.24422,1,1,1,1,1,1,1
-2354.5,83,1158.4807,1467.561552,731.800385,768.4307268,447.2898546,447.2898546,1659.487765,15592.27067,1,1,1,1,1,1,1
-2355,83,1158.4807,1467.561552,727.7727299,757.4777393,447.2898546,447.2898546,1646.048431,15465.99656,1,1,1,1,1,1,1
-2355.5,83,1158.4807,1467.561552,692.0768845,778.7669206,447.2898546,447.2898546,1633.12403,15344.56141,1,1,1,1,1,1,1
-2356,83,1158.4807,1467.561552,702.2631583,758.9939372,447.2898546,447.2898546,1624.523262,15263.74995,1,1,1,1,1,1,1
-2356.5,83,1158.4807,1467.561552,705.676778,749.326888,447.2898546,447.2898546,1618.913626,15211.04267,1,1,1,1,1,1,1
-2357,83,1158.4807,1467.561552,710.6790317,742.9439511,447.2898546,447.2898546,1617.675897,15199.41296,1,1,1,1,1,1,1
-2357.5,83,1158.4807,1467.561552,681.938875,779.7190883,447.2898546,447.2898546,1624.883858,15267.13786,1,1,1,1,1,1,1
-2358,83,1158.4807,1467.561552,714.1213817,774.8649211,447.2898546,447.2898546,1649.398825,15497.47619,1,1,1,1,1,1,1
-2358.5,83,1158.4807,1467.561552,720.2482881,789.147482,447.2898546,447.2898546,1667.708615,15669.51212,1,1,1,1,1,1,1
-2359,83,1158.4807,1467.561552,718.875665,782.2433121,447.2898546,447.2898546,1660.283095,15599.74344,1,1,1,1,1,1,1
-2359.5,83,1158.4807,1467.561552,697.3205008,779.3422247,447.2898546,447.2898546,1638.344639,15393.61303,1,1,1,1,1,1,1
-2360,83,1158.4807,1467.561552,690.0691921,742.7427452,447.2898546,447.2898546,1599.006713,15024.00062,1,1,1,1,1,1,1
-2360.5,83,1158.4807,1467.561552,647.2184163,742.8051982,447.2898546,447.2898546,1560.621276,14663.33748,1,1,1,1,1,1,1
-2361,83,1158.4807,1467.561552,636.8375963,724.5884495,447.2898546,447.2898546,1534.966462,14422.2893,1,1,1,1,1,1,1
-2361.5,83,1158.4807,1467.561552,651.1178668,689.8475948,447.2898546,447.2898546,1517.692861,14259.98902,1,1,1,1,1,1,1
-2362,83,1158.4807,1467.561552,656.9453002,673.182092,447.2898546,447.2898546,1509.418238,14182.24242,1,1,1,1,1,1,1
-2362.5,83,1158.4807,1467.561552,635.7538587,690.3937884,447.2898546,447.2898546,1506.53366,14155.13911,1,1,1,1,1,1,1
-2363,83,1158.4807,1467.561552,622.1749306,709.5756433,447.2898546,447.2898546,1510.59436,14193.29292,1,1,1,1,1,1,1
-2363.5,83,1158.4807,1467.561552,631.4621278,704.0967816,447.2898546,447.2898546,1513.354583,14219.2272,1,1,1,1,1,1,1
-2364,83,1158.4807,1467.561552,610.985834,718.9427551,447.2898546,447.2898546,1509.273785,14180.88491,1,1,1,1,1,1,1
-2364.5,83,1158.4807,1467.561552,605.2744007,724.9990075,447.2898546,447.2898546,1509.523863,14183.23471,1,1,1,1,1,1,1
-2365,83,1158.4807,1467.561552,640.1780716,708.7479813,447.2898546,447.2898546,1524.279702,14321.87825,1,1,1,1,1,1,1
-2365.5,83,1158.4807,1467.561552,627.3936569,746.9917764,447.2898546,447.2898546,1546.591343,14531.51472,1,1,1,1,1,1,1
-2366,83,1158.4807,1467.561552,643.5071505,762.0100066,447.2898546,447.2898546,1574.519893,14793.92689,1,1,1,1,1,1,1
-2366.5,83,1158.4807,1467.561552,694.1609394,753.0895032,447.2898546,447.2898546,1611.958777,15145.69579,1,1,1,1,1,1,1
-2367,83,1158.4807,1467.561552,698.3033203,815.3334207,447.2898546,447.2898546,1671.513406,15705.26103,1,1,1,1,1,1,1
-2367.5,83,1158.4807,1467.561552,700.2891542,852.1767939,447.2898546,447.2898546,1706.346444,16032.54663,1,1,1,1,1,1,1
-2368,83,1158.4807,1467.561552,685.8844981,812.6108415,447.2898546,447.2898546,1657.930349,15577.63749,1,1,1,1,1,1,1
-2368.5,83,1158.4807,1467.561552,678.3316056,748.4149284,447.2898546,447.2898546,1593.564487,14972.86622,1,1,1,1,1,1,1
-2369,83,1158.4807,1467.561552,661.6471878,716.7844534,447.2898546,447.2898546,1550.221514,14565.62258,1,1,1,1,1,1,1
-2369.5,83,1158.4807,1467.561552,630.645309,715.882129,447.2898546,447.2898546,1522.225488,14302.57708,1,1,1,1,1,1,1
-2370,83,1158.4807,1467.561552,659.3416706,679.9425422,447.2898546,447.2898546,1516.054403,14244.59462,1,1,1,1,1,1,1
-2370.5,83,1158.4807,1467.561552,660.2889616,692.037156,447.2898546,447.2898546,1527.020622,14347.6312,1,1,1,1,1,1,1
-2371,83,1158.4807,1467.561552,662.3078875,737.3538344,447.2898546,447.2898546,1569.267161,14744.57243,1,1,1,1,1,1,1
-2371.5,83,1158.4807,1467.561552,663.9899441,785.1068649,447.2898546,447.2898546,1613.615446,15161.26144,1,1,1,1,1,1,1
-2372,83,1158.4807,1467.561552,719.4642702,759.8993769,447.2898546,447.2898546,1640.766515,15416.36829,1,1,1,1,1,1,1
-2372.5,83,1158.4807,1467.561552,734.8584382,761.5251878,447.2898546,447.2898546,1656.035862,15559.83697,1,1,1,1,1,1,1
-2373,83,1158.4807,1467.561552,714.5017295,779.3130754,447.2898546,447.2898546,1653.731726,15538.18746,1,1,1,1,1,1,1
-2373.5,83,1158.4807,1467.561552,730.8551494,758.859656,447.2898546,447.2898546,1650.05324,15503.62529,1,1,1,1,1,1,1
-2374,83,1158.4807,1467.561552,745.9271072,749.1969941,447.2898546,447.2898546,1654.906091,15549.22207,1,1,1,1,1,1,1
-2374.5,83,1158.4807,1467.561552,742.8118725,766.422429,447.2898546,447.2898546,1667.563842,15668.15232,1,1,1,1,1,1,1
-2375,83,1158.4807,1467.561552,759.5910229,778.2917874,447.2898546,447.2898546,1693.263509,15909.62152,1,1,1,1,1,1,1
-2375.5,83,1158.4807,1467.561552,773.444285,789.0694221,447.2898546,447.2898546,1715.360506,16117.2412,1,1,1,1,1,1,1
-2376,83,1158.4807,1467.561552,763.9134789,804.0686933,447.2898546,447.2898546,1720.265293,16163.32567,1,1,1,1,1,1,1
-2376.5,83,1158.4807,1467.561552,766.6625092,801.4687507,447.2898546,447.2898546,1720.3987,16164.5791,1,1,1,1,1,1,1
-2377,83,1158.4807,1467.561552,743.9089246,824.2223352,447.2898546,447.2898546,1720.3987,16164.5791,1,1,1,1,1,1,1
-2377.5,83,1158.4807,1467.561552,753.45668,810.7126074,447.2898546,447.2898546,1716.845383,16131.19312,1,1,1,1,1,1,1
-2378,83,1158.4807,1467.561552,746.2051358,804.8134101,447.2898546,447.2898546,1705.04773,16020.34408,1,1,1,1,1,1,1
-2378.5,83,1158.4807,1467.561552,737.7097975,799.185614,447.2898546,447.2898546,1692.377603,15901.29819,1,1,1,1,1,1,1
-2379,83,1158.4807,1467.561552,709.2686572,817.9745632,447.2898546,447.2898546,1683.719794,15819.95085,1,1,1,1,1,1,1
-2379.5,83,1158.4807,1467.561552,744.4055704,771.2033985,447.2898546,447.2898546,1673.28184,15721.87733,1,1,1,1,1,1,1
-2380,83,1158.4807,1467.561552,741.248868,752.8677936,447.2898546,447.2898546,1654.001102,15540.71885,1,1,1,1,1,1,1
-2380.5,83,1158.4807,1467.561552,689.8461026,784.9427244,447.2898546,447.2898546,1636.662472,15377.80824,1,1,1,1,1,1,1
-2381,83,1158.4807,1467.561552,670.5299606,799.6128627,447.2898546,447.2898546,1632.495184,15338.65279,1,1,1,1,1,1,1
-2381.5,83,1158.4807,1467.561552,712.1433703,752.615005,447.2898546,447.2898546,1627.665168,15293.27075,1,1,1,1,1,1,1
-2382,83,1158.4807,1467.561552,692.6732462,752.0561044,447.2898546,447.2898546,1609.696838,15124.44325,1,1,1,1,1,1,1
-2382.5,83,1158.4807,1467.561552,711.9083925,727.7141492,447.2898546,447.2898546,1605.116059,15081.40279,1,1,1,1,1,1,1
-2383,83,1158.4807,1467.561552,703.2559901,785.3263656,447.2898546,447.2898546,1649.037201,15494.07895,1,1,1,1,1,1,1
-2383.5,83,1158.4807,1467.561552,743.3790133,790.5534659,447.2898546,447.2898546,1689.720166,15876.32894,1,1,1,1,1,1,1
-2384,83,1158.4807,1467.561552,717.9975044,807.8679252,447.2898546,447.2898546,1682.482704,15808.32704,1,1,1,1,1,1,1
-2384.5,83,1158.4807,1467.561552,681.6810031,822.0312579,447.2898546,447.2898546,1662.609293,15621.59982,1,1,1,1,1,1,1
-2385,83,1158.4807,1467.561552,697.5322209,788.2798801,447.2898546,447.2898546,1646.551923,15470.72757,1,1,1,1,1,1,1
-2385.5,83,1158.4807,1467.561552,718.6812104,757.978825,447.2898546,447.2898546,1638.341691,15393.5855,1,1,1,1,1,1,1
-2386,83,1158.4807,1467.561552,705.4434202,781.7155503,447.2898546,447.2898546,1647.75996,15482.07804,1,1,1,1,1,1,1
-2386.5,83,1158.4807,1467.561552,698.1131473,799.6858322,447.2898546,447.2898546,1657.3047,15571.7585,1,1,1,1,1,1,1
-2387,83,1158.4807,1467.561552,729.6422943,764.3440406,447.2898546,447.2898546,1653.884079,15539.61887,1,1,1,1,1,1,1
-2387.5,83,1158.4807,1467.561552,698.4489762,794.9833195,447.2898546,447.2898546,1653.386917,15534.94788,1,1,1,1,1,1,1
-2388,83,1158.4807,1467.561552,701.5484489,810.6850462,447.2898546,447.2898546,1670.254026,15693.42859,1,1,1,1,1,1,1
-2388.5,83,1158.4807,1467.561552,733.4690254,780.4080303,447.2898546,447.2898546,1671.729303,15707.29027,1,1,1,1,1,1,1
-2389,83,1158.4807,1467.561552,702.8363142,754.4846031,447.2898546,447.2898546,1620.992249,15230.5731,1,1,1,1,1,1,1
-2389.5,83,1158.4807,1467.561552,676.3213616,732.681475,447.2898546,447.2898546,1577.646421,14823.30318,1,1,1,1,1,1,1
-2390,83,1158.4807,1467.561552,688.771889,734.5453796,447.2898546,447.2898546,1590.487839,14943.95861,1,1,1,1,1,1,1
-2390.5,83,1158.4807,1467.561552,662.4962317,785.2943543,447.2898546,447.2898546,1612.443385,15150.24945,1,1,1,1,1,1,1
-2391,83,1158.4807,1467.561552,665.3806512,788.0346402,447.2898546,447.2898546,1617.48972,15197.66372,1,1,1,1,1,1,1
-2391.5,83,1158.4807,1467.561552,676.0768789,781.284227,447.2898546,447.2898546,1621.028838,15230.91661,1,1,1,1,1,1,1
-2392,83,1158.4807,1467.561552,689.4857866,780.9123753,447.2898546,447.2898546,1632.724618,15340.80868,1,1,1,1,1,1,1
-2392.5,83,1158.4807,1467.561552,708.615346,774.4091118,447.2898546,447.2898546,1644.050488,15447.22477,1,1,1,1,1,1,1
-2393,83,1158.4807,1467.561552,713.3579631,772.80446,447.2898546,447.2898546,1646.865675,15473.67568,1,1,1,1,1,1,1
-2393.5,83,1158.4807,1467.561552,714.9670473,774.5476346,447.2898546,447.2898546,1649.873755,15501.93866,1,1,1,1,1,1,1
-2394,83,1158.4807,1467.561552,733.0336631,769.6329004,447.2898546,447.2898546,1661.672595,15612.79865,1,1,1,1,1,1,1
-2394.5,83,1158.4807,1467.561552,749.4089733,767.8893829,447.2898546,447.2898546,1674.798647,15736.12878,1,1,1,1,1,1,1
-2395,83,1158.4807,1467.561552,749.9517088,777.1549432,447.2898546,447.2898546,1683.597523,15818.80168,1,1,1,1,1,1,1
-2395.5,83,1158.4807,1467.561552,715.5922831,818.1454475,447.2898546,447.2898546,1689.546227,15874.69443,1,1,1,1,1,1,1
-2396,83,1158.4807,1467.561552,718.2346133,817.0965372,447.2898546,447.2898546,1690.975111,15888.12059,1,1,1,1,1,1,1
-2396.5,83,1158.4807,1467.561552,726.048498,806.0238607,447.2898546,447.2898546,1688.050836,15860.64409,1,1,1,1,1,1,1
-2397,83,1158.4807,1467.561552,739.1779465,779.641453,447.2898546,447.2898546,1676.161933,15748.93816,1,1,1,1,1,1,1
-2397.5,83,1158.4807,1467.561552,747.11001,753.765444,447.2898546,447.2898546,1660.064747,15597.69175,1,1,1,1,1,1,1
-2398,83,1158.4807,1467.561552,710.1817089,767.6378061,447.2898546,447.2898546,1639.38165,15403.35676,1,1,1,1,1,1,1
-2398.5,83,1158.4807,1467.561552,698.4270451,759.9975926,447.2898546,447.2898546,1621.982872,15239.88094,1,1,1,1,1,1,1
-2399,83,1158.4807,1467.561552,709.1575145,744.6211197,447.2898546,447.2898546,1617.815584,15200.72549,1,1,1,1,1,1,1
-2399.5,83,1158.4807,1467.561552,707.4238792,747.8912628,447.2898546,447.2898546,1619.193025,15213.66805,1,1,1,1,1,1,1
-2400,83,1158.4807,1467.561552,697.6430449,764.3487512,447.2898546,447.2898546,1625.18248,15269.94396,1,1,1,1,1,1,1
-2400.5,83,1158.4807,1467.561552,727.0255874,743.0973812,447.2898546,447.2898546,1632.477194,15338.48378,1,1,1,1,1,1,1
-2401,83,1158.4807,1467.561552,710.2885743,768.0434855,447.2898546,447.2898546,1639.84089,15407.67139,1,1,1,1,1,1,1
-2401.5,83,1158.4807,1467.561552,710.201278,772.7705292,447.2898546,447.2898546,1644.003906,15446.78692,1,1,1,1,1,1,1
-2402,83,1158.4807,1467.561552,726.6111602,751.1639868,447.2898546,447.2898546,1639.341717,15402.98192,1,1,1,1,1,1,1
-2402.5,83,1158.4807,1467.561552,694.807075,778.4888503,447.2898546,447.2898546,1635.324231,15365.23429,1,1,1,1,1,1,1
-2403,83,1158.4807,1467.561552,722.1663891,756.3533808,447.2898546,447.2898546,1640.009901,15409.25994,1,1,1,1,1,1,1
-2403.5,83,1158.4807,1467.561552,708.303346,769.1750961,447.2898546,447.2898546,1639.076478,15400.48931,1,1,1,1,1,1,1
-2404,83,1158.4807,1467.561552,684.085569,767.9657967,447.2898546,447.2898546,1616.266094,15186.16699,1,1,1,1,1,1,1
-2404.5,83,1158.4807,1467.561552,695.559464,736.9025747,447.2898546,447.2898546,1598.692199,15021.04517,1,1,1,1,1,1,1
-2405,83,1158.4807,1467.561552,720.2751615,726.5509001,447.2898546,447.2898546,1611.57804,15142.11856,1,1,1,1,1,1,1
-2405.5,83,1158.4807,1467.561552,704.0627096,761.3940163,447.2898546,447.2898546,1628.290753,15299.14882,1,1,1,1,1,1,1
-2406,83,1158.4807,1467.561552,715.3629343,754.4385814,447.2898546,447.2898546,1632.188952,15335.77546,1,1,1,1,1,1,1
-2406.5,83,1158.4807,1467.561552,739.9657998,746.4218125,447.2898546,447.2898546,1647.067785,15475.57469,1,1,1,1,1,1,1
-2407,83,1158.4807,1467.561552,742.0149246,815.8406654,447.2898546,447.2898546,1711.180783,16077.96935,1,1,1,1,1,1,1
-2407.5,83,1158.4807,1467.561552,776.2567553,848.1580586,447.2898546,447.2898546,1770.890568,16638.99269,1,1,1,1,1,1,1
-2408,83,1158.4807,1467.561552,750.9629936,865.9273325,447.2898546,447.2898546,1764.140762,16575.57256,1,1,1,1,1,1,1
-2408.5,83,1158.4807,1467.561552,749.9248088,840.0360678,447.2898546,447.2898546,1739.982784,16348.58837,1,1,1,1,1,1,1
-2409,83,1158.4807,1467.561552,742.8182082,833.9454708,447.2898546,447.2898546,1728.144115,16237.35378,1,1,1,1,1,1,1
-2409.5,83,1158.4807,1467.561552,740.2540738,821.8156342,447.2898546,447.2898546,1714.961791,16113.49515,1,1,1,1,1,1,1
-2410,83,1158.4807,1467.561552,696.0228215,831.6807218,447.2898546,447.2898546,1684.132627,15823.82949,1,1,1,1,1,1,1
-2410.5,83,1158.4807,1467.561552,683.586766,809.7231592,447.2898546,447.2898546,1653.278357,15533.92806,1,1,1,1,1,1,1
-2411,83,1158.4807,1467.561552,697.4226774,781.1411035,447.2898546,447.2898546,1640.050038,15409.63659,1,1,1,1,1,1,1
-2411.5,83,1158.4807,1467.561552,698.2714242,771.7736794,447.2898546,447.2898546,1632.4079,15337.8327,1,1,1,1,1,1,1
-2412,83,1158.4807,1467.561552,700.0741029,761.7722161,447.2898546,447.2898546,1625.052965,15268.72709,1,1,1,1,1,1,1
-2412.5,83,1158.4807,1467.561552,710.669463,746.2197719,447.2898546,447.2898546,1620.60547,15226.93925,1,1,1,1,1,1,1
-2413,83,1158.4807,1467.561552,670.6327148,791.2410713,447.2898546,447.2898546,1625.077717,15268.95918,1,1,1,1,1,1,1
-2413.5,83,1158.4807,1467.561552,661.4673946,808.460149,447.2898546,447.2898546,1632.302683,15336.84419,1,1,1,1,1,1,1
-2414,83,1158.4807,1467.561552,722.905378,755.2245421,447.2898546,447.2898546,1639.661073,15405.98222,1,1,1,1,1,1,1
-2414.5,83,1158.4807,1467.561552,696.7118053,789.6188251,447.2898546,447.2898546,1647.016842,15475.09573,1,1,1,1,1,1,1
-2415,83,1158.4807,1467.561552,675.8083284,818.7258757,447.2898546,447.2898546,1654.376915,15544.25005,1,1,1,1,1,1,1
-2415.5,83,1158.4807,1467.561552,674.7111945,824.6470154,447.2898546,447.2898546,1658.704063,15584.9068,1,1,1,1,1,1,1
-2416,83,1158.4807,1467.561552,707.3705627,786.9084735,447.2898546,447.2898546,1654.146969,15542.08944,1,1,1,1,1,1,1
-2416.5,83,1158.4807,1467.561552,715.0247177,774.6101108,447.2898546,447.2898546,1649.98033,15502.94029,1,1,1,1,1,1,1
-2417,83,1158.4807,1467.561552,688.2826809,806.4627755,447.2898546,447.2898546,1654.565709,15546.02336,1,1,1,1,1,1,1
-2417.5,83,1158.4807,1467.561552,693.1073638,804.513067,447.2898546,447.2898546,1657.144352,15570.25242,1,1,1,1,1,1,1
-2418,83,1158.4807,1467.561552,719.8186814,765.9822846,447.2898546,447.2898546,1646.54131,15470.62763,1,1,1,1,1,1,1
-2418.5,83,1158.4807,1467.561552,693.3422042,768.0016077,447.2898546,447.2898546,1624.601626,15264.4864,1,1,1,1,1,1,1
-2419,83,1158.4807,1467.561552,658.8432225,754.5872432,447.2898546,447.2898546,1581.619251,14860.63059,1,1,1,1,1,1,1
-2419.5,83,1158.4807,1467.561552,646.7153902,710.2269129,447.2898546,447.2898546,1531.001851,14385.0378,1,1,1,1,1,1,1
-2420,83,1158.4807,1467.561552,635.8992647,657.6918994,447.2898546,447.2898546,1482.940311,13933.45991,1,1,1,1,1,1,1
-2420.5,83,1158.4807,1467.561552,568.1205657,655.7985099,447.2898546,447.2898546,1434.663269,13479.85723,1,1,1,1,1,1,1
-2421,83,1158.4807,1467.561552,548.8040637,590.1578228,447.2898546,447.2898546,1378.140778,12948.78101,1,1,1,1,1,1,1
-2421.5,83,1158.4807,1467.561552,526.368541,531.2851249,447.2898546,447.2898546,1315.711875,12362.20914,1,1,1,1,1,1,1
-2422,83,1158.4807,1467.561552,479.7471566,526.4100279,447.2898546,447.2898546,1274.43432,11974.37215,1,1,1,1,1,1,1
-2422.5,83,1158.4807,1467.561552,456.3823954,506.726272,447.2898546,447.2898546,1239.928107,11650.15758,1,1,1,1,1,1,1
-2423,83,1158.4807,1467.561552,427.8664773,487.7725784,447.2898546,447.2898546,1201.87791,11292.64432,1,1,1,1,1,1,1
-2423.5,83,1158.4807,1467.561552,398.2619249,472.6714783,447.2898546,447.2898546,1166.044439,10955.95903,1,1,1,1,1,1,1
-2424,83,1158.4807,1467.561552,405.5637148,435.6284916,447.2898546,447.2898546,1142.204761,10731.96575,1,1,1,1,1,1,1
-2424.5,83,1158.4807,1467.561552,383.4715824,431.334018,447.2898546,447.2898546,1121.054212,10533.23864,1,1,1,1,1,1,1
-2425,83,1158.4807,1467.561552,385.642226,398.0778366,447.2898546,447.2898546,1096.137105,10299.12179,1,1,1,1,1,1,1
-2425.5,83,1158.4807,1467.561552,373.3390138,379.1585481,447.2898546,447.2898546,1071.110428,10063.9753,1,1,1,1,1,1,1
-2426,83,1158.4807,1467.561552,336.9850211,389.2450653,447.2898546,447.2898546,1050.468852,9870.030247,1,1,1,1,1,1,1
-2426.5,83,1158.4807,1467.561552,312.7146585,368.8202109,447.2898546,447.2898546,1016.647475,9552.249871,1,1,1,1,1,1,1
-2427,83,1158.4807,1467.561552,280.1724721,291.951825,447.2898546,447.2898546,934.2172488,8777.749696,1,1,1,1,1,1,1
-2427.5,83,1158.4807,1467.561552,229.6394969,240.1462878,447.2898546,447.2898546,857.1167575,8053.325964,1,1,1,1,1,1,1
-2428,83,1158.4807,1467.561552,221.1085441,234.7853612,447.2898546,447.2898546,846.6505456,7954.987331,1,1,1,1,1,1,1
-2428.5,83,1158.4807,1467.561552,231.1240783,241.5837756,447.2898546,447.2898546,859.3180957,8074.009525,1,1,1,1,1,1,1
-2429,83,1158.4807,1467.561552,237.7864177,263.685879,447.2898546,447.2898546,880.9893443,8277.629302,1,1,1,1,1,1,1
-2429.5,83,1158.4807,1467.561552,272.9041043,279.6026986,447.2898546,447.2898546,919.4380144,8638.886264,1,1,1,1,1,1,1
-2430,83,1158.4807,1467.561552,339.7911371,339.7911371,447.2898546,447.2898546,1015.175966,9538.423967,1,1,1,1,1,1,1
-2430.5,83,1158.4807,1467.561552,390.8178405,410.1574474,447.2898546,447.2898546,1110.178361,10431.05053,1,1,1,1,1,1,1
-2431,83,1158.4807,1467.561552,375.3683786,417.4983286,447.2898546,447.2898546,1103.468847,10368.0095,1,1,1,1,1,1,1
-2431.5,83,1158.4807,1467.561552,349.5873824,394.2155589,447.2898546,447.2898546,1064.141844,9998.499407,1,1,1,1,1,1,1
-2432,83,1158.4807,1467.561552,328.9817238,382.6984502,447.2898546,447.2898546,1039.368499,9765.733468,1,1,1,1,1,1,1
-2432.5,83,1158.4807,1467.561552,318.4908448,368.10227,447.2898546,447.2898546,1020.458278,9588.055736,1,1,1,1,1,1,1
-2433,83,1158.4807,1467.561552,307.8216924,354.1604418,447.2898546,447.2898546,1001.915902,9413.834442,1,1,1,1,1,1,1
-2433.5,83,1158.4807,1467.561552,301.9917855,336.8158515,447.2898546,447.2898546,984.4559843,9249.784455,1,1,1,1,1,1,1
-2434,83,1158.4807,1467.561552,297.4226129,323.6576655,447.2898546,447.2898546,971.1003593,9124.296968,1,1,1,1,1,1,1
-2434.5,83,1158.4807,1467.561552,281.8996989,330.2093779,447.2898546,447.2898546,964.3423251,9060.799526,1,1,1,1,1,1,1
-2435,83,1158.4807,1467.561552,287.9134812,350.4044093,447.2898546,447.2898546,984.087384,9246.321116,1,1,1,1,1,1,1
-2435.5,83,1158.4807,1467.561552,311.5891813,357.4043058,447.2898546,447.2898546,1007.198105,9463.465799,1,1,1,1,1,1,1
-2436,83,1158.4807,1467.561552,300.3789184,354.904712,447.2898546,447.2898546,996.8698686,9366.422918,1,1,1,1,1,1,1
-2436.5,83,1158.4807,1467.561552,284.7731627,346.4710283,447.2898546,447.2898546,978.7582158,9196.249012,1,1,1,1,1,1,1
-2437,83,1158.4807,1467.561552,303.6128805,337.5068317,447.2898546,447.2898546,986.1982637,9266.154861,1,1,1,1,1,1,1
-2437.5,83,1158.4807,1467.561552,316.4640557,342.8360603,447.2898546,447.2898546,999.8961201,9394.857635,1,1,1,1,1,1,1
-2438,83,1158.4807,1467.561552,321.215214,332.1178691,447.2898546,447.2898546,995.400358,9352.615842,1,1,1,1,1,1,1
-2438.5,83,1158.4807,1467.561552,300.8445483,336.9161554,447.2898546,447.2898546,983.6684596,9242.384878,1,1,1,1,1,1,1
-2439,83,1158.4807,1467.561552,296.1605283,325.1925089,447.2898546,447.2898546,971.3069516,9126.238497,1,1,1,1,1,1,1
-2439.5,83,1158.4807,1467.561552,292.7247606,312.2299789,447.2898546,447.2898546,958.9526796,9010.159919,1,1,1,1,1,1,1
-2440,83,1158.4807,1467.561552,285.4478805,303.1044504,447.2898546,447.2898546,946.5941878,8894.041237,1,1,1,1,1,1,1
-2440.5,83,1158.4807,1467.561552,269.8017585,300.1449089,447.2898546,447.2898546,932.5773448,8762.341304,1,1,1,1,1,1,1
-2441,83,1158.4807,1467.561552,266.8813107,274.3353015,447.2898546,447.2898546,910.932714,8558.972046,1,1,1,1,1,1,1
-2441.5,83,1158.4807,1467.561552,237.811815,277.6214737,447.2898546,447.2898546,891.5075766,8376.456262,1,1,1,1,1,1,1
-2442,83,1158.4807,1467.561552,252.223876,267.5031309,447.2898546,447.2898546,894.7415539,8406.842458,1,1,1,1,1,1,1
-2442.5,83,1158.4807,1467.561552,254.4307937,280.8088848,447.2898546,447.2898546,906.4290386,8516.655971,1,1,1,1,1,1,1
-2443,83,1158.4807,1467.561552,261.4332223,290.1980894,447.2898546,447.2898546,918.778738,8632.692191,1,1,1,1,1,1,1
-2443.5,83,1158.4807,1467.561552,260.8991224,307.1460514,447.2898546,447.2898546,931.1444966,8748.878889,1,1,1,1,1,1,1
-2444,83,1158.4807,1467.561552,268.2118214,316.2218627,447.2898546,447.2898546,943.491436,8864.888354,1,1,1,1,1,1,1
-2444.5,83,1158.4807,1467.561552,288.81319,308.5074941,447.2898546,447.2898546,953.2011758,8956.119627,1,1,1,1,1,1,1
-2445,83,1158.4807,1467.561552,277.6607574,317.3574739,447.2898546,447.2898546,951.4665753,8939.821138,1,1,1,1,1,1,1
-2445.5,83,1158.4807,1467.561552,271.851672,314.1773235,447.2898546,447.2898546,944.6935667,8876.183224,1,1,1,1,1,1,1
-2446,83,1158.4807,1467.561552,281.3054054,290.2809439,447.2898546,447.2898546,933.8127355,8773.948703,1,1,1,1,1,1,1
-2446.5,83,1158.4807,1467.561552,268.0430098,289.6917401,447.2898546,447.2898546,923.3774441,8675.900743,1,1,1,1,1,1,1
-2447,83,1158.4807,1467.561552,265.2515143,288.6249377,447.2898546,447.2898546,920.4704329,8648.586669,1,1,1,1,1,1,1
-2447.5,83,1158.4807,1467.561552,275.2874358,280.1503763,447.2898546,447.2898546,921.6464064,8659.636264,1,1,1,1,1,1,1
-2448,83,1158.4807,1467.561552,272.5476629,294.8112653,447.2898546,447.2898546,930.6278793,8744.024477,1,1,1,1,1,1,1
-2448.5,83,1158.4807,1467.561552,264.3989253,316.1933002,447.2898546,447.2898546,940.5970041,8837.692379,1,1,1,1,1,1,1
-2449,83,1158.4807,1467.561552,278.6085949,300.43894,447.2898546,447.2898546,939.4339528,8826.764559,1,1,1,1,1,1,1
-2449.5,83,1158.4807,1467.561552,285.8571562,288.3949381,447.2898546,447.2898546,935.8206342,8792.814588,1,1,1,1,1,1,1
-2450,83,1158.4807,1467.561552,289.7364631,294.3181559,447.2898546,447.2898546,943.2065814,8862.211473,1,1,1,1,1,1,1
-2450.5,83,1158.4807,1467.561552,282.8178978,317.0748183,447.2898546,447.2898546,955.1380032,8974.317128,1,1,1,1,1,1,1
-2451,83,1158.4807,1467.561552,284.1603577,332.1390369,447.2898546,447.2898546,967.4994876,9090.463644,1,1,1,1,1,1,1
-2451.5,83,1158.4807,1467.561552,298.4874158,334.2060067,447.2898546,447.2898546,979.8508231,9206.514691,1,1,1,1,1,1,1
-2452,83,1158.4807,1467.561552,318.5123233,330.5925667,447.2898546,447.2898546,992.2152456,9322.688961,1,1,1,1,1,1,1
-2452.5,83,1158.4807,1467.561552,315.4337729,348.0777036,447.2898546,447.2898546,1003.068497,9424.664337,1,1,1,1,1,1,1
-2453,83,1158.4807,1467.561552,313.8662195,353.9342475,447.2898546,447.2898546,1006.299284,9455.020634,1,1,1,1,1,1,1
-2453.5,83,1158.4807,1467.561552,313.5569448,353.585491,447.2898546,447.2898546,1005.804459,9450.370815,1,1,1,1,1,1,1
-2454,83,1158.4807,1467.561552,323.5629799,337.4956709,447.2898546,447.2898546,1001.220694,9407.302469,1,1,1,1,1,1,1
-2454.5,83,1158.4807,1467.561552,302.2313024,354.9128046,447.2898546,447.2898546,998.2709984,9379.588055,1,1,1,1,1,1,1
-2455,83,1158.4807,1467.561552,310.9402857,362.3990749,447.2898546,447.2898546,1010.473104,9494.236555,1,1,1,1,1,1,1
-2455.5,83,1158.4807,1467.561552,343.0875492,359.0432039,447.2898546,447.2898546,1032.164256,9698.043009,1,1,1,1,1,1,1
-2456,83,1158.4807,1467.561552,346.8880789,408.4068913,447.2898546,447.2898546,1073.594086,10087.31079,1,1,1,1,1,1,1
-2456.5,83,1158.4807,1467.561552,400.3777772,417.2507532,447.2898546,447.2898546,1123.317402,10554.50279,1,1,1,1,1,1,1
-2457,83,1158.4807,1467.561552,434.2301807,448.2274059,447.2898546,447.2898546,1175.280977,11042.74435,1,1,1,1,1,1,1
-2457.5,83,1158.4807,1467.561552,469.8145077,481.2949711,447.2898546,447.2898546,1230.309256,11559.78099,1,1,1,1,1,1,1
-2458,83,1158.4807,1467.561552,510.642529,529.3195734,447.2898546,447.2898546,1301.530794,12228.96655,1,1,1,1,1,1,1
-2458.5,83,1158.4807,1467.561552,519.735635,614.5282777,447.2898546,447.2898546,1374.368428,12913.33661,1,1,1,1,1,1,1
-2459,83,1158.4807,1467.561552,591.9987615,617.3620003,447.2898546,447.2898546,1424.642792,13385.70638,1,1,1,1,1,1,1
-2459.5,83,1158.4807,1467.561552,588.6966625,689.6363231,447.2898546,447.2898546,1472.178732,13832.34581,1,1,1,1,1,1,1
-2460,83,1158.4807,1467.561552,634.2038109,727.252736,447.2898546,447.2898546,1536.938151,14440.81496,1,1,1,1,1,1,1
-2460.5,83,1158.4807,1467.561552,678.8682449,765.5322762,447.2898546,447.2898546,1609.402258,15121.67532,1,1,1,1,1,1,1
-2461,83,1158.4807,1467.561552,675.8706995,811.79161,447.2898546,447.2898546,1648.211841,15486.32356,1,1,1,1,1,1,1
-2461.5,83,1158.4807,1467.561552,680.9223807,832.2384654,447.2898546,447.2898546,1671.085414,15701.23984,1,1,1,1,1,1,1
-2462,83,1158.4807,1467.561552,737.2763563,794.5876945,447.2898546,447.2898546,1687.864258,15858.89156,1,1,1,1,1,1,1
-2462.5,83,1158.4807,1467.561552,726.4717306,817.7022306,447.2898546,447.2898546,1698.907171,15962.64842,1,1,1,1,1,1,1
-2463,83,1158.4807,1467.561552,705.9872887,825.0761,447.2898546,447.2898546,1687.146728,15852.14936,1,1,1,1,1,1,1
-2463.5,83,1158.4807,1467.561552,684.0882121,828.6575143,447.2898546,447.2898546,1670.714635,15697.75592,1,1,1,1,1,1,1
-2464,83,1158.4807,1467.561552,709.5038269,814.1782138,447.2898546,447.2898546,1680.524566,15789.92856,1,1,1,1,1,1,1
-2464.5,83,1158.4807,1467.561552,738.3880789,806.9103987,447.2898546,447.2898546,1699.916921,15972.13642,1,1,1,1,1,1,1
-2465,83,1158.4807,1467.561552,711.3164776,846.6918149,447.2898546,447.2898546,1711.31821,16079.26071,1,1,1,1,1,1,1
-2465.5,83,1158.4807,1467.561552,753.4877088,812.2113591,447.2898546,447.2898546,1718.216772,16144.07866,1,1,1,1,1,1,1
-2466,83,1158.4807,1467.561552,774.4078291,793.5288666,447.2898546,447.2898546,1720.224118,16162.93891,1,1,1,1,1,1,1
-2466.5,83,1158.4807,1467.561552,753.0720017,817.8433019,447.2898546,447.2898546,1722.896604,16188.0494,1,1,1,1,1,1,1
-2467,83,1158.4807,1467.561552,754.7082573,834.1512318,447.2898546,447.2898546,1738.994919,16339.30656,1,1,1,1,1,1,1
-2467.5,83,1158.4807,1467.561552,735.8252368,879.8989573,447.2898546,447.2898546,1763.095022,16565.74721,1,1,1,1,1,1,1
-2468,83,1158.4807,1467.561552,811.3608082,846.9782796,447.2898546,447.2898546,1801.323973,16924.93964,1,1,1,1,1,1,1
-2468.5,83,1158.4807,1467.561552,814.9566766,881.4562506,447.2898546,447.2898546,1835.479223,17245.85681,1,1,1,1,1,1,1
-2469,83,1158.4807,1467.561552,810.7609125,868.6276046,447.2898546,447.2898546,1820.206736,17102.35901,1,1,1,1,1,1,1
-2469.5,83,1158.4807,1467.561552,801.4889072,837.9502691,447.2898546,447.2898546,1784.369309,16765.63672,1,1,1,1,1,1,1
-2470,83,1158.4807,1467.561552,749.3987394,842.96498,447.2898546,447.2898546,1742.138586,16368.84395,1,1,1,1,1,1,1
-2470.5,83,1158.4807,1467.561552,704.3519761,836.0403421,447.2898546,447.2898546,1695.514904,15930.77561,1,1,1,1,1,1,1
-2471,83,1158.4807,1467.561552,687.2509042,785.6994009,447.2898546,447.2898546,1635.013782,15362.31737,1,1,1,1,1,1,1
-2471.5,83,1158.4807,1467.561552,666.4062558,751.4793949,447.2898546,447.2898546,1585.615556,14898.17927,1,1,1,1,1,1,1
-2472,83,1158.4807,1467.561552,665.9836541,787.5319984,447.2898546,447.2898546,1617.578652,15198.49957,1,1,1,1,1,1,1
-2472.5,83,1158.4807,1467.561552,689.7586496,826.1944264,447.2898546,447.2898546,1673.590478,15724.77709,1,1,1,1,1,1,1
-2473,83,1158.4807,1467.561552,719.2388182,821.7783297,447.2898546,447.2898546,1696.075529,15936.0431,1,1,1,1,1,1,1
-2473.5,83,1158.4807,1467.561552,729.7449497,822.9038794,447.2898546,447.2898546,1706.510936,16034.09213,1,1,1,1,1,1,1
-2474,83,1158.4807,1467.561552,763.9849241,809.1061792,447.2898546,447.2898546,1724.848331,16206.38764,1,1,1,1,1,1,1
-2474.5,83,1158.4807,1467.561552,748.4655584,842.505184,447.2898546,447.2898546,1740.887747,16357.09142,1,1,1,1,1,1,1
-2475,83,1158.4807,1467.561552,715.7047416,863.0779706,447.2898546,447.2898546,1729.955142,16254.37049,1,1,1,1,1,1,1
-2475.5,83,1158.4807,1467.561552,743.7220546,814.674706,447.2898546,447.2898546,1711.667053,16082.53828,1,1,1,1,1,1,1
-2476,83,1158.4807,1467.561552,740.7253307,811.5124444,447.2898546,447.2898546,1706.141379,16030.61997,1,1,1,1,1,1,1
-2476.5,83,1158.4807,1467.561552,726.942544,829.0464098,447.2898546,447.2898546,1709.507218,16062.24482,1,1,1,1,1,1,1
-2477,83,1158.4807,1467.561552,728.3361718,851.2864184,447.2898546,447.2898546,1730.708613,16261.44977,1,1,1,1,1,1,1
-2477.5,83,1158.4807,1467.561552,788.5226857,816.3844561,447.2898546,447.2898546,1753.391534,16474.57438,1,1,1,1,1,1,1
-2478,83,1158.4807,1467.561552,742.2727034,854.1234827,447.2898546,447.2898546,1745.755642,16402.82914,1,1,1,1,1,1,1
-2478.5,83,1158.4807,1467.561552,748.0298521,828.5798836,447.2898546,447.2898546,1728.005962,16236.05628,1,1,1,1,1,1,1
-2479,83,1158.4807,1467.561552,725.470209,850.0004912,447.2898546,447.2898546,1726.98411,16226.45492,1,1,1,1,1,1,1
-2479.5,83,1158.4807,1467.561552,762.2178371,818.0558604,447.2898546,447.2898546,1731.291815,16266.92962,1,1,1,1,1,1,1
-2480,83,1158.4807,1467.561552,751.351671,819.4749956,447.2898546,447.2898546,1722.81689,16187.3002,1,1,1,1,1,1,1
-2480.5,83,1158.4807,1467.561552,756.8050604,798.2349369,447.2898546,447.2898546,1708.655675,16054.2437,1,1,1,1,1,1,1
-2481,83,1158.4807,1467.561552,712.0113949,826.6415489,447.2898546,447.2898546,1693.954712,15916.1158,1,1,1,1,1,1,1
-2481.5,83,1158.4807,1467.561552,741.3286173,783.5452377,447.2898546,447.2898546,1681.59326,15799.97022,1,1,1,1,1,1,1
-2482,83,1158.4807,1467.561552,725.6903098,800.5532729,447.2898546,447.2898546,1682.822524,15811.51989,1,1,1,1,1,1,1
-2482.5,83,1158.4807,1467.561552,708.5105363,824.4379165,447.2898546,447.2898546,1688.837429,15868.03464,1,1,1,1,1,1,1
-2483,83,1158.4807,1467.561552,724.1675268,811.0370398,447.2898546,447.2898546,1690.86138,15887.052,1,1,1,1,1,1,1
-2483.5,83,1158.4807,1467.561552,749.5242439,790.4387377,447.2898546,447.2898546,1695.130547,15927.16445,1,1,1,1,1,1,1
-2484,83,1158.4807,1467.561552,756.8740339,812.8956688,447.2898546,447.2898546,1721.868853,16178.39259,1,1,1,1,1,1,1
-2484.5,83,1158.4807,1467.561552,794.2641256,808.1234861,447.2898546,447.2898546,1751.130964,16453.33454,1,1,1,1,1,1,1
-2485,83,1158.4807,1467.561552,772.925964,822.6112971,447.2898546,447.2898546,1744.985446,16395.59233,1,1,1,1,1,1,1
-2485.5,83,1158.4807,1467.561552,770.7111067,809.3019491,447.2898546,447.2898546,1731.058864,16264.74041,1,1,1,1,1,1,1
-2486,83,1158.4807,1467.561552,791.9637079,811.4604596,447.2898546,447.2898546,1752.06017,16462.0653,1,1,1,1,1,1,1
-2486.5,83,1158.4807,1467.561552,791.6056193,846.5177173,447.2898546,447.2898546,1783.189326,16754.54965,1,1,1,1,1,1,1
-2487,83,1158.4807,1467.561552,804.4112538,844.6201214,447.2898546,447.2898546,1792.97484,16846.49279,1,1,1,1,1,1,1
-2487.5,83,1158.4807,1467.561552,788.2326835,859.7625902,447.2898546,447.2898546,1792.045314,16837.75883,1,1,1,1,1,1,1
-2488,83,1158.4807,1467.561552,789.7984467,846.1113218,447.2898546,447.2898546,1781.202345,16735.8802,1,1,1,1,1,1,1
-2488.5,83,1158.4807,1467.561552,784.6776211,833.2143812,447.2898546,447.2898546,1765.039254,16584.01468,1,1,1,1,1,1,1
-2489,83,1158.4807,1467.561552,777.0081844,812.3388888,447.2898546,447.2898546,1739.432242,16343.4155,1,1,1,1,1,1,1
-2489.5,83,1158.4807,1467.561552,722.3982941,838.5584518,447.2898546,447.2898546,1713.963866,16104.11863,1,1,1,1,1,1,1
-2490,83,1158.4807,1467.561552,742.6969243,809.7579188,447.2898546,447.2898546,1706.336208,16032.45053,1,1,1,1,1,1,1
-2490.5,83,1158.4807,1467.561552,746.5520341,805.2150365,447.2898546,447.2898546,1705.719,16026.6514,1,1,1,1,1,1,1
-2491,83,1158.4807,1467.561552,756.9581841,794.8088865,447.2898546,447.2898546,1705.719,16026.6514,1,1,1,1,1,1,1
-2491.5,83,1158.4807,1467.561552,773.521329,780.33669,447.2898546,447.2898546,1707.594613,16044.27463,1,1,1,1,1,1,1
-2492,83,1158.4807,1467.561552,734.0567609,832.0356384,447.2898546,447.2898546,1718.570239,16147.39983,1,1,1,1,1,1,1
-2492.5,83,1158.4807,1467.561552,763.3764834,815.6347202,447.2898546,447.2898546,1730.159217,16256.28789,1,1,1,1,1,1,1
-2493,83,1158.4807,1467.561552,735.9672891,841.3085572,447.2898546,447.2898546,1728.602269,16241.65856,1,1,1,1,1,1,1
-2493.5,83,1158.4807,1467.561552,766.9068767,806.8713005,447.2898546,447.2898546,1725.465244,16212.18414,1,1,1,1,1,1,1
-2494,83,1158.4807,1467.561552,751.908897,842.8115543,447.2898546,447.2898546,1744.252654,16388.70741,1,1,1,1,1,1,1
-2494.5,83,1158.4807,1467.561552,742.0676793,881.1242802,447.2898546,447.2898546,1769.794568,16628.69446,1,1,1,1,1,1,1
-2495,83,1158.4807,1467.561552,800.2411294,832.4464758,447.2898546,447.2898546,1778.311829,16708.72167,1,1,1,1,1,1,1
-2495.5,83,1158.4807,1467.561552,759.0532162,873.7162795,447.2898546,447.2898546,1778.385519,16709.41372,1,1,1,1,1,1,1
-2496,83,1158.4807,1467.561552,740.2508893,886.6741421,447.2898546,447.2898546,1773.142118,16660.14785,1,1,1,1,1,1,1
-2496.5,83,1158.4807,1467.561552,742.1616484,875.1128674,447.2898546,447.2898546,1764.486,16578.81617,1,1,1,1,1,1,1
-2497,83,1158.4807,1467.561552,734.7823356,862.5705678,447.2898546,447.2898546,1746.613926,16410.89343,1,1,1,1,1,1,1
-2497.5,83,1158.4807,1467.561552,773.4410542,801.4160937,447.2898546,447.2898546,1726.433642,16221.28255,1,1,1,1,1,1,1
-2498,83,1158.4807,1467.561552,738.4122378,823.621735,447.2898546,447.2898546,1714.930204,16113.19816,1,1,1,1,1,1,1
-2498.5,83,1158.4807,1467.561552,760.7966594,796.9259898,447.2898546,447.2898546,1711.062531,16076.85828,1,1,1,1,1,1,1
-2499,83,1158.4807,1467.561552,781.6182405,797.408508,447.2898546,447.2898546,1730.173466,16256.42144,1,1,1,1,1,1,1
-2499.5,83,1158.4807,1467.561552,795.6198843,811.6930132,447.2898546,447.2898546,1755.54933,16494.84921,1,1,1,1,1,1,1
-2500,83,1158.4807,1467.561552,743.3308249,873.0821374,447.2898546,447.2898546,1763.712405,16571.54754,1,1,1,1,1,1,1
-2500.5,83,1158.4807,1467.561552,734.0601608,883.1615319,447.2898546,447.2898546,1764.4377,16578.3621,1,1,1,1,1,1,1
-2501,83,1158.4807,1467.561552,748.4566683,868.7650244,447.2898546,447.2898546,1764.4377,16578.3621,1,1,1,1,1,1,1
-2501.5,83,1158.4807,1467.561552,787.6132317,825.0483607,447.2898546,447.2898546,1760.346453,16539.92147,1,1,1,1,1,1,1
-2502,83,1158.4807,1467.561552,728.2083335,854.6465378,447.2898546,447.2898546,1733.608147,16288.69323,1,1,1,1,1,1,1
-2502.5,83,1158.4807,1467.561552,742.5989115,801.1402828,447.2898546,447.2898546,1698.517462,15958.98731,1,1,1,1,1,1,1
-2503,83,1158.4807,1467.561552,698.2647202,810.4534789,447.2898546,447.2898546,1667.100262,15663.79643,1,1,1,1,1,1,1
-2503.5,83,1158.4807,1467.561552,678.9205002,800.5772287,447.2898546,447.2898546,1640.887318,15417.50404,1,1,1,1,1,1,1
-2504,83,1158.4807,1467.561552,705.1990855,765.4974252,447.2898546,447.2898546,1632.992029,15343.32102,1,1,1,1,1,1,1
-2504.5,83,1158.4807,1467.561552,697.0716097,775.7573267,447.2898546,447.2898546,1634.905173,15361.29642,1,1,1,1,1,1,1
-2505,83,1158.4807,1467.561552,689.0487083,801.8482392,447.2898546,447.2898546,1651.114209,15513.5936,1,1,1,1,1,1,1
-2505.5,83,1158.4807,1467.561552,738.8829631,777.0348576,447.2898546,447.2898546,1673.558889,15724.48012,1,1,1,1,1,1,1
-2506,83,1158.4807,1467.561552,771.6193639,774.9607801,447.2898546,447.2898546,1701.065868,15982.93109,1,1,1,1,1,1,1
-2506.5,83,1158.4807,1467.561552,783.8929129,796.2829402,447.2898546,447.2898546,1731.20435,16266.10752,1,1,1,1,1,1,1
-2507,83,1158.4807,1467.561552,788.7370831,830.3363227,447.2898546,447.2898546,1766.098538,16593.9678,1,1,1,1,1,1,1
-2507.5,83,1158.4807,1467.561552,757.1832355,897.6413795,447.2898546,447.2898546,1798.170635,16895.31142,1,1,1,1,1,1,1
-2508,83,1158.4807,1467.561552,801.4691311,863.9831617,447.2898546,447.2898546,1807.705201,16984.89659,1,1,1,1,1,1,1
-2508.5,83,1158.4807,1467.561552,824.8150412,845.1741546,447.2898546,447.2898546,1811.775763,17023.1433,1,1,1,1,1,1,1
-2509,83,1158.4807,1467.561552,794.2758677,904.4901714,447.2898546,447.2898546,1837.59129,17265.70152,1,1,1,1,1,1,1
-2509.5,83,1158.4807,1467.561552,823.7537861,908.0150734,447.2898546,447.2898546,1867.197203,17543.87378,1,1,1,1,1,1,1
-2510,83,1158.4807,1467.561552,792.5293635,928.3124558,447.2898546,447.2898546,1857.393933,17451.76366,1,1,1,1,1,1,1
-2510.5,83,1158.4807,1467.561552,783.2422915,909.2526044,447.2898546,447.2898546,1831.965218,17212.83962,1,1,1,1,1,1,1
-2511,83,1158.4807,1467.561552,825.5674632,851.4838079,447.2898546,447.2898546,1818.1104,17082.66261,1,1,1,1,1,1,1
-2511.5,83,1158.4807,1467.561552,767.2910363,896.9411681,447.2898546,447.2898546,1806.611039,16974.61624,1,1,1,1,1,1,1
-2512,83,1158.4807,1467.561552,751.0753019,875.9090428,447.2898546,447.2898546,1773.19634,16660.65728,1,1,1,1,1,1,1
-2512.5,83,1158.4807,1467.561552,773.681424,810.8364093,447.2898546,447.2898546,1735.100247,16302.71292,1,1,1,1,1,1,1
-2513,83,1158.4807,1467.561552,737.1154585,838.9884515,447.2898546,447.2898546,1727.551603,16231.78721,1,1,1,1,1,1,1
-2513.5,83,1158.4807,1467.561552,716.4270231,867.9405201,447.2898546,447.2898546,1734.964962,16301.44156,1,1,1,1,1,1,1
-2514,83,1158.4807,1467.561552,747.0316214,857.2238948,447.2898546,447.2898546,1752.806579,16469.07879,1,1,1,1,1,1,1
-2514.5,83,1158.4807,1467.561552,739.8622832,888.5701784,447.2898546,447.2898546,1774.49489,16672.85869,1,1,1,1,1,1,1
-2515,83,1158.4807,1467.561552,789.1586302,863.8647182,447.2898546,447.2898546,1796.554535,16880.12694,1,1,1,1,1,1,1
-2515.5,83,1158.4807,1467.561552,778.4807663,894.0758262,447.2898546,447.2898546,1814.078812,17044.78242,1,1,1,1,1,1,1
-2516,83,1158.4807,1467.561552,816.2020813,845.6554331,447.2898546,447.2898546,1804.480335,16954.5966,1,1,1,1,1,1,1
-2516.5,83,1158.4807,1467.561552,813.7308721,826.4927384,447.2898546,447.2898546,1785.072381,16772.24268,1,1,1,1,1,1,1
-2517,83,1158.4807,1467.561552,761.1916644,866.2491253,447.2898546,447.2898546,1773.605439,16664.50146,1,1,1,1,1,1,1
-2517.5,83,1158.4807,1467.561552,732.0374016,886.7812583,447.2898546,447.2898546,1765.87024,16591.82284,1,1,1,1,1,1,1
-2518,83,1158.4807,1467.561552,749.8911014,860.7323657,447.2898546,447.2898546,1758.518804,16522.74944,1,1,1,1,1,1,1
-2518.5,83,1158.4807,1467.561552,734.3985555,868.0170177,447.2898546,447.2898546,1751.156081,16453.5709,1,1,1,1,1,1,1
-2519,83,1158.4807,1467.561552,750.2242242,843.994959,447.2898546,447.2898546,1743.802884,16384.48129,1,1,1,1,1,1,1
-2519.5,83,1158.4807,1467.561552,778.9861605,808.8523655,447.2898546,447.2898546,1738.078399,16330.69525,1,1,1,1,1,1,1
-2520,83,1158.4807,1467.561552,781.6076676,809.9548559,447.2898546,447.2898546,1741.418755,16362.08063,1,1,1,1,1,1,1
-2520.5,83,1158.4807,1467.561552,745.7805953,852.6674214,447.2898546,447.2898546,1747.596194,16420.12297,1,1,1,1,1,1,1
-2521,83,1158.4807,1467.561552,755.0463153,845.6203746,447.2898546,447.2898546,1749.5868,16438.82596,1,1,1,1,1,1,1
-2521.5,83,1158.4807,1467.561552,730.0247922,872.7220623,447.2898546,447.2898546,1751.452092,16456.35198,1,1,1,1,1,1,1
-2522,83,1158.4807,1467.561552,789.7716183,824.9796143,447.2898546,447.2898546,1762.221183,16557.53686,1,1,1,1,1,1,1
-2522.5,83,1158.4807,1467.561552,761.7186996,863.2951414,447.2898546,447.2898546,1771.428417,16644.04628,1,1,1,1,1,1,1
-2523,83,1158.4807,1467.561552,732.1914296,873.0942649,447.2898546,447.2898546,1753.730589,16477.75998,1,1,1,1,1,1,1
-2523.5,83,1158.4807,1467.561552,754.0784851,822.4449484,447.2898546,447.2898546,1727.928482,16235.32825,1,1,1,1,1,1,1
-2524,83,1158.4807,1467.561552,751.4016013,810.4266861,447.2898546,447.2898546,1714.74553,16111.46336,1,1,1,1,1,1,1
-2524.5,83,1158.4807,1467.561552,719.4470029,829.6785105,447.2898546,447.2898546,1703.349053,16004.38345,1,1,1,1,1,1,1
-2525,83,1158.4807,1467.561552,738.8633631,777.7983179,447.2898546,447.2898546,1674.225743,15730.74624,1,1,1,1,1,1,1
-2525.5,83,1158.4807,1467.561552,735.2251056,750.078138,447.2898546,447.2898546,1646.094684,15466.43148,1,1,1,1,1,1,1
-2526,83,1158.4807,1467.561552,706.3119681,791.6869769,447.2898546,447.2898546,1657.483959,15573.44273,1,1,1,1,1,1,1
-2526.5,83,1158.4807,1467.561552,734.8395727,793.9078261,447.2898546,447.2898546,1685.068897,15832.62627,1,1,1,1,1,1,1
-2527,83,1158.4807,1467.561552,747.6631705,819.2639361,447.2898546,447.2898546,1719.319849,16154.44278,1,1,1,1,1,1,1
-2527.5,83,1158.4807,1467.561552,736.3371107,866.7767303,447.2898546,447.2898546,1751.782444,16459.45598,1,1,1,1,1,1,1
-2528,83,1158.4807,1467.561552,732.324955,877.1804407,447.2898546,447.2898546,1757.516639,16513.33334,1,1,1,1,1,1,1
-2528.5,83,1158.4807,1467.561552,744.2378172,863.8728654,447.2898546,447.2898546,1756.26411,16501.56482,1,1,1,1,1,1,1
-2529,83,1158.4807,1467.561552,807.8643769,832.5798437,447.2898546,447.2898546,1785.270442,16774.1038,1,1,1,1,1,1,1
-2529.5,83,1158.4807,1467.561552,781.1358,899.8185324,447.2898546,447.2898546,1821.611774,17115.56054,1,1,1,1,1,1,1
-2530,83,1158.4807,1467.561552,769.973149,907.9149319,447.2898546,447.2898546,1818.860614,17089.71108,1,1,1,1,1,1,1
-2530.5,83,1158.4807,1467.561552,775.0862724,881.8574976,447.2898546,447.2898546,1800.071691,16913.17335,1,1,1,1,1,1,1
-2531,83,1158.4807,1467.561552,804.7083274,839.2871439,447.2898546,447.2898546,1788.456356,16804.03797,1,1,1,1,1,1,1
-2531.5,83,1158.4807,1467.561552,781.2862471,848.3468068,447.2898546,447.2898546,1775.571498,16682.97415,1,1,1,1,1,1,1
-2532,83,1158.4807,1467.561552,744.6301662,835.8901987,447.2898546,447.2898546,1731.512967,16269.00765,1,1,1,1,1,1,1
-2532.5,83,1158.4807,1467.561552,699.2969616,826.2702722,447.2898546,447.2898546,1682.21501,15805.81172,1,1,1,1,1,1,1
-2533,83,1158.4807,1467.561552,699.6005889,824.8834469,447.2898546,447.2898546,1681.243182,15796.68037,1,1,1,1,1,1,1
-2533.5,83,1158.4807,1467.561552,700.1486749,848.2830097,447.2898546,447.2898546,1702.726603,15998.53529,1,1,1,1,1,1,1
-2534,83,1158.4807,1467.561552,713.1492789,871.6268964,447.2898546,447.2898546,1735.331957,16304.88971,1,1,1,1,1,1,1
-2534.5,83,1158.4807,1467.561552,776.9108934,850.2176782,447.2898546,447.2898546,1773.325783,16661.87341,1,1,1,1,1,1,1
-2535,83,1158.4807,1467.561552,794.942363,884.9539961,447.2898546,447.2898546,1820.662848,17106.64471,1,1,1,1,1,1,1
-2535.5,83,1158.4807,1467.561552,799.0706354,929.9616466,447.2898546,447.2898546,1864.741703,17520.80192,1,1,1,1,1,1,1
-2536,83,1158.4807,1467.561552,803.9887765,929.1266519,447.2898546,447.2898546,1868.405481,17555.22642,1,1,1,1,1,1,1
-2536.5,83,1158.4807,1467.561552,807.0666452,914.1411291,447.2898546,447.2898546,1857.723532,17454.86046,1,1,1,1,1,1,1
-2537,83,1158.4807,1467.561552,836.544528,886.0912949,447.2898546,447.2898546,1859.004641,17466.89792,1,1,1,1,1,1,1
-2537.5,83,1158.4807,1467.561552,832.9904396,894.5197426,447.2898546,447.2898546,1863.377052,17507.98014,1,1,1,1,1,1,1
-2538,83,1158.4807,1467.561552,851.3207531,866.5042749,447.2898546,447.2898546,1854.68905,17426.34897,1,1,1,1,1,1,1
-2538.5,83,1158.4807,1467.561552,798.4113556,904.5201073,447.2898546,447.2898546,1841.326926,17300.80064,1,1,1,1,1,1,1
-2539,83,1158.4807,1467.561552,785.15175,907.3598606,447.2898546,447.2898546,1831.979646,17212.97546,1,1,1,1,1,1,1
-2539.5,83,1158.4807,1467.561552,787.0172683,891.4369004,447.2898546,447.2898546,1819.368662,17094.48438,1,1,1,1,1,1,1
-2540,83,1158.4807,1467.561552,749.0959019,885.1420275,447.2898546,447.2898546,1779.70282,16721.79107,1,1,1,1,1,1,1
-2540.5,83,1158.4807,1467.561552,743.317082,836.5654549,447.2898546,447.2898546,1730.942117,16263.64371,1,1,1,1,1,1,1
-2541,83,1158.4807,1467.561552,728.886395,805.6112787,447.2898546,447.2898546,1690.227344,15881.0944,1,1,1,1,1,1,1
-2541.5,83,1158.4807,1467.561552,740.1516179,756.8974475,447.2898546,447.2898546,1656.63168,15565.43528,1,1,1,1,1,1,1
-2542,83,1158.4807,1467.561552,693.9678645,786.221642,447.2898546,447.2898546,1641.508385,15423.33918,1,1,1,1,1,1,1
-2542.5,83,1158.4807,1467.561552,706.9001369,767.3525126,447.2898546,447.2898546,1636.182659,15373.2993,1,1,1,1,1,1,1
-2543,83,1158.4807,1467.561552,714.0510134,770.1851101,447.2898546,447.2898546,1645.138847,15457.45024,1,1,1,1,1,1,1
-2543.5,83,1158.4807,1467.561552,721.6544544,769.6600347,447.2898546,447.2898546,1651.488887,15517.11422,1,1,1,1,1,1,1
-2544,83,1158.4807,1467.561552,688.6482638,766.1010287,447.2898546,447.2898546,1618.686143,15208.90515,1,1,1,1,1,1,1
-2544.5,83,1158.4807,1467.561552,661.2655042,745.6823771,447.2898546,447.2898546,1575.804271,14805.99465,1,1,1,1,1,1,1
-2545,83,1158.4807,1467.561552,683.4760856,712.7719301,447.2898546,447.2898546,1566.205285,14715.80376,1,1,1,1,1,1,1
-2545.5,83,1158.4807,1467.561552,654.8779321,745.4413599,447.2898546,447.2898546,1569.857726,14750.12181,1,1,1,1,1,1,1
-2546,83,1158.4807,1467.561552,661.6240089,729.582916,447.2898546,447.2898546,1561.682142,14673.30531,1,1,1,1,1,1,1
-2546.5,83,1158.4807,1467.561552,684.7354215,696.9303821,447.2898546,447.2898546,1553.123649,14592.89082,1,1,1,1,1,1,1
-2547,83,1158.4807,1467.561552,694.7077174,716.8794014,447.2898546,447.2898546,1579.964962,14845.08745,1,1,1,1,1,1,1
-2547.5,83,1158.4807,1467.561552,696.1753117,759.6058987,447.2898546,447.2898546,1619.611696,15217.60183,1,1,1,1,1,1,1
-2548,83,1158.4807,1467.561552,732.8329308,748.9263141,447.2898546,447.2898546,1642.916764,15436.57253,1,1,1,1,1,1,1
-2548.5,83,1158.4807,1467.561552,690.1850846,807.2943576,447.2898546,447.2898546,1657.018684,15569.07132,1,1,1,1,1,1,1
-2549,83,1158.4807,1467.561552,734.6368171,767.5906822,447.2898546,447.2898546,1661.277354,15609.0848,1,1,1,1,1,1,1
-2549.5,83,1158.4807,1467.561552,745.4748746,757.2017631,447.2898546,447.2898546,1661.6801,15612.8689,1,1,1,1,1,1,1
-2550,83,1158.4807,1467.561552,726.234603,776.4420348,447.2898546,447.2898546,1661.6801,15612.8689,1,1,1,1,1,1,1
-2550.5,83,1158.4807,1467.561552,696.3005016,803.0489458,447.2898546,447.2898546,1658.695148,15584.82296,1,1,1,1,1,1,1
-2551,83,1158.4807,1467.561552,724.7867366,751.1108596,447.2898546,447.2898546,1637.657512,15387.15668,1,1,1,1,1,1,1
-2551.5,83,1158.4807,1467.561552,706.3801914,740.092911,447.2898546,447.2898546,1611.261716,15139.14641,1,1,1,1,1,1,1
-2552,83,1158.4807,1467.561552,688.6222305,742.7134712,447.2898546,447.2898546,1597.682311,15011.55689,1,1,1,1,1,1,1
-2552.5,83,1158.4807,1467.561552,704.9716963,717.5231921,447.2898546,447.2898546,1589.750276,14937.02878,1,1,1,1,1,1,1
-2553,83,1158.4807,1467.561552,696.127735,718.1740954,447.2898546,447.2898546,1582.399806,14867.9651,1,1,1,1,1,1,1
-2553.5,83,1158.4807,1467.561552,652.2297512,757.3817794,447.2898546,447.2898546,1578.19275,14828.43607,1,1,1,1,1,1,1
-2554,83,1158.4807,1467.561552,670.7328654,754.3625128,447.2898546,447.2898546,1592.08414,14958.9574,1,1,1,1,1,1,1
-2554.5,83,1158.4807,1467.561552,671.2079066,777.701954,447.2898546,447.2898546,1613.446823,15159.67761,1,1,1,1,1,1,1
-2555,83,1158.4807,1467.561552,695.1215075,778.3775233,447.2898546,447.2898546,1635.506425,15366.94585,1,1,1,1,1,1,1
-2555.5,83,1158.4807,1467.561552,704.8807927,791.4106226,447.2898546,447.2898546,1655.952744,15559.05606,1,1,1,1,1,1,1
-2556,83,1158.4807,1467.561552,744.5929114,764.3725442,447.2898546,447.2898546,1667.322293,15665.88205,1,1,1,1,1,1,1
-2556.5,83,1158.4807,1467.561552,749.7491366,761.5435685,447.2898546,447.2898546,1669.41024,15685.50023,1,1,1,1,1,1,1
-2557,83,1158.4807,1467.561552,703.4825218,775.6351616,447.2898546,447.2898546,1640.545739,15414.29424,1,1,1,1,1,1,1
-2557.5,83,1158.4807,1467.561552,681.3150584,756.4305763,447.2898546,447.2898546,1603.431261,15065.57283,1,1,1,1,1,1,1
-2558,83,1158.4807,1467.561552,656.3314308,772.3647889,447.2898546,447.2898546,1595.312947,14989.29473,1,1,1,1,1,1,1
-2558.5,83,1158.4807,1467.561552,671.0714962,766.7533126,447.2898546,447.2898546,1603.502694,15066.24398,1,1,1,1,1,1,1
-2559,83,1158.4807,1467.561552,673.0056552,795.6998607,447.2898546,447.2898546,1631.205618,15326.53624,1,1,1,1,1,1,1
-2559.5,83,1158.4807,1467.561552,692.6767207,816.6669922,447.2898546,447.2898546,1667.662493,15669.07896,1,1,1,1,1,1,1
-2560,83,1158.4807,1467.561552,734.1299668,821.9374598,447.2898546,447.2898546,1709.577605,16062.9062,1,1,1,1,1,1,1
-2560.5,83,1158.4807,1467.561552,739.8791132,857.3353208,447.2898546,447.2898546,1746.489271,16409.72246,1,1,1,1,1,1,1
-2561,83,1158.4807,1467.561552,740.7697671,842.8390636,447.2898546,447.2898546,1734.283757,16295.04106,1,1,1,1,1,1,1
-2561.5,83,1158.4807,1467.561552,708.0280801,836.658209,447.2898546,447.2898546,1699.367429,15966.97335,1,1,1,1,1,1,1
-2562,83,1158.4807,1467.561552,727.9721369,769.926658,447.2898546,447.2898546,1657.39478,15572.60495,1,1,1,1,1,1,1
-2562.5,83,1158.4807,1467.561552,701.8227322,750.1012255,447.2898546,447.2898546,1616.150848,15185.08366,1,1,1,1,1,1,1
-2563,83,1158.4807,1467.561552,673.2428589,752.4514106,447.2898546,447.2898546,1592.621318,14964.00413,1,1,1,1,1,1,1
-2563.5,83,1158.4807,1467.561552,646.8406339,764.4988766,447.2898546,447.2898546,1579.743216,14843.00365,1,1,1,1,1,1,1
-2564,83,1158.4807,1467.561552,684.003478,734.0167028,447.2898546,447.2898546,1585.736097,14899.31236,1,1,1,1,1,1,1
-2564.5,83,1158.4807,1467.561552,656.1558505,774.2367009,447.2898546,447.2898546,1596.835629,15003.60138,1,1,1,1,1,1,1
-2565,83,1158.4807,1467.561552,651.7259456,771.9112131,447.2898546,447.2898546,1590.774992,14946.65678,1,1,1,1,1,1,1
-2565.5,83,1158.4807,1467.561552,642.9914198,766.7474777,447.2898546,447.2898546,1578.307436,14829.51338,1,1,1,1,1,1,1
-2566,83,1158.4807,1467.561552,639.2530159,765.6986674,447.2898546,447.2898546,1574.01325,14789.16586,1,1,1,1,1,1,1
-2566.5,83,1158.4807,1467.561552,689.967063,717.7254753,447.2898546,447.2898546,1576.472087,14812.26889,1,1,1,1,1,1,1
-2567,83,1158.4807,1467.561552,687.4581708,743.5418227,447.2898546,447.2898546,1597.381221,15008.72798,1,1,1,1,1,1,1
-2567.5,83,1158.4807,1467.561552,712.494621,751.2382455,447.2898546,447.2898546,1626.744535,15284.62045,1,1,1,1,1,1,1
-2568,83,1158.4807,1467.561552,742.0588211,760.3132297,447.2898546,447.2898546,1661.407512,15610.30782,1,1,1,1,1,1,1
-2568.5,83,1158.4807,1467.561552,730.4623036,806.0612657,447.2898546,447.2898546,1692.045134,15898.17426,1,1,1,1,1,1,1
-2569,83,1158.4807,1467.561552,713.4266013,817.1791179,447.2898546,447.2898546,1686.735706,15848.28754,1,1,1,1,1,1,1
-2569.5,83,1158.4807,1467.561552,687.5599074,816.1912263,447.2898546,447.2898546,1662.644081,15621.92684,1,1,1,1,1,1,1
-2570,83,1158.4807,1467.561552,654.9197313,796.8042123,447.2898546,447.2898546,1615.970925,15183.39342,1,1,1,1,1,1,1
-2570.5,83,1158.4807,1467.561552,654.1394,739.6270565,447.2898546,447.2898546,1563.979133,14694.88737,1,1,1,1,1,1,1
-2571,83,1158.4807,1467.561552,649.7257049,718.1178844,447.2898546,447.2898546,1540.723122,14476.3779,1,1,1,1,1,1,1
-2571.5,83,1158.4807,1467.561552,646.0779289,714.0861319,447.2898546,447.2898546,1533.833919,14411.6476,1,1,1,1,1,1,1
-2572,83,1158.4807,1467.561552,674.2581322,699.9379855,447.2898546,447.2898546,1546.42161,14529.91982,1,1,1,1,1,1,1
-2572.5,83,1158.4807,1467.561552,654.106253,744.831623,447.2898546,447.2898546,1568.617021,14738.46393,1,1,1,1,1,1,1
-2573,83,1158.4807,1467.561552,648.693164,785.992261,447.2898546,447.2898546,1600.686564,15039.78393,1,1,1,1,1,1,1
-2573.5,83,1158.4807,1467.561552,690.9526368,780.3639564,447.2898546,447.2898546,1633.548062,15348.54533,1,1,1,1,1,1,1
-2574,83,1158.4807,1467.561552,673.5362227,805.1640874,447.2898546,447.2898546,1640.171653,15410.77939,1,1,1,1,1,1,1
-2574.5,83,1158.4807,1467.561552,696.2600993,774.5748125,447.2898546,447.2898546,1633.116427,15344.48986,1,1,1,1,1,1,1
-2575,83,1158.4807,1467.561552,696.6653307,754.7207749,447.2898546,447.2898546,1615.669115,15180.55745,1,1,1,1,1,1,1
-2575.5,83,1158.4807,1467.561552,673.7047466,752.9509558,447.2898546,447.2898546,1593.48263,14972.09693,1,1,1,1,1,1,1
-2576,83,1158.4807,1467.561552,645.4654494,750.9362698,447.2898546,447.2898546,1566.342014,14717.0883,1,1,1,1,1,1,1
-2576.5,83,1158.4807,1467.561552,628.0050169,737.2232808,447.2898546,447.2898546,1538.376597,14454.33025,1,1,1,1,1,1,1
-2577,83,1158.4807,1467.561552,612.8966668,730.8508795,447.2898546,447.2898546,1519.804094,14279.82601,1,1,1,1,1,1,1
-2577.5,83,1158.4807,1467.561552,642.9083419,690.1624243,447.2898546,447.2898546,1511.5508,14202.27933,1,1,1,1,1,1,1
-2578,83,1158.4807,1467.561552,654.1295219,713.7535498,447.2898546,447.2898546,1541.271945,14481.53434,1,1,1,1,1,1,1
-2578.5,83,1158.4807,1467.561552,702.1413401,717.2739518,447.2898546,447.2898546,1586.987198,14911.06707,1,1,1,1,1,1,1
-2579,83,1158.4807,1467.561552,695.7992652,752.5017878,447.2898546,447.2898546,1612.901592,15154.55484,1,1,1,1,1,1,1
-2579.5,83,1158.4807,1467.561552,692.2825083,777.2641565,447.2898546,447.2898546,1631.96052,15333.62928,1,1,1,1,1,1,1
-2580,83,1158.4807,1467.561552,711.8857901,802.7648271,447.2898546,447.2898546,1672.422418,15713.80216,1,1,1,1,1,1,1
-2580.5,83,1158.4807,1467.561552,756.4896085,801.0450862,447.2898546,447.2898546,1710.893207,16075.26766,1,1,1,1,1,1,1
-2581,83,1158.4807,1467.561552,734.7470234,776.6491025,447.2898546,447.2898546,1669.503205,15686.37395,1,1,1,1,1,1,1
-2581.5,83,1158.4807,1467.561552,712.7618077,722.616926,447.2898546,447.2898546,1601.308889,15045.6311,1,1,1,1,1,1,1
-2582,83,1158.4807,1467.561552,710.0811307,710.0811307,447.2898546,447.2898546,1587.65786,14917.3689,1,1,1,1,1,1,1
-2582.5,83,1158.4807,1467.561552,690.6175851,735.1698814,447.2898546,447.2898546,1592.703879,14964.7803,1,1,1,1,1,1,1
-2583,83,1158.4807,1467.561552,637.6848686,746.5995187,447.2898546,447.2898546,1555.472183,14614.95753,1,1,1,1,1,1,1
-2583.5,83,1158.4807,1467.561552,601.2566227,731.5210356,447.2898546,447.2898546,1512.376005,14210.03286,1,1,1,1,1,1,1
-2584,83,1158.4807,1467.561552,636.0331382,718.2598819,447.2898546,447.2898546,1529.443168,14370.39291,1,1,1,1,1,1,1
-2584.5,83,1158.4807,1467.561552,674.7277305,734.0739766,447.2898546,447.2898546,1577.46748,14821.62127,1,1,1,1,1,1,1
-2585,83,1158.4807,1467.561552,705.6438769,764.4475333,447.2898546,447.2898546,1632.448601,15338.215,1,1,1,1,1,1,1
-2585.5,83,1158.4807,1467.561552,716.9622984,814.3814245,447.2898546,447.2898546,1687.396967,15854.50085,1,1,1,1,1,1,1
-2586,83,1158.4807,1467.561552,715.909019,863.6924389,447.2898546,447.2898546,1730.68982,16261.27319,1,1,1,1,1,1,1
-2586.5,83,1158.4807,1467.561552,765.3455673,850.9390468,447.2898546,447.2898546,1763.597544,16570.46831,1,1,1,1,1,1,1
-2587,83,1158.4807,1467.561552,790.5245227,817.3006745,447.2898546,447.2898546,1756.008429,16499.16262,1,1,1,1,1,1,1
-2587.5,83,1158.4807,1467.561552,785.9094974,789.4303814,447.2898546,447.2898546,1726.866514,16225.34982,1,1,1,1,1,1,1
-2588,83,1158.4807,1467.561552,719.0831984,801.4235645,447.2898546,447.2898546,1677.676257,15763.16609,1,1,1,1,1,1,1
-2588.5,83,1158.4807,1467.561552,684.3587431,775.2449805,447.2898546,447.2898546,1623.041187,15249.82431,1,1,1,1,1,1,1
-2589,83,1158.4807,1467.561552,704.1021665,723.1570925,447.2898546,447.2898546,1594.025242,14977.19528,1,1,1,1,1,1,1
-2589.5,83,1158.4807,1467.561552,661.5269299,749.4223378,447.2898546,447.2898546,1579.393689,14839.71953,1,1,1,1,1,1,1
-2590,83,1158.4807,1467.561552,649.1660078,762.0644439,447.2898546,447.2898546,1579.645162,14842.08245,1,1,1,1,1,1,1
-2590.5,83,1158.4807,1467.561552,687.9529998,735.0193215,447.2898546,447.2898546,1590.178545,14941.05274,1,1,1,1,1,1,1
-2591,83,1158.4807,1467.561552,731.9797549,738.2427882,447.2898546,447.2898546,1632.566696,15339.32452,1,1,1,1,1,1,1
-2591.5,83,1158.4807,1467.561552,729.5048613,801.8506106,447.2898546,447.2898546,1687.408739,15854.61145,1,1,1,1,1,1,1
-2592,83,1158.4807,1467.561552,777.0904372,797.4481083,447.2898546,447.2898546,1726.14751,16218.59464,1,1,1,1,1,1,1
-2592.5,83,1158.4807,1467.561552,792.8960147,818.1654346,447.2898546,447.2898546,1758.911707,16526.44117,1,1,1,1,1,1,1
-2593,83,1158.4807,1467.561552,809.9621475,856.3976065,447.2898546,447.2898546,1808.519913,16992.55147,1,1,1,1,1,1,1
-2593.5,83,1158.4807,1467.561552,828.5150173,893.7156553,447.2898546,447.2898546,1858.64023,17463.47372,1,1,1,1,1,1,1
-2594,83,1158.4807,1467.561552,782.9249444,931.519538,447.2898546,447.2898546,1851.655221,17397.84407,1,1,1,1,1,1,1
-2594.5,83,1158.4807,1467.561552,820.7022428,858.2293494,447.2898546,447.2898546,1819.797882,17098.51776,1,1,1,1,1,1,1
-2595,83,1158.4807,1467.561552,795.2564786,859.6601892,447.2898546,447.2898546,1798.254473,16896.09917,1,1,1,1,1,1,1
-2595.5,83,1158.4807,1467.561552,789.3348092,845.6329738,447.2898546,447.2898546,1780.357529,16727.94237,1,1,1,1,1,1,1
-2596,83,1158.4807,1467.561552,736.8261917,858.9625446,447.2898546,447.2898546,1745.210181,16397.70386,1,1,1,1,1,1,1
-2596.5,83,1158.4807,1467.561552,729.8408124,821.3307837,447.2898546,447.2898546,1705.184527,16021.62929,1,1,1,1,1,1,1
-2597,83,1158.4807,1467.561552,715.0638803,815.4286512,447.2898546,447.2898546,1686.633505,15847.3275,1,1,1,1,1,1,1
-2597.5,83,1158.4807,1467.561552,749.8605963,773.3402668,447.2898546,447.2898546,1680.092093,15785.86533,1,1,1,1,1,1,1
-2598,83,1158.4807,1467.561552,730.1611645,802.0391744,447.2898546,447.2898546,1688.165571,15861.72256,1,1,1,1,1,1,1
-2598.5,83,1158.4807,1467.561552,737.4769072,805.9562509,447.2898546,447.2898546,1698.243397,15956.4121,1,1,1,1,1,1,1
-2599,83,1158.4807,1467.561552,714.364467,810.9530473,447.2898546,447.2898546,1681.992198,15803.71832,1,1,1,1,1,1,1
-2599.5,83,1158.4807,1467.561552,717.5466237,775.6915622,447.2898546,447.2898546,1653.214054,15533.32398,1,1,1,1,1,1,1
-2600,83,1158.4807,1467.561552,671.6496216,782.9898504,447.2898546,447.2898546,1618.587765,15207.98083,1,1,1,1,1,1,1
-2600.5,83,1158.4807,1467.561552,644.3970354,771.8601853,447.2898546,447.2898546,1584.154269,14884.44949,1,1,1,1,1,1,1
-2601,83,1158.4807,1467.561552,628.4371639,764.6545261,447.2898546,447.2898546,1563.372439,14689.18713,1,1,1,1,1,1,1
-2601.5,83,1158.4807,1467.561552,673.0554196,703.5560421,447.2898546,447.2898546,1548.588218,14550.27678,1,1,1,1,1,1,1
-2602,83,1158.4807,1467.561552,648.4514065,711.9849827,447.2898546,447.2898546,1534.078517,14413.94615,1,1,1,1,1,1,1
-2602.5,83,1158.4807,1467.561552,641.3476646,711.9944323,447.2898546,447.2898546,1527.714309,14354.14891,1,1,1,1,1,1,1
-2603,83,1158.4807,1467.561552,679.0881091,750.5710679,447.2898546,447.2898546,1596.177895,14997.42116,1,1,1,1,1,1,1
-2603.5,83,1158.4807,1467.561552,728.3704343,817.9631465,447.2898546,447.2898546,1700.845488,15980.86099,1,1,1,1,1,1,1
-2604,83,1158.4807,1467.561552,818.8198267,839.5462508,447.2898546,447.2898546,1801.348142,16925.16693,1,1,1,1,1,1,1
-2604.5,83,1158.4807,1467.561552,828.2921416,940.2168954,447.2898546,447.2898546,1900.763609,17859.72866,1,1,1,1,1,1,1
-2605,83,1158.4807,1467.561552,920.430976,982.102882,447.2898546,447.2898546,2023.040752,19010.20578,1,1,1,1,1,1,1
-2605.5,83,1158.4807,1467.561552,1017.20907,1025.700683,447.2898546,447.2898546,2151.365322,20217.77458,1,1,1,1,1,1,1
-2606,83,1158.4807,1467.561552,1042.442261,1092.83905,447.2898546,447.2898546,2235.473727,21009.2295,1,1,1,1,1,1,1
-2606.5,83,1158.4807,1467.561552,1026.158584,1178.930074,447.2898546,447.2898546,2292.28505,21543.23839,1,1,1,1,1,1,1
-2607,83,1158.4807,1467.561552,1121.353775,1160.352227,447.2898546,447.2898546,2350.619222,22091.33677,1,1,1,1,1,1,1
-2607.5,83,1158.4807,1467.561552,1181.119464,1199.88062,447.2898546,447.2898546,2429.832759,22835.16144,1,1,1,1,1,1,1
-2608,83,1158.4807,1467.561552,1246.517174,1377.565752,447.2898546,447.2898546,2647.580982,24878.05572,1,1,1,1,1,1,1
-2608.5,83,1158.4807,1467.561552,1342.418531,1588.506402,447.2898546,447.2898546,2906.101433,27305.66057,1,1,1,1,1,1,1
-2609,83,1158.4807,1467.561552,1560.588528,1645.349185,447.2898546,447.2898546,3138.861798,29492.8601,1,1,1,1,1,1,1
-2609.5,83,1158.4807,1467.561552,1659.325508,1803.812015,447.2898546,447.2898546,3353.724398,31513.27163,1,1,1,1,1,1,1
-2610,83,1158.4807,1467.561552,1738.85253,1983.995603,447.2898546,447.2898546,3574.261653,33588.48593,1,1,1,1,1,1,1
-2610.5,83,1158.4807,1467.561552,1828.249252,2137.182577,447.2898546,447.2898546,3792.002115,35633.70406,1,1,1,1,1,1,1
-2611,83,1158.4807,1467.561552,1994.260477,2064.841103,447.2898546,447.2898546,3881.171926,36470.59142,1,1,1,1,1,1,1
-2611.5,83,1158.4807,1467.561552,2015.729,2079.759873,447.2898546,447.2898546,3917.68428,36813.1749,1,1,1,1,1,1,1
-2612,83,1158.4807,1467.561552,1964.880239,2247.844477,447.2898546,447.2898546,4035.325563,37916.96555,1,1,1,1,1,1,1
-2612.5,83,1158.4807,1467.561552,2130.520119,2239.454923,447.2898546,447.2898546,4181.359507,39288.32299,1,1,1,1,1,1,1
-2613,82.9968784,1158.437544,1467.561552,2054.509488,2414.322555,447.2730322,447.2730322,4279.633266,40212.06503,1,1,1,1,1,1,1
-2613.5,82.98515461,1158.273096,1467.561552,2083.379051,2428.811479,447.2098523,447.2098523,4323.993628,40629.18763,1,1,1,1,1,1,1
-2614,82.96243896,1157.956116,1467.561552,2212.477974,2317.378151,447.0874369,447.0874369,4340.87994,40787.97119,1,1,1,1,1,1,1
-2614.5,82.92920844,1157.492466,1467.561552,2175.163072,2362.147897,446.9083564,446.9083564,4346.529608,40841.09655,1,1,1,1,1,1,1
-2615,82.88576825,1156.886137,1467.561552,2139.06227,2401.49678,446.6742558,446.6742558,4347.246403,40847.8387,1,1,1,1,1,1,1
-2615.5,82.8325188,1156.142778,1467.561552,2063.637864,2477.70982,446.3872926,446.3872926,4344.89601,40825.74106,1,1,1,1,1,1,1
-2616,82.77129534,1155.288862,1467.561552,2132.143683,2409.38254,446.0573573,446.0573573,4341.611723,40794.86221,1,1,1,1,1,1,1
-2616.5,82.70476066,1154.359551,1467.561552,2192.63444,2348.985003,445.6987996,445.6987996,4338.037525,40761.25739,1,1,1,1,1,1,1
-2617,82.63533068,1153.39112,1467.561552,2131.992241,2409.598007,445.3246391,445.3246391,4334.312622,40726.23517,1,1,1,1,1,1,1
-2617.5,82.56551731,1152.416664,1467.561552,2147.116132,2394.383996,444.9484125,444.9484125,4330.564555,40690.99593,1,1,1,1,1,1,1
-2618,82.49660024,1151.454891,1467.561552,2174.798415,2366.567416,444.577016,444.577016,4326.865335,40656.21584,1,1,1,1,1,1,1
-2618.5,82.42971455,1150.521068,1467.561552,2162.133517,2379.061041,444.2165667,444.2165667,4323.273735,40622.44741,1,1,1,1,1,1,1
-2619,82.36668001,1149.640751,1467.561552,2209.828222,2331.096603,443.8768714,443.8768714,4319.887964,40590.61376,1,1,1,1,1,1,1
-2619.5,82.30979604,1148.84663,1467.561552,2154.396096,2386.1896,443.5703217,443.5703217,4316.83346,40561.89549,1,1,1,1,1,1,1
-2620,82.26248497,1148.186264,1467.561552,2204.285686,2335.790189,443.3153607,443.3153607,4314.293739,40538.01654,1,1,1,1,1,1,1
-2620.5,82.22788962,1147.704139,1467.561552,2083.526945,2455.994144,443.1289252,443.1289252,4312.439388,40520.58223,1,1,1,1,1,1,1
-2621,82.20699432,1147.412198,1467.561552,2218.554787,2320.418847,443.0163197,443.0163197,4311.316575,40510.02523,1,1,1,1,1,1,1
-2621.5,82.19865664,1147.295958,1467.561552,2163.66274,2374.863204,442.9713877,442.9713877,4310.869463,40505.82159,1,1,1,1,1,1,1
-2622,82.19708976,1147.274544,1467.561552,2238.670918,2299.776364,442.9629437,442.9629437,4310.786943,40505.04547,1,1,1,1,1,1,1
-2622.5,82.19490588,1147.243384,1467.561552,2181.283399,2357.290674,442.9511747,442.9511747,4310.667168,40503.91954,1,1,1,1,1,1,1
-2623,82.18437431,1147.096516,1467.561552,2156.055396,2383.008596,442.8944197,442.8944197,4310.102233,40498.60792,1,1,1,1,1,1,1
-2623.5,82.15987067,1146.754465,1467.561552,2244.295543,2295.305899,442.7623687,442.7623687,4308.78675,40486.23957,1,1,1,1,1,1,1
-2624,82.12484583,1146.265504,1467.561552,2217.121574,2322.678602,442.5736187,442.5736187,4306.906033,40468.55712,1,1,1,1,1,1,1
-2624.5,82.08659098,1145.732211,1467.561552,2236.96123,2302.802141,442.367462,442.367462,4304.854668,40449.27004,1,1,1,1,1,1,1
-2625,82.0552029,1145.29365,1467.561552,2123.84037,2415.36284,442.1983105,442.1983105,4303.167882,40433.41105,1,1,1,1,1,1,1
-2625.5,82.04069908,1145.091074,1467.561552,2087.672467,2450.74594,442.120149,442.120149,4302.388839,40426.08631,1,1,1,1,1,1,1
-2626,82.04854726,1145.200984,1467.561552,2210.135696,2327.112465,442.1624431,442.1624431,4302.561862,40427.7126,1,1,1,1,1,1,1
-2626.5,82.08132807,1145.658498,1467.561552,2245.171584,2290.528585,442.3391,442.3391,4303.667523,40438.10779,1,1,1,1,1,1,1
-2627,82.1372042,1146.438033,1467.561552,2174.130813,2360.041383,442.6402184,442.6402184,4305.840751,40458.5396,1,1,1,1,1,1,1
-2627.5,82.21295323,1147.494975,1467.561552,2170.642024,2362.12361,443.0484325,443.0484325,4309.093148,40489.11832,1,1,1,1,1,1,1
-2628,82.30573202,1148.790564,1467.561552,2087.219568,2444.358292,443.5484206,443.5484206,4313.338678,40529.03452,1,1,1,1,1,1,1
-2628.5,82.41345445,1150.293534,1467.561552,2078.98831,2451.541625,444.1289405,444.1289405,4318.468906,40577.26852,1,1,1,1,1,1,1
-2629,82.535325,1151.995106,1467.561552,2048.375015,2481.18193,444.785705,444.785705,4324.415858,40633.18146,1,1,1,1,1,1,1
-2629.5,82.67145645,1153.895008,1467.561552,2090.751986,2437.863026,445.5193221,445.5193221,4331.149696,40696.4929,1,1,1,1,1,1,1
-2630,82.82209061,1155.997714,1467.561552,2052.440089,2475.235884,446.3310948,446.3310948,4338.669076,40767.18943,1,1,1,1,1,1,1
-2630.5,82.94360164,1157.693623,1467.561552,1799.350388,1898.923898,446.9859219,446.9859219,3571.209889,33556.4062,1,1,1,1,1,1,1
-2631,82.99303729,1158.38353,1467.561552,1379.109842,1552.785071,447.2523323,447.2523323,2911.784594,27359.07105,1,1,1,1,1,1,1
-2631.5,83,1158.4807,1467.561552,1241.498291,1480.355927,447.2898546,447.2898546,2735.353191,25701.51548,1,1,1,1,1,1,1
-2632,83,1158.4807,1467.561552,1248.850577,1383.859132,447.2898546,447.2898546,2655.388548,24951.3007,1,1,1,1,1,1,1
-2632.5,83,1158.4807,1467.561552,1199.897619,1340.87008,447.2898546,447.2898546,2572.171703,24170.62253,1,1,1,1,1,1,1
-2633,83,1158.4807,1467.561552,1166.156756,1294.736698,447.2898546,447.2898546,2499.876014,23492.39902,1,1,1,1,1,1,1
-2633.5,83,1158.4807,1467.561552,1153.231777,1235.63213,447.2898546,447.2898546,2434.680268,22880.78086,1,1,1,1,1,1,1
-2634,83,1158.4807,1467.561552,1158.414668,1174.050127,447.2898546,447.2898546,2388.813344,22450.16407,1,1,1,1,1,1,1
-2634.5,83,1158.4807,1467.561552,1127.280319,1144.905332,447.2898546,447.2898546,2343.974082,22028.89989,1,1,1,1,1,1,1
-2635,83,1158.4807,1467.561552,1029.861477,1117.385525,447.2898546,447.2898546,2243.552843,21085.01444,1,1,1,1,1,1,1
-2635.5,83,1158.4807,1467.561552,926.2246118,1072.155092,447.2898546,447.2898546,2110.657693,19834.70509,1,1,1,1,1,1,1
-2636,83,1158.4807,1467.561552,868.239555,1003.582917,447.2898546,447.2898546,1994.965519,18746.00983,1,1,1,1,1,1,1
-2636.5,83,1158.4807,1467.561552,851.2279153,892.9866289,447.2898546,447.2898546,1878.731155,17652.53004,1,1,1,1,1,1,1
-2637,83,1158.4807,1467.561552,736.6951999,810.7004678,447.2898546,447.2898546,1701.797942,15989.80964,1,1,1,1,1,1,1
-2637.5,83,1158.4807,1467.561552,651.7578206,681.5613815,447.2898546,447.2898546,1517.607421,14259.18661,1,1,1,1,1,1,1
-2638,83,1158.4807,1467.561552,553.685195,638.3706252,447.2898546,447.2898546,1414.624593,13291.57682,1,1,1,1,1,1,1
-2638.5,83,1158.4807,1467.561552,525.253775,548.288836,447.2898546,447.2898546,1327.284253,12470.94186,1,1,1,1,1,1,1
-2639,83,1158.4807,1467.561552,440.4649923,467.5842768,447.2898546,447.2898546,1195.794004,11235.48086,1,1,1,1,1,1,1
-2639.5,83,1158.4807,1467.561552,332.7876417,394.0217707,447.2898546,447.2898546,1052.206678,9886.358556,1,1,1,1,1,1,1
-2640,83,1158.4807,1467.561552,258.9605815,316.5073774,447.2898546,447.2898546,936.7369208,8801.423984,1,1,1,1,1,1,1
-2640.5,83,1158.4807,1467.561552,206.388394,227.7776109,447.2898546,447.2898546,830.2811961,7801.183886,1,1,1,1,1,1,1
-2641,83,1158.4807,1467.561552,130.3741164,152.4590567,447.2898546,447.2898546,722.810335,6791.405243,1,1,1,1,1,1,1
-2641.5,83,1158.4807,1467.561552,61.41668556,70.75900214,447.2898546,447.2898546,616.3741718,5791.349171,1,1,1,1,1,1,1
-2642,83,1158.4807,1467.561552,0.843698559,0.719389158,447.2898546,447.2898546,522.6596436,4910.822763,1,1,1,1,1,1,1
-2642.5,83,1158.4807,1467.561552,-48.69408332,-57.0387671,447.2898546,447.2898546,446.1421062,4191.876945,1,1,1,1,1,1,1
-2643,83,1158.4807,1467.561552,-71.67434697,-75.1126783,447.2898546,447.2898546,417.277511,3920.669984,1,1,1,1,1,1,1
-2643.5,83,1158.4807,1467.561552,-90.35347308,-98.45872615,447.2898546,447.2898546,389.4159553,3658.88735,1,1,1,1,1,1,1
-2644,83,1158.4807,1467.561552,-151.4376316,-173.2941222,447.2898546,447.2898546,302.3644736,2840.966417,1,1,1,1,1,1,1
-2644.5,83,1158.4807,1467.561552,-220.246399,-262.0738099,447.2898546,447.2898546,192.7831354,1811.35802,1,1,1,1,1,1,1
-2645,83,1158.4807,1467.561552,-293.9748959,-314.0790242,447.2898546,447.2898546,103.1668772,969.3386757,1,1,1,1,1,1,1
-2645.5,83.00054628,1158.488036,1467.561552,-344.3437166,-382.3802582,447.2927985,447.2927985,18.63055656,175.0495943,1,1,1,1,1,1,1
-2646,83.00897224,1158.606302,1467.561552,-348.2563327,-405.2284433,447.3382063,447.3382063,0,0,1,1,1,1,1,1,1
-2646.5,83.03276529,1158.937953,1467.561552,-364.5792769,-389.585655,447.4664279,447.4664279,0,0,1,1,1,1,1,1,1
-2647,83.06784413,1159.427915,1467.561552,-369.7170602,-384.8075524,447.6554689,447.6554689,0,0,1,1,1,1,1,1,1
-2647.5,83.10833159,1159.992668,1467.561552,-349.2051982,-405.5643519,447.8736572,447.8736572,0,0,1,1,1,1,1,1,1
-2648,83.15169962,1160.598201,1467.561552,-346.453686,-408.5007395,448.1073691,448.1073691,0,0,1,1,1,1,1,1,1
-2648.5,83.1974079,1161.235935,1467.561552,-362.1311668,-393.0322273,448.3536926,448.3536926,0,0,1,1,1,1,1,1,1
-2649,83.2469084,1161.927088,1467.561552,-369.3639599,-386.1206722,448.6204525,448.6204525,0,0,1,1,1,1,1,1,1
-2649.5,83.30076217,1162.678559,1467.561552,-349.6282792,-406.1244388,448.9106723,448.9106723,0,0,1,1,1,1,1,1,1
-2650,83.35503395,1163.436602,1467.561552,-358.6633321,-397.1132978,449.2031448,449.2031448,0,0,1,1,1,1,1,1,1
-2650.5,83.40578128,1164.144624,1467.561552,-344.9978664,-410.718343,449.4766239,449.4766239,0,0,1,1,1,1,1,1,1
-2651,83.45176178,1164.786355,1467.561552,-366.6601622,-388.9675921,449.7244144,449.7244144,0,0,1,1,1,1,1,1,1
-2651.5,83.49236425,1165.352911,1467.561552,-350.2977582,-405.1964555,449.9432225,449.9432225,0,0,1,1,1,1,1,1,1
-2652,83.52605217,1165.82319,1467.561552,-358.4355272,-396.8215547,450.1247678,450.1247678,0,0,1,1,1,1,1,1,1
-2652.5,83.55220204,1166.187931,1467.561552,-344.6649477,-410.3700284,450.2656904,450.2656904,0,0,1,1,1,1,1,1,1
-2653,83.5735679,1166.486202,1467.561552,-366.3749935,-388.6154817,450.3808317,450.3808317,0,0,1,1,1,1,1,1,1
-2653.5,83.59391432,1166.769881,1467.561552,-367.8310552,-387.2203859,450.4904793,450.4904793,0,0,1,1,1,1,1,1,1
-2654,83.61696293,1167.091732,1467.561552,-354.4794822,-400.8322514,450.6146891,450.6146891,0,0,1,1,1,1,1,1,1
-2654.5,83.64602288,1167.497244,1467.561552,-363.2330021,-392.4182287,450.7712941,450.7712941,0,0,1,1,1,1,1,1,1
-2655,83.68209934,1168.001049,1467.561552,-360.7406094,-395.2856004,450.9657114,450.9657114,0,0,1,1,1,1,1,1,1
-2655.5,83.72520016,1168.602633,1467.561552,-362.256853,-394.1402066,451.1979832,451.1979832,0,0,1,1,1,1,1,1,1
-2656,83.77373387,1169.280497,1467.561552,-348.3558779,-408.3232541,451.459533,451.459533,0,0,1,1,1,1,1,1,1
-2656.5,83.82610018,1170.010947,1467.561552,-356.2961652,-400.6414566,451.7417369,451.7417369,0,0,1,1,1,1,1,1,1
-2657,83.88197143,1170.791164,1467.561552,-350.7547538,-406.4660326,452.042829,452.042829,0,0,1,1,1,1,1,1,1
-2657.5,83.94087381,1171.613154,1467.561552,-345.4488552,-411.9994873,452.3602559,452.3602559,0,0,1,1,1,1,1,1,1
-2658,83.99582739,1172.380232,1467.561552,-365.3543416,-391.82626,452.6564026,452.6564026,0,0,1,1,1,1,1,1,1
-2658.5,84.03836901,1172.973557,1467.561552,-364.8278299,-391.8635547,452.8856609,452.8856609,0,0,1,1,1,1,1,1,1
-2659,84.06796377,1173.387314,1467.561552,-366.0141186,-390.3174196,453.0451481,453.0451481,0,0,1,1,1,1,1,1,1
-2659.5,84.08770784,1173.662923,1467.561552,-375.5949234,-380.4284154,453.1515496,453.1515496,0,0,1,1,1,1,1,1,1
-2660,84.0972451,1173.795287,1467.561552,-359.9554853,-395.629434,453.2029462,453.2029462,0,0,1,1,1,1,1,1,1
-2660.5,84.0943928,1173.755729,1467.561552,-360.8192035,-394.2399301,453.187575,453.187575,0,0,1,1,1,1,1,1,1
-2661,84.07887946,1173.539263,1467.561552,-362.1762229,-392.3575748,453.1039731,453.1039731,0,0,1,1,1,1,1,1,1
-2661.5,84.05140072,1173.155261,1467.561552,-358.9560229,-395.0465349,452.9558892,452.9558892,0,0,1,1,1,1,1,1,1
-2662,84.01196941,1172.605574,1467.561552,-343.0685675,-410.3616708,452.7433925,452.7433925,0,0,1,1,1,1,1,1,1
-2662.5,83.96039416,1171.88569,1467.561552,-347.6419744,-405.1733354,452.4654518,452.4654518,0,0.0000786086,1,1,1,1,1,1,1
-2663,83.89584478,1170.984391,1467.561552,-343.8268013,-408.2912133,452.1175929,452.1175929,0,0.0001,1,1,1,1,1,1,1
-2663.5,83.81716361,1169.886139,1467.561552,-356.6123803,-394.7393146,451.6935774,451.6935774,0,0.0001,1,1,1,1,1,1,1
-2664,83.72465836,1168.59527,1467.561552,-357.3494748,-393.2630189,451.1950635,451.1950635,0,0.0001,1,1,1,1,1,1,1
-2664.5,83.61980608,1167.132284,1467.561552,-359.1432557,-390.759373,450.6300109,450.6300109,0,0.0001,1,1,1,1,1,1,1
-2665,83.50471031,1165.525335,1467.561552,-368.4517549,-380.8169201,450.0097558,450.0097558,0,0.0001,1,1,1,1,1,1,1
-2665.5,83.38169352,1163.807845,1467.561552,-358.8916569,-389.8164885,449.3468141,449.3468141,0,0.0001,1,1,1,1,1,1,1
-2666,83.2535689,1162.020169,1467.561552,-364.2055385,-384.0673461,448.6563462,448.6563462,0,0.0001,1,1,1,1,1,1,1
-2666.5,83.12400348,1160.212023,1467.561552,-343.1405139,-404.8409436,447.9581136,447.9581136,0,0.0001,1,1,1,1,1,1,1
-2667,83.03307941,1158.942731,1467.561552,-20.4157412,-36.83031564,447.4681207,447.4681207,483.497696,4542.863937,1,1,1,1,1,1,1
-2667.5,83.0034038,1158.528265,1467.561552,137.4203229,155.8434779,447.3081978,447.3081978,726.9985186,6830.757004,1,1,1,1,1,1,1
-2668,83,1158.4807,1467.561552,140.0786092,156.3828743,447.2898546,447.2898546,730.1490165,6860.358307,1,1,1,1,1,1,1
-2668.5,83,1158.4807,1467.561552,138.7937233,163.496543,447.2898546,447.2898546,733.7545627,6894.235252,1,1,1,1,1,1,1
-2669,83,1158.4807,1467.561552,163.4544165,183.5002428,447.2898546,447.2898546,765.0854964,7188.615735,1,1,1,1,1,1,1
-2669.5,83,1158.4807,1467.561552,203.5970496,244.4713762,447.2898546,447.2898546,840.7541196,7899.585543,1,1,1,1,1,1,1
-2670,83,1158.4807,1467.561552,267.600191,296.3972129,447.2898546,447.2898546,928.0943544,8720.219513,1,1,1,1,1,1,1
-2670.5,83,1158.4807,1467.561552,329.7558894,345.8572331,447.2898546,447.2898546,1012.18572,9510.328594,1,1,1,1,1,1,1
-2671,83,1158.4807,1467.561552,386.4125928,389.4863122,447.2898546,447.2898546,1090.205912,10243.39304,1,1,1,1,1,1,1
-2671.5,83,1158.4807,1467.561552,396.4553811,435.890935,447.2898546,447.2898546,1135.114144,10665.34294,1,1,1,1,1,1,1
-2672,83,1158.4807,1467.561552,398.8335795,471.6265214,447.2898546,447.2898546,1165.663979,10952.38477,1,1,1,1,1,1,1
-2672.5,83,1158.4807,1467.561552,406.2202528,486.5715116,447.2898546,447.2898546,1183.564581,11120.57565,1,1,1,1,1,1,1
-2673,83,1158.4807,1467.561552,412.0687813,493.5768918,447.2898546,447.2898546,1193.868567,11217.38988,1,1,1,1,1,1,1
-2673.5,83,1158.4807,1467.561552,435.7627416,453.7109024,447.2898546,447.2898546,1180.905233,11095.58835,1,1,1,1,1,1,1
-2674,83,1158.4807,1467.561552,398.6756222,465.695101,447.2898546,447.2898546,1160.783781,10906.53111,1,1,1,1,1,1,1
-2674.5,83,1158.4807,1467.561552,409.4115554,484.7133237,447.2898546,447.2898546,1184.63402,11130.62372,1,1,1,1,1,1,1
-2675,83,1158.4807,1467.561552,429.7045201,520.7825534,447.2898546,447.2898546,1229.810758,11555.09671,1,1,1,1,1,1,1
-2675.5,83,1158.4807,1467.561552,466.7227662,487.8822947,447.2898546,447.2898546,1233.11236,11586.11841,1,1,1,1,1,1,1
-2676,83,1158.4807,1467.561552,443.4182332,486.679373,447.2898546,447.2898546,1213.467335,11401.53696,1,1,1,1,1,1,1
-2676.5,83,1158.4807,1467.561552,453.5707045,495.5951493,447.2898546,447.2898546,1228.751491,11545.14412,1,1,1,1,1,1,1
-2677,83,1158.4807,1467.561552,478.8593433,518.7642886,447.2898546,447.2898546,1267.593427,11910.09637,1,1,1,1,1,1,1
-2677.5,83,1158.4807,1467.561552,465.6242518,528.5687611,447.2898546,447.2898546,1264.84439,11884.2672,1,1,1,1,1,1,1
-2678,83,1158.4807,1467.561552,455.101372,492.2166636,447.2898546,447.2898546,1227.270477,11531.22891,1,1,1,1,1,1,1
-2678.5,83,1158.4807,1467.561552,443.7230657,478.5604418,447.2898546,447.2898546,1207.204356,11342.69099,1,1,1,1,1,1,1
-2679,83,1158.4807,1467.561552,451.1613983,473.6930439,447.2898546,447.2898546,1209.264725,11362.04983,1,1,1,1,1,1,1
-2679.5,83,1158.4807,1467.561552,453.3248721,464.5383402,447.2898546,447.2898546,1203.661333,11309.40119,1,1,1,1,1,1,1
-2680,83,1158.4807,1467.561552,423.1441182,473.8740554,447.2898546,447.2898546,1186.953243,11152.41455,1,1,1,1,1,1,1
-2680.5,83,1158.4807,1467.561552,409.197295,470.7968878,447.2898546,447.2898546,1173.306601,11024.19281,1,1,1,1,1,1,1
-2681,83,1158.4807,1467.561552,421.748394,448.7847776,447.2898546,447.2898546,1165.723569,10952.94397,1,1,1,1,1,1,1
-2681.5,83,1158.4807,1467.561552,401.7812139,466.5782272,447.2898546,447.2898546,1163.980363,10936.56529,1,1,1,1,1,1,1
-2682,83,1158.4807,1467.561552,415.0497204,459.5676104,447.2898546,447.2898546,1168.997009,10983.70135,1,1,1,1,1,1,1
-2682.5,83,1158.4807,1467.561552,417.5730813,459.5022426,447.2898546,447.2898546,1170.967894,11002.21932,1,1,1,1,1,1,1
-2683,83,1158.4807,1467.561552,423.9681914,447.1703609,447.2898546,447.2898546,1166.208484,10957.50069,1,1,1,1,1,1,1
-2683.5,83,1158.4807,1467.561552,399.2863272,471.0456296,447.2898546,447.2898546,1165.561712,10951.42379,1,1,1,1,1,1,1
-2684,83,1158.4807,1467.561552,397.2212917,485.4926898,447.2898546,447.2898546,1175.486721,11044.67713,1,1,1,1,1,1,1
-2684.5,83,1158.4807,1467.561552,436.0361378,462.5352389,447.2898546,447.2898546,1188.19819,11164.11184,1,1,1,1,1,1,1
-2685,83,1158.4807,1467.561552,424.182448,490.6716928,447.2898546,447.2898546,1201.249599,11286.74106,1,1,1,1,1,1,1
-2685.5,83,1158.4807,1467.561552,441.8798772,489.2079782,447.2898546,447.2898546,1214.261636,11408.99967,1,1,1,1,1,1,1
-2686,83,1158.4807,1467.561552,454.5206603,492.397382,447.2898546,447.2898546,1226.950269,11528.22018,1,1,1,1,1,1,1
-2686.5,83,1158.4807,1467.561552,435.0747646,517.8446008,447.2898546,447.2898546,1231.760773,11573.41884,1,1,1,1,1,1,1
-2687,83,1158.4807,1467.561552,443.4970011,486.0424814,447.2898546,447.2898546,1213.020968,11397.34275,1,1,1,1,1,1,1
-2687.5,83,1158.4807,1467.561552,444.5770711,457.6521197,447.2898546,447.2898546,1191.129549,11191.65488,1,1,1,1,1,1,1
-2688,83,1158.4807,1467.561552,409.1628308,480.4018123,447.2898546,447.2898546,1180.978094,11096.27349,1,1,1,1,1,1,1
-2688.5,83,1158.4807,1467.561552,418.4728358,465.5282459,447.2898546,447.2898546,1176.518937,11054.37613,1,1,1,1,1,1,1
-2689,83,1158.4807,1467.561552,436.8127022,451.5130378,447.2898546,447.2898546,1179.985306,11086.94512,1,1,1,1,1,1,1
-2689.5,83,1158.4807,1467.561552,441.473119,457.498485,447.2898546,447.2898546,1188.518678,11167.12309,1,1,1,1,1,1,1
-2690,83,1158.4807,1467.561552,424.2940759,500.9835081,447.2898546,447.2898546,1209.604589,11365.24297,1,1,1,1,1,1,1
-2690.5,83,1158.4807,1467.561552,451.0709896,501.4513356,447.2898546,447.2898546,1231.442345,11570.42689,1,1,1,1,1,1,1
-2691,83,1158.4807,1467.561552,473.3905819,481.808373,447.2898546,447.2898546,1233.588168,11590.58907,1,1,1,1,1,1,1
-2691.5,83,1158.4807,1467.561552,458.4115994,495.6354796,447.2898546,447.2898546,1232.664208,11581.90745,1,1,1,1,1,1,1
-2692,83,1158.4807,1467.561552,475.1003171,516.8742148,447.2898546,447.2898546,1263.065138,11867.54937,1,1,1,1,1,1,1
-2692.5,83,1158.4807,1467.561552,508.3491781,542.0634171,447.2898546,447.2898546,1309.906889,12307.66704,1,1,1,1,1,1,1
-2693,83,1158.4807,1467.561552,535.0481425,595.8961751,447.2898546,447.2898546,1372.383287,12894.68493,1,1,1,1,1,1,1
-2693.5,83,1158.4807,1467.561552,573.3111548,646.4998129,447.2898546,447.2898546,1431.268882,13447.96367,1,1,1,1,1,1,1
-2694,83,1158.4807,1467.561552,645.5372854,661.8689982,447.2898546,447.2898546,1492.952176,14027.52995,1,1,1,1,1,1,1
-2694.5,83,1158.4807,1467.561552,651.0237112,738.9145874,447.2898546,447.2898546,1561.236795,14669.1209,1,1,1,1,1,1,1
-2695,83,1158.4807,1467.561552,705.3504401,730.0824191,447.2898546,447.2898546,1601.357192,15046.08515,1,1,1,1,1,1,1
-2695.5,83,1158.4807,1467.561552,680.6519151,783.9416851,447.2898546,447.2898546,1627.516425,15291.87277,1,1,1,1,1,1,1
-2696,83,1158.4807,1467.561552,717.2093312,793.7968783,447.2898546,447.2898546,1669.153425,15683.08752,1,1,1,1,1,1,1
-2696.5,83,1158.4807,1467.561552,750.6428156,813.1963836,447.2898546,447.2898546,1716.549646,16128.4141,1,1,1,1,1,1,1
-2697,83,1158.4807,1467.561552,774.8535695,813.5410913,447.2898546,447.2898546,1738.577711,16335.38625,1,1,1,1,1,1,1
-2697.5,83,1158.4807,1467.561552,789.1897162,808.6643349,447.2898546,447.2898546,1747.063694,16415.11903,1,1,1,1,1,1,1
-2698,83,1158.4807,1467.561552,792.2764032,808.2819872,447.2898546,447.2898546,1749.489693,16437.91339,1,1,1,1,1,1,1
-2698.5,83,1158.4807,1467.561552,778.2990996,819.1928932,447.2898546,447.2898546,1746.738476,16412.06327,1,1,1,1,1,1,1
-2699,83,1158.4807,1467.561552,765.4867986,800.3087217,447.2898546,447.2898546,1718.304313,16144.90092,1,1,1,1,1,1,1
-2699.5,83,1158.4807,1467.561552,740.2998735,782.5663754,447.2898546,447.2898546,1679.792255,15783.04841,1,1,1,1,1,1,1
-2700,83,1158.4807,1467.561552,732.5433508,777.8553107,447.2898546,447.2898546,1668.608719,15677.96922,1,1,1,1,1,1,1
-2700.5,83,1158.4807,1467.561552,753.6257913,763.5710655,447.2898546,447.2898546,1674.707229,15735.27012,1,1,1,1,1,1,1
-2701,83,1158.4807,1467.561552,770.4321245,770.4321245,447.2898546,447.2898546,1695.938288,15934.75381,1,1,1,1,1,1,1
-2701.5,83,1158.4807,1467.561552,785.4715057,785.4715057,447.2898546,447.2898546,1722.921705,16188.2854,1,1,1,1,1,1,1
-2702,83,1158.4807,1467.561552,754.4048268,828.5971417,447.2898546,447.2898546,1733.740277,16289.93486,1,1,1,1,1,1,1
-2702.5,83,1158.4807,1467.561552,763.6623482,821.660681,447.2898546,447.2898546,1735.822489,16309.49916,1,1,1,1,1,1,1
-2703,83,1158.4807,1467.561552,755.2189042,840.5174385,447.2898546,447.2898546,1745.163282,16397.26343,1,1,1,1,1,1,1
-2703.5,83,1158.4807,1467.561552,794.5343815,815.5975468,447.2898546,447.2898546,1758.077314,16518.60117,1,1,1,1,1,1,1
-2704,83,1158.4807,1467.561552,780.2895823,830.5513174,447.2898546,447.2898546,1758.713568,16524.5795,1,1,1,1,1,1,1
-2704.5,83,1158.4807,1467.561552,744.3841392,858.4690345,447.2898546,447.2898546,1751.548498,16457.25769,1,1,1,1,1,1,1
-2705,83,1158.4807,1467.561552,765.6826468,818.4576766,447.2898546,447.2898546,1734.761809,16299.53283,1,1,1,1,1,1,1
-2705.5,83,1158.4807,1467.561552,739.8373339,819.5251911,447.2898546,447.2898546,1712.533023,16090.67471,1,1,1,1,1,1,1
-2706,83,1158.4807,1467.561552,728.1992489,795.9907422,447.2898546,447.2898546,1680.980799,15794.21527,1,1,1,1,1,1,1
-2706.5,83,1158.4807,1467.561552,725.3541184,761.7540409,447.2898546,447.2898546,1647.714817,15481.65376,1,1,1,1,1,1,1
-2707,83,1158.4807,1467.561552,738.3543765,744.8501929,447.2898546,447.2898546,1644.212094,15448.74303,1,1,1,1,1,1,1
-2707.5,83,1158.4807,1467.561552,702.5449251,796.381359,447.2898546,447.2898546,1658.316291,15581.26365,1,1,1,1,1,1,1
-2708,83,1158.4807,1467.561552,718.3015557,817.0222395,447.2898546,447.2898546,1690.967844,15888.05211,1,1,1,1,1,1,1
-2708.5,83,1158.4807,1467.561552,717.9497373,862.4206389,447.2898546,447.2898546,1731.378293,16267.74218,1,1,1,1,1,1,1
-2709,83,1158.4807,1467.561552,783.2153211,830.7897805,447.2898546,447.2898546,1761.552602,16551.25441,1,1,1,1,1,1,1
-2709.5,83,1158.4807,1467.561552,778.3429726,858.7756537,447.2898546,447.2898546,1782.287657,16746.07755,1,1,1,1,1,1,1
-2710,83,1158.4807,1467.561552,791.4614491,825.6591857,447.2898546,447.2898546,1764.346892,16577.50926,1,1,1,1,1,1,1
-2710.5,83,1158.4807,1467.561552,729.6094291,842.8423191,447.2898546,447.2898546,1724.274743,16200.9984,1,1,1,1,1,1,1
-2711,83,1158.4807,1467.561552,745.2015315,787.9715486,447.2898546,447.2898546,1689.038332,15869.92276,1,1,1,1,1,1,1
-2711.5,83,1158.4807,1467.561552,748.4088547,751.7579925,447.2898546,447.2898546,1659.429276,15591.72062,1,1,1,1,1,1,1
-2712,83,1158.4807,1467.561552,732.9288324,744.4234007,447.2898546,447.2898546,1638.962563,15399.41915,1,1,1,1,1,1,1
-2712.5,83,1158.4807,1467.561552,695.7318119,767.3438286,447.2898546,447.2898546,1626.154997,15279.0815,1,1,1,1,1,1,1
-2713,83,1158.4807,1467.561552,677.7603828,814.1211846,447.2898546,447.2898546,1651.996782,15521.88667,1,1,1,1,1,1,1
-2713.5,83,1158.4807,1467.561552,694.5867868,848.9394061,447.2898546,447.2898546,1698.326057,15957.18863,1,1,1,1,1,1,1
-2714,83,1158.4807,1467.561552,725.2321959,845.4263122,447.2898546,447.2898546,1722.666986,16185.89217,1,1,1,1,1,1,1
-2714.5,83,1158.4807,1467.561552,741.8162664,840.1954673,447.2898546,447.2898546,1732.851668,16281.58518,1,1,1,1,1,1,1
-2715,83,1158.4807,1467.561552,783.4746598,816.8705508,447.2898546,447.2898546,1749.297768,16436.11004,1,1,1,1,1,1,1
-2715.5,83,1158.4807,1467.561552,789.488576,831.05601,447.2898546,447.2898546,1767.418098,16606.36595,1,1,1,1,1,1,1
-2716,83,1158.4807,1467.561552,754.6488048,839.5985747,447.2898546,447.2898546,1743.827488,16384.71263,1,1,1,1,1,1,1
-2716.5,83,1158.4807,1467.561552,749.4651945,794.2678717,447.2898546,447.2898546,1698.511586,15958.93171,1,1,1,1,1,1,1
-2717,83,1158.4807,1467.561552,754.3075887,772.9442663,447.2898546,447.2898546,1683.727045,15820.01854,1,1,1,1,1,1,1
-2717.5,83,1158.4807,1467.561552,722.4133703,809.5447845,447.2898546,447.2898546,1687.94907,15859.6884,1,1,1,1,1,1,1
-2718,83,1158.4807,1467.561552,707.7926512,827.226259,447.2898546,447.2898546,1690.694835,15885.48735,1,1,1,1,1,1,1
-2718.5,83,1158.4807,1467.561552,725.6911762,812.727336,447.2898546,447.2898546,1693.744869,15914.14481,1,1,1,1,1,1,1
-2719,83,1158.4807,1467.561552,737.1310737,840.8277288,447.2898546,447.2898546,1729.21527,16247.41844,1,1,1,1,1,1,1
-2719.5,83,1158.4807,1467.561552,747.8608708,888.1210282,447.2898546,447.2898546,1781.26794,16736.49648,1,1,1,1,1,1,1
-2720,83,1158.4807,1467.561552,767.1844188,890.4632415,447.2898546,447.2898546,1800.703769,16919.11239,1,1,1,1,1,1,1
-2720.5,83,1158.4807,1467.561552,814.2823161,839.8000201,447.2898546,447.2898546,1797.50594,16889.06602,1,1,1,1,1,1,1
-2721,83,1158.4807,1467.561552,814.7940068,840.6453936,447.2898546,447.2898546,1798.722517,16900.49689,1,1,1,1,1,1,1
-2721.5,83,1158.4807,1467.561552,821.0926641,841.3543488,447.2898546,447.2898546,1805.009359,16959.56687,1,1,1,1,1,1,1
-2722,83,1158.4807,1467.561552,831.0946137,834.7491515,447.2898546,447.2898546,1808.056583,16988.19812,1,1,1,1,1,1,1
-2722.5,83,1158.4807,1467.561552,773.7106323,890.5621938,447.2898546,447.2898546,1806.647364,16974.95727,1,1,1,1,1,1,1
-2723,83,1158.4807,1467.561552,739.6625851,885.96947,447.2898546,447.2898546,1771.983467,16649.26156,1,1,1,1,1,1,1
-2723.5,83,1158.4807,1467.561552,730.9942816,835.6308862,447.2898546,447.2898546,1719.048711,16151.89529,1,1,1,1,1,1,1
-2724,83,1158.4807,1467.561552,736.6401867,817.7712225,447.2898546,447.2898546,1708.091247,16048.94067,1,1,1,1,1,1,1
-2724.5,83,1158.4807,1467.561552,777.2372767,794.308966,447.2898546,447.2898546,1723.463619,16193.37729,1,1,1,1,1,1,1
-2725,83,1158.4807,1467.561552,770.079882,782.1406225,447.2898546,447.2898546,1706.126729,16030.48271,1,1,1,1,1,1,1
-2725.5,83,1158.4807,1467.561552,718.5252264,792.199607,447.2898546,447.2898546,1668.900874,15680.71491,1,1,1,1,1,1,1
-2726,83,1158.4807,1467.561552,692.9741457,832.3191125,447.2898546,447.2898546,1681.970375,15803.51321,1,1,1,1,1,1,1
-2726.5,83,1158.4807,1467.561552,720.2823145,852.8631208,447.2898546,447.2898546,1724.897559,16206.85019,1,1,1,1,1,1,1
-2727,83,1158.4807,1467.561552,708.3852771,858.070973,447.2898546,447.2898546,1718.896491,16150.46469,1,1,1,1,1,1,1
-2727.5,83,1158.4807,1467.561552,698.3754665,827.2857099,447.2898546,447.2898546,1682.300383,15806.61423,1,1,1,1,1,1,1
-2728,83,1158.4807,1467.561552,699.6759885,821.3587691,447.2898546,447.2898546,1678.149727,15767.61508,1,1,1,1,1,1,1
-2728.5,83,1158.4807,1467.561552,696.43023,843.762425,447.2898546,447.2898546,1695.336795,15929.10185,1,1,1,1,1,1,1
-2729,83,1158.4807,1467.561552,740.9842431,798.9277702,447.2898546,447.2898546,1695.084883,15926.73538,1,1,1,1,1,1,1
-2729.5,83,1158.4807,1467.561552,741.1653061,783.5276892,447.2898546,447.2898546,1681.431348,15798.44896,1,1,1,1,1,1,1
-2730,83,1158.4807,1467.561552,701.0539309,792.224488,447.2898546,447.2898546,1653.249966,15533.66101,1,1,1,1,1,1,1
-2730.5,83,1158.4807,1467.561552,711.0200795,745.1551327,447.2898546,447.2898546,1619.964489,15220.91624,1,1,1,1,1,1,1
-2731,83,1158.4807,1467.561552,703.337416,752.0125449,447.2898546,447.2898546,1619.224433,15213.96257,1,1,1,1,1,1,1
-2731.5,83,1158.4807,1467.561552,690.0169081,783.566091,447.2898546,447.2898546,1635.580742,15367.64421,1,1,1,1,1,1,1
-2732,83,1158.4807,1467.561552,686.8231395,765.9539174,447.2898546,447.2898546,1616.916685,15192.27992,1,1,1,1,1,1,1
-2732.5,83,1158.4807,1467.561552,643.082805,768.3532347,447.2898546,447.2898546,1579.830531,14843.82462,1,1,1,1,1,1,1
-2733,83,1158.4807,1467.561552,690.555946,732.491797,447.2898546,447.2898546,1590.246871,14941.69486,1,1,1,1,1,1,1
-2733.5,83,1158.4807,1467.561552,690.7733849,774.5147342,447.2898546,447.2898546,1628.139342,15297.72609,1,1,1,1,1,1,1
-2734,83,1158.4807,1467.561552,695.8300274,788.1063946,447.2898546,447.2898546,1644.868765,15454.91299,1,1,1,1,1,1,1
-2734.5,83,1158.4807,1467.561552,710.5626969,776.5761344,447.2898546,447.2898546,1647.742248,15481.91172,1,1,1,1,1,1,1
-2735,83,1158.4807,1467.561552,693.3206067,812.5144216,447.2898546,447.2898546,1664.51421,15639.49781,1,1,1,1,1,1,1
-2735.5,83,1158.4807,1467.561552,753.0823325,782.9463411,447.2898546,447.2898546,1691.600262,15893.9938,1,1,1,1,1,1,1
-2736,83,1158.4807,1467.561552,765.1951534,789.5121672,447.2898546,447.2898546,1708.357581,16051.44271,1,1,1,1,1,1,1
-2736.5,83,1158.4807,1467.561552,748.0083689,815.9418831,447.2898546,447.2898546,1716.649517,16129.35285,1,1,1,1,1,1,1
-2737,83,1158.4807,1467.561552,772.7530977,789.9437056,447.2898546,447.2898546,1715.524013,16118.77771,1,1,1,1,1,1,1
-2737.5,83,1158.4807,1467.561552,729.5501496,826.6034785,447.2898546,447.2898546,1709.655101,16063.63426,1,1,1,1,1,1,1
-2738,83,1158.4807,1467.561552,749.1375487,813.0727577,447.2898546,447.2898546,1715.08826,16114.68309,1,1,1,1,1,1,1
-2738.5,83,1158.4807,1467.561552,758.420028,818.0432066,447.2898546,447.2898546,1727.87474,16234.82321,1,1,1,1,1,1,1
-2739,83,1158.4807,1467.561552,726.9041922,851.6248688,447.2898546,447.2898546,1729.727264,16252.22936,1,1,1,1,1,1,1
-2739.5,83,1158.4807,1467.561552,721.7258029,851.0103155,447.2898546,447.2898546,1724.530374,16203.40019,1,1,1,1,1,1,1
-2740,83,1158.4807,1467.561552,747.1061437,836.6448371,447.2898546,447.2898546,1734.411239,16296.2387,1,1,1,1,1,1,1
-2740.5,83,1158.4807,1467.561552,774.7930614,829.9053446,447.2898546,447.2898546,1753.202895,16472.80212,1,1,1,1,1,1,1
-2741,83,1158.4807,1467.561552,730.344073,865.1507876,447.2898546,447.2898546,1744.946929,16395.23053,1,1,1,1,1,1,1
-2741.5,83,1158.4807,1467.561552,746.9896328,818.4167584,447.2898546,447.2898546,1717.954656,16141.61581,1,1,1,1,1,1,1
-2742,83,1158.4807,1467.561552,697.2691108,825.6061961,447.2898546,447.2898546,1679.801412,15783.13414,1,1,1,1,1,1,1
-2742.5,83,1158.4807,1467.561552,716.452196,761.1304706,447.2898546,447.2898546,1639.168955,15401.35836,1,1,1,1,1,1,1
-2743,83,1158.4807,1467.561552,710.4219442,771.6330927,447.2898546,447.2898546,1643.181114,15439.0557,1,1,1,1,1,1,1
-2743.5,83,1158.4807,1467.561552,701.8011433,813.2116329,447.2898546,447.2898546,1672.747237,15716.85416,1,1,1,1,1,1,1
-2744,83,1158.4807,1467.561552,737.6472326,764.405829,447.2898546,447.2898546,1661.122017,15607.62585,1,1,1,1,1,1,1
-2744.5,83,1158.4807,1467.561552,706.5794912,751.7716343,447.2898546,447.2898546,1621.91641,15239.25613,1,1,1,1,1,1,1
-2745,83,1158.4807,1467.561552,692.1121384,726.8497793,447.2898546,447.2898546,1586.580403,14907.24462,1,1,1,1,1,1,1
-2745.5,83,1158.4807,1467.561552,650.9474692,732.2822104,447.2898546,447.2898546,1554.525812,14606.06515,1,1,1,1,1,1,1
-2746,83,1158.4807,1467.561552,621.9312122,693.7565886,447.2898546,447.2898546,1500.113925,14094.82072,1,1,1,1,1,1,1
-2746.5,83,1158.4807,1467.561552,599.6766746,632.8848637,447.2898546,447.2898546,1440.530187,13534.98182,1,1,1,1,1,1,1
-2747,83,1158.4807,1467.561552,591.4454992,615.5861318,447.2898546,447.2898546,1423.167331,13371.84343,1,1,1,1,1,1,1
-2747.5,83,1158.4807,1467.561552,607.5708934,612.8636846,447.2898546,447.2898546,1431.656395,13451.60528,1,1,1,1,1,1,1
-2748,83,1158.4807,1467.561552,608.1915625,668.6656896,447.2898546,447.2898546,1471.106996,13822.27644,1,1,1,1,1,1,1
-2748.5,83,1158.4807,1467.561552,636.3072176,717.5379263,447.2898546,447.2898546,1530.182238,14377.33771,1,1,1,1,1,1,1
-2749,83,1158.4807,1467.561552,679.6978288,731.0550883,447.2898546,447.2898546,1579.216941,14838.05922,1,1,1,1,1,1,1
-2749.5,83,1158.4807,1467.561552,723.1730108,732.5400357,447.2898546,447.2898546,1619.550965,15217.03087,1,1,1,1,1,1,1
-2750,83,1158.4807,1467.561552,720.2358006,804.4392767,447.2898546,447.2898546,1681.416346,15798.30763,1,1,1,1,1,1,1
-2750.5,83,1158.4807,1467.561552,747.1109982,859.5793205,447.2898546,447.2898546,1754.9911,16489.60374,1,1,1,1,1,1,1
-2751,83,1158.4807,1467.561552,768.8840331,870.835866,447.2898546,447.2898546,1784.621223,16768.00373,1,1,1,1,1,1,1
-2751.5,83,1158.4807,1467.561552,769.5027021,867.7370896,447.2898546,447.2898546,1782.396749,16747.10271,1,1,1,1,1,1,1
-2752,83,1158.4807,1467.561552,750.8122892,873.5811711,447.2898546,447.2898546,1770.871687,16638.81518,1,1,1,1,1,1,1
-2752.5,83,1158.4807,1467.561552,789.5874298,818.0704551,447.2898546,447.2898546,1755.858999,16497.75874,1,1,1,1,1,1,1
-2753,83,1158.4807,1467.561552,767.9807424,804.5919664,447.2898546,447.2898546,1724.383912,16202.02408,1,1,1,1,1,1,1
-2753.5,83,1158.4807,1467.561552,699.088057,827.7315913,447.2898546,447.2898546,1683.33987,15816.38089,1,1,1,1,1,1,1
-2754,83,1158.4807,1467.561552,720.9596892,789.586469,447.2898546,447.2898546,1668.740951,15679.21192,1,1,1,1,1,1,1
-2754.5,83,1158.4807,1467.561552,711.3475446,804.1803784,447.2898546,447.2898546,1673.210177,15721.20381,1,1,1,1,1,1,1
-2755,83,1158.4807,1467.561552,746.5850002,781.8626708,447.2898546,447.2898546,1684.799982,15830.09996,1,1,1,1,1,1,1
-2755.5,83,1158.4807,1467.561552,740.3055889,804.0712251,447.2898546,447.2898546,1699.089194,15964.35911,1,1,1,1,1,1,1
-2756,83,1158.4807,1467.561552,735.2613957,825.5081985,447.2898546,447.2898546,1713.795475,16102.53638,1,1,1,1,1,1,1
-2756.5,83,1158.4807,1467.561552,734.329157,841.1794056,447.2898546,447.2898546,1727.017705,16226.77041,1,1,1,1,1,1,1
-2757,83,1158.4807,1467.561552,718.6267395,839.8371492,447.2898546,447.2898546,1711.727395,16083.10509,1,1,1,1,1,1,1
-2757.5,83,1158.4807,1467.561552,699.8936062,821.6142334,447.2898546,447.2898546,1678.573806,15771.5997,1,1,1,1,1,1,1
-2758,83,1158.4807,1467.561552,728.3567346,766.5592186,447.2898546,447.2898546,1654.719054,15547.46433,1,1,1,1,1,1,1
-2758.5,83,1158.4807,1467.561552,691.2726876,786.5995753,447.2898546,447.2898546,1639.429515,15403.80651,1,1,1,1,1,1,1
-2759,83,1158.4807,1467.561552,696.2230012,779.7347981,447.2898546,447.2898546,1637.711861,15387.66772,1,1,1,1,1,1,1
-2759.5,83,1158.4807,1467.561552,681.3841492,801.9123833,447.2898546,447.2898546,1644.29535,15449.52474,1,1,1,1,1,1,1
-2760,83,1158.4807,1467.561552,724.1795126,777.0349886,447.2898546,447.2898546,1660.368557,15600.54587,1,1,1,1,1,1,1
-2760.5,83,1158.4807,1467.561552,710.997288,813.0846298,447.2898546,447.2898546,1680.883131,15793.29768,1,1,1,1,1,1,1
-2761,83,1158.4807,1467.561552,705.6640048,828.3881796,447.2898546,447.2898546,1689.827591,15877.33878,1,1,1,1,1,1,1
-2761.5,83,1158.4807,1467.561552,747.6707595,786.6158386,447.2898546,447.2898546,1690.038281,15879.31789,1,1,1,1,1,1,1
-2762,83,1158.4807,1467.561552,732.0852827,782.5655035,447.2898546,447.2898546,1672.422823,15713.80607,1,1,1,1,1,1,1
-2762.5,83,1158.4807,1467.561552,706.6643197,777.5613708,447.2898546,447.2898546,1645.12899,15457.358,1,1,1,1,1,1,1
-2763,83,1158.4807,1467.561552,699.7810798,761.4752514,447.2898546,447.2898546,1624.523257,15263.75,1,1,1,1,1,1,1
-2763.5,83,1158.4807,1467.561552,676.8075343,768.3729581,447.2898546,447.2898546,1610.10146,15128.24526,1,1,1,1,1,1,1
-2764,83,1158.4807,1467.561552,696.236421,752.3601328,447.2898546,447.2898546,1613.165906,15157.03823,1,1,1,1,1,1,1
-2764.5,83,1158.4807,1467.561552,714.9522858,747.3842612,447.2898546,447.2898546,1625.491339,15272.84594,1,1,1,1,1,1,1
-2765,83,1158.4807,1467.561552,694.4270556,769.3810609,447.2898546,447.2898546,1626.812591,15285.2603,1,1,1,1,1,1,1
-2765.5,83,1158.4807,1467.561552,708.2291194,750.2522244,447.2898546,447.2898546,1622.033936,15240.36087,1,1,1,1,1,1,1
-2766,83,1158.4807,1467.561552,734.4429463,740.842662,447.2898546,447.2898546,1637.108882,15382.00211,1,1,1,1,1,1,1
-2766.5,83,1158.4807,1467.561552,734.9457324,770.3518204,447.2898546,447.2898546,1664.032043,15634.96745,1,1,1,1,1,1,1
-2767,83,1158.4807,1467.561552,716.9953611,810.6461806,447.2898546,447.2898546,1684.077242,15823.30907,1,1,1,1,1,1,1
-2767.5,83,1158.4807,1467.561552,705.5777547,837.7487879,447.2898546,447.2898546,1698.147245,15955.50872,1,1,1,1,1,1,1
-2768,83,1158.4807,1467.561552,740.9555963,795.4570442,447.2898546,447.2898546,1691.945318,15897.23628,1,1,1,1,1,1,1
-2768.5,83,1158.4807,1467.561552,694.8466809,819.3218295,447.2898546,447.2898546,1671.990695,15709.74611,1,1,1,1,1,1,1
-2769,83,1158.4807,1467.561552,697.0667357,787.8796922,447.2898546,447.2898546,1645.775167,15463.42932,1,1,1,1,1,1,1
-2769.5,83,1158.4807,1467.561552,679.1855917,774.4473842,447.2898546,447.2898546,1617.683466,15199.48455,1,1,1,1,1,1,1
-2770,83,1158.4807,1467.561552,705.2973519,738.8000878,447.2898546,447.2898546,1609.129168,15119.10924,1,1,1,1,1,1,1
-2770.5,83,1158.4807,1467.561552,678.5590166,772.4525474,447.2898546,447.2898546,1615.332521,15177.39507,1,1,1,1,1,1,1
-2771,83,1158.4807,1467.561552,730.8604692,756.3896454,447.2898546,447.2898546,1647.841925,15482.84803,1,1,1,1,1,1,1
-2771.5,83,1158.4807,1467.561552,752.2461319,788.6106406,447.2898546,447.2898546,1695.93164,15934.69085,1,1,1,1,1,1,1
-2772,83,1158.4807,1467.561552,728.868092,850.5502194,447.2898546,447.2898546,1730.525438,16259.72878,1,1,1,1,1,1,1
-2772.5,83,1158.4807,1467.561552,761.6435292,843.2626663,447.2898546,447.2898546,1753.390147,16474.56139,1,1,1,1,1,1,1
-2773,83,1158.4807,1467.561552,758.2930965,847.5739761,447.2898546,447.2898546,1754.252025,16482.65967,1,1,1,1,1,1,1
-2773.5,83,1158.4807,1467.561552,742.8470036,850.8842658,447.2898546,447.2898546,1743.364583,16380.36341,1,1,1,1,1,1,1
-2774,83,1158.4807,1467.561552,789.1168814,826.2286626,447.2898546,447.2898546,1762.75506,16562.55291,1,1,1,1,1,1,1
-2774.5,83,1158.4807,1467.561552,808.4404065,851.101539,447.2898546,447.2898546,1802.40269,16935.07548,1,1,1,1,1,1,1
-2775,83,1158.4807,1467.561552,817.1502442,867.6956201,447.2898546,447.2898546,1825.10324,17148.36563,1,1,1,1,1,1,1
-2775.5,83,1158.4807,1467.561552,816.486178,880.6630664,447.2898546,447.2898546,1836.140423,17252.06943,1,1,1,1,1,1,1
-2776,83,1158.4807,1467.561552,841.5372248,897.4384604,447.2898546,447.2898546,1873.702649,17605.02867,1,1,1,1,1,1,1
-2776.5,83,1158.4807,1467.561552,821.4026827,974.044879,447.2898546,447.2898546,1925.148243,18089.01007,1,1,1,1,1,1,1
-2777,83,1158.4807,1467.561552,841.6049547,908.3710677,447.2898546,447.2898546,1883.760003,17699.67222,1,1,1,1,1,1,1
-2777.5,83,1158.4807,1467.561552,791.6285679,849.6664411,447.2898546,447.2898546,1786.033335,16781.27144,1,1,1,1,1,1,1
-2778,83,1158.4807,1467.561552,749.0700603,837.148683,447.2898546,447.2898546,1736.625516,16317.04386,1,1,1,1,1,1,1
-2778.5,83,1158.4807,1467.561552,773.7949861,794.5870931,447.2898546,447.2898546,1720.624198,16166.69785,1,1,1,1,1,1,1
-2779,83,1158.4807,1467.561552,733.4250176,768.1578869,447.2898546,447.2898546,1660.699641,15603.65709,1,1,1,1,1,1,1
-2779.5,83,1158.4807,1467.561552,649.6392438,756.6588163,447.2898546,447.2898546,1575.220951,14800.51333,1,1,1,1,1,1,1
-2780,83,1158.4807,1467.561552,687.6587615,715.0232025,447.2898546,447.2898546,1571.977037,14770.03432,1,1,1,1,1,1,1
-2780.5,83,1158.4807,1467.561552,717.5331236,740.5110307,447.2898546,447.2898546,1621.641495,15236.67334,1,1,1,1,1,1,1
-2781,83,1158.4807,1467.561552,727.5138094,781.404701,447.2898546,447.2898546,1667.280407,15665.48924,1,1,1,1,1,1,1
-2781.5,83,1158.4807,1467.561552,745.1478097,807.2434605,447.2898546,447.2898546,1706.279597,16031.9186,1,1,1,1,1,1,1
-2782,83,1158.4807,1467.561552,742.6108082,870.6572981,447.2898546,447.2898546,1760.890714,16545.03555,1,1,1,1,1,1,1
-2782.5,83,1158.4807,1467.561552,804.5570207,876.4343193,447.2898546,447.2898546,1821.64507,17115.87355,1,1,1,1,1,1,1
-2783,83,1158.4807,1467.561552,797.5967997,887.5314705,447.2898546,447.2898546,1825.357033,17150.75035,1,1,1,1,1,1,1
-2783.5,83,1158.4807,1467.561552,756.0919493,893.4710893,447.2898546,447.2898546,1793.451119,16850.96784,1,1,1,1,1,1,1
-2784,83,1158.4807,1467.561552,746.594403,853.4011814,447.2898546,447.2898546,1748.984792,16433.16964,1,1,1,1,1,1,1
-2784.5,83,1158.4807,1467.561552,756.638472,789.5433627,447.2898546,447.2898546,1700.708391,15979.57273,1,1,1,1,1,1,1
-2785,83,1158.4807,1467.561552,691.7625524,811.7956679,447.2898546,447.2898546,1662.471397,15620.30435,1,1,1,1,1,1,1
-2785.5,83,1158.4807,1467.561552,684.3608953,785.6957105,447.2898546,447.2898546,1632.417127,15337.91932,1,1,1,1,1,1,1
-2786,83,1158.4807,1467.561552,678.49054,777.1741941,447.2898546,447.2898546,1619.507405,15216.6215,1,1,1,1,1,1,1
-2786.5,83,1158.4807,1467.561552,704.3699022,749.4057687,447.2898546,447.2898546,1617.812264,15200.69413,1,1,1,1,1,1,1
-2787,83,1158.4807,1467.561552,714.6174775,743.7855378,447.2898546,447.2898546,1621.962729,15239.69168,1,1,1,1,1,1,1
-2787.5,83,1158.4807,1467.561552,684.1110718,782.1816116,447.2898546,447.2898546,1629.041351,15306.20146,1,1,1,1,1,1,1
-2788,83,1158.4807,1467.561552,703.5391841,775.6010279,447.2898546,447.2898546,1640.566413,15414.4886,1,1,1,1,1,1,1
-2788.5,83,1158.4807,1467.561552,740.8075424,753.8274736,447.2898546,447.2898546,1654.466251,15545.0894,1,1,1,1,1,1,1
-2789,83,1158.4807,1467.561552,727.38477,774.2923239,447.2898546,447.2898546,1660.783451,15604.4443,1,1,1,1,1,1,1
-2789.5,83,1158.4807,1467.561552,727.4601399,775.8596103,447.2898546,447.2898546,1662.258064,15618.29955,1,1,1,1,1,1,1
-2790,83,1158.4807,1467.561552,712.2010118,805.2132605,447.2898546,447.2898546,1674.902496,15737.10473,1,1,1,1,1,1,1
-2790.5,83,1158.4807,1467.561552,734.1390227,805.757398,447.2898546,447.2898546,1695.071189,15926.60651,1,1,1,1,1,1,1
-2791,83,1158.4807,1467.561552,713.872675,836.4349303,447.2898546,447.2898546,1704.410008,16014.35237,1,1,1,1,1,1,1
-2791.5,83,1158.4807,1467.561552,760.8946877,791.5638121,447.2898546,447.2898546,1706.340198,16032.48801,1,1,1,1,1,1,1
-2792,83,1158.4807,1467.561552,764.9695497,801.7420184,447.2898546,447.2898546,1719.12642,16152.62556,1,1,1,1,1,1,1
-2792.5,83,1158.4807,1467.561552,776.7349888,811.9580352,447.2898546,447.2898546,1738.845478,16337.90259,1,1,1,1,1,1,1
-2793,83,1158.4807,1467.561552,778.8068752,810.5949109,447.2898546,447.2898546,1739.481448,16343.87779,1,1,1,1,1,1,1
-2793.5,83,1158.4807,1467.561552,777.5736223,796.8050388,447.2898546,447.2898546,1726.004573,16217.25097,1,1,1,1,1,1,1
-2794,83,1158.4807,1467.561552,737.8098833,800.9527726,447.2898546,447.2898546,1694.054066,15917.04939,1,1,1,1,1,1,1
-2794.5,82.90868821,1157.206,1467.561552,-109.4717568,-133.1966587,446.7977722,446.7977722,371.3068978,3488.737752,1,1,1,1,1,1,1
-2795,82.70181855,1154.318489,1467.561552,-348.3551684,-394.5773592,445.6829445,445.6829445,0,0.0001,1,1,1,1,1,1,1
-2795.5,82.47164194,1151.106347,1467.561552,-360.5098413,-381.9824936,444.4425149,444.4425149,0,0.0001,1,1,1,1,1,1,1
-2796,82.24314935,1147.917315,1467.561552,-343.4340246,-398.5577021,443.2111604,443.2111604,0,0.0001,1,1,1,1,1,1,1
-2796.5,82.01501091,1144.7326,1467.561552,-348.8444972,-392.6098037,441.9817145,441.9817145,0,0.0001,1,1,1,1,1,1,1
-2797,81.78576026,1141.532797,1467.561552,-351.8998594,-388.9419498,440.7462749,440.7462749,0,0.0001,1,1,1,1,1,1,1
-2797.5,81.5539024,1138.296749,1467.561552,-363.0045576,-377.1743871,439.4967849,439.4967849,0,0.0001,1,1,1,1,1,1,1
-2798,81.31887424,1135.016495,1467.561552,-343.2853735,-396.2327529,438.23021,438.23021,0,0.0001,1,1,1,1,1,1,1
-2798.5,81.08095189,1131.69546,1467.561552,-336.1830206,-402.680761,436.9480383,436.9480383,0,0.0001,1,1,1,1,1,1,1
-2799,80.84088814,1128.345119,1467.561552,-350.0634925,-388.1933959,435.6543265,435.6543265,0,0.0001,1,1,1,1,1,1,1
-2799.5,80.59987669,1124.981131,1467.561552,-359.740875,-377.9531667,434.3555076,434.3555076,0,0.0001,1,1,1,1,1,1,1
-2800,80.35898043,1121.618491,1467.561552,-355.5806971,-381.5887895,433.0573093,433.0573093,0,0.0001,1,1,1,1,1,1,1
-2800.5,80.118968,1118.268508,1467.561552,-347.9887704,-388.6920665,431.7638741,431.7638741,0,0.0001,1,1,1,1,1,1,1
-2801,79.88137149,1114.95168,1467.561552,-354.4589208,-381.8245853,430.4834583,430.4834583,0,0.0001,1,1,1,1,1,1,1
-2801.5,79.64828922,1111.698954,1467.561552,-351.3662257,-384.6283379,429.2273699,429.2273699,0,0.0001,1,1,1,1,1,1,1
-2802,79.42066054,1108.5218,1467.561552,-349.4516336,-386.236016,428.0006711,428.0006711,0,0.0001,1,1,1,1,1,1,1
-2802.5,79.19695093,1105.399304,1467.561552,-352.0520459,-383.2521869,426.7950924,426.7950924,0,0.0001,1,1,1,1,1,1,1
-2803,78.97557406,1102.308986,1467.561552,-349.9698333,-384.9169018,425.6020848,425.6020848,0,0.0001,1,1,1,1,1,1,1
-2803.5,78.75543745,1099.237143,1467.561552,-351.62823,-382.8123614,424.415761,424.415761,0,0.0001,1,1,1,1,1,1,1
-2804,78.5358464,1096.171773,1467.561552,-355.065973,-378.9006272,423.2323773,423.2323773,0,0.0001,1,1,1,1,1,1,1
-2804.5,78.31560234,1093.097495,1467.561552,-358.4715894,-374.9650481,422.0454745,422.0454745,0,0.0001,1,1,1,1,1,1,1
-2805,78.0939111,1090.003505,1467.561552,-345.3830358,-387.5180213,420.8507728,420.8507728,0,0.0001,1,1,1,1,1,1,1
-2805.5,77.87152261,1086.899104,1467.561552,-348.7997692,-383.6243224,419.6523136,419.6523136,0,0.0001,1,1,1,1,1,1,1
-2806,77.64925824,1083.796713,1467.561552,-362.2783479,-369.6848006,418.4545232,418.4545232,0,0.0001,1,1,1,1,1,1,1
-2806.5,77.42658051,1080.689456,1467.561552,-360.2713208,-371.1767514,417.2545053,417.2545053,0,0.0001,1,1,1,1,1,1,1
-2807,77.20258766,1077.562701,1467.561552,-352.707531,-378.2019033,416.0474001,416.0474001,0,0.0001,1,1,1,1,1,1,1
-2807.5,76.97731049,1074.4184,1467.561552,-337.0326835,-393.3697297,414.8333737,414.8333737,0,0.0001,1,1,1,1,1,1,1
-2808,76.75146326,1071.266572,1467.561552,-356.4546476,-373.4632837,413.6162752,413.6162752,0,0.0001,1,1,1,1,1,1,1
-2808.5,76.5249735,1068.104987,1467.561552,-353.9131211,-375.4926203,412.3957141,412.3957141,0,0.0001,1,1,1,1,1,1,1
-2809,76.29714317,1064.924939,1467.561552,-344.4768445,-384.3907187,411.1679286,411.1679286,0,0.0001,1,1,1,1,1,1,1
-2809.5,76.06821162,1061.729683,1467.561552,-342.3375591,-386.0402262,409.9342086,409.9342086,0,0.0001,1,1,1,1,1,1,1
-2810,75.83958083,1058.53871,1467.561552,-358.1902521,-369.759714,408.7021094,408.7021094,0,0.0001,1,1,1,1,1,1,1
-2810.5,75.61243359,1055.368168,1467.561552,-339.7614013,-387.8027865,407.4780052,407.4780052,0,0.0001,1,1,1,1,1,1,1
-2811,75.38761472,1052.230309,1467.561552,-354.8427609,-372.3742344,406.2664485,406.2664485,0,0.0001,1,1,1,1,1,1,1
-2811.5,75.16585215,1049.135099,1467.561552,-347.518349,-379.3871194,405.0713624,405.0713624,0,0.0001,1,1,1,1,1,1,1
-2812,74.94817066,1046.096654,1467.561552,-346.8284245,-379.8285833,403.8982694,403.8982694,0,0.0001,1,1,1,1,1,1,1
-2812.5,74.73596884,1043.135107,1467.561552,-346.0673852,-380.415028,402.7547065,402.7547065,0,0.0001,1,1,1,1,1,1,1
-2813,74.53270218,1040.298034,1467.561552,-350.3852967,-376.1538984,401.6592954,401.6592954,0,0.0001,1,1,1,1,1,1,1
-2813.5,74.34288869,1037.648164,1467.561552,-341.9400427,-384.8312738,400.636384,400.636384,0,0.0001,1,1,1,1,1,1,1
-2814,74.17369423,1035.286488,1467.561552,-346.1779066,-381.2921282,399.7245892,399.7245892,0,0.0001,1,1,1,1,1,1,1
-2814.5,74.03337942,1033.328351,1467.561552,-360.2035533,-368.2601138,398.9684279,398.9684279,0,0.0001,1,1,1,1,1,1,1
-2815,73.92702782,1031.843835,1467.561552,-362.2055456,-367.4806023,398.3952955,398.3952955,0,0.0001,1,1,1,1,1,1,1
-2815.5,73.85788429,1030.879191,1467.561552,-353.9630172,-377.1202096,398.0226786,398.0226786,0,0.0000277889,1,1,1,1,1,1,1
-2816,73.82903971,1030.476328,1467.561552,-335.8167187,-396.8787984,397.8672342,397.8672342,0,0,1,1,1,1,1,1,1
-2816.5,73.84275397,1030.667922,1467.561552,-357.0264189,-377.4124202,397.9411408,397.9411408,0,0,1,1,1,1,1,1,1
-2817,73.8916483,1031.350398,1467.561552,-362.4914053,-373.1217015,398.204634,398.204634,0,0,1,1,1,1,1,1,1
-2817.5,73.96182941,1032.329827,1467.561552,-342.1877928,-394.1758787,398.5828425,398.5828425,0,0,1,1,1,1,1,1,1
-2818,74.04523206,1033.493801,1467.561552,-356.6433491,-380.3211786,399.0323022,399.0323022,0,0,1,1,1,1,1,1,1
-2818.5,74.11275998,1034.436618,1467.561552,-743.0721705,-869.5590446,399.3962125,399.3962125,0,0,1,1,1,1,1,1,1
-2819,73.48355605,1025.653663,1467.561552,-4659.265557,-5298.741873,396.0054109,396.0054109,0,0,1,1,1,1,1,1,1
-2819.5,72.58353618,1013.091853,1467.561552,-4630.658805,-5035.30294,391.1551728,391.1551728,0,0,1,1,1,1,1,1,1
-2820,71.6835311,1000.529503,1467.561552,-4436.978034,-4939.871968,386.3050145,386.3050145,0,0,1,1,1,1,1,1,1
-2820.5,70.78357285,987.968134,1467.561552,-4291.557141,-4902.421006,381.4551086,381.4551086,0,0,1,1,1,1,1,1,1
-2821,69.88354689,975.4062747,1467.561552,-4370.143241,-4865.035129,376.6048377,376.6048377,0,0,1,1,1,1,1,1,1
-2821.5,68.98358663,962.8453931,1467.561552,-4496.494273,-5209.572788,371.7549209,371.7549209,0,0,1,1,1,1,1,1,1
-2822,68.08361045,950.2834258,1467.561552,-4628.697392,-5562.424064,366.9049183,366.9049183,0,0,1,1,1,1,1,1,1
-2822.5,67.18356305,937.7207411,1467.561552,-4743.041814,-5654.970145,362.0545319,362.0545319,0,0,1,1,1,1,1,1,1
-2823,66.28356834,925.1589995,1467.561552,-5096.127372,-5365.86978,357.2044294,357.2044294,0,0,1,1,1,1,1,1,1
-2823.5,65.3835,912.5965081,1467.561552,-4883.132882,-5432.863168,352.3539302,352.3539302,0,0,1,1,1,1,1,1,1
-2824,64.4835,900.034966,1467.561552,-4847.445585,-5019.504405,347.5037993,347.5037993,0,0,1,1,1,1,1,1,1
-2824.5,63.5834975,887.4724564,1467.561552,-4309.231406,-4887.346264,342.6536548,342.6536548,0,0,1,1,1,1,1,1,1
-2825,62.68349887,874.9111418,1467.561552,-4259.852515,-4393.321526,337.8035313,337.8035313,0,0,1,1,1,1,1,1,1
-2825.5,61.78361567,862.3504661,1467.561552,-3685.763856,-4148.264526,332.9540297,332.9540297,0,0,1,1,1,1,1,1,1
-2826,60.8816437,849.7618028,1467.561552,-3187.347395,-3516.638049,328.0932718,328.0932718,0,0,1,1,1,1,1,1,1
-2826.5,59.95865574,836.8785867,1467.561552,-2768.092683,-2974.823605,323.1192579,323.1192579,0,0,1,1,1,1,1,1,1
-2827,58.97162396,823.1020294,1467.561552,-3017.048912,-3039.941824,317.8001097,317.8001097,0,0,1,1,1,1,1,1,1
-2827.5,57.88979345,808.0020645,1467.561552,-3200.593219,-3454.425649,311.9700879,311.9700879,0,0,1,1,1,1,1,1,1
-2828,56.70193289,791.4224573,1467.561552,-3960.101275,-4114.580129,305.5686665,305.5686665,0,0,1,1,1,1,1,1,1
-2828.5,55.39769889,773.2188602,1467.561552,-5182.349875,-5324.444117,298.5401046,298.5401046,0,0,1,1,1,1,1,1,1
-2829,53.96543606,753.2285528,1467.561552,-6276.214648,-7034.740677,290.8215909,290.8215909,0,0,1,1,1,1,1,1,1
-2829.5,52.393662,731.2892382,1467.561552,-7783.356802,-7831.563815,282.3512465,282.3512465,0,0,1,1,1,1,1,1,1
-2830,50.69234392,707.5432006,1467.561552,-7721.006287,-9423.177988,273.1827848,273.1827848,0,0,1,1,1,1,1,1,1
-2830.5,48.93335394,682.9924048,1467.561552,-8446.304292,-9156.477622,263.7035273,263.7035273,0,0,1,1,1,1,1,1,1
-2831,47.17500691,717.3038642,1467.561552,-8349.511775,-9223.896591,254.2277347,254.2277347,361.1425035,3393.235011,1,1,1,1,1,1,1
-2831.5,45.41633373,807.9430337,1467.561552,-8393.691354,-9101.102382,244.7501844,244.7501844,402.146807,3778.50457,1,1,1,1,1,1,1
-2832,43.65765866,810.1097814,1467.561552,-8355.067909,-9398.180109,235.272624,235.272624,25.47700486,239.3777037,1,1,1,1,1,1,1
-2832.5,41.89889861,751.2335258,1467.561552,-8949.612871,-9038.798072,225.7946056,225.7946056,0,0,1,1,1,1,1,1,1
-2833,40.14018528,717.1343143,1467.561552,-8790.679465,-9275.903339,216.316839,216.316839,0,0,1,1,1,1,1,1,1
-2833.5,38.38152809,685.7133133,1467.561552,-8542.556004,-9393.271619,206.8393749,206.8393749,0,0,1,1,1,1,1,1,1
-2834,36.62288588,704.1554682,1467.561552,-8893.75356,-9028.969881,197.3619916,197.3619916,299.4241158,2813.338801,1,1,1,1,1,1,1
-2834.5,34.86408865,776.7509721,1467.561552,-8495.964779,-9224.677086,187.8837728,187.8837728,372.3796319,3498.817047,1,1,1,1,1,1,1
-2835,33.10559348,775.4746253,1467.561552,-8054.152238,-9044.437521,178.4071818,178.4071818,75.90248588,713.167143,1,1,1,1,1,1,1
-2835.5,31.3469872,709.2647504,1467.561552,-7944.021379,-8555.416887,168.9299922,168.9299922,0,0,1,1,1,1,1,1,1
-2836,29.58830744,660.7712098,1467.561552,-7571.087283,-8529.353588,159.4524064,159.4524064,0,0,1,1,1,1,1,1,1
-2836.5,27.82963216,668.5033153,1467.561552,-7696.584695,-8246.375324,149.9748449,149.9748449,248.3596794,2333.546039,1,1,1,1,1,1,1
-2837,26.07087249,736.0189814,1467.561552,-7840.536205,-8504.437597,140.4968285,140.4968285,364.4046288,3423.884943,1,1,1,1,1,1,1
-2837.5,24.31221975,741.7092207,1467.561552,-8354.481429,-8875.893893,131.0193884,131.0193884,132.3668969,1243.697216,1,1,1,1,1,1,1
-2838,22.55371621,711.8050481,1467.561552,-8928.731176,-9179.16568,121.5427523,121.5427523,221.8600389,2084.559704,1,1,1,1,1,1,1
-2838.5,20.79516207,754.4070231,1467.561552,-9023.288044,-9635.749826,112.0658436,112.0658436,379.0348025,3561.347764,1,1,1,1,1,1,1
-2839,19.03645694,766.39874,1467.561552,-8698.447913,-10130.2526,102.5881212,102.5881212,186.3506891,1750.920108,1,1,1,1,1,1,1
-2839.5,17.27775211,713.3472978,1467.561552,-8606.047409,-10222.02944,93.11040033,93.11040033,166.3990487,1563.457604,1,1,1,1,1,1,1
-2840,15.51901738,721.5142199,1467.561552,-8912.812993,-9915.802151,83.63251842,83.63251842,359.5689701,3378.449911,1,1,1,1,1,1,1
-2840.5,13.76031121,769.9499683,1467.561552,-9060.958375,-9760.271154,74.15479038,74.15479038,237.3593423,2230.188743,1,1,1,1,1,1,1
-2841,12.00174068,765.0172812,1467.561552,-8905.32416,-9842.726703,64.6777933,64.6777933,114.4739072,1075.577853,1,1,1,1,1,1,1
-2841.5,10.24298498,788.5172249,1467.561552,-8808.339432,-9735.533056,55.19979834,55.19979834,404.3801523,3799.488831,1,1,1,1,1,1,1
-2842,8.491844174,870.0288428,1467.561552,-8722.598332,-9649.207808,45.76284031,45.76284031,431.1692648,4051.194749,1,1,1,1,1,1,1
-2842.5,6.790636224,886.0756859,1467.561552,-8574.685732,-9551.161357,36.59497216,36.59497216,398.7279065,3746.381173,1,1,1,1,1,1,1
-2843,5.089428274,902.1225291,1467.561552,-8426.773132,-9453.114905,27.42710401,27.42710401,366.2865483,3441.567598,1,1,1,1,1,1,1
-2843.5,3.536298062,900.2600214,1467.561552,-7609.683904,-8581.132913,19.05723188,19.05723188,319.3724846,3000.770837,1,1,1,1,1,1,1
-2844,2.36168235,852.6178499,1467.561552,-5082.053563,-5730.826358,12.72718741,12.72718741,235.4634683,2212.375522,1,1,1,1,1,1,1
-2844.5,1.187066638,804.9756785,1467.561552,-2554.423222,-2880.519804,6.39714294,6.39714294,151.5544519,1423.980206,1,1,1,1,1,1,1
-2845,0.012450927,757.333507,1467.561552,-26.79288161,-30.21324948,0.067098471,0.067098471,67.64543557,635.5848903,1,1,1,1,1,1,1
-2845.5,0,679.245441,1467.561552,0,0,0,0,150.8755795,1417.60168,1,1,1,1,1,1,1
-2846,0,600.831191,1467.561552,0,0,0,0,235.8963795,2216.44318,1,1,1,1,1,1,1
-2846.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2847,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2847.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2848,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2848.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2849,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2849.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2850,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2850.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2851,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2851.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2852,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2852.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2853,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2853.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2854,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2854.5,0.73773188,619.0616285,1467.561552,4165.033408,4792.027684,3.975662477,3.975662477,868.0924136,8156.451769,1,1,1,1,1,1,1
-2855,1.781058318,641.338959,1467.561552,7225.787626,8228.119801,9.598184532,9.598184532,1328.321585,12480.68842,1,1,1,1,1,1,1
-2855.5,3.580875474,665.7736,1467.561552,7428.795397,8026.693073,19.29746109,19.29746109,1335.342594,12546.65682,1,1,1,1,1,1,1
-2856,5.380929505,671.4196325,1467.561552,7661.960785,7796.27851,28.99801417,28.99801417,1361.793299,12795.18322,1,1,1,1,1,1,1
-2856.5,7.181089837,732.5069116,1467.561552,7631.626854,7943.121828,38.69914011,38.69914011,1649.959433,15502.74419,1,1,1,1,1,1,1
-2857,8.981098255,882.4964135,1467.561552,7791.768541,8109.79991,48.39944738,48.39944738,2090.088872,19638.12686,1,1,1,1,1,1,1
-2857.5,10.78111153,1059.371065,1467.561552,7732.22042,8439.11501,58.09978084,58.09978084,2495.193256,23444.94665,1,1,1,1,1,1,1
-2858,12.58108535,1236.237351,1467.561552,7523.538414,8609.459184,67.79990166,67.79990166,2868.764796,26955.58819,1,1,1,1,1,1,1
-2858.5,14.21360619,1396.645893,1467.561552,6040.351485,6700.634832,76.5976126,76.5976126,2600.97952,24442.87564,1,1,1,1,1,1,1
-2859,14.96921467,1365.223323,1467.561552,-129.5345619,-117.451108,80.66961267,80.66961267,117.1681895,1101.109336,1,1,1,1,1,1,1
-2859.5,15,1159.127955,1467.561552,-353.565388,-404.7535584,80.83551589,80.83551589,0,0.00000444,1,1,1,1,1,1,1
-2860,15,991.3481621,1467.561552,-286.4663686,-317.3254301,80.83551589,80.83551589,91.17551608,856.6695032,1,1,1,1,1,1,1
-2860.5,15,923.9894515,1467.561552,-207.6602867,-242.9110321,80.83551589,80.83551589,311.1196747,2923.229021,1,1,1,1,1,1,1
-2861,15,921.2015,1467.561552,-98.92309686,-102.3147319,80.83551589,80.83551589,353.9065661,3325.246742,1,1,1,1,1,1,1
-2861.5,15,921.2015,1467.561552,43.06348432,45.90111456,80.83551589,80.83551589,393.9192257,3701.199222,1,1,1,1,1,1,1
-2862,14.9701196,870.6290669,1467.561552,-108.4075739,-110.5042369,80.67448939,80.67448939,170.8558746,1605.333667,1,1,1,1,1,1,1
-2862.5,14.89984767,767.5393365,1467.561552,-103.1040071,-117.9046668,80.29579152,80.29579152,138.6643259,1302.867161,1,1,1,1,1,1,1
-2863,14.92623369,712.2152445,1467.561552,907.9379728,983.2768855,80.43798673,80.43798673,535.5173036,5031.631338,1,1,1,1,1,1,1
-2863.5,14.99678216,709.7439,1467.561552,348.7799756,405.5768861,80.81817483,80.81817483,381.617074,3585.61085,1,1,1,1,1,1,1
-2864,15,709.7439,1467.561552,388.7002594,422.3805983,80.83551589,80.83551589,390.1052106,3665.363318,1,1,1,1,1,1,1
-2864.5,15,709.7439,1467.561552,483.6310483,504.1108508,80.83551589,80.83551589,413.2472205,3882.802012,1,1,1,1,1,1,1
-2865,15,709.7439,1467.561552,486.0019684,546.16353,80.83551589,80.83551589,418.9769759,3936.637727,1,1,1,1,1,1,1
-2865.5,15,709.7439,1467.561552,460.4755511,560.7633017,80.83551589,80.83551589,417.5722912,3923.439658,1,1,1,1,1,1,1
-2866,15,709.7439,1467.561552,432.3856602,508.5683179,80.83551589,80.83551589,407.2455099,3826.410738,1,1,1,1,1,1,1
-2866.5,15,709.7439,1467.561552,440.7682288,488.479009,80.83551589,80.83551589,405.7382987,3812.249247,1,1,1,1,1,1,1
-2867,15,709.7439,1467.561552,519.3403959,531.4984672,80.83551589,80.83551589,421.3791541,3959.208145,1,1,1,1,1,1,1
-2867.5,15,709.7439,1467.561552,616.8956254,679.8568975,80.83551589,80.83551589,453.0102928,4256.409571,1,1,1,1,1,1,1
-2868,15,709.7439,1467.561552,778.9003217,894.9052856,80.83551589,80.83551589,504.5089328,4740.282068,1,1,1,1,1,1,1
-2868.5,15,709.7439,1467.561552,943.2327992,985.5622903,80.83551589,80.83551589,545.9582196,5129.732448,1,1,1,1,1,1,1
-2869,15,709.7439,1467.561552,948.5373134,1129.534735,80.83551589,80.83551589,570.4980657,5360.305081,1,1,1,1,1,1,1
-2869.5,15,709.7439,1467.561552,1055.258055,1063.587693,80.83551589,80.83551589,577.2019694,5423.293655,1,1,1,1,1,1,1
-2870,15,709.7439,1467.561552,1017.994945,1078.051923,80.83551589,80.83551589,573.4547024,5388.084679,1,1,1,1,1,1,1
-2870.5,15,709.7439,1467.561552,1061.890556,1085.221964,80.83551589,80.83551589,581.8489235,5466.955687,1,1,1,1,1,1,1
-2871,15,709.7439,1467.561552,1021.07352,1214.653823,80.83551589,80.83551589,596.4162812,5603.827861,1,1,1,1,1,1,1
-2871.5,15,709.7439,1467.561552,1128.474303,1300.490737,80.83551589,80.83551589,628.1823424,5902.296652,1,1,1,1,1,1,1
-2872,15,709.7439,1467.561552,1242.180158,1429.17502,80.83551589,80.83551589,670.6224622,6301.057286,1,1,1,1,1,1,1
-2872.5,15,709.7439,1467.561552,1515.188558,1553.016008,80.83551589,80.83551589,743.0128294,6981.225026,1,1,1,1,1,1,1
-2873,15,709.7439,1467.561552,1567.773343,1902.464961,80.83551589,80.83551589,815.8091334,7665.206992,1,1,1,1,1,1,1
-2873.5,15,709.7439,1467.561552,1673.514743,1930.437531,80.83551589,80.83551589,837.1677965,7865.888691,1,1,1,1,1,1,1
-2874,15,709.7439,1467.561552,1803.924449,1815.142265,80.83551589,80.83551589,839.531893,7888.101729,1,1,1,1,1,1,1
-2874.5,15,709.7439,1467.561552,1652.712785,1926.166606,80.83551589,80.83551589,833.244611,7829.027244,1,1,1,1,1,1,1
-2875,15,709.7439,1467.561552,1635.279102,1847.417251,80.83551589,80.83551589,818.194736,7687.621657,1,1,1,1,1,1,1
-2875.5,15,709.7439,1467.561552,1605.6247,1742.6442,80.83551589,80.83551589,794.1362752,7461.572344,1,1,1,1,1,1,1
-2876,15,709.7439,1467.561552,1451.517764,1665.238884,80.83551589,80.83551589,751.8799941,7064.539049,1,1,1,1,1,1,1
-2876.5,15,709.7439,1467.561552,1381.614774,1445.04389,80.83551589,80.83551589,698.9048051,6566.792964,1,1,1,1,1,1,1
-2877,15,709.7439,1467.561552,1186.405776,1332.545799,80.83551589,80.83551589,643.2025574,6043.423935,1,1,1,1,1,1,1
-2877.5,14.12038212,761.9194012,1467.561552,-6269.804178,-7215.683365,76.09522491,76.09522491,420.7145771,3952.964132,1,1,1,1,1,1,1
-2878,12.40554221,856.968541,1467.561552,-7053.405509,-8115.208489,66.85389365,66.85389365,443.7350506,4169.260581,1,1,1,1,1,1,1
-2878.5,10.62299809,834.1534214,1467.561552,-7616.530707,-7973.446832,57.24770205,57.24770205,99.09639809,931.0932372,1,1,1,1,1,1,1
-2879,8.840635931,713.3077816,1467.561552,-7761.886381,-8254.810444,47.64249109,47.64249109,84.73512922,796.1571645,1,1,1,1,1,1,1
-2879.5,7.101367982,647.6337659,1467.561552,-7661.075642,-8299.498612,38.26951629,38.26951629,150.9974068,1418.74651,1,1,1,1,1,1,1
-2880,5.385061206,624.2150019,1467.561552,-7510.219908,-8136.071567,29.02028005,29.02028005,193.1803926,1815.090851,1,1,1,1,1,1,1
-2880.5,3.66875443,600.796238,1467.561552,-7359.364174,-7972.644521,19.7710438,19.7710438,235.3633785,2211.435192,1,1,1,1,1,1,1
-2881,2.494424574,0,1467.561552,-5081.039416,-5504.459367,13.44253982,13.44253982,0,0,1,1,1,1,1,1,1
-2881.5,1.339170511,0,1467.561552,-2727.834796,-2955.154362,7.21683594,7.21683594,0,0,1,1,1,1,1,1,1
-2882,0.183916447,0,1467.561552,-374.6301755,-405.8493568,0.991132058,0.991132058,0,0,1,1,1,1,1,1,1
-2882.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2883,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2883.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2884,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2884.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2885,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2885.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2886,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2886.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2887,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2887.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2888,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2888.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2889,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2889.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2890,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2890.5,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2891,0,0,1467.561552,0,0,0,0,0,0,1,1,1,1,1,1,1
-2891.5,0.626856982,616.1968261,1467.561552,4278.186788,4634.702354,3.378153836,3.378153836,856.4332173,8046.903828,1,1,1,1,1,1,1
-2892,1.513294593,636.8861414,1467.561552,8708.735571,9388.60985,8.155196609,8.155196609,1495.206614,14048.7121,1,1,1,1,1,1,1
-2892.5,3.313399137,665.7736,1467.561552,8860.620401,9238.212598,17.85602191,17.85602191,1497.208469,14067.52087,1,1,1,1,1,1,1
-2893,5.113327818,669.1646753,1467.561552,8617.823066,9483.581438,27.55589947,27.55589947,1518.982784,14272.10944,1,1,1,1,1,1,1
-2893.5,6.913229675,716.9928482,1467.561552,8570.21747,9615.948501,37.25563248,37.25563248,1783.630365,16758.69414,1,1,1,1,1,1,1
-2894,8.713268118,856.1783259,1467.561552,8769.708931,9602.548825,46.95610156,46.95610156,2270.440943,21332.68515,1,1,1,1,1,1,1
-2894.5,10.51326506,1033.05179,1467.561552,8801.707057,9728.202536,56.65634697,56.65634697,2689.877651,25273.66847,1,1,1,1,1,1,1
-2895,12.31325175,1209.920028,1467.561552,8695.601364,10029.78689,66.35653718,66.35653718,3136.146275,29468.30747,1,1,1,1,1,1,1
-2895.5,14.1134415,1386.806849,1467.561552,9090.405207,10024.02298,76.05782165,76.05782165,3635.922057,34167.65394,1,1,1,1,1,1,1
-2896,15.91326612,1563.659175,1467.561552,9269.205192,10211.60046,85.75713844,85.75713844,4136.479084,38871.80527,1,1,1,1,1,1,1
-2896.5,16.77941091,1557.323942,1467.561552,1159.452038,1284.013066,90.42482249,90.42482249,578.5883887,5437.167173,1,1,1,1,1,1,1
-2897,16.56606553,1352.279341,1467.561552,-113.0128253,-118.4360535,89.27509687,89.27509687,0,0,1,1,1,1,1,1,1
-2897.5,16.97676124,1063.361038,1467.561552,7027.314996,7767.962849,91.48835022,91.48835022,2203.924538,20707.70776,1,1,1,1,1,1,1
-2898,18.19366938,882.0283415,1467.561552,6753.168959,7333.199705,98.04631001,98.04631001,3052.731679,28682.95767,1,1,1,1,1,1,1
-2898.5,19.40720557,918.2758398,1467.561552,7392.752901,7569.049218,104.5860983,104.5860983,3575.605185,33595.79055,1,1,1,1,1,1,1
-2899,20.73114004,980.9189065,1467.561552,7683.634258,8472.413516,111.7208267,111.7208267,4099.199969,38515.39997,1,1,1,1,1,1,1
-2899.5,22.16700948,1048.857809,1467.561552,7844.923469,9023.475877,119.4587765,119.4587765,4546.613835,42720.39374,1,1,1,1,1,1,1
-2900,23.67385072,1120.159293,1467.561552,8576.94632,8607.009341,127.5791958,127.5791958,4916.482052,46196.35552,1,1,1,1,1,1,1
-2900.5,25.22731187,1193.663652,1467.561552,8236.531978,9115.743406,135.9508513,135.9508513,5255.072201,49378.53325,1,1,1,1,1,1,1
-2901,26.7993626,1268.046581,1467.561552,8236.395972,9251.638051,144.4226868,144.4226868,5643.760071,53031.0302,1,1,1,1,1,1,1
-2901.5,28.35751339,1341.772479,1467.561552,8455.026023,9159.611524,152.8196149,152.8196149,6031.78704,56677.08148,1,1,1,1,1,1,1
-2902,29.89311735,1414.430505,1467.561552,8413.937036,9224.263926,161.0950375,161.0950375,6377.208048,59922.59619,1,1,1,1,1,1,1
-2902.5,31.43269035,1487.278659,1467.561552,8009.925881,9209.904047,169.3918494,169.3918494,6560.885546,61647.43747,1,1,1,1,1,1,1
-2903,32.98289787,1560.625694,1467.561552,8117.843807,8548.673161,177.745971,177.745971,6687.200199,62832.81051,1,1,1,1,1,1,1
-2903.5,34.51224544,1632.990105,1467.561552,7567.358518,8510.656329,185.9876777,185.9876777,6775.531223,63662.67641,1,1,1,1,1,1,1
-2904,36.00449747,1703.599225,1467.561552,7168.237904,8303.774472,194.0294752,194.0294752,6826.567628,64143.36665,1,1,1,1,1,1,1
-2904.5,37.25763753,1730.082153,1467.561552,5408.014609,5627.007412,200.78269,200.78269,5065.423458,47596.07882,1,1,1,1,1,1,1
-2905,37.70336438,1595.18597,1467.561552,-101.9598165,-109.9312362,203.1847274,203.1847274,0,0,1,1,1,1,1,1,1
-2905.5,37.71774285,1359.979179,1467.561552,978.7059726,1089.284737,203.2622134,203.2622134,834.4482106,7840.491424,1,1,1,1,1,1,1
-2906,38.23477174,1177.207477,1467.561552,4065.022585,4492.919699,206.0484999,206.0484999,3437.541209,32299.40919,1,1,1,1,1,1,1
-2906.5,39.20408776,1121.750524,1467.561552,4570.782564,5051.917571,211.2721773,211.2721773,4458.039316,41888.87078,1,1,1,1,1,1,1
-2907,40.30394203,1153.220363,1467.561552,4911.394438,5530.17567,217.1993298,217.1993298,4987.788325,46867.04324,1,1,1,1,1,1,1
-2907.5,41.45993233,1186.297301,1467.561552,4953.459666,5814.930912,223.4290012,223.4290012,5288.703901,49694.29099,1,1,1,1,1,1,1
-2908,42.61547154,1219.360938,1467.561552,5090.562279,5819.160503,229.6562418,229.6562418,5515.674278,51827.25326,1,1,1,1,1,1,1
-2908.5,43.74479972,1251.673929,1467.561552,5270.261561,5709.450024,235.7422302,235.7422302,5708.803897,53642.52793,1,1,1,1,1,1,1
-2909,44.84930769,1283.276207,1467.561552,5210.874803,5808.029244,241.6944616,241.6944616,5880.522037,55256.66044,1,1,1,1,1,1,1
-2909.5,45.93203795,1314.257231,1467.561552,5101.687087,5944.905484,247.5293323,247.5293323,6041.814438,56772.84135,1,1,1,1,1,1,1
-2910,46.99237029,1344.596729,1467.561552,5167.746487,5900.704959,253.2434997,253.2434997,6196.359846,58225.41278,1,1,1,1,1,1,1
-2910.5,48.04549499,1374.729891,1467.561552,5144.024878,5938.311866,258.9188249,258.9188249,6346.527869,59636.42558,1,1,1,1,1,1,1
-2911,49.10377799,1405.01073,1467.561552,5009.742538,6049.044294,264.6219484,264.6219484,6473.316031,60827.53846,1,1,1,1,1,1,1
-2911.5,50.15905432,1435.204499,1467.561552,5111.261645,5850.054879,270.3088689,270.3088689,6550.973827,61556.72466,1,1,1,1,1,1,1
-2912,51.19037823,1464.713508,1467.561552,5125.651206,5703.802016,275.8667089,275.8667089,6600.64866,62022.7193,1,1,1,1,1,1,1
-2912.5,52.18417383,1493.148836,1467.561552,4878.822567,5810.908252,281.2223076,281.2223076,6639.949603,62391.14771,1,1,1,1,1,1,1
-2913,53.13990958,1520.495796,1467.561552,4975.274838,5575.835636,286.3728004,286.3728004,6674.982004,62719.46236,1,1,1,1,1,1,1
-2913.5,54.05697653,1546.736513,1467.561552,4953.819145,5463.117725,291.3149057,291.3149057,6707.573964,63024.86642,1,1,1,1,1,1,1
-2914,54.93799079,1571.945541,1467.561552,4811.157056,5474.878613,296.0627218,296.0627218,6738.157641,63311.42341,1,1,1,1,1,1,1
-2914.5,55.79129516,1596.360415,1467.561552,4746.271581,5410.482764,300.6612085,300.6612085,6764.809204,63561.34529,1,1,1,1,1,1,1
-2915,56.62456495,1620.202286,1467.561552,4830.756537,5197.883241,305.151728,305.151728,6783.779746,63739.7156,1,1,1,1,1,1,1
-2915.5,57.44876334,1643.786329,1467.561552,4711.725579,5186.704281,309.5933615,309.5933615,6797.775729,63871.65139,1,1,1,1,1,1,1
-2916,58.28141176,1667.610626,1467.561552,4536.458069,5227.002457,314.0805325,314.0805325,6811.557054,64001.57946,1,1,1,1,1,1,1
-2916.5,59.1298196,1691.88566,1467.561552,4595.898082,5030.128954,318.6526315,318.6526315,6825.356143,64131.68637,1,1,1,1,1,1,1
-2917,59.98887746,1716.466363,1467.561552,4506.993937,4980.648385,323.2821238,323.2821238,6839.147047,64261.72509,1,1,1,1,1,1,1
-2917.5,60.85317444,1741.196498,1467.561552,4346.843903,5001.862664,327.93985,327.93985,6852.844112,64390.88717,1,1,1,1,1,1,1
-2918,61.71672248,1765.906038,1467.561552,4377.914452,4832.752991,332.59354,332.59354,6866.247302,64517.29166,1,1,1,1,1,1,1
-2918.5,62.57183062,1790.373883,1467.561552,4419.627174,4647.834064,337.2017472,337.2017472,6873.149288,64582.61027,1,1,1,1,1,1,1
-2919,63.16367834,1739.996516,1467.561552,2023.149131,2146.255439,340.3912349,340.3912349,3261.017469,30641.81109,1,1,1,1,1,1,1
-2919.5,63.26798052,1555.282,1467.561552,-86.11733705,-95.18231989,340.953323,340.953323,0,0,1,1,1,1,1,1,1
-2920,63.28584635,1329.213442,1467.561552,1266.359474,1288.588921,341.0496025,341.0496025,1693.847525,15915.88918,1,1,1,1,1,1,1
-2920.5,63.59414643,1182.427747,1467.561552,2649.886695,2829.443749,342.7110423,342.7110423,3855.137484,36224.22244,1,1,1,1,1,1,1
-2921,64.08611438,1144.94512,1467.561552,2911.938412,3328.526042,345.3622745,345.3622745,4712.766358,44282.88297,1,1,1,1,1,1,1
-2921.5,64.63303826,1154.716319,1467.561552,3163.314603,3515.080555,348.3096661,348.3096661,5107.493924,47991.40322,1,1,1,1,1,1,1
-2922,65.20822714,1164.992631,1467.561552,3285.521918,3565.760649,351.4093788,351.4093788,5305.746495,49853.7818,1,1,1,1,1,1,1
-2922.5,65.79573162,1175.488862,1467.561552,3286.872794,3632.859404,354.5754606,354.5754606,5414.76747,50878.0722,1,1,1,1,1,1,1
-2923,66.3894552,1186.095705,1467.561552,3261.671318,3685.595681,357.7750574,357.7750574,5482.964398,51518.91142,1,1,1,1,1,1,1
-2923.5,66.98579745,1196.749735,1467.561552,3313.219147,3645.797468,360.9887663,360.9887663,5536.054243,52017.86378,1,1,1,1,1,1,1
-2924,67.58133477,1207.389502,1467.561552,3416.925302,3547.93391,364.1981374,364.1981374,5588.215138,52508.16054,1,1,1,1,1,1,1
-2924.5,68.17375669,1217.973546,1467.561552,3370.846799,3597.683712,367.3907195,367.3907195,5641.543256,53009.46881,1,1,1,1,1,1,1
-2925,68.76250114,1228.491877,1467.561552,3232.152904,3739.124062,370.5634836,370.5634836,5693.688984,53499.66872,1,1,1,1,1,1,1
-2925.5,69.34972446,1238.982679,1467.561552,3272.627289,3700.697281,373.7280503,373.7280503,5745.265584,53984.52152,1,1,1,1,1,1,1
-2926,69.93889317,1249.50932,1467.561552,3347.929099,3626.92319,376.9031007,376.9031007,5796.698776,54468.02845,1,1,1,1,1,1,1
-2926.5,70.5323768,1260.112773,1467.561552,3409.273672,3566.791068,380.1014044,380.1014044,5848.289131,54953.01459,1,1,1,1,1,1,1
-2927,71.13020078,1270.792816,1467.561552,3453.749832,3523.522556,383.3230984,383.3230984,5900.16949,55440.72828,1,1,1,1,1,1,1
-2927.5,71.73032523,1281.514134,1467.561552,3413.323821,3565.336427,386.5571897,386.5571897,5952.294537,55930.74125,1,1,1,1,1,1,1
-2928,72.33029522,1292.233466,1467.561552,3344.017947,3636.261494,389.7904486,389.7904486,6004.513518,56421.63666,1,1,1,1,1,1,1
-2928.5,72.92741175,1302.901042,1467.561552,3337.396388,3644.789996,393.0083301,393.0083301,6056.611595,56911.39453,1,1,1,1,1,1,1
-2929,73.5166992,1313.429437,1467.561552,3373.660084,3611.034773,396.1840204,396.1840204,6108.247921,57396.80965,1,1,1,1,1,1,1
-2929.5,74.09402108,1323.744032,1467.561552,3262.013391,3725.446706,399.2952279,399.2952279,6159.054221,57874.42037,1,1,1,1,1,1,1
-2930,74.66156607,1333.883684,1467.561552,3265.522669,3724.281448,402.3537474,402.3537474,6208.986408,58343.81389,1,1,1,1,1,1,1
-2930.5,75.22494678,1343.948498,1467.561552,3278.138656,3713.43123,405.3898254,405.3898254,6258.331727,58807.69258,1,1,1,1,1,1,1
-2931,75.78837868,1354.014816,1467.561552,3381.054454,3611.82276,408.4261793,408.4261793,6307.443088,59269.37343,1,1,1,1,1,1,1
-2931.5,76.35560466,1364.148516,1467.561552,3266.64957,3727.075539,411.4829796,411.4829796,6356.6692,59732.1351,1,1,1,1,1,1,1
-2932,76.92929948,1374.398104,1467.561552,3191.098916,3803.21465,414.5746407,414.5746407,6406.292759,60198.63404,1,1,1,1,1,1,1
-2932.5,77.50800325,1384.736458,1467.561552,3305.615343,3689.539028,417.6932952,417.6932952,6456.031928,60666.1065,1,1,1,1,1,1,1
-2933,78.08810169,1395.10026,1467.561552,3225.642448,3770.641659,420.8194657,420.8194657,6505.651923,61132.32443,1,1,1,1,1,1,1
-2933.5,78.66724297,1405.44762,1467.561552,3187.062023,3796.807496,423.940478,423.940478,6541.220283,61466.41324,1,1,1,1,1,1,1
-2934,79.24314249,1415.736825,1467.561552,3333.612688,3623.915885,427.0440203,427.0440203,6562.025825,61661.68073,1,1,1,1,1,1,1
-2934.5,79.81294837,1425.916454,1467.561552,3438.157802,3487.825692,430.1147238,430.1147238,6576.710071,61799.36037,1,1,1,1,1,1,1
-2935,80.37598278,1435.975563,1467.561552,3379.7271,3513.079678,433.1489356,433.1489356,6589.235107,61916.7277,1,1,1,1,1,1,1
-2935.5,80.9346835,1445.956503,1467.561552,3237.685598,3621.357904,436.159793,436.159793,6600.965745,62026.62379,1,1,1,1,1,1,1
-2936,81.48973658,1455.873188,1467.561552,3173.773884,3651.546297,439.1509931,439.1509931,6612.371758,62133.4682,1,1,1,1,1,1,1
-2936.5,82.03993367,1465.70343,1467.561552,3291.726455,3500.157128,442.1160241,442.1160241,6623.597124,62238.61698,1,1,1,1,1,1,1
-2937,82.5721304,1475.211022,1467.561552,3095.875423,3412.974265,444.9840506,444.9840506,6397.089922,60107.83748,1,1,1,1,1,1,1
-2937.5,82.85351964,1427.657117,1467.561552,950.6264888,1093.731552,446.5004669,446.5004669,2223.017812,20888.57515,1,1,1,1,1,1,1
-2938,82.78322733,1294.495792,1467.561552,-79.21879708,-88.7772563,446.1216592,446.1216592,123.1520615,1158.518287,1,1,1,1,1,1,1
-2938.5,82.69005589,1184.722621,1467.561552,791.4423015,805.1447576,445.6195551,445.6195551,1701.232323,15987.27878,1,1,1,1,1,1,1
-2939,82.78182555,1156.318998,1467.561552,1574.540904,1730.379463,446.114105,446.114105,3213.461386,30197.87104,1,1,1,1,1,1,1
-2939.5,82.92851569,1157.482349,1467.561552,1252.713122,1341.506722,446.9046232,446.9046232,2618.552364,24607.67587,1,1,1,1,1,1,1
-2940,82.99168846,1158.364474,1467.561552,808.5226152,919.9196066,447.2450634,447.2450634,1866.193616,17535.6729,1,1,1,1,1,1,1
-2940.5,83,1158.4807,1467.561552,753.7097267,838.8296602,447.2898546,447.2898546,1742.295359,16370.31672,1,1,1,1,1,1,1
-2941,83,1158.4807,1467.561552,780.7041357,828.9951132,447.2898546,447.2898546,1757.689082,16514.95353,1,1,1,1,1,1,1
-2941.5,83,1158.4807,1467.561552,746.5067618,869.9656278,447.2898546,447.2898546,1763.765377,16572.04514,1,1,1,1,1,1,1
-2942,83,1158.4807,1467.561552,769.1146665,845.1028151,447.2898546,447.2898546,1761.742612,16553.0399,1,1,1,1,1,1,1
-2942.5,83,1158.4807,1467.561552,777.2980486,819.7622064,447.2898546,447.2898546,1746.35141,16408.42691,1,1,1,1,1,1,1
-2943,83,1158.4807,1467.561552,726.28407,845.9298439,447.2898546,447.2898546,1724.06225,16199.00147,1,1,1,1,1,1,1
-2943.5,83,1158.4807,1467.561552,737.0470328,810.2477969,447.2898546,447.2898546,1701.707463,15988.95983,1,1,1,1,1,1,1
-2944,83,1158.4807,1467.561552,749.3322291,779.917218,447.2898546,447.2898546,1685.519047,15836.85596,1,1,1,1,1,1,1
-2944.5,83,1158.4807,1467.561552,746.7199238,787.6004898,447.2898546,447.2898546,1690.068693,15879.6039,1,1,1,1,1,1,1
-2945,83,1158.4807,1467.561552,739.7449043,795.9734159,447.2898546,447.2898546,1691.321915,15891.37881,1,1,1,1,1,1,1
-2945.5,83,1158.4807,1467.561552,738.1353244,758.8603124,447.2898546,447.2898546,1656.584095,15564.98772,1,1,1,1,1,1,1
-2946,83,1158.4807,1467.561552,724.6676186,734.2635353,447.2898546,447.2898546,1622.437358,15244.15063,1,1,1,1,1,1,1
-2946.5,83,1158.4807,1467.561552,698.4422754,772.0031695,447.2898546,447.2898546,1632.766784,15341.20451,1,1,1,1,1,1,1
-2947,83,1158.4807,1467.561552,681.339264,816.0681466,447.2898546,447.2898546,1656.954448,15568.46787,1,1,1,1,1,1,1
-2947.5,83,1158.4807,1467.561552,705.0809594,806.0680932,447.2898546,447.2898546,1669.282091,15684.29631,1,1,1,1,1,1,1
-2948,83,1158.4807,1467.561552,724.7381877,801.026418,447.2898546,447.2898546,1682.393604,15807.49,1,1,1,1,1,1,1
-2948.5,83,1158.4807,1467.561552,763.7582909,789.6300176,447.2898546,447.2898546,1707.173441,16040.31751,1,1,1,1,1,1,1
-2949,83,1158.4807,1467.561552,792.0012534,792.0012534,447.2898546,447.2898546,1734.636823,16298.35849,1,1,1,1,1,1,1
-2949.5,83,1158.4807,1467.561552,767.6441364,842.6748386,447.2898546,447.2898546,1758.245923,16520.18538,1,1,1,1,1,1,1
-2950,83,1158.4807,1467.561552,756.5372012,858.9332111,447.2898546,447.2898546,1762.866786,16563.60254,1,1,1,1,1,1,1
-2950.5,83,1158.4807,1467.561552,738.1344181,843.3895052,447.2898546,447.2898546,1732.413642,16277.46971,1,1,1,1,1,1,1
-2951,83,1158.4807,1467.561552,726.8605208,825.2753566,447.2898546,447.2898546,1706.050375,16029.76497,1,1,1,1,1,1,1
-2951.5,83,1158.4807,1467.561552,759.9459601,801.6665356,447.2898546,447.2898546,1714.551282,16109.63832,1,1,1,1,1,1,1
-2952,83,1158.4807,1467.561552,774.1776412,789.8175936,447.2898546,447.2898546,1716.689171,16129.72575,1,1,1,1,1,1,1
-2952.5,83,1158.4807,1467.561552,734.0787971,789.1474357,447.2898546,447.2898546,1680.116167,15786.0916,1,1,1,1,1,1,1
-2953,83,1158.4807,1467.561552,723.8266885,768.9226076,447.2898546,447.2898546,1652.775453,15529.20295,1,1,1,1,1,1,1
-2953.5,83,1158.4807,1467.561552,726.6656452,787.2939574,447.2898546,447.2898546,1671.802977,15707.98239,1,1,1,1,1,1,1
-2954,83,1158.4807,1467.561552,755.4818327,781.2845428,447.2898546,447.2898546,1692.262026,15900.212,1,1,1,1,1,1,1
-2954.5,83,1158.4807,1467.561552,722.4380741,802.8026577,447.2898546,447.2898546,1681.92265,15803.06488,1,1,1,1,1,1,1
-2955,83,1158.4807,1467.561552,738.9861857,779.9815894,447.2898546,447.2898546,1676.295459,15750.19302,1,1,1,1,1,1,1
-2955.5,83,1158.4807,1467.561552,742.4998763,804.5139185,447.2898546,447.2898546,1701.455498,15986.59261,1,1,1,1,1,1,1
-2956,83,1158.4807,1467.561552,736.738673,841.9763108,447.2898546,447.2898546,1729.89448,16253.8005,1,1,1,1,1,1,1
-2956.5,83,1158.4807,1467.561552,730.3387857,863.0129294,447.2898546,447.2898546,1743.024541,16377.16816,1,1,1,1,1,1,1
-2957,83,1158.4807,1467.561552,743.6778379,867.2246599,447.2898546,447.2898546,1758.769679,16525.10679,1,1,1,1,1,1,1
-2957.5,83,1158.4807,1467.561552,754.1861349,891.3503482,447.2898546,447.2898546,1789.83974,16817.03585,1,1,1,1,1,1,1
-2958,83,1158.4807,1467.561552,753.2586928,914.4213551,447.2898546,447.2898546,1809.703604,17003.67366,1,1,1,1,1,1,1
-2958.5,83,1158.4807,1467.561552,761.4383876,894.2820622,447.2898546,447.2898546,1798.974725,16902.86666,1,1,1,1,1,1,1
-2959,83,1158.4807,1467.561552,754.0645989,867.5796998,447.2898546,447.2898546,1768.405259,16615.64132,1,1,1,1,1,1,1
-2959.5,83,1158.4807,1467.561552,730.2869047,840.2225678,447.2898546,447.2898546,1722.533305,16184.63619,1,1,1,1,1,1,1
-2960,83,1158.4807,1467.561552,740.6172749,777.2955678,447.2898546,447.2898546,1675.349636,15741.30625,1,1,1,1,1,1,1
-2960.5,83,1158.4807,1467.561552,722.4045395,751.4081688,447.2898546,447.2898546,1635.787552,15369.58746,1,1,1,1,1,1,1
-2961,83,1158.4807,1467.561552,708.9936331,723.7889004,447.2898546,447.2898546,1598.979473,15023.74473,1,1,1,1,1,1,1
-2961.5,83,1158.4807,1467.561552,654.8347944,736.9582481,447.2898546,447.2898546,1562.208493,14678.25041,1,1,1,1,1,1,1
-2962,83,1158.4807,1467.561552,649.7938027,747.6017473,447.2898546,447.2898546,1567.234541,14725.47464,1,1,1,1,1,1,1
-2962.5,83,1158.4807,1467.561552,702.1304002,781.0429677,447.2898546,447.2898546,1644.184958,15448.48798,1,1,1,1,1,1,1
-2963,83,1158.4807,1467.561552,735.5491169,835.2212792,447.2898546,447.2898546,1722.767346,16186.83459,1,1,1,1,1,1,1
-2963.5,83,1158.4807,1467.561552,749.5738125,862.4128811,447.2898546,447.2898546,1759.741606,16534.23858,1,1,1,1,1,1,1
-2964,83,1158.4807,1467.561552,762.1861791,876.9238834,447.2898546,447.2898546,1784.073669,16762.8589,1,1,1,1,1,1,1
-2964.5,83,1158.4807,1467.561552,799.0087793,871.3983884,447.2898546,447.2898546,1812.149723,17026.65654,1,1,1,1,1,1,1
-2965,83,1158.4807,1467.561552,791.2035712,874.0805579,447.2898546,447.2898546,1807.554628,16983.48186,1,1,1,1,1,1,1
-2965.5,83,1158.4807,1467.561552,745.5616587,851.7780039,447.2898546,447.2898546,1746.602462,16410.78565,1,1,1,1,1,1,1
-2966,83,1158.4807,1467.561552,740.2540861,787.2872872,447.2898546,447.2898546,1683.987217,15822.46291,1,1,1,1,1,1,1
-2966.5,83,1158.4807,1467.561552,703.7667195,787.4157421,447.2898546,447.2898546,1651.370273,15515.9998,1,1,1,1,1,1,1
-2967,83,1158.4807,1467.561552,667.2904937,804.44582,447.2898546,447.2898546,1633.924607,15352.08325,1,1,1,1,1,1,1
-2967.5,83,1158.4807,1467.561552,700.7233703,759.9005884,447.2898546,447.2898546,1623.955127,15258.41175,1,1,1,1,1,1,1
-2968,83,1158.4807,1467.561552,727.6550178,732.5796483,447.2898546,447.2898546,1623.606853,15255.13931,1,1,1,1,1,1,1
-2968.5,83,1158.4807,1467.561552,697.0120849,775.3030983,447.2898546,447.2898546,1634.444285,15356.96601,1,1,1,1,1,1,1
-2969,83,1158.4807,1467.561552,719.4408664,769.2734433,447.2898546,447.2898546,1649.155708,15495.1922,1,1,1,1,1,1,1
-2969.5,83,1158.4807,1467.561552,745.03565,760.0868753,447.2898546,447.2898546,1663.875291,15633.49485,1,1,1,1,1,1,1
-2970,83,1158.4807,1467.561552,720.3472007,795.8637556,447.2898546,447.2898546,1673.822822,15726.96025,1,1,1,1,1,1,1
-2970.5,83,1158.4807,1467.561552,731.5006774,787.5380147,447.2898546,447.2898546,1676.3597,15750.7964,1,1,1,1,1,1,1
-2971,83,1158.4807,1467.561552,751.7089839,761.9716093,447.2898546,447.2898546,1671.552989,15705.63323,1,1,1,1,1,1,1
-2971.5,83,1158.4807,1467.561552,715.3958075,784.6727457,447.2898546,447.2898546,1659.341364,15590.8949,1,1,1,1,1,1,1
-2972,83,1158.4807,1467.561552,725.5203791,760.8597776,447.2898546,447.2898546,1647.061118,15475.51189,1,1,1,1,1,1,1
-2972.5,83,1158.4807,1467.561552,733.5129644,743.2738654,447.2898546,447.2898546,1638.455655,15394.65629,1,1,1,1,1,1,1
-2973,83,1158.4807,1467.561552,685.7304855,788.3229457,447.2898546,447.2898546,1636.002851,15371.61022,1,1,1,1,1,1,1
-2973.5,83,1158.4807,1467.561552,705.0433419,774.4689932,447.2898546,447.2898546,1640.900459,15417.62707,1,1,1,1,1,1,1
-2974,83,1158.4807,1467.561552,685.7741535,793.6603027,447.2898546,447.2898546,1640.830194,15416.96668,1,1,1,1,1,1,1
-2974.5,83,1158.4807,1467.561552,669.8764745,797.2302438,447.2898546,447.2898546,1629.771389,15313.06047,1,1,1,1,1,1,1
-2975,83,1158.4807,1467.561552,659.0085024,794.4833914,447.2898546,447.2898546,1617.558419,15198.30969,1,1,1,1,1,1,1
-2975.5,83,1158.4807,1467.561552,697.4915912,746.451517,447.2898546,447.2898546,1608.991813,15117.81877,1,1,1,1,1,1,1
-2976,83,1158.4807,1467.561552,669.1590198,763.7690492,447.2898546,447.2898546,1599.110479,15024.97522,1,1,1,1,1,1,1
-2976.5,83,1158.4807,1467.561552,670.7701433,747.0895143,447.2898546,447.2898546,1585.5931,14897.96825,1,1,1,1,1,1,1
-2977,83,1158.4807,1467.561552,685.2170202,727.6015781,447.2898546,447.2898546,1581.070607,14855.47573,1,1,1,1,1,1,1
-2977.5,83,1158.4807,1467.561552,700.0734125,723.8594686,447.2898546,447.2898546,1591.040594,14949.15237,1,1,1,1,1,1,1
-2978,83,1158.4807,1467.561552,704.7847357,738.4234673,447.2898546,447.2898546,1608.332116,15111.62045,1,1,1,1,1,1,1
-2978.5,83,1158.4807,1467.561552,681.9520986,784.5437655,447.2898546,447.2898546,1629.223616,15307.91321,1,1,1,1,1,1,1
-2979,83,1158.4807,1467.561552,698.3134564,792.7964626,447.2898546,447.2898546,1651.304449,15515.38118,1,1,1,1,1,1,1
-2979.5,83,1158.4807,1467.561552,725.0049295,790.6981242,447.2898546,447.2898546,1673.367123,15722.6784,1,1,1,1,1,1,1
-2980,83,1158.4807,1467.561552,708.08859,808.8514436,447.2898546,447.2898546,1674.476154,15733.09911,1,1,1,1,1,1,1
-2980.5,83,1158.4807,1467.561552,673.9126173,812.3108655,447.2898546,447.2898546,1646.920525,15474.19077,1,1,1,1,1,1,1
-2981,83,1158.4807,1467.561552,653.578629,768.011141,447.2898546,447.2898546,1588.938908,14929.40505,1,1,1,1,1,1,1
-2981.5,83,1158.4807,1467.561552,611.9494888,713.250935,447.2898546,447.2898546,1508.810269,14176.52992,1,1,1,1,1,1,1
-2982,83,1158.4807,1467.561552,589.1764933,648.0693077,447.2898546,447.2898546,1443.842107,13566.09982,1,1,1,1,1,1,1
-2982.5,83,1158.4807,1467.561552,554.2451647,620.08937,447.2898546,447.2898546,1402.457408,13177.25633,1,1,1,1,1,1,1
-2983,83,1158.4807,1467.561552,538.3377172,595.3998439,447.2898546,447.2898546,1375.461367,12923.6056,1,1,1,1,1,1,1
-2983.5,83,1158.4807,1467.561552,550.9513642,566.1185282,447.2898546,447.2898546,1363.337703,12809.69367,1,1,1,1,1,1,1
-2984,83,1158.4807,1467.561552,541.2295296,611.0584367,447.2898546,447.2898546,1387.373741,13035.53227,1,1,1,1,1,1,1
-2984.5,83,1158.4807,1467.561552,581.2520354,677.2639231,447.2898546,447.2898546,1459.61105,13714.2621,1,1,1,1,1,1,1
-2985,83,1158.4807,1467.561552,648.5547093,736.0307638,447.2898546,447.2898546,1558.18663,14640.46185,1,1,1,1,1,1,1
-2985.5,83,1158.4807,1467.561552,700.9889833,801.3335334,447.2898546,447.2898546,1661.362589,15609.88583,1,1,1,1,1,1,1
-2986,83,1158.4807,1467.561552,739.8155328,874.7112347,447.2898546,447.2898546,1762.020619,16555.65184,1,1,1,1,1,1,1
-2986.5,83,1158.4807,1467.561552,801.2546641,921.3522481,447.2898546,447.2898546,1859.108956,17467.97904,1,1,1,1,1,1,1
-2987,83,1158.4807,1467.561552,849.6656761,945.3575033,447.2898546,447.2898546,1924.759661,18085.354,1,1,1,1,1,1,1
-2987.5,83,1158.4807,1467.561552,879.4674859,934.1180731,447.2898546,447.2898546,1941.7282,18245.0325,1,1,1,1,1,1,1
-2988,83,1158.4807,1467.561552,863.3906038,947.5413532,447.2898546,447.2898546,1939.301965,18222.20097,1,1,1,1,1,1,1
-2988.5,83,1158.4807,1467.561552,841.9813034,962.1583216,447.2898546,447.2898546,1933.093761,18163.78003,1,1,1,1,1,1,1
-2989,83,1158.4807,1467.561552,848.2600461,950.3611285,447.2898546,447.2898546,1928.049257,18116.30975,1,1,1,1,1,1,1
-2989.5,83,1158.4807,1467.561552,877.4825504,919.7388193,447.2898546,447.2898546,1926.7694,18104.2659,1,1,1,1,1,1,1
-2990,83,1158.4807,1467.561552,864.9566968,943.0840741,447.2898546,447.2898546,1936.659225,18197.33182,1,1,1,1,1,1,1
-2990.5,83,1158.4807,1467.561552,862.6012169,972.7205212,447.2898546,447.2898546,1961.598542,18432.01762,1,1,1,1,1,1,1
-2991,83,1158.4807,1467.561552,854.3753042,1002.810366,447.2898546,447.2898546,1981.585769,18620.10276,1,1,1,1,1,1,1
-2991.5,83,1158.4807,1467.561552,853.6848965,1008.991095,447.2898546,447.2898546,1986.6047,18667.3322,1,1,1,1,1,1,1
-2992,83,1158.4807,1467.561552,902.7335345,965.4603095,447.2898546,447.2898546,1991.649207,18714.80267,1,1,1,1,1,1,1
-2992.5,83,1158.4807,1467.561552,925.2821774,956.5995448,447.2898546,447.2898546,2004.161394,18832.54561,1,1,1,1,1,1,1
-2993,83,1158.4807,1467.561552,877.1588644,1001.618717,447.2898546,447.2898546,2001.32354,18805.84094,1,1,1,1,1,1,1
-2993.5,83,1158.4807,1467.561552,882.9650931,964.2302271,447.2898546,447.2898546,1972.452862,18534.15973,1,1,1,1,1,1,1
-2994,83,1158.4807,1467.561552,873.1966582,958.315346,447.2898546,447.2898546,1958.115516,18399.24142,1,1,1,1,1,1,1
-2994.5,83,1158.4807,1467.561552,882.9242024,969.3839379,447.2898546,447.2898546,1977.125966,18578.13477,1,1,1,1,1,1,1
-2995,83,1158.4807,1467.561552,889.1317435,976.0987318,447.2898546,447.2898546,1988.939952,18689.30777,1,1,1,1,1,1,1
-2995.5,83,1158.4807,1467.561552,860.4011161,989.4798385,447.2898546,447.2898546,1974.908567,18557.26894,1,1,1,1,1,1,1
-2996,83,1158.4807,1467.561552,865.8467046,976.6331928,447.2898546,447.2898546,1968.142241,18493.59551,1,1,1,1,1,1,1
-2996.5,83,1158.4807,1467.561552,876.947821,982.2757757,447.2898546,447.2898546,1983.448542,18637.63222,1,1,1,1,1,1,1
-2997,83,1158.4807,1467.561552,879.1387639,1004.698888,447.2898546,447.2898546,2005.949306,18849.3708,1,1,1,1,1,1,1
-2997.5,83,1158.4807,1467.561552,887.4203157,1021.010471,447.2898546,447.2898546,2028.431584,19060.93489,1,1,1,1,1,1,1
-2998,83,1158.4807,1467.561552,888.6715577,1050.222588,447.2898546,447.2898546,2056.278855,19322.985,1,1,1,1,1,1,1
-2998.5,83,1158.4807,1467.561552,952.41772,1024.893014,447.2898546,447.2898546,2091.397722,19653.46317,1,1,1,1,1,1,1
-2999,83,1158.4807,1467.561552,988.8596638,1008.836627,447.2898546,447.2898546,2110.032817,19828.82487,1,1,1,1,1,1,1
-2999.5,83,1158.4807,1467.561552,972.0043516,1018.191189,447.2898546,447.2898546,2103.176465,19764.30458,1,1,1,1,1,1,1
-3000,83,1158.4807,1467.561552,944.2518836,1029.532728,447.2898546,447.2898546,2088.174648,19623.13309,1,1,1,1,1,1,1
-3000.5,83,1158.4807,1467.561552,942.6903992,1014.709802,447.2898546,447.2898546,2073.196312,19482.18309,1,1,1,1,1,1,1
-3001,83,1158.4807,1467.561552,926.3841069,1023.603055,447.2898546,447.2898546,2066.41986,19418.41484,1,1,1,1,1,1,1
-3001.5,83,1158.4807,1467.561552,899.1335791,1055.279319,447.2898546,447.2898546,2070.466308,19456.49285,1,1,1,1,1,1,1
-3002,83,1158.4807,1467.561552,903.9899924,1040.492835,447.2898546,447.2898546,2061.388315,19371.06634,1,1,1,1,1,1,1
-3002.5,83,1158.4807,1467.561552,898.114864,1012.767825,447.2898546,447.2898546,2030.672337,19082.02064,1,1,1,1,1,1,1
-3003,83,1158.4807,1467.561552,874.1114861,998.8076159,447.2898546,447.2898546,1995.968705,18755.45017,1,1,1,1,1,1,1
-3003.5,83,1158.4807,1467.561552,891.407002,947.5070602,447.2898546,447.2898546,1964.882641,18462.9217,1,1,1,1,1,1,1
-3004,83,1158.4807,1467.561552,861.2201356,951.0309553,447.2898546,447.2898546,1940.508948,18233.55848,1,1,1,1,1,1,1
-3004.5,83,1158.4807,1467.561552,816.2573265,977.3314648,447.2898546,447.2898546,1923.44843,18073.01459,1,1,1,1,1,1,1
-3005,83,1158.4807,1467.561552,870.90523,943.4110172,447.2898546,447.2898546,1942.395913,18251.31546,1,1,1,1,1,1,1
-3005.5,83,1158.4807,1467.561552,906.2954133,975.6996054,447.2898546,447.2898546,2004.265224,18833.52283,1,1,1,1,1,1,1
-3006,83,1158.4807,1467.561552,910.2389888,1047.505616,447.2898546,447.2898546,2073.511017,19485.14479,1,1,1,1,1,1,1
-3006.5,83,1158.4807,1467.561552,952.1780157,1073.552681,447.2898546,447.2898546,2135.660991,20069.99283,1,1,1,1,1,1,1
-3007,83,1158.4807,1467.561552,991.8792918,1096.287638,447.2898546,447.2898546,2192.737508,20607.09827,1,1,1,1,1,1,1
-3007.5,83,1158.4807,1467.561552,998.2401495,1148.619316,447.2898546,447.2898546,2244.912891,21097.95633,1,1,1,1,1,1,1
-3008,83,1158.4807,1467.561552,1064.327872,1152.572944,447.2898546,447.2898546,2301.528418,21630.08776,1,1,1,1,1,1,1
-3008.5,83,1158.4807,1467.561552,1074.184922,1228.385339,447.2898546,447.2898546,2366.137872,22237.14691,1,1,1,1,1,1,1
-3009,83,1158.4807,1467.561552,1098.190655,1297.746908,447.2898546,447.2898546,2442.630687,22955.26798,1,1,1,1,1,1,1
-3009.5,83,1158.4807,1467.561552,1163.750422,1329.764814,447.2898546,447.2898546,2529.402207,23769.39127,1,1,1,1,1,1,1
-3010,83,1158.4807,1467.561552,1261.436548,1365.863587,447.2898546,447.2898546,2650.493527,24905.37931,1,1,1,1,1,1,1
-3010.5,83,1158.4807,1467.561552,1293.094888,1510.076333,447.2898546,447.2898546,2798.058531,26290.46622,1,1,1,1,1,1,1
-3011,83,1158.4807,1467.561552,1376.844598,1572.743781,447.2898546,447.2898546,2920.252719,27438.36295,1,1,1,1,1,1,1
-3011.5,83,1158.4807,1467.561552,1416.410583,1629.787146,447.2898546,447.2898546,3002.612506,28212.383,1,1,1,1,1,1,1
-3012,83,1158.4807,1467.561552,1524.201507,1607.271368,447.2898546,447.2898546,3075.346804,28895.94303,1,1,1,1,1,1,1
-3012.5,83,1158.4807,1467.561552,1502.430588,1717.66768,447.2898546,447.2898546,3150.938931,29606.36127,1,1,1,1,1,1,1
-3013,83,1158.4807,1467.561552,1521.463641,1739.405219,447.2898546,447.2898546,3185.714219,29933.18088,1,1,1,1,1,1,1
-3013.5,83,1158.4807,1467.561552,1551.728466,1692.532264,447.2898546,447.2898546,3171.548372,29800.04972,1,1,1,1,1,1,1
-3014,83,1158.4807,1467.561552,1570.592988,1614.277921,447.2898546,447.2898546,3120.892667,29323.98496,1,1,1,1,1,1,1
-3014.5,83,1158.4807,1467.561552,1496.98295,1598.373378,447.2898546,447.2898546,3044.542608,28606.44375,1,1,1,1,1,1,1
-3015,83,1158.4807,1467.561552,1401.796905,1611.856544,447.2898546,447.2898546,2974.855006,27951.51686,1,1,1,1,1,1,1
-3015.5,83,1158.4807,1467.561552,1396.021613,1554.425146,447.2898546,447.2898546,2920.94348,27444.85372,1,1,1,1,1,1,1
-3016,83,1158.4807,1467.561552,1387.830975,1464.68202,447.2898546,447.2898546,2841.657986,26699.78508,1,1,1,1,1,1,1
-3016.5,83,1158.4807,1467.561552,1275.146723,1434.949566,447.2898546,447.2898546,2722.586878,25581.88694,1,1,1,1,1,1,1
-3017,83,1158.4807,1467.561552,1188.302658,1413.485436,447.2898546,447.2898546,2627.402252,24688.75398,1,1,1,1,1,1,1
-3017.5,83,1158.4807,1467.561552,1166.631512,1378.972068,447.2898546,447.2898546,2576.548017,24211.67796,1,1,1,1,1,1,1
-3018,83,1158.4807,1467.561552,1142.835859,1324.070822,447.2898546,447.2898546,2505.318013,23543.45123,1,1,1,1,1,1,1
-3018.5,83,1158.4807,1467.561552,1068.821483,1278.931168,447.2898546,447.2898546,2403.792229,22590.61219,1,1,1,1,1,1,1
-3019,83,1158.4807,1467.561552,1067.824354,1190.035457,447.2898546,447.2898546,2332.804055,21923.94812,1,1,1,1,1,1,1
-3019.5,83,1158.4807,1467.561552,1095.042399,1117.686137,447.2898546,447.2898546,2298.263854,21599.41396,1,1,1,1,1,1,1
-3020,83,1158.4807,1467.561552,1039.691989,1140.225856,447.2898546,447.2898546,2272.589244,21358.17948,1,1,1,1,1,1,1
-3020.5,83,1158.4807,1467.561552,1041.044351,1106.47738,447.2898546,447.2898546,2246.129841,21109.46056,1,1,1,1,1,1,1
-3021,83,1158.4807,1467.561552,1037.625667,1101.539431,447.2898546,447.2898546,2239.356603,21045.79674,1,1,1,1,1,1,1
-3021.5,83,1158.4807,1467.561552,999.3066014,1157.244013,447.2898546,447.2898546,2253.907887,21182.61327,1,1,1,1,1,1,1
-3022,83,1158.4807,1467.561552,1038.002785,1132.602945,447.2898546,447.2898546,2265.302411,21289.71417,1,1,1,1,1,1,1
-3022.5,83,1158.4807,1467.561552,1057.729591,1115.58671,447.2898546,447.2898546,2267.423549,21309.6436,1,1,1,1,1,1,1
-3023,83,1158.4807,1467.561552,1061.444182,1097.717801,447.2898546,447.2898546,2256.348084,21205.58074,1,1,1,1,1,1,1
-3023.5,83,1158.4807,1467.561552,1006.389512,1126.102401,447.2898546,447.2898546,2233.13838,20987.27167,1,1,1,1,1,1,1
-3024,83,1158.4807,1467.561552,1009.178831,1200.917586,447.2898546,447.2898546,2295.01022,21568.72385,1,1,1,1,1,1,1
-3024.5,83,1158.4807,1467.561552,1109.183568,1292.537203,447.2898546,447.2898546,2452.348134,23046.14593,1,1,1,1,1,1,1
-3025,83,1158.4807,1467.561552,1267.88698,1362.322401,447.2898546,447.2898546,2653.126548,24930.08026,1,1,1,1,1,1,1
-3025.5,83,1158.4807,1467.561552,1374.662431,1490.470915,447.2898546,447.2898546,2851.355666,26791.19954,1,1,1,1,1,1,1
-3026,83,1158.4807,1467.561552,1408.703534,1643.61946,447.2898546,447.2898546,3007.837243,28261.4854,1,1,1,1,1,1,1
-3026.5,83,1158.4807,1467.561552,1458.870259,1723.995136,447.2898546,447.2898546,3119.181635,29307.90482,1,1,1,1,1,1,1
-3027,83,1158.4807,1467.561552,1387.36175,1671.481366,447.2898546,447.2898546,3013.398572,28313.75109,1,1,1,1,1,1,1
-3027.5,83,1158.4807,1467.561552,1285.986449,1403.351645,447.2898546,447.2898546,2698.753005,25359.01873,1,1,1,1,1,1,1
-3028,83,1158.4807,1467.561552,1091.915945,1232.375171,447.2898546,447.2898546,2391.476792,22474.41106,1,1,1,1,1,1,1
-3028.5,83,1158.4807,1467.561552,929.7032123,1099.51493,447.2898546,447.2898546,2136.034878,20073.26957,1,1,1,1,1,1,1
-3029,83,1158.4807,1467.561552,853.6337951,952.0143059,447.2898546,447.2898546,1934.560114,18177.64533,1,1,1,1,1,1,1
-3029.5,83,1158.4807,1467.561552,754.3986253,882.8730831,447.2898546,447.2898546,1782.424886,16747.36726,1,1,1,1,1,1,1
-3030,83,1158.4807,1467.561552,686.6714265,839.2650769,447.2898546,447.2898546,1682.547302,15808.93416,1,1,1,1,1,1,1
-3030.5,83,1158.4807,1467.561552,655.4437919,801.0979679,447.2898546,447.2898546,1620.293848,15224.01086,1,1,1,1,1,1,1
-3031,83,1158.4807,1467.561552,619.8587078,738.2096177,447.2898546,447.2898546,1535.010514,14422.70305,1,1,1,1,1,1,1
-3031.5,83,1158.4807,1467.561552,592.5018851,628.1201917,447.2898546,447.2898546,1434.200164,13475.50556,1,1,1,1,1,1,1
-3032,83,1158.4807,1467.561552,521.4557165,562.7771768,447.2898546,447.2898546,1334.9195,12542.68121,1,1,1,1,1,1,1
-3032.5,83,1158.4807,1467.561552,451.3883386,509.0123818,447.2898546,447.2898546,1237.758292,11629.77082,1,1,1,1,1,1,1
-3033,83,1158.4807,1467.561552,430.7990237,467.0558564,447.2898546,447.2898546,1187.623187,11158.70927,1,1,1,1,1,1,1
-3033.5,83,1158.4807,1467.561552,414.9344666,477.2611755,447.2898546,447.2898546,1183.086325,11116.08208,1,1,1,1,1,1,1
-3034,83,1158.4807,1467.561552,423.3011444,480.5891364,447.2898546,447.2898546,1192.461023,11204.16528,1,1,1,1,1,1,1
-3034.5,83,1158.4807,1467.561552,424.1972125,494.6158674,447.2898546,447.2898546,1204.422525,11316.55341,1,1,1,1,1,1,1
-3035,83,1158.4807,1467.561552,428.4590101,506.3667357,447.2898546,447.2898546,1217.257697,11437.15026,1,1,1,1,1,1,1
-3035.5,83,1158.4807,1467.561552,456.3741335,494.4483539,447.2898546,447.2898546,1230.079618,11557.62295,1,1,1,1,1,1,1
-3036,83,1158.4807,1467.561552,437.3872097,505.8729895,447.2898546,447.2898546,1224.017905,11500.66819,1,1,1,1,1,1,1
-3036.5,83,1158.4807,1467.561552,433.1875156,476.6975555,447.2898546,447.2898546,1197.266599,11249.31763,1,1,1,1,1,1,1
-3037,83,1158.4807,1467.561552,440.5204785,452.4779137,447.2898546,447.2898546,1183.730854,11122.13816,1,1,1,1,1,1,1
-3037.5,83,1158.4807,1467.561552,422.4978173,479.5986,447.2898546,447.2898546,1191.023473,11190.658,1,1,1,1,1,1,1
-3038,83,1158.4807,1467.561552,414.7603921,496.8009092,447.2898546,447.2898546,1198.610161,11261.94105,1,1,1,1,1,1,1
-3038.5,83,1158.4807,1467.561552,427.8122443,485.8392979,447.2898546,447.2898546,1200.285586,11277.68295,1,1,1,1,1,1,1
-3039,83,1158.4807,1467.561552,450.8563576,466.2884315,447.2898546,447.2898546,1203.085309,11303.9891,1,1,1,1,1,1,1
-3039.5,83,1158.4807,1467.561552,452.8707402,471.2831046,447.2898546,447.2898546,1208.703854,11356.7799,1,1,1,1,1,1,1
-3040,83,1158.4807,1467.561552,431.8586301,489.9491263,447.2898546,447.2898546,1206.822947,11339.10707,1,1,1,1,1,1,1
-3040.5,83,1158.4807,1467.561552,429.9697877,478.7390029,447.2898546,447.2898546,1196.322811,11240.44955,1,1,1,1,1,1,1
-3041,83,1158.4807,1467.561552,448.6767188,460.8825561,447.2898546,447.2898546,1197.005066,11246.86007,1,1,1,1,1,1,1
-3041.5,83,1158.4807,1467.561552,445.6021464,482.8073992,447.2898546,447.2898546,1212.114326,11388.82393,1,1,1,1,1,1,1
-3042,83,1158.4807,1467.561552,461.6900136,500.0311801,447.2898546,447.2898546,1238.816053,11639.70902,1,1,1,1,1,1,1
-3042.5,83,1158.4807,1467.561552,485.1046565,522.1005466,447.2898546,447.2898546,1275.27487,11982.27029,1,1,1,1,1,1,1
-3043,83,1158.4807,1467.561552,513.0595477,533.9045776,447.2898546,447.2898546,1307.143503,12281.70243,1,1,1,1,1,1,1
-3043.5,83,1158.4807,1467.561552,528.4746913,546.3955697,447.2898546,447.2898546,1329.511389,12491.86744,1,1,1,1,1,1,1
-3044,83,1158.4807,1467.561552,528.6581637,535.9754726,447.2898546,447.2898546,1321.30691,12414.77968,1,1,1,1,1,1,1
-3044.5,83,1158.4807,1467.561552,476.3330991,535.2991323,447.2898546,447.2898546,1278.823014,12015.60809,1,1,1,1,1,1,1
-3045,83,1158.4807,1467.561552,447.1753182,489.3000883,447.2898546,447.2898546,1218.579463,11449.56952,1,1,1,1,1,1,1
-3045.5,83,1158.4807,1467.561552,405.5416606,444.2396512,447.2898546,447.2898546,1149.0891,10796.64952,1,1,1,1,1,1,1
-3046,83,1158.4807,1467.561552,359.5831638,416.1026477,447.2898546,447.2898546,1089.697459,10238.61587,1,1,1,1,1,1,1
-3046.5,83,1158.4807,1467.561552,345.5738643,375.2609392,447.2898546,447.2898546,1046.608808,9833.762235,1,1,1,1,1,1,1
-3047,83,1158.4807,1467.561552,315.3969074,359.4844582,447.2898546,447.2898546,1011.63435,9505.147714,1,1,1,1,1,1,1
-3047.5,83,1158.4807,1467.561552,292.0681167,340.8293583,447.2898546,447.2898546,980.0035232,9207.949831,1,1,1,1,1,1,1
-3048,83,1158.4807,1467.561552,290.8163048,317.429121,447.2898546,447.2898546,961.4308254,9033.443823,1,1,1,1,1,1,1
-3048.5,83,1158.4807,1467.561552,278.313532,324.3259999,447.2898546,447.2898546,957.2072176,8993.759252,1,1,1,1,1,1,1
-3049,83,1158.4807,1467.561552,274.1082567,321.9383464,447.2898546,447.2898546,952.2401419,8947.089441,1,1,1,1,1,1,1
-3049.5,83,1158.4807,1467.561552,274.4681904,307.574609,447.2898546,447.2898546,941.6898885,8847.961332,1,1,1,1,1,1,1
-3050,83,1158.4807,1467.561552,268.3770879,317.1954575,447.2898546,447.2898546,944.3491373,8872.947102,1,1,1,1,1,1,1
-3050.5,83,1158.4807,1467.561552,283.6775302,328.3747214,447.2898546,447.2898546,964.2991755,9060.394081,1,1,1,1,1,1,1
-3051,83,1158.4807,1467.561552,309.6105031,353.9548149,447.2898546,447.2898546,1003.109174,9425.046823,1,1,1,1,1,1,1
-3051.5,83,1158.4807,1467.561552,337.2490625,398.8784728,447.2898546,447.2898546,1058.76314,9947.961963,1,1,1,1,1,1,1
-3052,83,1158.4807,1467.561552,385.0849722,419.2042833,447.2898546,447.2898546,1112.625078,10454.03964,1,1,1,1,1,1,1
-3052.5,83,1158.4807,1467.561552,400.1806602,457.8861363,447.2898546,447.2898546,1155.730601,10859.05192,1,1,1,1,1,1,1
-3053,83,1158.4807,1467.561552,450.6814527,477.2729647,447.2898546,447.2898546,1211.749703,11385.39837,1,1,1,1,1,1,1
-3053.5,83,1158.4807,1467.561552,484.6917391,540.929779,447.2898546,447.2898546,1290.035693,12120.96033,1,1,1,1,1,1,1
-3054,83,1158.4807,1467.561552,534.8987386,594.4153129,447.2898546,447.2898546,1369.827084,12870.66706,1,1,1,1,1,1,1
-3054.5,83,1158.4807,1467.561552,589.9090616,639.0681501,447.2898546,447.2898546,1438.444549,13515.38502,1,1,1,1,1,1,1
-3055,83,1158.4807,1467.561552,664.1800066,681.234722,447.2898546,447.2898546,1525.41275,14332.52369,1,1,1,1,1,1,1
-3055.5,83,1158.4807,1467.561552,707.1772116,778.3463079,447.2898546,447.2898546,1646.292585,15468.29043,1,1,1,1,1,1,1
-3056,83,1158.4807,1467.561552,795.4129688,831.7175908,447.2898546,447.2898546,1773.327097,16661.88571,1,1,1,1,1,1,1
-3056.5,83,1158.4807,1467.561552,862.43642,898.2944857,447.2898546,447.2898546,1893.832439,17794.63992,1,1,1,1,1,1,1
-3057,83,1158.4807,1467.561552,879.2074063,985.3363533,447.2898546,447.2898546,1988.312021,18683.39881,1,1,1,1,1,1,1
-3057.5,83,1158.4807,1467.561552,898.7893149,1034.090932,447.2898546,447.2898546,2050.781337,19271.2519,1,1,1,1,1,1,1
-3058,83,1158.4807,1467.561552,924.9222055,1050.013,447.2898546,447.2898546,2089.225619,19633.02327,1,1,1,1,1,1,1
-3058.5,83,1158.4807,1467.561552,932.1226368,1065.226656,447.2898546,447.2898546,2109.71573,19825.84078,1,1,1,1,1,1,1
-3059,83,1158.4807,1467.561552,940.1707547,1067.390132,447.2898546,447.2898546,2119.050463,19913.68329,1,1,1,1,1,1,1
-3059.5,83,1158.4807,1467.561552,918.0704558,1091.910072,447.2898546,447.2898546,2121.261944,19934.49362,1,1,1,1,1,1,1
-3060,83,1158.4807,1467.561552,967.4726995,1048.742765,447.2898546,447.2898546,2126.962015,19988.13274,1,1,1,1,1,1,1
-3060.5,83,1158.4807,1467.561552,1004.97152,1025.273975,447.2898546,447.2898546,2139.787321,20108.82242,1,1,1,1,1,1,1
-3061,83,1158.4807,1467.561552,957.2988941,1086.198642,447.2898546,447.2898546,2151.902564,20222.83026,1,1,1,1,1,1,1
-3061.5,83,1158.4807,1467.561552,995.342858,1057.588894,447.2898546,447.2898546,2160.527258,20303.99134,1,1,1,1,1,1,1
-3062,83,1158.4807,1467.561552,987.1463995,1083.480309,447.2898546,447.2898546,2176.702956,20456.20911,1,1,1,1,1,1,1
-3062.5,83,1158.4807,1467.561552,983.4305089,1116.443164,447.2898546,447.2898546,2203.439193,20707.80387,1,1,1,1,1,1,1
-3063,83,1158.4807,1467.561552,1015.905884,1100.799081,447.2898546,447.2898546,2218.825156,20852.59027,1,1,1,1,1,1,1
-3063.5,83,1158.4807,1467.561552,1004.400198,1109.769796,447.2898546,447.2898546,2216.507135,20830.77726,1,1,1,1,1,1,1
-3064,83,1158.4807,1467.561552,986.780889,1112.752917,447.2898546,447.2898546,2203.128084,20704.87631,1,1,1,1,1,1,1
-3064.5,83,1158.4807,1467.561552,983.1283032,1094.059522,447.2898546,447.2898546,2182.700259,20512.64499,1,1,1,1,1,1,1
-3065,83,1158.4807,1467.561552,995.2846358,1057.302293,447.2898546,447.2898546,2160.211759,20301.02225,1,1,1,1,1,1,1
-3065.5,83,1158.4807,1467.561552,1007.171681,1020.982845,447.2898546,447.2898546,2137.876378,20090.8403,1,1,1,1,1,1,1
-3066,83,1158.4807,1467.561552,957.953317,1065.220703,447.2898546,447.2898546,2133.323482,20047.99606,1,1,1,1,1,1,1
-3066.5,83,1158.4807,1467.561552,979.5857488,1061.445628,447.2898546,447.2898546,2149.647437,20201.60898,1,1,1,1,1,1,1
-3067,83,1158.4807,1467.561552,1020.951681,1034.796725,447.2898546,447.2898546,2163.101045,20328.21112,1,1,1,1,1,1,1
-3067.5,83,1158.4807,1467.561552,1002.298186,1056.842048,447.2898546,447.2898546,2166.20208,20357.3924,1,1,1,1,1,1,1
-3068,83,1158.4807,1467.561552,1013.774967,1055.333902,447.2898546,447.2898546,2175.314717,20443.14489,1,1,1,1,1,1,1
-3068.5,83,1158.4807,1467.561552,1034.701392,1055.60445,447.2898546,447.2898546,2194.691659,20625.48767,1,1,1,1,1,1,1
-3069,83,1158.4807,1467.561552,1005.438393,1096.085519,447.2898546,447.2898546,2204.946622,20721.98925,1,1,1,1,1,1,1
-3069.5,83,1158.4807,1467.561552,999.7363816,1097.84794,447.2898546,447.2898546,2201.345151,20688.09838,1,1,1,1,1,1,1
-3070,83,1158.4807,1467.561552,994.3894323,1091.613345,447.2898546,447.2898546,2190.758592,20588.47591,1,1,1,1,1,1,1
-3070.5,83,1158.4807,1467.561552,990.3679516,1080.22295,447.2898546,447.2898546,2176.670002,20455.89872,1,1,1,1,1,1,1
-3071,83,1158.4807,1467.561552,996.2383668,1051.137136,447.2898546,447.2898546,2155.44702,20256.18482,1,1,1,1,1,1,1
-3071.5,83,1158.4807,1467.561552,988.2857077,1028.6239,447.2898546,447.2898546,2127.596629,19994.1049,1,1,1,1,1,1,1
-3072,83,1158.4807,1467.561552,980.5938274,1020.618065,447.2898546,447.2898546,2113.24664,19859.06787,1,1,1,1,1,1,1
-3072.5,83,1158.4807,1467.561552,975.4194124,1028.793899,447.2898546,447.2898546,2115.99089,19884.89202,1,1,1,1,1,1,1
-3073,83,1158.4807,1467.561552,956.0053635,1056.411652,447.2898546,447.2898546,2123.490573,19955.46581,1,1,1,1,1,1,1
-3073.5,83,1158.4807,1467.561552,989.9938132,1030.837698,447.2898546,447.2898546,2131.181658,20027.84072,1,1,1,1,1,1,1
-3074,83,1158.4807,1467.561552,987.47473,1055.440023,447.2898546,447.2898546,2151.369634,20217.81509,1,1,1,1,1,1,1
-3074.5,83,1158.4807,1467.561552,987.7374688,1091.709834,447.2898546,447.2898546,2184.76638,20532.08755,1,1,1,1,1,1,1
-3075,83,1158.4807,1467.561552,1009.49192,1086.512951,447.2898546,447.2898546,2199.902498,20674.5226,1,1,1,1,1,1,1
-3075.5,83,1158.4807,1467.561552,1032.845067,1054.101073,447.2898546,447.2898546,2191.621076,20596.59227,1,1,1,1,1,1,1
-3076,83,1158.4807,1467.561552,988.6630631,1099.460743,447.2898546,447.2898546,2192.697526,20606.72198,1,1,1,1,1,1,1
-3076.5,83,1158.4807,1467.561552,1004.409815,1102.955697,447.2898546,447.2898546,2210.287151,20772.24527,1,1,1,1,1,1,1
-3077,83,1158.4807,1467.561552,1030.685998,1080.046725,447.2898546,447.2898546,2213.365502,20801.21358,1,1,1,1,1,1,1
-3077.5,83,1158.4807,1467.561552,976.8235677,1115.257691,447.2898546,447.2898546,2196.314664,20640.76045,1,1,1,1,1,1,1
-3078,83,1158.4807,1467.561552,935.4908224,1135.556473,447.2898546,447.2898546,2177.086569,20459.81845,1,1,1,1,1,1,1
-3078.5,83,1158.4807,1467.561552,971.6564554,1082.086906,447.2898546,447.2898546,2161.268118,20310.96281,1,1,1,1,1,1,1
-3079,83,1158.4807,1467.561552,983.1073136,1057.825696,447.2898546,447.2898546,2149.557325,20200.76127,1,1,1,1,1,1,1
-3079.5,83,1158.4807,1467.561552,935.04947,1096.960314,447.2898546,447.2898546,2141.400915,20124.00675,1,1,1,1,1,1,1
-3080,83,1158.4807,1467.561552,929.0771728,1105.558358,447.2898546,447.2898546,2143.800863,20146.59085,1,1,1,1,1,1,1
-3080.5,83,1158.4807,1467.561552,996.576274,1051.633017,447.2898546,447.2898546,2156.208605,20263.35135,1,1,1,1,1,1,1
-3081,83,1158.4807,1467.561552,963.760278,1100.844763,447.2898546,447.2898546,2171.196861,20404.39498,1,1,1,1,1,1,1
-3081.5,83,1158.4807,1467.561552,950.1905308,1130.643065,447.2898546,447.2898546,2186.03304,20544.00753,1,1,1,1,1,1,1
-3082,83,1158.4807,1467.561552,1016.76819,1073.148092,447.2898546,447.2898546,2194.336506,20622.14518,1,1,1,1,1,1,1
-3082.5,83,1158.4807,1467.561552,1025.242672,1066.806179,447.2898546,447.2898546,2196.286189,20640.49242,1,1,1,1,1,1,1
-3083,83,1158.4807,1467.561552,1040.947514,1062.149799,447.2898546,447.2898546,2206.385071,20735.52546,1,1,1,1,1,1,1
-3083.5,83,1158.4807,1467.561552,1027.0234,1097.641375,447.2898546,447.2898546,2226.100245,20921.05085,1,1,1,1,1,1,1
-3084,83,1158.4807,1467.561552,1029.795583,1108.349325,447.2898546,447.2898546,2238.424248,21037.02308,1,1,1,1,1,1,1
-3084.5,83,1158.4807,1467.561552,1038.265366,1102.487966,447.2898546,447.2898546,2240.809204,21059.4659,1,1,1,1,1,1,1
-3085,83,1158.4807,1467.561552,994.038924,1142.983193,447.2898546,447.2898546,2237.397156,21027.35778,1,1,1,1,1,1,1
-3085.5,83,1158.4807,1467.561552,1011.012485,1118.162878,447.2898546,447.2898546,2230.224738,20959.86338,1,1,1,1,1,1,1
-3086,83,1158.4807,1467.561552,1005.719369,1096.464426,447.2898546,447.2898546,2205.551021,20727.67687,1,1,1,1,1,1,1
-3086.5,83,1158.4807,1467.561552,950.496068,1107.473692,447.2898546,447.2898546,2165.131847,20347.32128,1,1,1,1,1,1,1
-3087,83,1158.4807,1467.561552,956.0325922,1071.622195,447.2898546,447.2898546,2137.419406,20086.53958,1,1,1,1,1,1,1
-3087.5,83,1158.4807,1467.561552,946.9839306,1067.523531,447.2898546,447.2898546,2125.401024,19973.44345,1,1,1,1,1,1,1
-3088,83,1158.4807,1467.561552,910.9997001,1076.264146,447.2898546,447.2898546,2100.496383,19739.08444,1,1,1,1,1,1,1
-3088.5,83,1158.4807,1467.561552,927.9477039,1013.475367,447.2898546,447.2898546,2058.590977,19344.74306,1,1,1,1,1,1,1
-3089,83,1158.4807,1467.561552,924.2605812,937.2613577,447.2898546,447.2898546,1985.548854,18657.39642,1,1,1,1,1,1,1
-3089.5,83,1158.4807,1467.561552,871.8683711,883.2394585,447.2898546,447.2898546,1888.608751,17745.42044,1,1,1,1,1,1,1
-3090,83,1158.4807,1467.561552,807.1530403,879.3396306,447.2898546,447.2898546,1826.579788,17162.23947,1,1,1,1,1,1,1
-3090.5,83,1158.4807,1467.561552,802.3741836,858.161346,447.2898546,447.2898546,1803.293846,16943.44847,1,1,1,1,1,1,1
-3091,83,1158.4807,1467.561552,824.2254113,835.4084607,447.2898546,447.2898546,1802.4852,16935.8505,1,1,1,1,1,1,1
-3091.5,83,1158.4807,1467.561552,809.5117086,865.1774075,447.2898546,447.2898546,1815.991017,17062.74889,1,1,1,1,1,1,1
-3092,83,1158.4807,1467.561552,823.3049644,922.3660102,447.2898546,447.2898546,1880.023433,17664.66175,1,1,1,1,1,1,1
-3092.5,83,1158.4807,1467.561552,868.9634119,993.3149892,447.2898546,447.2898546,1986.241425,18663.91382,1,1,1,1,1,1,1
-3093,83,1158.4807,1467.561552,882.3640478,1028.824022,447.2898546,447.2898546,2030.95251,19084.65706,1,1,1,1,1,1,1
-3093.5,83,1158.4807,1467.561552,905.9338396,982.5025638,447.2898546,447.2898546,2010.15321,18888.93041,1,1,1,1,1,1,1
-3094,83,1158.4807,1467.561552,902.0101535,976.9549423,447.2898546,447.2898546,2001.495493,18807.45873,1,1,1,1,1,1,1
-3094.5,83,1158.4807,1467.561552,888.0253752,1008.042959,447.2898546,447.2898546,2017.130857,18954.59175,1,1,1,1,1,1,1
-3095,83,1158.4807,1467.561552,905.5267277,988.0586801,447.2898546,447.2898546,2014.860798,18933.23017,1,1,1,1,1,1,1
-3095.5,83,1158.4807,1467.561552,918.2204709,949.6570436,447.2898546,447.2898546,1991.3595,18712.07637,1,1,1,1,1,1,1
-3096,83,1158.4807,1467.561552,917.5630968,936.099725,447.2898546,447.2898546,1978.365303,18589.79762,1,1,1,1,1,1,1
-3096.5,83,1158.4807,1467.561552,869.726461,986.7696026,447.2898546,447.2898546,1980.954598,18614.1638,1,1,1,1,1,1,1
-3097,83,1158.4807,1467.561552,839.78128,992.65567,447.2898546,447.2898546,1958.961164,18407.19934,1,1,1,1,1,1,1
-3097.5,83,1158.4807,1467.561552,817.0224965,959.1133654,447.2898546,447.2898546,1907.494353,17922.88223,1,1,1,1,1,1,1
-3098,83,1158.4807,1467.561552,830.5536501,912.474752,447.2898546,447.2898546,1877.339405,17639.20044,1,1,1,1,1,1,1
-3098.5,83,1158.4807,1467.561552,862.4698769,880.0754202,447.2898546,447.2898546,1876.863809,17634.69943,1,1,1,1,1,1,1
-3099,83,1158.4807,1467.561552,837.1208469,906.3571257,447.2898546,447.2898546,1877.700955,17642.56486,1,1,1,1,1,1,1
-3099.5,83,1158.4807,1467.561552,799.3933836,938.1092961,447.2898546,447.2898546,1872.341036,17592.20425,1,1,1,1,1,1,1
-3100,83,1158.4807,1467.561552,828.2264065,915.7076131,447.2898546,447.2898546,1878.126299,17646.57415,1,1,1,1,1,1,1
-3100.5,83,1158.4807,1467.561552,873.3734986,891.0931682,447.2898546,447.2898546,1896.826633,17822.49636,1,1,1,1,1,1,1
-3101,83,1158.4807,1467.561552,828.3909484,945.946506,447.2898546,447.2898546,1905.850013,17907.4087,1,1,1,1,1,1,1
-3101.5,83,1158.4807,1467.561552,796.4068256,973.3861202,447.2898546,447.2898546,1901.695939,17868.31757,1,1,1,1,1,1,1
-3102,83,1158.4807,1467.561552,816.0102265,945.5817281,447.2898546,447.2898546,1894.198679,17797.76667,1,1,1,1,1,1,1
-3102.5,83,1158.4807,1467.561552,853.075298,900.3157225,447.2898546,447.2898546,1886.701558,17727.2165,1,1,1,1,1,1,1
-3103,83,1158.4807,1467.561552,852.3300876,892.8585565,447.2898546,447.2898546,1879.256037,17657.19229,1,1,1,1,1,1,1
-3103.5,83,1158.4807,1467.561552,848.2343608,888.8621792,447.2898546,447.2898546,1871.976266,17588.77681,1,1,1,1,1,1,1
-3104,83,1158.4807,1467.561552,843.2647132,889.3854764,447.2898546,447.2898546,1867.987777,17551.30178,1,1,1,1,1,1,1
-3104.5,83,1158.4807,1467.561552,822.7052335,909.0615141,447.2898546,447.2898546,1867.1954,17543.8569,1,1,1,1,1,1,1
-3105,83,1158.4807,1467.561552,836.8658902,894.9008574,447.2898546,447.2898546,1867.1954,17543.8569,1,1,1,1,1,1,1
-3105.5,83,1158.4807,1467.561552,825.6853378,906.1987508,447.2898546,447.2898546,1867.300359,17544.84311,1,1,1,1,1,1,1
-3106,83,1158.4807,1467.561552,821.528346,914.163442,447.2898546,447.2898546,1870.716088,17576.93672,1,1,1,1,1,1,1
-3106.5,83,1158.4807,1467.561552,833.5429539,909.1190595,447.2898546,447.2898546,1876.968594,17635.68384,1,1,1,1,1,1,1
-3107,83,1158.4807,1467.561552,834.8981263,904.4729702,447.2898546,447.2898546,1874.016392,17607.94529,1,1,1,1,1,1,1
-3107.5,83,1158.4807,1467.561552,839.7078482,885.9520018,447.2898546,447.2898546,1861.716344,17492.37633,1,1,1,1,1,1,1
-3108,83,1158.4807,1467.561552,833.7605501,879.3428387,447.2898546,447.2898546,1850.452697,17386.54486,1,1,1,1,1,1,1
-3108.5,83,1158.4807,1467.561552,843.5041139,860.8280519,447.2898546,447.2898546,1842.58449,17312.61659,1,1,1,1,1,1,1
-3109,83,1158.4807,1467.561552,851.9406685,851.9406685,447.2898546,447.2898546,1842.180117,17308.81757,1,1,1,1,1,1,1
-3109.5,83,1158.4807,1467.561552,798.422091,911.8551641,447.2898546,447.2898546,1847.917856,17362.72808,1,1,1,1,1,1,1
-3110,83,1158.4807,1467.561552,799.9603258,914.621533,447.2898546,447.2898546,1851.779465,17399.01126,1,1,1,1,1,1,1
-3110.5,83,1158.4807,1467.561552,843.2889263,872.2620755,447.2898546,447.2898546,1852.648736,17407.17877,1,1,1,1,1,1,1
-3111,83,1158.4807,1467.561552,825.5373911,893.9333107,447.2898546,447.2898546,1856.165271,17440.21947,1,1,1,1,1,1,1
-3111.5,83,1158.4807,1467.561552,834.5329744,892.3302219,447.2898546,447.2898546,1862.796173,17502.52242,1,1,1,1,1,1,1
-3112,83,1158.4807,1467.561552,861.6893759,873.374783,447.2898546,447.2898546,1870.152907,17571.64515,1,1,1,1,1,1,1
-3112.5,83,1158.4807,1467.561552,819.5294321,923.5752149,447.2898546,447.2898546,1877.366505,17639.42276,1,1,1,1,1,1,1
-3113,83,1158.4807,1467.561552,812.4044524,934.9367955,447.2898546,447.2898546,1881.178689,17675.25064,1,1,1,1,1,1,1
-3113.5,83,1158.4807,1467.561552,839.1495994,909.3192229,447.2898546,447.2898546,1882.201353,17684.86849,1,1,1,1,1,1,1
-3114,83,1158.4807,1467.561552,816.9000175,939.5379775,447.2898546,447.2898546,1889.486819,17753.42685,1,1,1,1,1,1,1
-3114.5,83,1158.4807,1467.561552,817.5400523,953.3991631,447.2898546,447.2898546,1902.743243,17878.1731,1,1,1,1,1,1,1
-3115,83,1158.4807,1467.561552,862.7624724,916.5578795,447.2898546,447.2898546,1910.405386,17950.27581,1,1,1,1,1,1,1
-3115.5,83,1158.4807,1467.561552,881.3437548,899.1486791,447.2898546,447.2898546,1911.477249,17960.36239,1,1,1,1,1,1,1
-3116,83,1158.4807,1467.561552,859.7901135,912.6459305,447.2898546,447.2898546,1904.111536,17891.04901,1,1,1,1,1,1,1
-3116.5,83,1158.4807,1467.561552,860.9277598,896.4224428,447.2898546,447.2898546,1890.320829,17761.27466,1,1,1,1,1,1,1
-3117,83,1158.4807,1467.561552,854.039988,882.8607512,447.2898546,447.2898546,1871.828115,17587.40524,1,1,1,1,1,1,1
-3117.5,83,1158.4807,1467.561552,822.7337787,890.8897206,447.2898546,447.2898546,1850.919201,17390.92831,1,1,1,1,1,1,1
-3118,83,1158.4807,1467.561552,808.0969237,893.1597578,447.2898546,447.2898546,1839.824291,17286.68269,1,1,1,1,1,1,1
-3118.5,83,1158.4807,1467.561552,835.3740207,864.0708148,447.2898546,447.2898546,1838.199813,17271.41924,1,1,1,1,1,1,1
-3119,83,1158.4807,1467.561552,848.1553956,859.4904325,447.2898546,447.2898546,1845.556761,17340.544,1,1,1,1,1,1,1
-3119.5,83,1158.4807,1467.561552,841.5442293,881.6764415,447.2898546,447.2898546,1859.528368,17471.81881,1,1,1,1,1,1,1
-3120,83,1158.4807,1467.561552,820.5204958,931.4759619,447.2898546,447.2898546,1885.530299,17716.2735,1,1,1,1,1,1,1
-3120.5,83,1158.4807,1467.561552,816.7286964,971.7324781,447.2898546,447.2898546,1918.761151,18028.90594,1,1,1,1,1,1,1
-3121,83,1158.4807,1467.561552,817.5256861,966.3172375,447.2898546,447.2898546,1914.538751,17989.17242,1,1,1,1,1,1,1
-3121.5,83,1158.4807,1467.561552,835.3812855,906.189196,447.2898546,447.2898546,1876.150484,17628.12228,1,1,1,1,1,1,1
-3122,83,1158.4807,1467.561552,799.2106519,876.4488117,447.2898546,447.2898546,1816.862248,17070.93517,1,1,1,1,1,1,1
-3122.5,83,1158.4807,1467.561552,734.6564777,861.5899964,447.2898546,447.2898546,1745.621585,16401.5695,1,1,1,1,1,1,1
-3123,83,1158.4807,1467.561552,706.6553164,803.3483287,447.2898546,447.2898546,1668.254361,15674.64009,1,1,1,1,1,1,1
-3123.5,83,1158.4807,1467.561552,661.8245198,760.6198038,447.2898546,447.2898546,1589.705303,14936.60642,1,1,1,1,1,1,1
-3124,83,1158.4807,1467.561552,628.5756286,737.8931293,447.2898546,447.2898546,1539.490223,14464.79396,1,1,1,1,1,1,1
-3124.5,83,1158.4807,1467.561552,650.5089871,687.0708819,447.2898546,447.2898546,1515.293295,14237.44333,1,1,1,1,1,1,1
-3125,83,1158.4807,1467.561552,651.8661603,669.3058531,447.2898546,447.2898546,1502.927903,14121.26015,1,1,1,1,1,1,1
-3125.5,83,1158.4807,1467.561552,646.9709184,664.5341175,447.2898546,447.2898546,1495.922312,14055.43668,1,1,1,1,1,1,1
-3126,83,1158.4807,1467.561552,625.4154128,681.7389725,447.2898546,447.2898546,1492.769664,14025.81467,1,1,1,1,1,1,1
-3126.5,83,1158.4807,1467.561552,609.7042532,696.7428241,447.2898546,447.2898546,1492.257342,14021.00122,1,1,1,1,1,1,1
-3127,83,1158.4807,1467.561552,635.3702609,674.9539611,447.2898546,447.2898546,1495.066686,14047.39754,1,1,1,1,1,1,1
-3127.5,83,1158.4807,1467.561552,617.1530313,700.2572514,447.2898546,447.2898546,1500.201526,14095.64372,1,1,1,1,1,1,1
-3128,83,1158.4807,1467.561552,612.684794,705.1309632,447.2898546,447.2898546,1500.495972,14098.41037,1,1,1,1,1,1,1
-3128.5,83,1158.4807,1467.561552,616.4993639,695.2014103,447.2898546,447.2898546,1496.06486,14056.77632,1,1,1,1,1,1,1
-3129,83,1158.4807,1467.561552,639.9973309,675.2616094,447.2898546,447.2898546,1498.643315,14081.00293,1,1,1,1,1,1,1
-3129.5,83,1158.4807,1467.561552,640.0714809,688.6960299,447.2898546,447.2898546,1508.432183,14172.9771,1,1,1,1,1,1,1
-3130,83,1158.4807,1467.561552,642.1655334,691.1788488,447.2898546,447.2898546,1511.748785,14204.13976,1,1,1,1,1,1,1
-3130.5,83,1158.4807,1467.561552,626.3869244,701.3149124,447.2898546,447.2898546,1507.660432,14165.72652,1,1,1,1,1,1,1
-3131,83,1158.4807,1467.561552,632.9291904,690.5367381,447.2898546,447.2898546,1504.590398,14136.88094,1,1,1,1,1,1,1
-3131.5,83,1158.4807,1467.561552,623.7454459,698.4253936,447.2898546,447.2898546,1503.651574,14128.05944,1,1,1,1,1,1,1
-3132,83,1158.4807,1467.561552,604.9324082,705.284326,447.2898546,447.2898546,1494.988274,14046.66036,1,1,1,1,1,1,1
-3132.5,83,1158.4807,1467.561552,605.4952906,683.1445569,447.2898546,447.2898546,1479.352037,13899.74487,1,1,1,1,1,1,1
-3133,83,1158.4807,1467.561552,624.9845536,655.0897995,447.2898546,447.2898546,1473.144282,13841.41807,1,1,1,1,1,1,1
-3133.5,83,1158.4807,1467.561552,627.7363242,657.6518631,447.2898546,447.2898546,1476.995486,13877.60316,1,1,1,1,1,1,1
-3134,83,1158.4807,1467.561552,620.7179856,676.8951896,447.2898546,447.2898546,1485.855192,13960.84758,1,1,1,1,1,1,1
-3134.5,83,1158.4807,1467.561552,623.6224503,689.2669187,447.2898546,447.2898546,1496.925959,14064.86681,1,1,1,1,1,1,1
-3135,83,1158.4807,1467.561552,645.0782797,676.1022383,447.2898546,447.2898546,1502.934097,14121.3185,1,1,1,1,1,1,1
-3135.5,83,1158.4807,1467.561552,659.3002828,663.7682856,447.2898546,447.2898546,1504.302318,14134.17407,1,1,1,1,1,1,1
-3136,83,1158.4807,1467.561552,643.5054852,687.7165866,447.2898546,447.2898546,1510.21079,14189.68896,1,1,1,1,1,1,1
-3136.5,83,1158.4807,1467.561552,621.1506812,724.1889528,447.2898546,447.2898546,1521.089751,14291.90609,1,1,1,1,1,1,1
-3137,83,1158.4807,1467.561552,607.6831444,737.6550733,447.2898546,447.2898546,1520.771496,14288.9155,1,1,1,1,1,1,1
-3137.5,83,1158.4807,1467.561552,599.8048834,733.0948575,447.2898546,447.2898546,1511.426901,14201.11544,1,1,1,1,1,1,1
-3138,83,1158.4807,1467.561552,632.8032509,704.3161297,447.2898546,447.2898546,1514.484523,14229.84425,1,1,1,1,1,1,1
-3138.5,83,1158.4807,1467.561552,649.4345142,708.2535318,447.2898546,447.2898546,1531.786275,14392.40839,1,1,1,1,1,1,1
-3139,83,1158.4807,1467.561552,661.7756492,712.2228053,447.2898546,447.2898546,1546.245232,14528.26234,1,1,1,1,1,1,1
-3139.5,83,1158.4807,1467.561552,652.9021735,731.1647352,447.2898546,447.2898546,1555.27748,14613.12814,1,1,1,1,1,1,1
-3140,83,1158.4807,1467.561552,683.908181,716.7066992,447.2898546,447.2898546,1570.122372,14752.60799,1,1,1,1,1,1,1
-3140.5,83,1158.4807,1467.561552,687.7582347,735.1294834,447.2898546,447.2898546,1590.103583,14940.34839,1,1,1,1,1,1,1
-3141,83,1158.4807,1467.561552,674.8537887,755.8638646,447.2898546,447.2898546,1597.127405,15006.34276,1,1,1,1,1,1,1
-3141.5,83,1158.4807,1467.561552,650.7265081,773.8526011,447.2898546,447.2898546,1591.620625,14954.60215,1,1,1,1,1,1,1
-3142,83,1158.4807,1467.561552,668.6131167,735.100635,447.2898546,447.2898546,1572.902254,14778.72757,1,1,1,1,1,1,1
-3142.5,83,1158.4807,1467.561552,663.6471214,709.1360821,447.2898546,447.2898546,1545.155113,14518.0198,1,1,1,1,1,1,1
-3143,83,1158.4807,1467.561552,650.3328747,686.2639159,447.2898546,447.2898546,1515.085777,14235.4936,1,1,1,1,1,1,1
-3143.5,83,1158.4807,1467.561552,632.1773428,666.6708853,447.2898546,447.2898546,1486.749394,13969.24962,1,1,1,1,1,1,1
-3144,83,1158.4807,1467.561552,638.2669449,651.3003186,447.2898546,447.2898546,1480.023899,13906.05792,1,1,1,1,1,1,1
-3144.5,83,1158.4807,1467.561552,632.0176704,675.5872844,447.2898546,447.2898546,1493.096131,14028.88256,1,1,1,1,1,1,1
-3145,83,1158.4807,1467.561552,646.1185361,686.098253,447.2898546,447.2898546,1510.932198,14196.46729,1,1,1,1,1,1,1
-3145.5,83,1158.4807,1467.561552,633.071628,723.4612301,447.2898546,447.2898546,1530.824729,14383.37421,1,1,1,1,1,1,1
-3146,83,1158.4807,1467.561552,665.9275054,707.4168794,447.2898546,447.2898546,1545.658442,14522.74926,1,1,1,1,1,1,1
-3146.5,83,1158.4807,1467.561552,691.0745427,691.0745427,447.2898546,447.2898546,1553.556667,14596.95936,1,1,1,1,1,1,1
-3147,83,1158.4807,1467.561552,654.5977692,708.3136573,447.2898546,447.2898546,1536.298826,14434.80771,1,1,1,1,1,1,1
-3147.5,83,1158.4807,1467.561552,616.0080351,703.829777,447.2898546,447.2898546,1502.377909,14116.09217,1,1,1,1,1,1,1
-3148,83,1158.4807,1467.561552,625.8185426,656.6400185,447.2898546,447.2898546,1474.872795,13857.65858,1,1,1,1,1,1,1
-3148.5,83,1158.4807,1467.561552,611.2082632,644.242427,447.2898546,447.2898546,1455.300036,13673.75633,1,1,1,1,1,1,1
-3149,83,1158.4807,1467.561552,566.5218926,664.3301222,447.2898546,447.2898546,1438.493291,13515.84304,1,1,1,1,1,1,1
-3149.5,83,1158.4807,1467.561552,559.3078653,648.2823002,447.2898546,447.2898546,1423.52096,13375.16533,1,1,1,1,1,1,1
-3150,83,1158.4807,1467.561552,583.1335637,631.7401866,447.2898546,447.2898546,1428.134057,13418.50926,1,1,1,1,1,1,1
-3150.5,83,1158.4807,1467.561552,618.2002571,630.5888768,447.2898546,447.2898546,1450.994567,13633.30293,1,1,1,1,1,1,1
-3151,83,1158.4807,1467.561552,634.8716873,634.8716873,447.2898546,447.2898546,1465.657742,13771.07557,1,1,1,1,1,1,1
-3151.5,83,1158.4807,1467.561552,599.1735784,675.1424426,447.2898546,447.2898546,1468.971202,13802.20834,1,1,1,1,1,1,1
-3152,83,1158.4807,1467.561552,591.4449504,698.9852641,447.2898546,447.2898546,1480.649446,13911.93552,1,1,1,1,1,1,1
-3152.5,83,1158.4807,1467.561552,633.4725512,686.1828573,447.2898546,447.2898546,1501.829194,14110.93703,1,1,1,1,1,1,1
-3153,83,1158.4807,1467.561552,647.8335218,692.456485,447.2898546,447.2898546,1516.839603,14251.97227,1,1,1,1,1,1,1
-3153.5,83,1158.4807,1467.561552,635.2746682,716.2479756,447.2898546,447.2898546,1526.081516,14338.80788,1,1,1,1,1,1,1
-3154,83,1158.4807,1467.561552,626.076465,749.9506852,447.2898546,447.2898546,1548.064824,14545.359,1,1,1,1,1,1,1
-3154.5,83,1158.4807,1467.561552,660.0758443,754.2152813,447.2898546,447.2898546,1582.391636,14867.88797,1,1,1,1,1,1,1
-3155,83,1158.4807,1467.561552,702.9810069,756.4121227,447.2898546,447.2898546,1622.851482,15248.0421,1,1,1,1,1,1,1
-3155.5,83,1158.4807,1467.561552,746.6733731,761.6238088,447.2898546,447.2898546,1666.722314,15660.24507,1,1,1,1,1,1,1
-3156,83,1158.4807,1467.561552,746.1072377,819.6464799,447.2898546,447.2898546,1718.265926,16144.5405,1,1,1,1,1,1,1
-3156.5,83,1158.4807,1467.561552,757.6118703,871.660969,447.2898546,447.2898546,1775.24916,16679.94549,1,1,1,1,1,1,1
-3157,83,1158.4807,1467.561552,776.7143998,905.7327301,447.2898546,447.2898546,1822.951562,17128.14896,1,1,1,1,1,1,1
-3157.5,83,1158.4807,1467.561552,811.0449824,914.5359616,447.2898546,447.2898546,1861.646235,17491.71772,1,1,1,1,1,1,1
-3158,83,1158.4807,1467.561552,821.4489353,945.1494313,447.2898546,447.2898546,1898.819752,17841.28595,1,1,1,1,1,1,1
-3158.5,83,1158.4807,1467.561552,843.5545102,964.0388879,447.2898546,447.2898546,1936.251181,18193.49238,1,1,1,1,1,1,1
-3159,83,1158.4807,1467.561552,875.0163667,973.5999945,447.2898546,447.2898546,1973.752532,18546.39023,1,1,1,1,1,1,1
-3159.5,83,1158.4807,1467.561552,929.7846756,961.2419917,447.2898546,447.2898546,2012.52189,18911.22043,1,1,1,1,1,1,1
-3160,83,1158.4807,1467.561552,978.6881569,978.6881569,447.2898546,447.2898546,2073.174473,19481.97771,1,1,1,1,1,1,1
-3160.5,83,1158.4807,1467.561552,967.4607166,1077.442948,447.2898546,447.2898546,2153.187061,20234.91776,1,1,1,1,1,1,1
-3161,83,1158.4807,1467.561552,1023.081804,1137.559399,447.2898546,447.2898546,2254.245722,21185.50007,1,1,1,1,1,1,1
-3161.5,83,1158.4807,1467.561552,1070.794751,1224.653117,447.2898546,447.2898546,2360.282867,22182.13418,1,1,1,1,1,1,1
-3162,83,1158.4807,1467.561552,1140.675252,1285.731545,447.2898546,447.2898546,2469.687207,23209.12474,1,1,1,1,1,1,1
-3162.5,83,1158.4807,1467.561552,1235.670949,1311.641667,447.2898546,447.2898546,2578.095393,24226.19428,1,1,1,1,1,1,1
-3163,83,1158.4807,1467.561552,1237.662729,1376.992855,447.2898546,447.2898546,2639.048545,24798.01129,1,1,1,1,1,1,1
-3163.5,83,1158.4807,1467.561552,1269.469939,1366.590272,447.2898546,447.2898546,2658.421705,24979.75547,1,1,1,1,1,1,1
-3164,83,1158.4807,1467.561552,1238.182897,1358.303033,447.2898546,447.2898546,2622.602458,24643.72585,1,1,1,1,1,1,1
-3164.5,83,1158.4807,1467.561552,1173.544596,1340.856378,447.2898546,447.2898546,2548.305807,23946.73062,1,1,1,1,1,1,1
-3165,83,1158.4807,1467.561552,1156.850407,1263.007242,447.2898546,447.2898546,2462.732648,23143.94767,1,1,1,1,1,1,1
-3165.5,83,1158.4807,1467.561552,1134.490949,1189.025371,447.2898546,447.2898546,2383.288757,22398.1732,1,1,1,1,1,1,1
-3166,83,1158.4807,1467.561552,1093.589805,1153.256152,447.2898546,447.2898546,2324.387531,21844.86812,1,1,1,1,1,1,1
-3166.5,83,1158.4807,1467.561552,1046.282936,1140.599575,447.2898546,447.2898546,2278.039347,21409.38849,1,1,1,1,1,1,1
-3167,83,1158.4807,1467.561552,1022.685263,1115.536933,447.2898546,447.2898546,2237.675738,21029.9089,1,1,1,1,1,1,1
-3167.5,83,1158.4807,1467.561552,986.0947142,1111.403692,447.2898546,447.2898546,2201.267411,20687.36706,1,1,1,1,1,1,1
-3168,83,1158.4807,1467.561552,1014.580358,1063.868499,447.2898546,447.2898546,2183.852677,20523.49,1,1,1,1,1,1,1
-3168.5,83,1158.4807,1467.561552,968.2747761,1105.550117,447.2898546,447.2898546,2179.625601,20483.71168,1,1,1,1,1,1,1
-3169,83,1158.4807,1467.561552,977.3618693,1074.418756,447.2898546,447.2898546,2159.473696,20294.07686,1,1,1,1,1,1,1
-3169.5,83,1158.4807,1467.561552,998.842688,1012.631322,447.2898546,447.2898546,2122.627727,19947.34646,1,1,1,1,1,1,1
-3170,83,1158.4807,1467.561552,931.7874189,1007.692368,447.2898546,447.2898546,2056.814256,19328.0238,1,1,1,1,1,1,1
-3170.5,83,1158.4807,1467.561552,872.4195026,971.0461984,447.2898546,447.2898546,1969.043135,18502.07357,1,1,1,1,1,1,1
-3171,83,1158.4807,1467.561552,823.900652,898.9255468,447.2898546,447.2898546,1859.532724,17472.13727,1,1,1,1,1,1,1
-3171.5,83,1158.4807,1467.561552,757.6105064,831.3898428,447.2898546,447.2898546,1739.120565,16340.48722,1,1,1,1,1,1,1
-3172,83,1158.4807,1467.561552,705.5752022,779.8462761,447.2898546,447.2898546,1646.200754,15467.42797,1,1,1,1,1,1,1
-3172.5,83,1158.4807,1467.561552,684.1240264,727.1029424,447.2898546,447.2898546,1579.642548,14842.05806,1,1,1,1,1,1,1
-3173,83,1158.4807,1467.561552,667.9535041,723.4535682,447.2898546,447.2898546,1561.861791,14674.99314,1,1,1,1,1,1,1
-3173.5,83,1158.4807,1467.561552,645.5913558,762.9154719,447.2898546,447.2898546,1577.20223,14819.12915,1,1,1,1,1,1,1
-3174,83,1158.4807,1467.561552,645.5585124,778.5094048,447.2898546,447.2898546,1591.162193,14950.29463,1,1,1,1,1,1,1
-3174.5,83,1158.4807,1467.561552,655.9230747,775.2397208,447.2898546,447.2898546,1597.526309,15010.09096,1,1,1,1,1,1,1
-3175,83,1158.4807,1467.561552,677.4092508,734.6912634,447.2898546,447.2898546,1580.426285,14849.42211,1,1,1,1,1,1,1
-3175.5,83,1158.4807,1467.561552,656.1477535,719.7648896,447.2898546,447.2898546,1547.962316,14544.39587,1,1,1,1,1,1,1
-3176,83,1158.4807,1467.561552,635.9861631,717.175886,447.2898546,447.2898546,1527.553319,14352.63645,1,1,1,1,1,1,1
-3176.5,83,1158.4807,1467.561552,646.30989,700.3733039,447.2898546,447.2898546,1521.741136,14298.02589,1,1,1,1,1,1,1
-3177,83,1158.4807,1467.561552,638.8809794,745.4933459,447.2898546,447.2898546,1555.553599,14615.72243,1,1,1,1,1,1,1
-3177.5,83,1158.4807,1467.561552,689.2417377,766.1010674,447.2898546,447.2898546,1619.218971,15213.91167,1,1,1,1,1,1,1
-3178,83,1158.4807,1467.561552,745.2482464,813.159396,447.2898546,447.2898546,1711.676299,16082.62493,1,1,1,1,1,1,1
-3178.5,83,1158.4807,1467.561552,820.4226038,858.8019324,447.2898546,447.2898546,1820.059922,17100.97977,1,1,1,1,1,1,1
-3179,83,1158.4807,1467.561552,850.2797089,927.9056596,447.2898546,447.2898546,1909.518205,17942.04231,1,1,1,1,1,1,1
-3179.5,83,1158.4807,1467.561552,878.0572922,976.9112258,447.2898546,447.2898546,1979.559015,18601.03035,1,1,1,1,1,1,1
-3180,83,1158.4807,1467.561552,874.240893,1033.250001,447.2898546,447.2898546,2027.572266,19052.84797,1,1,1,1,1,1,1
-3180.5,83,1158.4807,1467.561552,919.0403593,1022.739321,447.2898546,447.2898546,2058.917038,19347.81111,1,1,1,1,1,1,1
-3181,83,1158.4807,1467.561552,962.4077091,982.1884022,447.2898546,447.2898546,2061.491058,19372.03347,1,1,1,1,1,1,1
-3181.5,83,1158.4807,1467.561552,930.9534525,994.4420463,447.2898546,447.2898546,2043.939304,19206.867,1,1,1,1,1,1,1
-3182,83,1158.4807,1467.561552,915.3397094,998.3652396,447.2898546,447.2898546,2033.253064,19106.30649,1,1,1,1,1,1,1
-3182.5,83,1158.4807,1467.561552,910.7875169,999.8620481,447.2898546,447.2898546,2030.459325,19080.01662,1,1,1,1,1,1,1
-3183,83,1158.4807,1467.561552,880.6159206,1012.726571,447.2898546,447.2898546,2014.637969,18931.13336,1,1,1,1,1,1,1
-3183.5,83,1158.4807,1467.561552,888.3771033,976.1471794,447.2898546,447.2898546,1988.294546,18683.23465,1,1,1,1,1,1,1
-3184,83,1158.4807,1467.561552,868.2492149,985.2087705,447.2898546,447.2898546,1978.178546,18588.04044,1,1,1,1,1,1,1
-3184.5,83,1158.4807,1467.561552,848.4871208,1009.440904,447.2898546,447.2898546,1982.264604,18626.49133,1,1,1,1,1,1,1
-3185,83,1158.4807,1467.561552,894.2712135,963.1204689,447.2898546,447.2898546,1981.774489,18621.87907,1,1,1,1,1,1,1
-3185.5,83,1158.4807,1467.561552,898.049281,953.2958076,447.2898546,447.2898546,1976.246274,18569.85705,1,1,1,1,1,1,1
-3186,83,1158.4807,1467.561552,878.7126364,977.5992174,447.2898546,447.2898546,1980.786573,18612.58257,1,1,1,1,1,1,1
-3186.5,83,1158.4807,1467.561552,866.7496807,1003.829738,447.2898546,447.2898546,1993.829126,18735.31665,1,1,1,1,1,1,1
-3187,83,1158.4807,1467.561552,897.2016188,985.3636405,447.2898546,447.2898546,2004.785907,18838.4227,1,1,1,1,1,1,1
-3187.5,83,1158.4807,1467.561552,930.0186241,961.6769344,447.2898546,447.2898546,2013.132989,18916.97072,1,1,1,1,1,1,1
-3188,83,1158.4807,1467.561552,904.7103357,999.6124525,447.2898546,447.2898546,2024.67584,19025.59185,1,1,1,1,1,1,1
-3188.5,83,1158.4807,1467.561552,872.8377857,1045.303422,447.2898546,447.2898546,2037.308392,19144.46793,1,1,1,1,1,1,1
-3189,83,1158.4807,1467.561552,896.2697,1011.551201,447.2898546,447.2898546,2027.873399,19055.68199,1,1,1,1,1,1,1
-3189.5,83,1158.4807,1467.561552,927.7798001,953.4559291,447.2898546,447.2898546,2003.571015,18826.98989,1,1,1,1,1,1,1
-3190,83,1158.4807,1467.561552,935.8622098,948.3826024,447.2898546,447.2898546,2006.321454,18852.87231,1,1,1,1,1,1,1
-3190.5,83,1158.4807,1467.561552,953.3943784,959.7812534,447.2898546,447.2898546,2032.767946,19101.74095,1,1,1,1,1,1,1
-3191,83,1158.4807,1467.561552,977.4866354,977.4866354,447.2898546,447.2898546,2070.977116,19461.30011,1,1,1,1,1,1,1
-3191.5,83,1158.4807,1467.561552,987.7995183,1014.533802,447.2898546,447.2898546,2114.271953,19868.71636,1,1,1,1,1,1,1
-3192,83,1158.4807,1467.561552,1014.430221,1028.067855,447.2898546,447.2898546,2150.988982,20214.23341,1,1,1,1,1,1,1
-3192.5,83,1158.4807,1467.561552,1034.876536,1034.876536,447.2898546,447.2898546,2175.903927,20448.68948,1,1,1,1,1,1,1
-3193,83,1158.4807,1467.561552,951.0297859,1069.740926,447.2898546,447.2898546,2131.126541,20027.32203,1,1,1,1,1,1,1
-3193.5,83,1158.4807,1467.561552,918.1927629,1003.730863,447.2898546,447.2898546,2040.765364,19176.99891,1,1,1,1,1,1,1
-3194,83,1158.4807,1467.561552,915.0556208,965.0881979,447.2898546,447.2898546,2002.572026,18817.5892,1,1,1,1,1,1,1
-3194.5,83,1158.4807,1467.561552,885.1719655,1004.655071,447.2898546,447.2898546,2011.424064,18900.88964,1,1,1,1,1,1,1
-3195,83,1158.4807,1467.561552,893.8678174,1035.316613,447.2898546,447.2898546,2047.402568,19239.45692,1,1,1,1,1,1,1
-3195.5,83,1158.4807,1467.561552,916.0656434,1068.236454,447.2898546,447.2898546,2097.788568,19713.60277,1,1,1,1,1,1,1
-3196,83,1158.4807,1467.561552,996.1008362,1050.25357,447.2898546,447.2898546,2154.513738,20247.40244,1,1,1,1,1,1,1
-3196.5,83,1158.4807,1467.561552,1052.245602,1052.245602,447.2898546,447.2898546,2207.659801,20747.52129,1,1,1,1,1,1,1
-3197,83,1158.4807,1467.561552,1004.449133,1086.899162,447.2898546,447.2898546,2195.644586,20634.45485,1,1,1,1,1,1,1
-3197.5,83,1158.4807,1467.561552,986.1415576,1041.466999,447.2898546,447.2898546,2137.376837,20086.13938,1,1,1,1,1,1,1
-3198,83,1158.4807,1467.561552,928.8400008,1038.886823,447.2898546,447.2898546,2082.635788,19571.01082,1,1,1,1,1,1,1
-3198.5,83,1158.4807,1467.561552,927.9926059,993.3046958,447.2898546,447.2898546,2040.192455,19171.60744,1,1,1,1,1,1,1
-3199,83,1158.4807,1467.561552,943.443276,975.378253,447.2898546,447.2898546,2037.929259,19150.31036,1,1,1,1,1,1,1
-3199.5,83,1158.4807,1467.561552,965.2648654,978.2695651,447.2898546,447.2898546,2060.520367,19362.89886,1,1,1,1,1,1,1
-3200,83,1158.4807,1467.561552,933.2304971,1010.255557,447.2898546,447.2898546,2060.476342,19362.48473,1,1,1,1,1,1,1
-3200.5,83,1158.4807,1467.561552,903.0706406,1018.356254,447.2898546,447.2898546,2040.311714,19172.72998,1,1,1,1,1,1,1
-3201,83,1158.4807,1467.561552,924.3139959,963.079765,447.2898546,447.2898546,2009.20082,18879.96806,1,1,1,1,1,1,1
-3201.5,83,1158.4807,1467.561552,894.8621108,955.731386,447.2898546,447.2898546,1975.559183,18563.39118,1,1,1,1,1,1,1
-3202,83,1158.4807,1467.561552,875.2927457,967.4288242,447.2898546,447.2898546,1968.363188,18495.67465,1,1,1,1,1,1,1
-3202.5,83,1158.4807,1467.561552,875.3394647,980.4549622,447.2898546,447.2898546,1980.313535,18608.13099,1,1,1,1,1,1,1
-3203,83,1158.4807,1467.561552,904.7996457,967.3939076,447.2898546,447.2898546,1995.304791,18749.20253,1,1,1,1,1,1,1
-3203.5,83,1158.4807,1467.561552,924.701349,962.4442612,447.2898546,447.2898546,2008.972821,18877.82218,1,1,1,1,1,1,1
-3204,83,1158.4807,1467.561552,888.2171753,1001.009292,447.2898546,447.2898546,2010.875311,18895.72528,1,1,1,1,1,1,1
-3204.5,83,1158.4807,1467.561552,870.5106904,1008.412426,447.2898546,447.2898546,2001.456474,18807.09142,1,1,1,1,1,1,1
-3205,83,1158.4807,1467.561552,836.2315084,1000.955266,447.2898546,447.2898546,1963.303043,18448.05746,1,1,1,1,1,1,1
-3205.5,83,1158.4807,1467.561552,852.5983453,925.6583211,447.2898546,447.2898546,1909.432294,17941.11903,1,1,1,1,1,1,1
-3206,83,1158.4807,1467.561552,852.9229149,893.4375414,447.2898546,447.2898546,1880.349777,17667.50136,1,1,1,1,1,1,1
-3206.5,83,1158.4807,1467.561552,823.8031463,910.2055645,447.2898546,447.2898546,1869.20681,17562.75594,1,1,1,1,1,1,1
-3207,83,1158.4807,1467.561552,817.9031851,898.2416102,447.2898546,447.2898546,1853.181194,17412.18172,1,1,1,1,1,1,1
-3207.5,83,1158.4807,1467.561552,802.6987152,892.8899346,447.2898546,447.2898546,1834.740415,17238.91528,1,1,1,1,1,1,1
-3208,83,1158.4807,1467.561552,782.1124226,918.0080423,447.2898546,447.2898546,1838.805122,17277.10657,1,1,1,1,1,1,1
-3208.5,83,1158.4807,1467.561552,798.9858668,919.3745642,447.2898546,447.2898546,1855.168354,17430.85294,1,1,1,1,1,1,1
-3209,83,1158.4807,1467.561552,803.1479748,905.6775035,447.2898546,447.2898546,1846.615348,17350.49039,1,1,1,1,1,1,1
-3209.5,83,1158.4807,1467.561552,780.1090184,903.2910564,447.2898546,447.2898546,1823.806055,17136.17775,1,1,1,1,1,1,1
-3210,83,1158.4807,1467.561552,811.0219952,878.7578197,447.2898546,447.2898546,1829.528944,17189.94894,1,1,1,1,1,1,1
-3210.5,83,1158.4807,1467.561552,811.9540685,903.3542415,447.2898546,447.2898546,1852.430897,17405.13198,1,1,1,1,1,1,1
-3211,83,1158.4807,1467.561552,808.1730328,905.5068967,447.2898546,447.2898546,1850.969878,17391.40428,1,1,1,1,1,1,1
-3211.5,83,1158.4807,1467.561552,822.6526502,873.8947498,447.2898546,447.2898546,1835.60046,17246.99561,1,1,1,1,1,1,1
-3212,83,1158.4807,1467.561552,804.4080382,907.0606451,447.2898546,447.2898546,1848.985901,17372.7631,1,1,1,1,1,1,1
-3212.5,83,1158.4807,1467.561552,820.5065205,925.246106,447.2898546,447.2898546,1879.862575,17662.96918,1,1,1,1,1,1,1
-3213,83,1158.4807,1467.561552,834.6716445,922.5318176,447.2898546,447.2898546,1890.186862,17760.01415,1,1,1,1,1,1,1
-3213.5,83,1158.4807,1467.561552,809.0645027,943.0122478,447.2898546,447.2898546,1885.500674,17715.91599,1,1,1,1,1,1,1
-3214,83,1158.4807,1467.561552,847.7208406,900.9127568,447.2898546,447.2898546,1882.35268,17686.29264,1,1,1,1,1,1,1
-3214.5,83,1158.4807,1467.561552,839.1457345,908.5780434,447.2898546,447.2898546,1881.521207,17678.46846,1,1,1,1,1,1,1
-3215,83,1158.4807,1467.561552,853.8347847,889.2534405,447.2898546,447.2898546,1877.354625,17639.31311,1,1,1,1,1,1,1
-3215.5,83,1158.4807,1467.561552,861.5542279,873.0194426,447.2898546,447.2898546,1869.71296,17567.51153,1,1,1,1,1,1,1
-3216,83,1158.4807,1467.561552,844.2822199,872.7747493,447.2898546,447.2898546,1853.999312,17419.86882,1,1,1,1,1,1,1
-3216.5,83,1158.4807,1467.561552,836.8697627,859.6100944,447.2898546,447.2898546,1835.539863,17246.42649,1,1,1,1,1,1,1
-3217,83,1158.4807,1467.561552,792.7516874,911.8402952,447.2898546,447.2898546,1842.816855,17314.80011,1,1,1,1,1,1,1
-3217.5,83,1158.4807,1467.561552,784.6250233,946.1813516,447.2898546,447.2898546,1866.33341,17535.75802,1,1,1,1,1,1,1
-3218,83,1158.4807,1467.561552,821.7813639,908.9766349,447.2898546,447.2898546,1866.290243,17535.35219,1,1,1,1,1,1,1
-3218.5,83,1158.4807,1467.561552,847.1849179,864.6750585,447.2898546,447.2898546,1849.336881,17376.06109,1,1,1,1,1,1,1
-3219,83,1158.4807,1467.561552,798.6628761,912.1602746,447.2898546,447.2898546,1848.406576,17367.31993,1,1,1,1,1,1,1
-3219.5,83,1158.4807,1467.561552,797.9911278,924.4993748,447.2898546,447.2898546,1858.874015,17465.67033,1,1,1,1,1,1,1
-3220,83,1158.4807,1467.561552,800.4968307,914.7293651,447.2898546,447.2898546,1852.357504,17404.44248,1,1,1,1,1,1,1
-3220.5,83,1158.4807,1467.561552,782.9749966,912.8684697,447.2898546,447.2898546,1834.969174,17241.06459,1,1,1,1,1,1,1
-3221,83,1158.4807,1467.561552,815.7665437,883.9940167,447.2898546,447.2898546,1838.482442,17274.07436,1,1,1,1,1,1,1
-3221.5,83,1158.4807,1467.561552,843.3288857,877.7504729,447.2898546,447.2898546,1857.606874,17453.76458,1,1,1,1,1,1,1
-3222,83,1158.4807,1467.561552,829.9059813,910.9958238,447.2898546,447.2898546,1875.390246,17620.85456,1,1,1,1,1,1,1
-3222.5,83,1158.4807,1467.561552,802.1286656,954.152734,447.2898546,447.2898546,1889.345251,17752.0955,1,1,1,1,1,1,1
-3223,83,1158.4807,1467.561552,849.4064878,908.8953843,447.2898546,447.2898546,1891.191391,17769.46745,1,1,1,1,1,1,1
-3223.5,83,1158.4807,1467.561552,875.725923,875.725923,447.2898546,447.2898546,1884.928808,17710.5347,1,1,1,1,1,1,1
-3224,83,1158.4807,1467.561552,831.2878848,911.9664614,447.2898546,447.2898546,1877.510197,17640.78016,1,1,1,1,1,1,1
-3224.5,83,1158.4807,1467.561552,834.4566871,898.51292,447.2898546,447.2898546,1868.274631,17553.99702,1,1,1,1,1,1,1
-3225,83,1158.4807,1467.561552,846.8789827,858.5610146,447.2898546,447.2898546,1843.57771,17321.94854,1,1,1,1,1,1,1
-3225.5,83,1158.4807,1467.561552,834.9389044,834.9389044,447.2898546,447.2898546,1811.674918,17022.19542,1,1,1,1,1,1,1
-3226,83,1158.4807,1467.561552,803.8618209,859.0030905,447.2898546,447.2898546,1805.384103,16963.08788,1,1,1,1,1,1,1
-3226.5,83,1158.4807,1467.561552,795.9700819,879.7564063,447.2898546,447.2898546,1816.922093,17071.49709,1,1,1,1,1,1,1
-3227,83,1158.4807,1467.561552,829.4292597,857.8212843,447.2898546,447.2898546,1827.260187,17168.6319,1,1,1,1,1,1,1
-3227.5,83,1158.4807,1467.561552,847.1071605,847.1071605,447.2898546,447.2898546,1833.507037,17227.32656,1,1,1,1,1,1,1
-3228,83,1158.4807,1467.561552,827.13936,860.5823368,447.2898546,447.2898546,1827.682269,17172.59828,1,1,1,1,1,1,1
-3228.5,83,1158.4807,1467.561552,828.881945,845.9418024,447.2898546,447.2898546,1816.112325,17063.88903,1,1,1,1,1,1,1
-3229,83,1158.4807,1467.561552,827.9110336,850.1875486,447.2898546,447.2898546,1819.049598,17091.487,1,1,1,1,1,1,1
-3229.5,83,1158.4807,1467.561552,816.8743549,873.110086,447.2898546,447.2898546,1829.712364,17191.67224,1,1,1,1,1,1,1
-3230,83,1158.4807,1467.561552,812.7557048,868.9287506,447.2898546,447.2898546,1822.266381,17121.71092,1,1,1,1,1,1,1
-3230.5,83,1158.4807,1467.561552,823.9957268,840.9739758,447.2898546,447.2898546,1807.272323,16980.82966,1,1,1,1,1,1,1
-3231,83,1158.4807,1467.561552,811.1127615,878.8739373,447.2898546,447.2898546,1829.715137,17191.69883,1,1,1,1,1,1,1
-3231.5,83,1158.4807,1467.561552,827.9220285,908.9176771,447.2898546,447.2898546,1871.811788,17587.28224,1,1,1,1,1,1,1
-3232,83,1158.4807,1467.561552,800.5144339,938.9323682,447.2898546,447.2898546,1874.118936,17608.93488,1,1,1,1,1,1,1
-3232.5,83,1158.4807,1467.561552,792.7140959,918.8169878,447.2898546,447.2898546,1849.042221,17373.29274,1,1,1,1,1,1,1
-3233,83,1158.4807,1467.561552,819.0734619,864.6367097,447.2898546,447.2898546,1824.084312,17138.79212,1,1,1,1,1,1,1
-3233.5,83,1158.4807,1467.561552,773.0161698,888.215926,447.2898546,447.2898546,1803.918968,16949.32197,1,1,1,1,1,1,1
-3234,83,1158.4807,1467.561552,772.9712341,883.7466883,447.2898546,447.2898546,1799.869669,16911.27551,1,1,1,1,1,1,1
-3234.5,83,1158.4807,1467.561552,779.6848543,885.0122093,447.2898546,447.2898546,1807.02767,16978.53086,1,1,1,1,1,1,1
-3235,83,1158.4807,1467.561552,816.1751058,866.8143348,447.2898546,447.2898546,1823.437057,17132.71072,1,1,1,1,1,1,1
-3235.5,83,1158.4807,1467.561552,823.4142115,886.0440386,447.2898546,447.2898546,1847.182084,17355.81523,1,1,1,1,1,1,1
-3236,83,1158.4807,1467.561552,839.1680851,915.1478053,447.2898546,447.2898546,1887.707926,17736.80961,1,1,1,1,1,1,1
-3236.5,83,1158.4807,1467.561552,871.5030004,931.5823409,447.2898546,447.2898546,1932.129647,18154.70757,1,1,1,1,1,1,1
-3237,83,1158.4807,1467.561552,875.6479176,929.8117063,447.2898546,447.2898546,1934.299678,18175.12774,1,1,1,1,1,1,1
-3237.5,83,1158.4807,1467.561552,827.5301064,951.1567642,447.2898546,447.2898546,1909.825529,17944.81934,1,1,1,1,1,1,1
-3238,83,1158.4807,1467.561552,851.0809259,904.8468702,447.2898546,447.2898546,1889.020755,17749.04097,1,1,1,1,1,1,1
-3238.5,83,1158.4807,1467.561552,851.8795225,886.2951851,447.2898546,447.2898546,1872.957736,17598.0099,1,1,1,1,1,1,1
-3239,83,1158.4807,1467.561552,804.4604869,912.5622351,447.2898546,447.2898546,1853.968853,17419.58252,1,1,1,1,1,1,1
-3239.5,83,1158.4807,1467.561552,802.199728,893.1064634,447.2898546,447.2898546,1834.487108,17236.53517,1,1,1,1,1,1,1
-3240,83,1158.4807,1467.561552,835.8796357,858.6909605,447.2898546,447.2898546,1833.827016,17230.33301,1,1,1,1,1,1,1
-3240.5,83,1158.4807,1467.561552,831.3990995,876.785731,447.2898546,447.2898546,1846.03977,17345.08171,1,1,1,1,1,1,1
-3241,83,1158.4807,1467.561552,842.6131304,877.175412,447.2898546,447.2898546,1856.448988,17442.88535,1,1,1,1,1,1,1
-3241.5,83,1158.4807,1467.561552,820.7156046,906.7137504,447.2898546,447.2898546,1863.304269,17507.29676,1,1,1,1,1,1,1
-3242,83,1158.4807,1467.561552,808.3003484,917.7034531,447.2898546,447.2898546,1862.025148,17495.27842,1,1,1,1,1,1,1
-3242.5,83,1158.4807,1467.561552,801.8590067,916.3064946,447.2898546,447.2898546,1854.993232,17429.20753,1,1,1,1,1,1,1
-3243,83,1158.4807,1467.561552,815.4026406,889.731432,447.2898546,447.2898546,1843.303287,17319.37041,1,1,1,1,1,1,1
-3243.5,83,1158.4807,1467.561552,821.0452906,871.8315973,447.2898546,447.2898546,1832.307928,17216.06003,1,1,1,1,1,1,1
-3244,83,1158.4807,1467.561552,829.5737905,880.8876332,447.2898546,447.2898546,1848.083091,17364.28062,1,1,1,1,1,1,1
-3244.5,83,1158.4807,1467.561552,852.5171272,893.2469429,447.2898546,447.2898546,1879.879018,17663.12723,1,1,1,1,1,1,1
-3245,83,1158.4807,1467.561552,816.830331,945.5539096,447.2898546,447.2898546,1894.922626,17804.57933,1,1,1,1,1,1,1
-3245.5,83,1158.4807,1467.561552,853.2751095,912.8797549,447.2898546,447.2898546,1898.370058,17837.02039,1,1,1,1,1,1,1
-3246,83,1158.4807,1467.561552,831.2267834,949.622389,447.2898546,447.2898546,1911.802752,17963.42593,1,1,1,1,1,1,1
-3246.5,83,1158.4807,1467.561552,851.9838599,948.2684216,447.2898546,447.2898546,1929.540411,18130.34208,1,1,1,1,1,1,1
-3247,83,1158.4807,1467.561552,832.9493381,957.4721865,447.2898546,447.2898546,1920.553367,18045.7714,1,1,1,1,1,1,1
-3247.5,83,1158.4807,1467.561552,813.6741287,949.1094971,447.2898546,447.2898546,1895.288129,17808.01837,1,1,1,1,1,1,1
-3248,83,1158.4807,1467.561552,848.3554028,901.3801533,447.2898546,447.2898546,1883.359965,17695.77131,1,1,1,1,1,1,1
-3248.5,83,1158.4807,1467.561552,829.7766767,916.5913185,447.2898546,447.2898546,1880.299448,17666.98512,1,1,1,1,1,1,1
-3249,83,1158.4807,1467.561552,827.9745662,903.5036867,447.2898546,447.2898546,1866.936321,17541.4225,1,1,1,1,1,1,1
-3249.5,83,1158.4807,1467.561552,790.0951201,920.3676149,447.2898546,447.2898546,1848.084244,17364.29127,1,1,1,1,1,1,1
-3250,83,1158.4807,1467.561552,795.8627556,909.9221381,447.2898546,447.2898546,1843.887635,17324.86073,1,1,1,1,1,1,1
-3250.5,83,1158.4807,1467.561552,813.1157191,898.7068474,447.2898546,447.2898546,1849.303482,17375.74738,1,1,1,1,1,1,1
-3251,83,1158.4807,1467.561552,797.5965929,917.4259051,447.2898546,447.2898546,1852.174488,17402.72301,1,1,1,1,1,1,1
-3251.5,83,1158.4807,1467.561552,781.9871026,930.298145,447.2898546,447.2898546,1849.719097,17379.65224,1,1,1,1,1,1,1
-3252,83,1158.4807,1467.561552,789.8423986,897.3151895,447.2898546,447.2898546,1827.177061,17167.85103,1,1,1,1,1,1,1
-3252.5,83,1158.4807,1467.561552,768.047991,883.1694054,447.2898546,447.2898546,1794.935587,16864.9157,1,1,1,1,1,1,1
-3253,83,1158.4807,1467.561552,746.8833263,888.5343457,447.2898546,447.2898546,1780.761035,16731.73412,1,1,1,1,1,1,1
-3253.5,83,1158.4807,1467.561552,786.8739092,847.3622961,447.2898546,447.2898546,1779.701096,16721.7749,1,1,1,1,1,1,1
-3254,83,1158.4807,1467.561552,784.2741472,855.0241951,447.2898546,447.2898546,1784.242344,16764.44363,1,1,1,1,1,1,1
-3254.5,83,1158.4807,1467.561552,792.1550709,858.3060066,447.2898546,447.2898546,1794.256586,16858.53598,1,1,1,1,1,1,1
-3255,83,1158.4807,1467.561552,816.7713232,867.2932607,447.2898546,447.2898546,1824.402668,17141.78322,1,1,1,1,1,1,1
-3255.5,83,1158.4807,1467.561552,801.3536705,922.023734,447.2898546,447.2898546,1859.669634,17473.14555,1,1,1,1,1,1,1
-3256,83,1158.4807,1467.561552,812.4362425,898.9603213,447.2898546,447.2898546,1848.921064,17372.15411,1,1,1,1,1,1,1
-3256.5,83,1158.4807,1467.561552,820.8042942,848.9800621,447.2898546,447.2898546,1811.590854,17021.40598,1,1,1,1,1,1,1
-3257,83,1158.4807,1467.561552,803.983697,842.1882136,447.2898546,447.2898546,1790.408899,16822.38388,1,1,1,1,1,1,1
-3257.5,83,1158.4807,1467.561552,784.4510305,855.3496781,447.2898546,447.2898546,1784.693351,16768.68126,1,1,1,1,1,1,1
-3258,83,1158.4807,1467.561552,781.6892675,875.5900698,447.2898546,447.2898546,1800.373211,16916.00643,1,1,1,1,1,1,1
-3258.5,83,1158.4807,1467.561552,830.2059103,863.9864266,447.2898546,447.2898546,1833.487529,17227.14342,1,1,1,1,1,1,1
-3259,83,1158.4807,1467.561552,848.3705556,919.8410344,447.2898546,447.2898546,1900.473585,17856.98507,1,1,1,1,1,1,1
-3259.5,83,1158.4807,1467.561552,890.3501743,964.2163513,447.2898546,447.2898546,1979.191387,18597.5711,1,1,1,1,1,1,1
-3260,83,1158.4807,1467.561552,908.3089609,977.3755439,447.2898546,447.2898546,2007.637825,18865.26002,1,1,1,1,1,1,1
-3260.5,83,1158.4807,1467.561552,915.9796714,966.3756912,447.2898546,447.2898546,2004.59478,18836.62397,1,1,1,1,1,1,1
-3261,83,1158.4807,1467.561552,877.3314799,1002.019529,447.2898546,447.2898546,2001.847961,18810.77563,1,1,1,1,1,1,1
-3261.5,83,1158.4807,1467.561552,867.4062865,1011.633895,447.2898546,447.2898546,2001.5635,18808.0988,1,1,1,1,1,1,1
-3262,83,1158.4807,1467.561552,867.5321822,1011.507999,447.2898546,447.2898546,2001.5635,18808.0988,1,1,1,1,1,1,1
-3262.5,83,1158.4807,1467.561552,914.1304996,964.9096815,447.2898546,447.2898546,2001.5635,18808.0988,1,1,1,1,1,1,1
-3263,83,1158.4807,1467.561552,889.7480742,989.2921069,447.2898546,447.2898546,2001.5635,18808.0988,1,1,1,1,1,1,1
-3263.5,83,1158.4807,1467.561552,894.7028461,982.7638352,447.2898546,447.2898546,2000.124672,18794.55913,1,1,1,1,1,1,1
-3264,83,1158.4807,1467.561552,899.3084765,967.6473381,447.2898546,447.2898546,1990.517154,18704.14974,1,1,1,1,1,1,1
-3264.5,83,1158.4807,1467.561552,852.2433794,999.6984784,447.2898546,447.2898546,1976.791914,18574.99128,1,1,1,1,1,1,1
-3265,83,1158.4807,1467.561552,858.7894566,982.022671,447.2898546,447.2898546,1966.618007,18479.25216,1,1,1,1,1,1,1
-3265.5,83,1158.4807,1467.561552,900.6422307,931.6818771,447.2898546,447.2898546,1958.858611,18406.23404,1,1,1,1,1,1,1
-3266,83,1158.4807,1467.561552,899.9992057,924.1211405,447.2898546,447.2898546,1951.359373,18335.664,1,1,1,1,1,1,1
-3266.5,83,1158.4807,1467.561552,883.3967146,931.6970124,447.2898546,447.2898546,1943.107502,18258.01161,1,1,1,1,1,1,1
-3267,83,1158.4807,1467.561552,849.9726606,951.6003337,447.2898546,447.2898546,1930.747,18141.69639,1,1,1,1,1,1,1
-3267.5,83,1158.4807,1467.561552,836.9202555,950.2163655,447.2898546,447.2898546,1917.549989,18017.50863,1,1,1,1,1,1,1
-3268,83,1158.4807,1467.561552,872.6359375,908.7628471,447.2898546,447.2898546,1912.305409,17968.15554,1,1,1,1,1,1,1
-3268.5,83,1158.4807,1467.561552,884.8344876,896.6334313,447.2898546,447.2898546,1912.36857,17968.75015,1,1,1,1,1,1,1
-3269,83,1158.4807,1467.561552,842.8442575,943.6302618,447.2898546,447.2898546,1916.945249,18011.81807,1,1,1,1,1,1,1
-3269.5,83,1158.4807,1467.561552,837.2740937,957.0171724,447.2898546,447.2898546,1924.091201,18079.06339,1,1,1,1,1,1,1
-3270,83,1158.4807,1467.561552,865.1053945,937.3916822,447.2898546,447.2898546,1931.592126,18149.64934,1,1,1,1,1,1,1
-3270.5,83,1158.4807,1467.561552,854.466216,956.8666813,447.2898546,447.2898546,1939.669261,18225.65702,1,1,1,1,1,1,1
-3271,83,1158.4807,1467.561552,830.2551115,994.3258266,447.2898546,447.2898546,1951.779843,18339.62056,1,1,1,1,1,1,1
-3271.5,83,1158.4807,1467.561552,843.8904346,990.8662064,447.2898546,447.2898546,1961.082365,18427.16005,1,1,1,1,1,1,1
-3272,83,1158.4807,1467.561552,821.8308421,983.7718687,447.2898546,447.2898546,1934.431279,18176.36638,1,1,1,1,1,1,1
-3272.5,83,1158.4807,1467.561552,796.6003409,960.8121644,447.2898546,447.2898546,1890.445906,17762.50332,1,1,1,1,1,1,1
-3273,83,1158.4807,1467.561552,788.5168676,957.2079873,447.2898546,447.2898546,1879.728048,17661.62038,1,1,1,1,1,1,1
-3273.5,83,1158.4807,1467.561552,849.2743116,908.3249486,447.2898546,447.2898546,1890.548724,17763.4194,1,1,1,1,1,1,1
-3274,83,1158.4807,1467.561552,864.3750285,899.4284887,447.2898546,447.2898546,1896.219845,17816.78651,1,1,1,1,1,1,1
-3274.5,83,1158.4807,1467.561552,852.9250824,917.7933554,447.2898546,447.2898546,1902.541786,17876.27793,1,1,1,1,1,1,1
-3275,83,1158.4807,1467.561552,890.3138179,926.45817,447.2898546,447.2898546,1944.641938,18272.45147,1,1,1,1,1,1,1
-3275.5,83,1158.4807,1467.561552,928.7575146,947.5202927,447.2898546,447.2898546,1999.038524,18784.33811,1,1,1,1,1,1,1
-3276,83,1158.4807,1467.561552,906.1948694,961.7020025,447.2898546,447.2898546,1991.377577,18712.24662,1,1,1,1,1,1,1
-3276.5,83,1158.4807,1467.561552,883.8166827,932.6709022,447.2898546,447.2898546,1944.381025,18269.99629,1,1,1,1,1,1,1
-3277,83,1158.4807,1467.561552,876.0582095,888.2017083,447.2898546,447.2898546,1896.637216,17820.71384,1,1,1,1,1,1,1
-3277.5,83,1158.4807,1467.561552,805.7409614,919.211216,447.2898546,447.2898546,1861.082893,17486.42557,1,1,1,1,1,1,1
-3278,83,1158.4807,1467.561552,810.0711749,938.1156633,447.2898546,447.2898546,1882.137979,17684.4191,1,1,1,1,1,1,1
-3278.5,83,1158.4807,1467.561552,868.2445045,940.3990736,447.2898546,447.2898546,1937.211085,18202.52517,1,1,1,1,1,1,1
-3279,83,1158.4807,1467.561552,925.2424343,943.7923808,447.2898546,447.2898546,1992.417085,18722.02853,1,1,1,1,1,1,1
-3279.5,83,1158.4807,1467.561552,949.0121984,974.7268598,447.2898546,447.2898546,2042.424835,19192.6151,1,1,1,1,1,1,1
-3280,83,1158.4807,1467.561552,927.9256449,1032.351263,447.2898546,447.2898546,2075.826451,19506.93359,1,1,1,1,1,1,1
-3280.5,83,1158.4807,1467.561552,926.1461915,1051.456327,447.2898546,447.2898546,2091.664128,19655.97028,1,1,1,1,1,1,1
-3281,83,1158.4807,1467.561552,913.974197,1030.651754,447.2898546,447.2898546,2061.518279,19372.28967,1,1,1,1,1,1,1
-3281.5,83,1158.4807,1467.561552,892.3364905,993.1142931,447.2898546,447.2898546,2007.423269,18863.24113,1,1,1,1,1,1,1
-3282,83,1158.4807,1467.561552,904.6805714,936.1784177,447.2898546,447.2898546,1966.660618,18479.65327,1,1,1,1,1,1,1
-3282.5,83,1158.4807,1467.561552,864.4239018,948.0584807,447.2898546,447.2898546,1940.720778,18235.55219,1,1,1,1,1,1,1
-3283,83,1158.4807,1467.561552,886.9690056,929.6324921,447.2898546,447.2898546,1944.485826,18270.98224,1,1,1,1,1,1,1
-3283.5,83,1158.4807,1467.561552,888.2340596,949.3231724,447.2898546,447.2898546,1963.642608,18451.25265,1,1,1,1,1,1,1
-3284,83,1158.4807,1467.561552,885.6404667,965.9360562,447.2898546,447.2898546,1976.457571,18571.84533,1,1,1,1,1,1,1
-3284.5,83,1158.4807,1467.561552,861.7428524,997.7694743,447.2898546,447.2898546,1983.711874,18640.1104,1,1,1,1,1,1,1
-3285,83,1158.4807,1467.561552,847.3919003,1015.007881,447.2898546,447.2898546,1986.351992,18664.95429,1,1,1,1,1,1,1
-3285.5,83,1158.4807,1467.561552,879.9699198,986.0722022,447.2898546,447.2898546,1989.681546,18696.2865,1,1,1,1,1,1,1
-3286,83,1158.4807,1467.561552,868.2536095,1019.136918,447.2898546,447.2898546,2009.197515,18879.9368,1,1,1,1,1,1,1
-3286.5,83,1158.4807,1467.561552,893.5155944,1021.303727,447.2898546,447.2898546,2034.271787,19115.89272,1,1,1,1,1,1,1
-3287,83,1158.4807,1467.561552,906.0525466,1014.805778,447.2898546,447.2898546,2039.792008,19167.83967,1,1,1,1,1,1,1
-3287.5,83,1158.4807,1467.561552,931.6445561,983.2119104,447.2898546,447.2898546,2034.304665,19116.20187,1,1,1,1,1,1,1
-3288,83,1158.4807,1467.561552,940.1230354,971.9030131,447.2898546,447.2898546,2031.717932,19091.86017,1,1,1,1,1,1,1
-3288.5,83,1158.4807,1467.561552,932.8571331,970.9329344,447.2898546,447.2898546,2024.188887,19021.00977,1,1,1,1,1,1,1
-3289,83,1158.4807,1467.561552,884.8035235,970.4496832,447.2898546,447.2898546,1979.819456,18603.48123,1,1,1,1,1,1,1
-3289.5,83,1158.4807,1467.561552,847.1796284,942.872662,447.2898546,447.2898546,1920.215306,18042.59028,1,1,1,1,1,1,1
-3290,83,1158.4807,1467.561552,844.7637517,909.3337411,447.2898546,447.2898546,1887.349878,17733.32007,1,1,1,1,1,1,1
-3290.5,83,1158.4807,1467.561552,843.7231858,895.9122488,447.2898546,447.2898546,1874.254237,17610.18034,1,1,1,1,1,1,1
-3291,83,1158.4807,1467.561552,857.8815053,887.0591277,447.2898546,447.2898546,1879.041368,17655.18071,1,1,1,1,1,1,1
-3291.5,83,1158.4807,1467.561552,856.0878018,908.9601184,447.2898546,447.2898546,1897.358233,17827.49881,1,1,1,1,1,1,1
-3292,83,1158.4807,1467.561552,843.9673614,964.7047491,447.2898546,447.2898546,1937.23693,18202.76808,1,1,1,1,1,1,1
-3292.5,83,1158.4807,1467.561552,886.7513049,973.4122833,447.2898546,447.2898546,1984.308125,18645.72073,1,1,1,1,1,1,1
-3293,83,1158.4807,1467.561552,885.3686427,1004.883954,447.2898546,447.2898546,2011.813419,18904.55323,1,1,1,1,1,1,1
-3293.5,83,1158.4807,1467.561552,864.0535175,1041.825703,447.2898546,447.2898546,2026.098851,19038.98308,1,1,1,1,1,1,1
-3294,83,1158.4807,1467.561552,923.3916199,987.9262325,447.2898546,447.2898546,2031.071011,19085.77257,1,1,1,1,1,1,1
-3294.5,83,1158.4807,1467.561552,895.3412053,1008.571858,447.2898546,447.2898546,2024.301726,19022.07174,1,1,1,1,1,1,1
-3295,83,1158.4807,1467.561552,852.3655524,1007.579002,447.2898546,447.2898546,1984.107945,18643.8374,1,1,1,1,1,1,1
-3295.5,83,1158.4807,1467.561552,855.4187148,952.5954012,447.2898546,447.2898546,1936.635114,18197.10484,1,1,1,1,1,1,1
-3296,83,1158.4807,1467.561552,892.196827,916.4092837,447.2898546,447.2898546,1937.176059,18202.19536,1,1,1,1,1,1,1
-3296.5,83,1158.4807,1467.561552,862.4675073,972.3578026,447.2898546,447.2898546,1961.144506,18427.74519,1,1,1,1,1,1,1
-3297,83,1158.4807,1467.561552,858.0342575,987.4489125,447.2898546,447.2898546,1970.888079,18519.43457,1,1,1,1,1,1,1
-3297.5,83,1158.4807,1467.561552,851.7692221,999.6900311,447.2898546,447.2898546,1976.350963,18570.84158,1,1,1,1,1,1,1
-3298,83,1158.4807,1467.561552,911.427495,967.795389,447.2898546,447.2898546,2001.731294,18809.67752,1,1,1,1,1,1,1
-3298.5,83,1158.4807,1467.561552,906.4866602,1008.559715,447.2898546,447.2898546,2034.478882,19117.84136,1,1,1,1,1,1,1
-3299,83,1158.4807,1467.561552,902.3580103,1031.400863,447.2898546,447.2898546,2051.584397,19278.80915,1,1,1,1,1,1,1
-3299.5,83,1158.4807,1467.561552,916.5113376,1019.874915,447.2898546,447.2898546,2053.986054,19301.40938,1,1,1,1,1,1,1
-3300,83,1158.4807,1467.561552,926.5987851,984.4380363,447.2898546,447.2898546,2030.813402,19083.34838,1,1,1,1,1,1,1
-3300.5,83,1158.4807,1467.561552,899.9694698,974.4527161,447.2898546,447.2898546,1997.342002,18768.37331,1,1,1,1,1,1,1
-3301,83,1158.4807,1467.561552,854.442142,995.801823,447.2898546,447.2898546,1975.239161,18560.37954,1,1,1,1,1,1,1
-3301.5,83,1158.4807,1467.561552,879.8488641,947.9629217,447.2898546,447.2898546,1954.733719,18367.41803,1,1,1,1,1,1,1
-3302,83,1158.4807,1467.561552,835.9642807,947.2871658,447.2898546,447.2898546,1913.999052,17984.09376,1,1,1,1,1,1,1
-3302.5,83,1158.4807,1467.561552,807.8557046,930.0119253,447.2898546,447.2898546,1872.770392,17596.31744,1,1,1,1,1,1,1
-3303,83,1158.4807,1467.561552,799.0424178,937.89423,447.2898546,447.2898546,1871.832702,17587.42821,1,1,1,1,1,1,1
-3303.5,83,1158.4807,1467.561552,852.2407479,905.2454754,447.2898546,447.2898546,1890.465964,17762.65669,1,1,1,1,1,1,1
-3304,83,1158.4807,1467.561552,826.6488673,944.115783,447.2898546,447.2898546,1902.583306,17876.6684,1,1,1,1,1,1,1
-3304.5,83,1158.4807,1467.561552,854.923302,926.668992,447.2898546,447.2898546,1912.481431,17969.81236,1,1,1,1,1,1,1
-3305,83,1158.4807,1467.561552,867.6217777,933.5546247,447.2898546,447.2898546,1930.384969,18138.28922,1,1,1,1,1,1,1
-3305.5,83,1158.4807,1467.561552,891.2923606,933.9905869,447.2898546,447.2898546,1952.422429,18345.66771,1,1,1,1,1,1,1
-3306,83,1158.4807,1467.561552,890.7507064,958.4356858,447.2898546,447.2898546,1974.27322,18551.28998,1,1,1,1,1,1,1
-3306.5,83,1158.4807,1467.561552,882.5613173,988.554708,447.2898546,447.2898546,1994.320098,18739.93667,1,1,1,1,1,1,1
-3307,83,1158.4807,1467.561552,867.0060554,1017.585377,447.2898546,447.2898546,2006.638066,18855.85186,1,1,1,1,1,1,1
-3307.5,83,1158.4807,1467.561552,881.5412495,1014.430956,447.2898546,447.2898546,2017.042153,18953.75744,1,1,1,1,1,1,1
-3308,83,1158.4807,1467.561552,928.1611629,992.2436869,447.2898546,447.2898546,2039.377789,19163.94152,1,1,1,1,1,1,1
-3308.5,83,1158.4807,1467.561552,915.5890182,1032.286578,447.2898546,447.2898546,2064.489355,19400.24834,1,1,1,1,1,1,1
-3309,83,1158.4807,1467.561552,898.6315768,1054.915329,447.2898546,447.2898546,2069.673125,19449.02881,1,1,1,1,1,1,1
-3309.5,83,1158.4807,1467.561552,928.0466832,1019.440305,447.2898546,447.2898546,2064.133926,19396.90321,1,1,1,1,1,1,1
-3310,83,1158.4807,1467.561552,904.5650209,1040.165607,447.2898546,447.2898546,2061.614352,19373.1936,1,1,1,1,1,1,1
-3310.5,83,1158.4807,1467.561552,930.2782099,1015.166631,447.2898546,447.2898546,2062.267043,19379.33595,1,1,1,1,1,1,1
-3311,83,1158.4807,1467.561552,943.0081621,1007.897697,447.2898546,447.2898546,2067.259844,19426.3194,1,1,1,1,1,1,1
-3311.5,83,1158.4807,1467.561552,940.7260063,1019.11984,447.2898546,447.2898546,2075.432132,19503.22296,1,1,1,1,1,1,1
-3312,83,1158.4807,1467.561552,960.3951636,1013.128415,447.2898546,447.2898546,2087.935198,19620.88034,1,1,1,1,1,1,1
-3312.5,83,1158.4807,1467.561552,946.2255072,1038.575552,447.2898546,447.2898546,2098.244545,19717.89422,1,1,1,1,1,1,1
-3313,83,1158.4807,1467.561552,947.1795831,1026.535862,447.2898546,447.2898546,2088.110621,19622.53114,1,1,1,1,1,1,1
-3313.5,83,1158.4807,1467.561552,932.0351705,1016.159159,447.2898546,447.2898546,2064.78016,19402.9852,1,1,1,1,1,1,1
-3314,83,1158.4807,1467.561552,939.914548,972.6617617,447.2898546,447.2898546,2032.219919,19096.58395,1,1,1,1,1,1,1
-3314.5,83,1158.4807,1467.561552,912.8350129,962.1737442,447.2898546,447.2898546,1997.878424,18773.42091,1,1,1,1,1,1,1
-3315,83,1158.4807,1467.561552,906.6181431,944.0007555,447.2898546,447.2898546,1975.582421,18563.60968,1,1,1,1,1,1,1
-3315.5,83,1158.4807,1467.561552,878.3308597,957.3166977,447.2898546,447.2898546,1961.895673,18434.814,1,1,1,1,1,1,1
-3316,83,1158.4807,1467.561552,842.0899826,988.2650673,447.2898546,447.2898546,1957.057431,18389.28496,1,1,1,1,1,1,1
-3316.5,83,1158.4807,1467.561552,838.2048598,990.6987161,447.2898546,447.2898546,1955.731512,18376.80722,1,1,1,1,1,1,1
-3317,83,1158.4807,1467.561552,868.8751028,954.4562099,447.2898546,447.2898546,1950.637638,18328.87262,1,1,1,1,1,1,1
-3317.5,83,1158.4807,1467.561552,850.4265611,964.9000349,447.2898546,447.2898546,1943.320439,18260.01597,1,1,1,1,1,1,1
-3318,83,1158.4807,1467.561552,843.2262255,963.8993792,447.2898546,447.2898546,1935.823245,18189.46507,1,1,1,1,1,1,1
-3318.5,83,1158.4807,1467.561552,856.8716345,940.9757614,447.2898546,447.2898546,1927.341533,18109.6496,1,1,1,1,1,1,1
-3319,83,1158.4807,1467.561552,868.11488,915.9193904,447.2898546,447.2898546,1914.713837,17990.81971,1,1,1,1,1,1,1
-3319.5,83,1158.4807,1467.561552,857.710625,916.669038,447.2898546,447.2898546,1905.88882,17907.77429,1,1,1,1,1,1,1
-3320,83,1158.4807,1467.561552,871.9745014,919.7825246,447.2898546,447.2898546,1921.773725,18057.25535,1,1,1,1,1,1,1
-3320.5,83,1158.4807,1467.561552,892.9462511,929.3930369,447.2898546,447.2898546,1949.730849,18320.33956,1,1,1,1,1,1,1
-3321,83,1158.4807,1467.561552,881.6513984,967.8564424,447.2898546,447.2898546,1974.566936,18554.05358,1,1,1,1,1,1,1
-3321.5,83,1158.4807,1467.561552,910.4082698,960.4990801,447.2898546,447.2898546,1994.12869,18738.13491,1,1,1,1,1,1,1
-3322,83,1158.4807,1467.561552,911.2008571,967.3150282,447.2898546,447.2898546,2001.084094,18803.58738,1,1,1,1,1,1,1
-3322.5,83,1158.4807,1467.561552,914.382291,964.6578901,447.2898546,447.2898546,2001.5635,18808.0988,1,1,1,1,1,1,1
-3323,83,1158.4807,1467.561552,908.2866847,970.7534964,447.2898546,447.2898546,2001.5635,18808.0988,1,1,1,1,1,1,1
-3323.5,83,1158.4807,1467.561552,901.9392869,977.1008942,447.2898546,447.2898546,2001.5635,18808.0988,1,1,1,1,1,1,1
-3324,83,1158.4807,1467.561552,901.9392869,977.1008942,447.2898546,447.2898546,2001.5635,18808.0988,1,1,1,1,1,1,1
-3324.5,83,1158.4807,1467.561552,894.6003597,982.0873474,447.2898546,447.2898546,1999.412608,18787.85839,1,1,1,1,1,1,1
-3325,83,1158.4807,1467.561552,861.3566608,1003.887001,447.2898546,447.2898546,1988.951164,18689.41359,1,1,1,1,1,1,1
-3325.5,83,1158.4807,1467.561552,834.1911589,1012.585704,447.2898546,447.2898546,1972.06988,18530.55622,1,1,1,1,1,1,1
-3326,83,1158.4807,1467.561552,836.4629175,982.4323741,447.2898546,447.2898546,1946.58174,18290.70577,1,1,1,1,1,1,1
-3326.5,83,1158.4807,1467.561552,867.1475194,921.6827582,447.2898546,447.2898546,1919.097929,18032.07555,1,1,1,1,1,1,1
-3327,83,1158.4807,1467.561552,869.0951164,898.4363126,447.2898546,447.2898546,1899.627564,17848.8539,1,1,1,1,1,1,1
-3327.5,83,1158.4807,1467.561552,815.5521372,943.8884002,447.2898546,447.2898546,1892.231673,17779.25627,1,1,1,1,1,1,1
-3328,83,1158.4807,1467.561552,832.2805911,951.1497141,447.2898546,447.2898546,1914.162016,17985.62699,1,1,1,1,1,1,1
-3328.5,83,1158.4807,1467.561552,850.4712688,965.4502993,447.2898546,447.2898546,1943.863783,18265.12908,1,1,1,1,1,1,1
-3329,83,1158.4807,1467.561552,889.5126352,932.6891744,447.2898546,447.2898546,1949.604911,18319.1542,1,1,1,1,1,1,1
-3329.5,83,1158.4807,1467.561552,906.7922562,906.7922562,447.2898546,447.2898546,1941.727661,18245.02684,1,1,1,1,1,1,1
-3330,83,1158.4807,1467.561552,899.7917598,899.7917598,447.2898546,447.2898546,1928.928849,18124.58667,1,1,1,1,1,1,1
-3330.5,83,1158.4807,1467.561552,887.6783766,899.4892947,447.2898546,447.2898546,1917.578377,18017.77608,1,1,1,1,1,1,1
-3331,83,1158.4807,1467.561552,855.5294003,932.6982631,447.2898546,447.2898546,1918.547884,18026.89952,1,1,1,1,1,1,1
-3331.5,83,1158.4807,1467.561552,842.9110259,950.5166888,447.2898546,447.2898546,1923.301268,18071.63012,1,1,1,1,1,1,1
-3332,83,1158.4807,1467.561552,847.1968614,942.7576687,447.2898546,447.2898546,1920.126093,18041.75088,1,1,1,1,1,1,1
-3332.5,83,1158.4807,1467.561552,845.8247127,934.858893,447.2898546,447.2898546,1911.650764,17961.99542,1,1,1,1,1,1,1
-3333,83,1158.4807,1467.561552,833.3190381,933.3134928,447.2898546,447.2898546,1898.805672,17841.1196,1,1,1,1,1,1,1
-3333.5,83,1158.4807,1467.561552,805.9418411,945.7454489,447.2898546,447.2898546,1885.146652,17712.58674,1,1,1,1,1,1,1
-3334,83,1158.4807,1467.561552,838.2712244,902.88895,447.2898546,447.2898546,1875.622091,17623.03231,1,1,1,1,1,1,1
-3334.5,83,1158.4807,1467.561552,825.1530779,923.9805954,447.2898546,447.2898546,1882.860136,17691.10636,1,1,1,1,1,1,1
-3335,83,1158.4807,1467.561552,833.3426827,978.2718449,447.2898546,447.2898546,1939.926761,18228.08007,1,1,1,1,1,1,1
-3335.5,83,1158.4807,1467.561552,865.3014476,1029.627281,447.2898546,447.2898546,2016.088314,18944.78108,1,1,1,1,1,1,1
-3336,83,1158.4807,1467.561552,951.5292049,1009.98045,447.2898546,447.2898546,2076.952653,19517.53128,1,1,1,1,1,1,1
-3336.5,83,1158.4807,1467.561552,935.9077386,1069.520486,447.2898546,447.2898546,2117.101439,19895.34227,1,1,1,1,1,1,1
-3337,83,1158.4807,1467.561552,921.4394062,1082.137244,447.2898546,447.2898546,2115.408982,19879.41589,1,1,1,1,1,1,1
-3337.5,83,1158.4807,1467.561552,935.5763411,1034.615186,447.2898546,447.2898546,2084.889537,19592.21955,1,1,1,1,1,1,1
-3338,83,1158.4807,1467.561552,889.0442192,1014.920597,447.2898546,447.2898546,2024.348394,19022.51093,1,1,1,1,1,1,1
-3338.5,83,1158.4807,1467.561552,879.720671,954.4469125,447.2898546,447.2898546,1960.543928,18422.09369,1,1,1,1,1,1,1
-3339,83,1158.4807,1467.561552,881.9166123,917.9132088,447.2898546,447.2898546,1929.153697,18126.70301,1,1,1,1,1,1,1
-3339.5,83,1158.4807,1467.561552,877.0276986,912.8247475,447.2898546,447.2898546,1920.032529,18040.87042,1,1,1,1,1,1,1
-3340,83,1158.4807,1467.561552,877.6445908,925.7051744,447.2898546,447.2898546,1932.371631,18156.98441,1,1,1,1,1,1,1
-3340.5,83,1158.4807,1467.561552,845.5776578,985.8982495,447.2898546,447.2898546,1958.082616,18398.93158,1,1,1,1,1,1,1
-3341,83,1158.4807,1467.561552,873.929425,998.6678433,447.2898546,447.2898546,1995.673534,18752.67238,1,1,1,1,1,1,1
-3341.5,83,1158.4807,1467.561552,911.3343826,1007.264318,447.2898546,447.2898546,2037.72562,19148.39381,1,1,1,1,1,1,1
-3342,83,1158.4807,1467.561552,925.1716799,1036.328434,447.2898546,447.2898546,2076.943929,19517.44927,1,1,1,1,1,1,1
-3342.5,83,1158.4807,1467.561552,926.2530329,1072.833489,447.2898546,447.2898546,2111.304379,19840.79054,1,1,1,1,1,1,1
-3343,83,1158.4807,1467.561552,917.1170611,1105.82405,447.2898546,447.2898546,2133.110578,20045.9928,1,1,1,1,1,1,1
-3343.5,83,1158.4807,1467.561552,959.127103,1081.891024,447.2898546,447.2898546,2149.63522,20201.49437,1,1,1,1,1,1,1
-3344,83,1158.4807,1467.561552,1004.033686,1059.127546,447.2898546,447.2898546,2169.877884,20391.98309,1,1,1,1,1,1,1
-3344.5,83,1158.4807,1467.561552,964.1364133,1116.194052,447.2898546,447.2898546,2185.573188,20539.6799,1,1,1,1,1,1,1
-3345,83,1158.4807,1467.561552,945.3461219,1125.06475,447.2898546,447.2898546,2176.505531,20454.35096,1,1,1,1,1,1,1
-3345.5,83,1158.4807,1467.561552,964.0750862,1087.563525,447.2898546,447.2898546,2159.345262,20292.86792,1,1,1,1,1,1,1
-3346,83,1158.4807,1467.561552,1007.781695,1042.335927,447.2898546,447.2898546,2157.954557,20279.78129,1,1,1,1,1,1,1
-3346.5,83,1158.4807,1467.561552,1005.976328,1046.760424,447.2898546,447.2898546,2160.348276,20302.30681,1,1,1,1,1,1,1
-3347,83,1158.4807,1467.561552,961.4428475,1076.348663,447.2898546,447.2898546,2146.685928,20173.74062,1,1,1,1,1,1,1
-3347.5,83,1158.4807,1467.561552,979.3698418,1040.715833,447.2898546,447.2898546,2130.499702,20021.42358,1,1,1,1,1,1,1
-3348,83,1158.4807,1467.561552,968.5321648,1055.968866,447.2898546,447.2898546,2134.536879,20059.41447,1,1,1,1,1,1,1
-3348.5,83,1158.4807,1467.561552,966.8993367,1075.894146,447.2898546,447.2898546,2151.25886,20216.7731,1,1,1,1,1,1,1
-3349,83,1158.4807,1467.561552,956.0727666,1114.752099,447.2898546,447.2898546,2176.883714,20457.9096,1,1,1,1,1,1,1
-3349.5,83,1158.4807,1467.561552,995.8845295,1100.980871,447.2898546,447.2898546,2200.68896,20681.92378,1,1,1,1,1,1,1
-3350,83,1158.4807,1467.561552,1011.783995,1088.693627,447.2898546,447.2898546,2203.9907,20712.99397,1,1,1,1,1,1,1
-3350.5,83,1158.4807,1467.561552,1007.770671,1091.75156,447.2898546,447.2898546,2203.117398,20704.77579,1,1,1,1,1,1,1
-3351,83,1158.4807,1467.561552,989.6606238,1130.931174,447.2898546,447.2898546,2222.37766,20886.02031,1,1,1,1,1,1,1
-3351.5,83,1158.4807,1467.561552,1012.509784,1126.879929,447.2898546,447.2898546,2239.561953,21047.72917,1,1,1,1,1,1,1
-3352,83,1158.4807,1467.561552,1021.41119,1092.056474,447.2898546,447.2898546,2215.865979,20824.74333,1,1,1,1,1,1,1
-3352.5,83,1158.4807,1467.561552,1010.525277,1059.003128,447.2898546,447.2898546,2175.698896,20446.7602,1,1,1,1,1,1,1
-3353,83,1158.4807,1467.561552,991.8998463,1046.098101,447.2898546,447.2898546,2146.87521,20175.52165,1,1,1,1,1,1,1
-3353.5,83,1158.4807,1467.561552,927.3837882,1080.151524,447.2898546,447.2898546,2119.027061,19913.46272,1,1,1,1,1,1,1
-3354,83,1158.4807,1467.561552,945.9289988,1013.367792,447.2898546,447.2898546,2074.930582,19498.50286,1,1,1,1,1,1,1
-3354.5,83,1158.4807,1467.561552,946.2185223,971.4630566,447.2898546,447.2898546,2036.88823,19140.51395,1,1,1,1,1,1,1
-3355,83,1158.4807,1467.561552,898.6200436,1026.839502,447.2898546,447.2898546,2043.998692,19207.42528,1,1,1,1,1,1,1
-3355.5,83,1158.4807,1467.561552,912.6618826,1050.03641,447.2898546,447.2898546,2078.039582,19527.75937,1,1,1,1,1,1,1
-3356,83,1158.4807,1467.561552,949.0674742,1070.225024,447.2898546,447.2898546,2129.775547,20014.6089,1,1,1,1,1,1,1
-3356.5,83,1158.4807,1467.561552,960.4795923,1112.531186,447.2898546,447.2898546,2178.882401,20476.71816,1,1,1,1,1,1,1
-3357,83,1158.4807,1467.561552,1010.313094,1080.626539,447.2898546,447.2898546,2195.272043,20630.94892,1,1,1,1,1,1,1
-3357.5,83,1158.4807,1467.561552,1020.870422,1069.448003,447.2898546,447.2898546,2194.703068,20625.59477,1,1,1,1,1,1,1
-3358,83,1158.4807,1467.561552,990.2259882,1094.110366,447.2898546,447.2898546,2189.234794,20574.13664,1,1,1,1,1,1,1
-3358.5,83,1158.4807,1467.561552,970.3315176,1108.841797,447.2898546,447.2898546,2184.515211,20529.72442,1,1,1,1,1,1,1
-3359,83,1158.4807,1467.561552,1016.916275,1066.050394,447.2898546,447.2898546,2187.983114,20562.35806,1,1,1,1,1,1,1
-3359.5,83,1158.4807,1467.561552,1021.324761,1077.081053,447.2898546,447.2898546,2202.09709,20695.17416,1,1,1,1,1,1,1
-3360,83,1158.4807,1467.561552,1046.996437,1089.695059,447.2898546,447.2898546,2236.789798,21021.61604,1,1,1,1,1,1,1
-3360.5,83,1158.4807,1467.561552,1079.543121,1101.352073,447.2898546,447.2898546,2273.354176,21365.36717,1,1,1,1,1,1,1
-3361,83,1158.4807,1467.561552,1094.952833,1117.073092,447.2898546,447.2898546,2297.713964,21594.2474,1,1,1,1,1,1,1
-3361.5,83,1158.4807,1467.561552,1066.211515,1178.321391,447.2898546,447.2898546,2323.088743,21832.66484,1,1,1,1,1,1,1
-3362,83,1158.4807,1467.561552,1046.151166,1253.21838,447.2898546,447.2898546,2363.973874,22216.81484,1,1,1,1,1,1,1
-3362.5,83,1158.4807,1467.561552,1064.045185,1300.49967,447.2898546,447.2898546,2414.902348,22695.09782,1,1,1,1,1,1,1
-3363,83,1158.4807,1467.561552,1101.690409,1328.466824,447.2898546,447.2898546,2472.055964,23231.41142,1,1,1,1,1,1,1
-3363.5,83,1158.4807,1467.561552,1195.282038,1286.370244,447.2898546,447.2898546,2518.665065,23668.66336,1,1,1,1,1,1,1
-3364,83,1158.4807,1467.561552,1242.07093,1250.504484,447.2898546,447.2898546,2528.551212,23761.40763,1,1,1,1,1,1,1
-3364.5,83,1158.4807,1467.561552,1215.767929,1282.027904,447.2898546,447.2898546,2533.276754,23805.7391,1,1,1,1,1,1,1
-3365,83,1158.4807,1467.561552,1176.061627,1362.260091,447.2898546,447.2898546,2569.95709,24149.84663,1,1,1,1,1,1,1
-3365.5,83,1158.4807,1467.561552,1190.187534,1406.565676,447.2898546,447.2898546,2622.844808,24645.9997,1,1,1,1,1,1,1
-3366,83,1158.4807,1467.561552,1232.594155,1427.651513,447.2898546,447.2898546,2680.312631,25185.11968,1,1,1,1,1,1,1
-3366.5,83,1158.4807,1467.561552,1248.563918,1475.618621,447.2898546,447.2898546,2738.18253,25728.01195,1,1,1,1,1,1,1
-3367,83,1158.4807,1467.561552,1266.554889,1517.082229,447.2898546,447.2898546,2787.471259,26190.69117,1,1,1,1,1,1,1
-3367.5,83,1158.4807,1467.561552,1360.322859,1464.319484,447.2898546,447.2898546,2818.650339,26483.56905,1,1,1,1,1,1,1
-3368,83,1158.4807,1467.561552,1340.342187,1480.315339,447.2898546,447.2898546,2815.71364,26455.97619,1,1,1,1,1,1,1
-3368.5,83,1158.4807,1467.561552,1286.617089,1500.047938,447.2898546,447.2898546,2790.663726,26220.61157,1,1,1,1,1,1,1
-3369,83,1158.4807,1467.561552,1271.454214,1453.699336,447.2898546,447.2898546,2738.449491,25730.55541,1,1,1,1,1,1,1
-3369.5,83,1158.4807,1467.561552,1235.900997,1431.008273,447.2898546,447.2898546,2686.34378,25241.69961,1,1,1,1,1,1,1
-3370,83,1158.4807,1467.561552,1235.917235,1412.737968,447.2898546,447.2898546,2669.821854,25086.7034,1,1,1,1,1,1,1
-3370.5,83,1158.4807,1467.561552,1233.460195,1409.523725,447.2898546,447.2898546,2664.688517,25038.54614,1,1,1,1,1,1,1
-3371,83,1158.4807,1467.561552,1263.668104,1360.752269,447.2898546,447.2898546,2647.886607,24880.92327,1,1,1,1,1,1,1
-3371.5,83,1158.4807,1467.561552,1257.851482,1326.545577,447.2898546,447.2898546,2611.660928,24541.08095,1,1,1,1,1,1,1
-3372,83,1158.4807,1467.561552,1198.05054,1305.897667,447.2898546,447.2898546,2538.845702,23857.98294,1,1,1,1,1,1,1
-3372.5,83,1158.4807,1467.561552,1181.230154,1238.821637,447.2898546,447.2898546,2462.909456,23145.6064,1,1,1,1,1,1,1
-3373,83,1158.4807,1467.561552,1119.149541,1252.254371,447.2898546,447.2898546,2418.906057,22732.79794,1,1,1,1,1,1,1
-3373.5,83,1158.4807,1467.561552,1144.296662,1208.070591,447.2898546,447.2898546,2402.966082,22583.17897,1,1,1,1,1,1,1
-3374,83,1158.4807,1467.561552,1137.451268,1232.01962,447.2898546,447.2898546,2417.792722,22722.31268,1,1,1,1,1,1,1
-3374.5,83,1158.4807,1467.561552,1158.932477,1255.485516,447.2898546,447.2898546,2457.809158,23097.75911,1,1,1,1,1,1,1
-3375,83,1158.4807,1467.561552,1191.455492,1299.577241,447.2898546,447.2898546,2527.154821,23748.3082,1,1,1,1,1,1,1
-3375.5,83,1158.4807,1467.561552,1263.701745,1306.284805,447.2898546,447.2898546,2598.617811,24418.72014,1,1,1,1,1,1,1
-3376,83,1158.4807,1467.561552,1267.650074,1354.952801,447.2898546,447.2898546,2646.24161,24865.49058,1,1,1,1,1,1,1
-3376.5,83,1158.4807,1467.561552,1245.895651,1414.295136,447.2898546,447.2898546,2680.262911,25184.65313,1,1,1,1,1,1,1
-3377,83,1158.4807,1467.561552,1277.007755,1411.632944,447.2898546,447.2898546,2706.013583,25426.22709,1,1,1,1,1,1,1
-3377.5,83,1158.4807,1467.561552,1250.831146,1468.055984,447.2898546,447.2898546,2733.390763,25683.05892,1,1,1,1,1,1,1
-3378,83,1158.4807,1467.561552,1325.89858,1436.520996,447.2898546,447.2898546,2770.954592,26035.57196,1,1,1,1,1,1,1
-3378.5,83,1158.4807,1467.561552,1320.952156,1479.258047,447.2898546,447.2898546,2800.645327,26314.39666,1,1,1,1,1,1,1
-3379,83,1158.4807,1467.561552,1302.605843,1508.907534,447.2898546,447.2898546,2808.975534,26392.66601,1,1,1,1,1,1,1
-3379.5,83,1158.4807,1467.561552,1294.652622,1509.485604,447.2898546,447.2898546,2803.540781,26341.60203,1,1,1,1,1,1,1
-3380,83,1158.4807,1467.561552,1259.921693,1518.883691,447.2898546,447.2898546,2784.871505,26166.18875,1,1,1,1,1,1,1
-3380.5,83,1158.4807,1467.561552,1308.214108,1437.935816,447.2898546,447.2898546,2757.758551,25911.67887,1,1,1,1,1,1,1
-3381,83,1158.4807,1467.561552,1347.433321,1365.911482,447.2898546,447.2898546,2728.373698,25635.99242,1,1,1,1,1,1,1
-3381.5,83,1158.4807,1467.561552,1306.784295,1377.648672,447.2898546,447.2898546,2702.205601,25390.50287,1,1,1,1,1,1,1
-3382,83,1158.4807,1467.561552,1287.693098,1376.661016,447.2898546,447.2898546,2684.031933,25220.01156,1,1,1,1,1,1,1
-3382.5,83,1158.4807,1467.561552,1232.627928,1417.227346,447.2898546,447.2898546,2670.908806,25096.89993,1,1,1,1,1,1,1
-3383,83,1158.4807,1467.561552,1227.317353,1412.514939,447.2898546,447.2898546,2661.836492,25011.79053,1,1,1,1,1,1,1
-3383.5,83,1158.4807,1467.561552,1291.068813,1344.516221,447.2898546,447.2898546,2657.991649,24975.72138,1,1,1,1,1,1,1
-3384,83,1158.4807,1467.561552,1311.331604,1328.832738,447.2898546,447.2898546,2662.136859,25014.60835,1,1,1,1,1,1,1
-3384.5,83,1158.4807,1467.561552,1270.06116,1366.161746,447.2898546,447.2898546,2658.569031,24981.13784,1,1,1,1,1,1,1
-3385,83,1158.4807,1467.561552,1246.435025,1359.568875,447.2898546,447.2898546,2631.216769,24724.5391,1,1,1,1,1,1,1
-3385.5,83,1158.4807,1467.561552,1202.157657,1373.155259,447.2898546,447.2898546,2603.438429,24463.94377,1,1,1,1,1,1,1
-3386,83,1158.4807,1467.561552,1163.557575,1402.859035,447.2898546,447.2898546,2595.386216,24388.40402,1,1,1,1,1,1,1
-3386.5,83,1158.4807,1467.561552,1193.66757,1382.93992,447.2898546,447.2898546,2604.610559,24474.93974,1,1,1,1,1,1,1
-3387,83,1158.4807,1467.561552,1208.757617,1400.016475,447.2898546,447.2898546,2633.725273,24748.07232,1,1,1,1,1,1,1
-3387.5,83,1158.4807,1467.561552,1227.677507,1422.014777,447.2898546,447.2898546,2670.761162,25095.51537,1,1,1,1,1,1,1
-3388,83,1158.4807,1467.561552,1242.214046,1448.471364,447.2898546,447.2898546,2707.865076,25443.59638,1,1,1,1,1,1,1
-3388.5,83,1158.4807,1467.561552,1258.817497,1458.140424,447.2898546,447.2898546,2731.644209,25666.67431,1,1,1,1,1,1,1
-3389,83,1158.4807,1467.561552,1252.441206,1460.257813,447.2898546,447.2898546,2727.788571,25630.50338,1,1,1,1,1,1,1
-3389.5,83,1158.4807,1467.561552,1268.839349,1412.681071,447.2898546,447.2898546,2699.568294,25365.76216,1,1,1,1,1,1,1
-3390,83,1158.4807,1467.561552,1214.518931,1405.227236,447.2898546,447.2898546,2643.655785,24841.23282,1,1,1,1,1,1,1
-3390.5,83,1158.4807,1467.561552,1212.714733,1341.948882,447.2898546,447.2898546,2584.748793,24288.61135,1,1,1,1,1,1,1
-3391,83,1158.4807,1467.561552,1166.290913,1340.544607,447.2898546,447.2898546,2541.45913,23882.50007,1,1,1,1,1,1,1
-3391.5,83,1158.4807,1467.561552,1197.636266,1289.880052,447.2898546,447.2898546,2523.972683,23718.45578,1,1,1,1,1,1,1
-3392,83,1158.4807,1467.561552,1168.008964,1343.631296,447.2898546,447.2898546,2545.80766,23923.29515,1,1,1,1,1,1,1
-3392.5,83,1158.4807,1467.561552,1157.115827,1395.370209,447.2898546,447.2898546,2582.77824,24270.12504,1,1,1,1,1,1,1
-3393,83,1158.4807,1467.561552,1231.844351,1361.663927,447.2898546,447.2898546,2619.907661,24618.44555,1,1,1,1,1,1,1
-3393.5,83,1158.4807,1467.561552,1248.295239,1379.542371,447.2898546,447.2898546,2650.979033,24909.934,1,1,1,1,1,1,1
-3394,83,1158.4807,1467.561552,1253.926356,1395.29976,447.2898546,447.2898546,2670.338084,25091.54577,1,1,1,1,1,1,1
-3394.5,83,1158.4807,1467.561552,1294.904012,1357.297845,447.2898546,447.2898546,2673.031302,25116.81169,1,1,1,1,1,1,1
-3395,83,1158.4807,1467.561552,1223.453993,1405.786251,447.2898546,447.2898546,2652.248985,24921.84778,1,1,1,1,1,1,1
-3395.5,83,1158.4807,1467.561552,1171.493768,1431.825716,447.2898546,447.2898546,2628.788384,24701.75781,1,1,1,1,1,1,1
-3396,83,1158.4807,1467.561552,1234.137997,1356.089431,447.2898546,447.2898546,2616.938005,24590.58664,1,1,1,1,1,1,1
-3396.5,83,1158.4807,1467.561552,1223.54625,1360.745072,447.2898546,447.2898546,2611.564619,24540.1774,1,1,1,1,1,1,1
-3397,83,1158.4807,1467.561552,1260.802578,1321.872958,447.2898546,447.2898546,2610.102807,24526.46364,1,1,1,1,1,1,1
-3397.5,83,1158.4807,1467.561552,1271.297813,1322.952586,447.2898546,447.2898546,2620.57971,24624.75019,1,1,1,1,1,1,1
-3398,83,1158.4807,1467.561552,1239.241185,1388.015817,447.2898546,447.2898546,2650.454599,24905.01431,1,1,1,1,1,1,1
-3398.5,83,1158.4807,1467.561552,1190.996186,1406.970008,447.2898546,447.2898546,2623.942851,24656.30075,1,1,1,1,1,1,1
-3399,83,1158.4807,1467.561552,1157.56135,1282.987644,447.2898546,447.2898546,2481.462154,23319.65347,1,1,1,1,1,1,1
-3399.5,83,1158.4807,1467.561552,1096.129812,1149.044105,447.2898546,447.2898546,2322.455439,21826.66364,1,1,1,1,1,1,1
-3400,83,1158.4807,1467.561552,999.3669491,1067.300502,447.2898546,447.2898546,2171.687323,20408.89039,1,1,1,1,1,1,1
-3400.5,83,1158.4807,1467.561552,929.9106588,969.256183,447.2898546,447.2898546,2019.96262,18981.2393,1,1,1,1,1,1,1
-3401,83,1158.4807,1467.561552,855.8388167,884.4168978,447.2898546,447.2898546,1875.365887,17621.0548,1,1,1,1,1,1,1
-3401.5,83,1158.4807,1467.561552,755.3459325,872.5265083,447.2898546,447.2898546,1773.992699,16668.13967,1,1,1,1,1,1,1
-3402,83,1158.4807,1467.561552,716.3318129,875.5166602,447.2898546,447.2898546,1741.675842,16364.49617,1,1,1,1,1,1,1
-3402.5,83,1158.4807,1467.561552,721.9588924,859.185921,447.2898546,447.2898546,1732.073443,16274.27343,1,1,1,1,1,1,1
-3403,83,1158.4807,1467.561552,756.6633607,809.6188974,447.2898546,447.2898546,1718.740347,16148.99769,1,1,1,1,1,1,1
-3403.5,83,1158.4807,1467.561552,727.9894576,814.4816305,447.2898546,447.2898546,1697.37981,15948.29768,1,1,1,1,1,1,1
-3404,83,1158.4807,1467.561552,712.542186,793.4997352,447.2898546,447.2898546,1664.69918,15641.2362,1,1,1,1,1,1,1
-3404.5,83,1158.4807,1467.561552,699.219284,788.2177654,447.2898546,447.2898546,1648.009509,15484.42259,1,1,1,1,1,1,1
-3405,83,1158.4807,1467.561552,705.6364092,801.0541723,447.2898546,447.2898546,1665.281351,15646.70574,1,1,1,1,1,1,1
-3405.5,83,1158.4807,1467.561552,727.7970994,799.1280627,447.2898546,447.2898546,1683.433546,15817.26101,1,1,1,1,1,1,1
-3406,83,1158.4807,1467.561552,722.477495,803.7006774,447.2898546,447.2898546,1682.763326,15810.96389,1,1,1,1,1,1,1
-3406.5,83,1158.4807,1467.561552,687.6616761,817.6039045,447.2898546,447.2898546,1664.00346,15634.69924,1,1,1,1,1,1,1
-3407,83,1158.4807,1467.561552,692.084211,771.3622397,447.2898546,447.2898546,1626.488471,15282.21454,1,1,1,1,1,1,1
-3407.5,83,1158.4807,1467.561552,705.3219691,729.4444545,447.2898546,447.2898546,1600.759534,15040.46945,1,1,1,1,1,1,1
-3408,83,1158.4807,1467.561552,688.6149076,750.8538124,447.2898546,447.2898546,1604.977427,15080.10036,1,1,1,1,1,1,1
-3408.5,83,1158.4807,1467.561552,712.5036519,761.5088511,447.2898546,447.2898546,1635.966425,15371.26772,1,1,1,1,1,1,1
-3409,83,1158.4807,1467.561552,722.4262227,815.2664744,447.2898546,447.2898546,1693.093795,15908.0267,1,1,1,1,1,1,1
-3409.5,83,1158.4807,1467.561552,788.281372,841.5294185,447.2898546,447.2898546,1775.73129,16684.47536,1,1,1,1,1,1,1
-3410,83,1158.4807,1467.561552,831.0898216,919.9338847,447.2898546,447.2898546,1885.015691,17711.71553,1,1,1,1,1,1,1
-3410.5,83,1158.4807,1467.561552,838.2599158,1004.323978,447.2898546,447.2898546,1968.236773,18494.48549,1,1,1,1,1,1,1
-3411,83,1158.4807,1467.561552,873.4844632,998.6175557,447.2898546,447.2898546,1995.220846,18748.41273,1,1,1,1,1,1,1
-3411.5,83,1158.4807,1467.561552,875.6275375,980.6721938,447.2898546,447.2898546,1980.776099,18612.48348,1,1,1,1,1,1,1
-3412,83,1158.4807,1467.561552,847.5592497,955.7583029,447.2898546,447.2898546,1932.341741,18156.7029,1,1,1,1,1,1,1
-3412.5,83,1158.4807,1467.561552,818.0044551,922.4305558,447.2898546,447.2898546,1875.167202,17618.91014,1,1,1,1,1,1,1
-3413,83,1158.4807,1467.561552,773.8388353,907.7550609,447.2898546,447.2898546,1822.185156,17120.94816,1,1,1,1,1,1,1
-3413.5,83,1158.4807,1467.561552,770.600219,875.3572825,447.2898546,447.2898546,1790.216773,16820.57851,1,1,1,1,1,1,1
-3414,83,1158.4807,1467.561552,802.2847758,840.8445254,447.2898546,447.2898546,1787.679552,16796.7392,1,1,1,1,1,1,1
-3414.5,83,1158.4807,1467.561552,799.6591704,848.9228563,447.2898546,447.2898546,1792.571394,16842.70213,1,1,1,1,1,1,1
-3415,83,1158.4807,1467.561552,770.1230989,879.8248373,447.2898546,447.2898546,1793.797,16854.2177,1,1,1,1,1,1,1
-3415.5,83,1158.4807,1467.561552,782.2564741,859.3729784,447.2898546,447.2898546,1786.334734,16784.1035,1,1,1,1,1,1,1
-3416,83,1158.4807,1467.561552,770.2048502,850.8764585,447.2898546,447.2898546,1767.901029,16610.90375,1,1,1,1,1,1,1
-3416.5,83,1158.4807,1467.561552,746.2684214,864.2109367,447.2898546,447.2898546,1758.389925,16521.53883,1,1,1,1,1,1,1
-3417,83,1158.4807,1467.561552,766.8138705,853.36612,447.2898546,447.2898546,1767.091719,16603.29895,1,1,1,1,1,1,1
-3417.5,83,1158.4807,1467.561552,778.7747078,843.6726002,447.2898546,447.2898546,1769.125819,16622.41098,1,1,1,1,1,1,1
-3418,83,1158.4807,1467.561552,775.438093,829.0476477,447.2898546,447.2898546,1753.01218,16471.00997,1,1,1,1,1,1,1
-3418.5,83,1158.4807,1467.561552,775.2340978,801.7880821,447.2898546,447.2898546,1728.374995,16239.52333,1,1,1,1,1,1,1
-3419,83,1158.4807,1467.561552,754.8807629,790.6585913,447.2898546,447.2898546,1700.131918,15974.15643,1,1,1,1,1,1,1
-3419.5,83,1158.4807,1467.561552,751.4682568,767.0185101,447.2898546,447.2898546,1675.863109,15746.13079,1,1,1,1,1,1,1
-3420,83,1158.4807,1467.561552,700.2777594,799.2070668,447.2898546,447.2898546,1658.816798,15585.96614,1,1,1,1,1,1,1
-3420.5,83,1158.4807,1467.561552,723.5767781,774.0423777,447.2898546,447.2898546,1657.143391,15570.24276,1,1,1,1,1,1,1
-3421,83,1158.4807,1467.561552,717.5117108,798.2504282,447.2898546,447.2898546,1673.419411,15723.16986,1,1,1,1,1,1,1
-3421.5,83,1158.4807,1467.561552,713.3104673,815.3251695,447.2898546,447.2898546,1684.96849,15831.68309,1,1,1,1,1,1,1
-3422,83,1158.4807,1467.561552,727.0922704,798.4574848,447.2898546,447.2898546,1682.200324,15805.67386,1,1,1,1,1,1,1
-3422.5,83,1158.4807,1467.561552,715.079604,817.0761901,447.2898546,447.2898546,1688.126864,15861.35853,1,1,1,1,1,1,1
-3423,83,1158.4807,1467.561552,742.9518656,815.6693469,447.2898546,447.2898546,1711.867887,16084.42521,1,1,1,1,1,1,1
-3423.5,83,1158.4807,1467.561552,784.6552118,800.5623829,447.2898546,447.2898546,1735.727298,16308.6042,1,1,1,1,1,1,1
-3424,83,1158.4807,1467.561552,775.1355806,828.4044138,447.2898546,447.2898546,1752.164017,16463.04088,1,1,1,1,1,1,1
-3424.5,83,1158.4807,1467.561552,745.7816716,881.3182882,447.2898546,447.2898546,1773.299598,16661.62759,1,1,1,1,1,1,1
-3425,83,1158.4807,1467.561552,770.8119425,892.7360266,447.2898546,447.2898546,1805.997134,16968.84818,1,1,1,1,1,1,1
-3425.5,83,1158.4807,1467.561552,811.8045223,856.8219078,447.2898546,447.2898546,1810.552699,17011.65172,1,1,1,1,1,1,1
-3426,83,1158.4807,1467.561552,773.2406237,842.0504986,447.2898546,447.2898546,1762.706082,16562.09284,1,1,1,1,1,1,1
-3426.5,83,1158.4807,1467.561552,757.2798472,810.1167829,447.2898546,447.2898546,1719.740446,16158.39496,1,1,1,1,1,1,1
-3427,83,1158.4807,1467.561552,775.3009112,785.8110879,447.2898546,447.2898546,1714.102632,16105.42262,1,1,1,1,1,1,1
-3427.5,83,1158.4807,1467.561552,754.9016433,806.5607848,447.2898546,447.2898546,1714.416814,16108.37459,1,1,1,1,1,1,1
-3428,83,1158.4807,1467.561552,751.2808749,798.0794293,447.2898546,447.2898546,1703.559662,16006.36255,1,1,1,1,1,1,1
-3428.5,83,1158.4807,1467.561552,724.1639652,827.2897081,447.2898546,447.2898546,1705.437487,16024.00626,1,1,1,1,1,1,1
-3429,83,1158.4807,1467.561552,762.3365474,820.1936132,447.2898546,447.2898546,1733.316193,16285.95033,1,1,1,1,1,1,1
-3429.5,83,1158.4807,1467.561552,759.5600244,850.6265848,447.2898546,447.2898546,1758.126616,16519.06452,1,1,1,1,1,1,1
-3430,83,1158.4807,1467.561552,786.7589468,830.4627459,447.2898546,447.2898546,1764.4377,16578.3621,1,1,1,1,1,1,1
-3430.5,83,1158.4807,1467.561552,791.067837,834.2277614,447.2898546,447.2898546,1771.681373,16646.42275,1,1,1,1,1,1,1
-3431,83,1158.4807,1467.561552,762.5709008,883.1664564,447.2898546,447.2898546,1790.019066,16818.7205,1,1,1,1,1,1,1
-3431.5,83,1158.4807,1467.561552,803.2260107,853.5128665,447.2898546,447.2898546,1799.887783,16911.44557,1,1,1,1,1,1,1
-3432,83,1158.4807,1467.561552,774.6913631,872.531789,447.2898546,447.2898546,1791.352196,16831.24683,1,1,1,1,1,1,1
-3432.5,83,1158.4807,1467.561552,762.2467628,865.8330381,447.2898546,447.2898546,1774.179618,16669.89579,1,1,1,1,1,1,1
-3433,83,1158.4807,1467.561552,735.8664558,868.9688343,447.2898546,447.2898546,1753.326037,16473.959,1,1,1,1,1,1,1
-3433.5,83,1158.4807,1467.561552,764.5396353,818.4699143,447.2898546,447.2898546,1733.745987,16289.98843,1,1,1,1,1,1,1
-3434,83,1158.4807,1467.561552,746.4756477,818.7742001,447.2898546,447.2898546,1717.814341,16140.29754,1,1,1,1,1,1,1
-3434.5,83,1158.4807,1467.561552,757.8034524,805.0440223,447.2898546,447.2898546,1715.660045,16120.05604,1,1,1,1,1,1,1
-3435,83,1158.4807,1467.561552,787.7325097,793.0172241,447.2898546,447.2898546,1731.719512,16270.94811,1,1,1,1,1,1,1
-3435.5,83,1158.4807,1467.561552,788.0201931,820.162085,447.2898546,447.2898546,1756.329277,16502.17697,1,1,1,1,1,1,1
-3436,83,1158.4807,1467.561552,767.9056655,871.7513051,447.2898546,447.2898546,1784.564927,16767.47428,1,1,1,1,1,1,1
-3436.5,83,1158.4807,1467.561552,762.9643099,883.8150582,447.2898546,447.2898546,1790.953392,16827.49957,1,1,1,1,1,1,1
-3437,83,1158.4807,1467.561552,762.8130106,854.8059581,447.2898546,447.2898546,1764.793664,16581.70719,1,1,1,1,1,1,1
-3437.5,83,1158.4807,1467.561552,749.1275476,838.9975026,447.2898546,447.2898546,1738.335422,16333.10975,1,1,1,1,1,1,1
-3438,83,1158.4807,1467.561552,734.9119777,839.8044036,447.2898546,447.2898546,1726.306833,16220.09145,1,1,1,1,1,1,1
-3438.5,83,1158.4807,1467.561552,753.3704871,821.867804,447.2898546,447.2898546,1726.774961,16224.4896,1,1,1,1,1,1,1
-3439,83,1158.4807,1467.561552,785.8918375,801.872309,447.2898546,447.2898546,1738.011363,16330.06488,1,1,1,1,1,1,1
-3439.5,83,1158.4807,1467.561552,787.522981,819.5898878,447.2898546,447.2898546,1755.369035,16493.15469,1,1,1,1,1,1,1
-3440,83,1158.4807,1467.561552,801.6065227,828.8160144,447.2898546,447.2898546,1776.280559,16689.63611,1,1,1,1,1,1,1
-3440.5,83,1158.4807,1467.561552,773.880151,866.3493822,447.2898546,447.2898546,1785.077992,16772.29535,1,1,1,1,1,1,1
-3441,83,1158.4807,1467.561552,771.3806353,858.7594365,447.2898546,447.2898546,1776.027278,16687.25645,1,1,1,1,1,1,1
-3441.5,83,1158.4807,1467.561552,762.1735299,836.625587,447.2898546,447.2898546,1747.911294,16423.08301,1,1,1,1,1,1,1
-3442,83,1158.4807,1467.561552,709.8460539,837.8324886,447.2898546,447.2898546,1702.051656,15992.19368,1,1,1,1,1,1,1
-3442.5,83,1158.4807,1467.561552,713.9990912,785.2859753,447.2898546,447.2898546,1658.638661,15584.29264,1,1,1,1,1,1,1
-3443,83,1158.4807,1467.561552,697.5475176,765.2575781,447.2898546,447.2898546,1625.912868,15276.80638,1,1,1,1,1,1,1
-3443.5,83,1158.4807,1467.561552,698.3234891,746.8428645,447.2898546,447.2898546,1610.089637,15128.13393,1,1,1,1,1,1,1
-3444,83,1158.4807,1467.561552,699.5541823,747.7036416,447.2898546,447.2898546,1611.964929,15145.75381,1,1,1,1,1,1,1
-3444.5,83,1158.4807,1467.561552,720.9913167,740.5842296,447.2898546,447.2898546,1624.808785,15266.43256,1,1,1,1,1,1,1
-3445,83,1158.4807,1467.561552,702.3762146,781.4235258,447.2898546,447.2898546,1644.746563,15453.7643,1,1,1,1,1,1,1
-3445.5,83,1158.4807,1467.561552,719.4367065,800.3915568,447.2898546,447.2898546,1677.067756,15757.44914,1,1,1,1,1,1,1
-3446,83,1158.4807,1467.561552,722.2290883,848.1797656,447.2898546,447.2898546,1722.44239,16183.78197,1,1,1,1,1,1,1
-3446.5,83,1158.4807,1467.561552,734.1696943,873.5201996,447.2898546,447.2898546,1755.886698,16498.0186,1,1,1,1,1,1,1
-3447,83,1158.4807,1467.561552,786.7589468,830.4627459,447.2898546,447.2898546,1764.4377,16578.3621,1,1,1,1,1,1,1
-3447.5,83,1158.4807,1467.561552,803.2774881,803.2774881,447.2898546,447.2898546,1754.869042,16488.45673,1,1,1,1,1,1,1
-3448,83,1158.4807,1467.561552,779.2951475,800.065231,447.2898546,447.2898546,1730.472667,16259.23261,1,1,1,1,1,1,1
-3448.5,83,1158.4807,1467.561552,732.4002054,814.1723088,447.2898546,447.2898546,1701.059714,15982.87348,1,1,1,1,1,1,1
-3449,83,1158.4807,1467.561552,693.9412352,819.8044591,447.2898546,447.2898546,1671.610589,15706.17419,1,1,1,1,1,1,1
-3449.5,83,1158.4807,1467.561552,708.3094847,783.5199693,447.2898546,447.2898546,1651.949508,15521.44227,1,1,1,1,1,1,1
-3450,83,1158.4807,1467.561552,701.1768155,785.135633,447.2898546,447.2898546,1647.0004,15474.9415,1,1,1,1,1,1,1
-3450.5,83,1158.4807,1467.561552,731.5345338,776.7418787,447.2898546,447.2898546,1666.704227,15660.07501,1,1,1,1,1,1,1
-3451,83,1158.4807,1467.561552,752.680527,810.2982434,447.2898546,447.2898546,1715.777158,16121.15617,1,1,1,1,1,1,1
-3451.5,83,1158.4807,1467.561552,787.2530979,835.7778081,447.2898546,447.2898546,1769.64876,16627.32515,1,1,1,1,1,1,1
-3452,83,1158.4807,1467.561552,792.7236582,882.2312895,447.2898546,447.2898546,1816.229542,17064.99007,1,1,1,1,1,1,1
-3452.5,83,1158.4807,1467.561552,778.1429155,932.0162642,447.2898546,447.2898546,1847.811102,17361.7253,1,1,1,1,1,1,1
-3453,83,1158.4807,1467.561552,827.7669867,897.2978827,447.2898546,447.2898546,1861.18256,17487.36139,1,1,1,1,1,1,1
-3453.5,83,1158.4807,1467.561552,821.2539928,895.0490174,447.2898546,447.2898546,1853.322553,17413.50987,1,1,1,1,1,1,1
-3454,83,1158.4807,1467.561552,769.0258502,914.2413833,447.2898546,447.2898546,1823.686766,17135.0567,1,1,1,1,1,1,1
-3454.5,83,1158.4807,1467.561552,758.9885692,903.2459036,447.2898546,447.2898546,1804.817962,16957.76849,1,1,1,1,1,1,1
-3455,83,1158.4807,1467.561552,784.5738706,884.8531806,447.2898546,447.2898546,1811.270208,17018.393,1,1,1,1,1,1,1
-3455.5,83,1158.4807,1467.561552,803.6052671,876.4661557,447.2898546,447.2898546,1820.819466,17108.11603,1,1,1,1,1,1,1
-3456,83,1158.4807,1467.561552,824.3986549,858.2776599,447.2898546,447.2898546,1823.1564,17130.0733,1,1,1,1,1,1,1
-3456.5,83,1158.4807,1467.561552,789.6772203,895.9071708,447.2898546,447.2898546,1825.765998,17154.59298,1,1,1,1,1,1,1
-3457,83,1158.4807,1467.561552,786.923054,905.5693435,447.2898546,447.2898546,1831.962715,17212.81634,1,1,1,1,1,1,1
-3457.5,83,1158.4807,1467.561552,806.2805378,873.8646539,447.2898546,447.2898546,1820.886023,17108.74124,1,1,1,1,1,1,1
-3458,83,1158.4807,1467.561552,784.6056001,855.3020092,447.2898546,447.2898546,1784.789789,16769.58725,1,1,1,1,1,1,1
-3458.5,83,1158.4807,1467.561552,788.1460311,826.2239601,447.2898546,447.2898546,1761.879498,16554.32601,1,1,1,1,1,1,1
-3459,83,1158.4807,1467.561552,769.9156279,850.7334963,447.2898546,447.2898546,1767.512226,16607.25,1,1,1,1,1,1,1
-3459.5,83,1158.4807,1467.561552,754.4194454,879.6519191,447.2898546,447.2898546,1779.553546,16720.38851,1,1,1,1,1,1,1
-3460,83,1158.4807,1467.561552,745.1207205,898.4064549,447.2898546,447.2898546,1788.036209,16800.09031,1,1,1,1,1,1,1
-3460.5,83,1158.4807,1467.561552,766.6061324,888.1353918,447.2898546,447.2898546,1798.09594,16894.6101,1,1,1,1,1,1,1
-3461,83,1158.4807,1467.561552,779.2824481,890.5676899,447.2898546,447.2898546,1811.650701,17021.96814,1,1,1,1,1,1,1
-3461.5,83,1158.4807,1467.561552,812.6999942,852.3155551,447.2898546,447.2898546,1807.313698,16981.21806,1,1,1,1,1,1,1
-3462,83,1158.4807,1467.561552,794.8851472,837.764754,447.2898546,447.2898546,1778.278449,16708.40766,1,1,1,1,1,1,1
-3462.5,83,1158.4807,1467.561552,788.7430593,821.2482096,447.2898546,447.2898546,1757.952287,16517.42646,1,1,1,1,1,1,1
-3463,83,1158.4807,1467.561552,749.3108513,861.5912003,447.2898546,447.2898546,1758.769139,16525.1017,1,1,1,1,1,1,1
-3463.5,83,1158.4807,1467.561552,753.9825248,862.0384079,447.2898546,447.2898546,1763.360658,16568.24259,1,1,1,1,1,1,1
-3464,83,1158.4807,1467.561552,789.5987881,827.6229046,447.2898546,447.2898546,1764.4377,16578.3621,1,1,1,1,1,1,1
-3464.5,83,1158.4807,1467.561552,800.5247379,816.6969548,447.2898546,447.2898546,1764.4377,16578.3621,1,1,1,1,1,1,1
-3465,83,1158.4807,1467.561552,784.3733356,832.6659838,447.2898546,447.2898546,1764.274865,16576.83222,1,1,1,1,1,1,1
-3465.5,83,1158.4807,1467.561552,728.562189,854.0512673,447.2898546,447.2898546,1733.391686,16286.65954,1,1,1,1,1,1,1
-3466,83,1158.4807,1467.561552,677.5177872,828.0772954,447.2898546,447.2898546,1664.299528,15637.48115,1,1,1,1,1,1,1
-3466.5,83,1158.4807,1467.561552,680.4820939,788.5579493,447.2898546,447.2898546,1631.506323,15329.36176,1,1,1,1,1,1,1
-3467,83,1158.4807,1467.561552,734.3321771,764.0425713,447.2898546,447.2898546,1657.821491,15576.61442,1,1,1,1,1,1,1
-3467.5,83,1158.4807,1467.561552,752.5171128,772.7882004,447.2898546,447.2898546,1681.980719,15803.6106,1,1,1,1,1,1,1
-3468,83,1158.4807,1467.561552,717.1752046,808.1818412,447.2898546,447.2898546,1682.027112,15804.0463,1,1,1,1,1,1,1
-3468.5,83,1158.4807,1467.561552,716.320464,829.684453,447.2898546,447.2898546,1700.550679,15978.09086,1,1,1,1,1,1,1
-3469,83,1158.4807,1467.561552,776.8028606,824.3902802,447.2898546,447.2898546,1750.058862,16443.2613,1,1,1,1,1,1,1
-3469.5,83,1158.4807,1467.561552,806.8018229,834.137168,447.2898546,447.2898546,1785.714763,16778.27823,1,1,1,1,1,1,1
-3470,83,1158.4807,1467.561552,775.6966231,874.2513132,447.2898546,447.2898546,1793.797,16854.2177,1,1,1,1,1,1,1
-3470.5,83,1158.4807,1467.561552,768.5863735,878.5623449,447.2898546,447.2898546,1791.285143,16830.61663,1,1,1,1,1,1,1
-3471,83,1158.4807,1467.561552,765.5134309,874.7743293,447.2898546,447.2898546,1785.13014,16772.78538,1,1,1,1,1,1,1
-3471.5,83,1158.4807,1467.561552,773.737862,866.829279,447.2898546,447.2898546,1785.38127,16775.14476,1,1,1,1,1,1,1
-3472,83,1158.4807,1467.561552,779.6766163,873.3086386,447.2898546,447.2898546,1796.520813,16879.80987,1,1,1,1,1,1,1
-3472.5,83,1158.4807,1467.561552,794.3289297,860.7900007,447.2898546,447.2898546,1798.434682,16897.79233,1,1,1,1,1,1,1
-3473,83,1158.4807,1467.561552,767.026938,870.0690106,447.2898546,447.2898546,1782.266872,16745.88249,1,1,1,1,1,1,1
-3473.5,83,1158.4807,1467.561552,747.0447131,876.9655328,447.2898546,447.2898546,1770.528213,16635.588,1,1,1,1,1,1,1
-3474,83,1158.4807,1467.561552,759.2116816,867.7869441,447.2898546,447.2898546,1773.209101,16660.77741,1,1,1,1,1,1,1
-3474.5,83,1158.4807,1467.561552,795.268266,828.3003735,447.2898546,447.2898546,1770.131408,16631.85962,1,1,1,1,1,1,1
-3475,83,1158.4807,1467.561552,780.9328416,823.2033499,447.2898546,447.2898546,1752.698323,16468.06098,1,1,1,1,1,1,1
-3475.5,83,1158.4807,1467.561552,742.7616578,848.499622,447.2898546,447.2898546,1741.14921,16359.54755,1,1,1,1,1,1,1
-3476,83,1158.4807,1467.561552,728.113902,866.2381934,447.2898546,447.2898546,1743.922277,16385.6029,1,1,1,1,1,1,1
-3476.5,83,1158.4807,1467.561552,761.4288258,852.9805448,447.2898546,447.2898546,1761.915046,16554.66026,1,1,1,1,1,1,1
-3477,83,1158.4807,1467.561552,803.1830218,847.1563468,447.2898546,447.2898546,1794.147422,16857.50997,1,1,1,1,1,1,1
-3477.5,83,1158.4807,1467.561552,793.5177565,894.8584854,447.2898546,447.2898546,1828.269456,17178.11502,1,1,1,1,1,1,1
-3478,83,1158.4807,1467.561552,792.3029379,930.0947531,447.2898546,447.2898546,1858.790352,17464.88458,1,1,1,1,1,1,1
-3478.5,83,1158.4807,1467.561552,806.2466671,933.913483,447.2898546,447.2898546,1874.724721,17614.60093,1,1,1,1,1,1,1
-3479,83,1158.4807,1467.561552,808.2383427,929.9086309,447.2898546,447.2898546,1872.918285,17597.62805,1,1,1,1,1,1,1
-3479.5,83,1158.4807,1467.561552,820.1239771,906.7866917,447.2898546,447.2898546,1862.838117,17502.91647,1,1,1,1,1,1,1
-3480,83,1158.4807,1467.561552,815.9643043,895.7301057,447.2898546,447.2898546,1849.188575,17374.66784,1,1,1,1,1,1,1
-3480.5,83,1158.4807,1467.561552,816.054261,867.0054254,447.2898546,447.2898546,1823.500764,17133.30929,1,1,1,1,1,1,1
-3481,83,1158.4807,1467.561552,808.3569673,830.3900505,447.2898546,447.2898546,1783.747614,16759.79531,1,1,1,1,1,1,1
-3481.5,83,1158.4807,1467.561552,771.849298,830.0245401,447.2898546,447.2898546,1750.669138,16448.9957,1,1,1,1,1,1,1
-3482,83,1158.4807,1467.561552,771.6836277,808.9951985,447.2898546,447.2898546,1731.655242,16270.34408,1,1,1,1,1,1,1
-3482.5,83,1158.4807,1467.561552,739.6207146,827.7658215,447.2898546,447.2898546,1719.730929,16158.30517,1,1,1,1,1,1,1
-3483,83,1158.4807,1467.561552,742.4720661,815.6211994,447.2898546,447.2898546,1711.393829,16079.97144,1,1,1,1,1,1,1
-3483.5,83,1158.4807,1467.561552,745.1572618,823.5154996,447.2898546,447.2898546,1720.884972,16169.14819,1,1,1,1,1,1,1
-3484,83,1158.4807,1467.561552,747.8762537,854.7373046,447.2898546,447.2898546,1751.332785,16455.23102,1,1,1,1,1,1,1
-3484.5,83,1158.4807,1467.561552,755.8838015,881.4066127,447.2898546,447.2898546,1782.441055,16747.51932,1,1,1,1,1,1,1
-3485,83,1158.4807,1467.561552,759.9530266,904.1562062,447.2898546,447.2898546,1806.500164,16973.57475,1,1,1,1,1,1,1
-3485.5,83,1158.4807,1467.561552,787.2977659,882.329191,447.2898546,447.2898546,1811.450005,17020.08232,1,1,1,1,1,1,1
-3486,83,1158.4807,1467.561552,771.1587554,880.7721419,447.2898546,447.2898546,1795.575804,16870.9312,1,1,1,1,1,1,1
-3486.5,83,1158.4807,1467.561552,766.1786367,864.362097,447.2898546,447.2898546,1776.386767,16690.63384,1,1,1,1,1,1,1
-3487,83,1158.4807,1467.561552,760.8863916,852.1852582,447.2898546,447.2898546,1760.715505,16543.3891,1,1,1,1,1,1,1
-3487.5,83,1158.4807,1467.561552,744.3592925,862.0079764,447.2898546,447.2898546,1754.70031,16486.87176,1,1,1,1,1,1,1
-3488,83,1158.4807,1467.561552,767.867304,843.3242902,447.2898546,447.2898546,1759.028212,16527.53586,1,1,1,1,1,1,1
-3488.5,83,1158.4807,1467.561552,747.8085575,871.584028,447.2898546,447.2898546,1766.38502,16596.65928,1,1,1,1,1,1,1
-3489,83,1158.4807,1467.561552,786.4288407,841.2254699,447.2898546,447.2898546,1773.796795,16666.2991,1,1,1,1,1,1,1
-3489.5,83,1158.4807,1467.561552,783.0037852,859.419662,447.2898546,447.2898546,1787.04602,16790.78675,1,1,1,1,1,1,1
-3490,83,1158.4807,1467.561552,796.2372714,868.4528895,447.2898546,447.2898546,1807.021004,16978.46826,1,1,1,1,1,1,1
-3490.5,83,1158.4807,1467.561552,801.7792163,874.2798217,447.2898546,447.2898546,1817.220821,17074.3038,1,1,1,1,1,1,1
-3491,83,1158.4807,1467.561552,788.8446424,883.519372,447.2898546,447.2898546,1813.905907,17043.15747,1,1,1,1,1,1,1
-3491.5,83,1158.4807,1467.561552,821.8315541,855.6723464,447.2898546,447.2898546,1818.51654,17086.47802,1,1,1,1,1,1,1
-3492,83,1158.4807,1467.561552,837.4835462,860.0744785,447.2898546,447.2898546,1836.507077,17255.51423,1,1,1,1,1,1,1
-3492.5,83,1158.4807,1467.561552,833.9809829,868.0210231,447.2898546,447.2898546,1840.493174,17292.96724,1,1,1,1,1,1,1
-3493,83,1158.4807,1467.561552,830.6579749,853.2398603,447.2898546,447.2898546,1824.252248,17140.37022,1,1,1,1,1,1,1
-3493.5,83,1158.4807,1467.561552,830.1973976,835.857701,447.2898546,447.2898546,1808.245851,16989.97648,1,1,1,1,1,1,1
-3494,83,1158.4807,1467.561552,773.1609184,882.6253226,447.2898546,447.2898546,1799.034454,16903.42754,1,1,1,1,1,1,1
-3494.5,83,1158.4807,1467.561552,797.5765911,853.4163309,447.2898546,447.2898546,1794.734564,16863.02675,1,1,1,1,1,1,1
-3495,83,1158.4807,1467.561552,797.6369196,852.2643631,447.2898546,447.2898546,1793.755149,16853.82468,1,1,1,1,1,1,1
-3495.5,83,1158.4807,1467.561552,792.962779,853.5033347,447.2898546,447.2898546,1790.672648,16824.86168,1,1,1,1,1,1,1
-3496,83,1158.4807,1467.561552,784.3449094,855.2109332,447.2898546,447.2898546,1784.473978,16766.62008,1,1,1,1,1,1,1
-3496.5,83,1158.4807,1467.561552,794.0642541,854.5826836,447.2898546,447.2898546,1792.629467,16843.24775,1,1,1,1,1,1,1
-3497,83,1158.4807,1467.561552,774.0400718,902.5763358,447.2898546,447.2898546,1817.720755,17079.00137,1,1,1,1,1,1,1
-3497.5,83,1158.4807,1467.561552,782.8589903,943.9756005,447.2898546,447.2898546,1862.770499,17502.28114,1,1,1,1,1,1,1
-3498,83,1158.4807,1467.561552,829.0407746,966.531763,447.2898546,447.2898546,1925.263362,18090.09513,1,1,1,1,1,1,1
-3498.5,83,1158.4807,1467.561552,856.1209188,1011.947897,447.2898546,447.2898546,1991.534239,18713.72062,1,1,1,1,1,1,1
-3499,83,1158.4807,1467.561552,908.2981169,1030.823506,447.2898546,447.2898546,2056.487311,19324.94685,1,1,1,1,1,1,1
-3499.5,83,1158.4807,1467.561552,979.6783234,1012.833146,447.2898546,447.2898546,2105.293837,19784.2297,1,1,1,1,1,1,1
-3500,83,1158.4807,1467.561552,971.5328519,1052.271626,447.2898546,447.2898546,2133.899887,20053.42052,1,1,1,1,1,1,1
-3500.5,83,1158.4807,1467.561552,968.9147473,1063.958436,447.2898546,447.2898546,2142.189537,20131.42817,1,1,1,1,1,1,1
-3501,83,1158.4807,1467.561552,957.4055426,1065.013899,447.2898546,447.2898546,2132.633438,20041.50231,1,1,1,1,1,1,1
-3501.5,83,1158.4807,1467.561552,964.2194581,1044.933113,447.2898546,447.2898546,2120.506221,19927.38217,1,1,1,1,1,1,1
-3502,83,1158.4807,1467.561552,923.5881014,1076.146354,447.2898546,447.2898546,2111.896399,19846.36178,1,1,1,1,1,1,1
-3502.5,83,1158.4807,1467.561552,899.907396,1085.323879,447.2898546,447.2898546,2098.637873,19721.59515,1,1,1,1,1,1,1
-3503,83,1158.4807,1467.561552,932.0066461,1031.012827,447.2898546,447.2898546,2078.333092,19530.52154,1,1,1,1,1,1,1
-3503.5,83,1158.4807,1467.561552,952.7588648,998.3848372,447.2898546,447.2898546,2067.476852,19428.36132,1,1,1,1,1,1,1
-3504,83,1158.4807,1467.561552,938.3726051,1016.354648,447.2898546,447.2898546,2070.752803,19459.18909,1,1,1,1,1,1,1
-3504.5,83,1158.4807,1467.561552,943.8522713,1015.868704,447.2898546,447.2898546,2075.317414,19502.14328,1,1,1,1,1,1,1
-3505,83,1158.4807,1467.561552,912.1316581,1048.880019,447.2898546,447.2898546,2076.49782,19513.25113,1,1,1,1,1,1,1
-3505.5,83,1158.4807,1467.561552,920.8511245,1059.548802,447.2898546,447.2898546,2094.221467,19680.03552,1,1,1,1,1,1,1
-3506,83,1158.4807,1467.561552,937.1749159,1085.546497,447.2898546,447.2898546,2132.909083,20044.0963,1,1,1,1,1,1,1
-3506.5,83,1158.4807,1467.561552,972.9289309,1082.709284,447.2898546,447.2898546,2162.999999,20327.26012,1,1,1,1,1,1,1
-3507,83,1158.4807,1467.561552,1020.777144,1048.665643,447.2898546,447.2898546,2175.619649,20446.01445,1,1,1,1,1,1,1
-3507.5,83,1158.4807,1467.561552,985.2269348,1095.701263,447.2898546,447.2898546,2186.119062,20544.81659,1,1,1,1,1,1,1
-3508,83,1158.4807,1467.561552,1019.806183,1076.161103,447.2898546,447.2898546,2199.866996,20674.18861,1,1,1,1,1,1,1
-3508.5,83,1158.4807,1467.561552,1029.186932,1056.707937,447.2898546,447.2898546,2190.659586,20587.54434,1,1,1,1,1,1,1
-3509,83,1158.4807,1467.561552,1002.344971,1043.25701,447.2898546,447.2898546,2153.826355,20240.93365,1,1,1,1,1,1,1
-3509.5,83,1158.4807,1467.561552,959.8452501,1053.211795,447.2898546,447.2898546,2124.075477,19960.96982,1,1,1,1,1,1,1
-3510,83,1158.4807,1467.561552,946.3744366,1053.121749,447.2898546,447.2898546,2111.678996,19844.31543,1,1,1,1,1,1,1
-3510.5,83,1158.4807,1467.561552,914.4565137,1080.196786,447.2898546,447.2898546,2107.251646,19802.65271,1,1,1,1,1,1,1
-3511,83,1158.4807,1467.561552,949.9963356,1043.745826,447.2898546,447.2898546,2106.4184,19794.81213,1,1,1,1,1,1,1
-3511.5,83,1158.4807,1467.561552,983.5746557,1023.72056,447.2898546,447.2898546,2118.807493,19911.39715,1,1,1,1,1,1,1
-3512,83,1158.4807,1467.561552,997.4040319,1038.114401,447.2898546,447.2898546,2144.608246,20154.1893,1,1,1,1,1,1,1
-3512.5,83,1158.4807,1467.561552,952.8667246,1088.170689,447.2898546,447.2898546,2149.653329,20201.66488,1,1,1,1,1,1,1
-3513,83,1158.4807,1467.561552,950.8469555,1065.945489,447.2898546,447.2898546,2127.490294,19993.10425,1,1,1,1,1,1,1
-3513.5,83,1158.4807,1467.561552,978.7074135,1019.01161,447.2898546,447.2898546,2110.054238,19829.02587,1,1,1,1,1,1,1
-3514,83,1158.4807,1467.561552,947.1248057,1046.255437,447.2898546,447.2898546,2106.087962,19791.70258,1,1,1,1,1,1,1
-3514.5,83,1158.4807,1467.561552,966.2061853,1013.339182,447.2898546,447.2898546,2093.440168,19672.68365,1,1,1,1,1,1,1
-3515,83,1158.4807,1467.561552,930.6915191,1020.642166,447.2898546,447.2898546,2067.650565,19429.99624,1,1,1,1,1,1,1
-3515.5,83,1158.4807,1467.561552,945.5149019,1004.343854,447.2898546,447.2898546,2066.302719,19417.3122,1,1,1,1,1,1,1
-3516,83,1158.4807,1467.561552,921.3473257,1060.063943,447.2898546,447.2898546,2095.145738,19688.73315,1,1,1,1,1,1,1
-3516.5,83,1158.4807,1467.561552,920.5375902,1080.853028,447.2898546,447.2898546,2113.410122,19860.60589,1,1,1,1,1,1,1
-3517,83,1158.4807,1467.561552,956.2479428,1043.32134,447.2898546,447.2898546,2111.745428,19844.94041,1,1,1,1,1,1,1
-3517.5,83,1158.4807,1467.561552,976.078264,1036.454239,447.2898546,447.2898546,2123.595275,19956.45114,1,1,1,1,1,1,1
-3518,83,1158.4807,1467.561552,992.8974591,1054.313797,447.2898546,447.2898546,2155.296534,20254.76836,1,1,1,1,1,1,1
-3518.5,83,1158.4807,1467.561552,1002.449808,1064.457012,447.2898546,447.2898546,2173.301108,20424.19653,1,1,1,1,1,1,1
-3519,83,1158.4807,1467.561552,1008.353129,1056.645535,447.2898546,447.2898546,2171.55712,20407.78515,1,1,1,1,1,1,1
-3519.5,83,1158.4807,1467.561552,1018.335613,1059.900332,447.2898546,447.2898546,2183.658602,20521.66331,1,1,1,1,1,1,1
-3520,83,1158.4807,1467.561552,1035.298262,1077.555334,447.2898546,447.2898546,2215.303831,20819.45331,1,1,1,1,1,1,1
-3520.5,83,1158.4807,1467.561552,999.082795,1125.990693,447.2898546,447.2898546,2226.475239,20924.57915,1,1,1,1,1,1,1
-3521,83,1158.4807,1467.561552,990.5701023,1117.502334,447.2898546,447.2898546,2210.933811,20778.33032,1,1,1,1,1,1,1
-3521.5,83,1158.4807,1467.561552,989.6536145,1093.827679,447.2898546,447.2898546,2188.452964,20566.77989,1,1,1,1,1,1,1
-3522,83,1158.4807,1467.561552,998.1142789,1060.312735,447.2898546,447.2898546,2165.550386,20351.26,1,1,1,1,1,1,1
-3522.5,83,1158.4807,1467.561552,994.2631507,1021.34371,447.2898546,447.2898546,2126.406495,19982.90559,1,1,1,1,1,1,1
-3523,83,1158.4807,1467.561552,954.7878097,999.9300183,447.2898546,447.2898546,2070.744912,19459.11462,1,1,1,1,1,1,1
-3523.5,83,1158.4807,1467.561552,936.6032836,956.1880039,447.2898546,447.2898546,2014.134352,18926.39364,1,1,1,1,1,1,1
-3524,83,1158.4807,1467.561552,893.8359566,941.9668961,447.2898546,447.2898546,1962.038886,18436.16137,1,1,1,1,1,1,1
-3524.5,83,1158.4807,1467.561552,896.7061537,933.4217693,447.2898546,447.2898546,1956.850415,18387.33628,1,1,1,1,1,1,1
-3525,83,1158.4807,1467.561552,902.9439831,971.8658849,447.2898546,447.2898546,1997.696376,18771.7083,1,1,1,1,1,1,1
-3525.5,83,1158.4807,1467.561552,930.729537,1001.493503,447.2898546,447.2898546,2050.180403,19265.59723,1,1,1,1,1,1,1
-3526,83,1158.4807,1467.561552,978.1681299,1011.247395,447.2898546,447.2898546,2102.463543,19757.59573,1,1,1,1,1,1,1
-3526.5,83,1158.4807,1467.561552,961.8477958,1077.497759,447.2898546,447.2898546,2148.107559,20187.1186,1,1,1,1,1,1,1
-3527,83,1158.4807,1467.561552,1012.577226,1068.110985,447.2898546,447.2898546,2185.900247,20542.75795,1,1,1,1,1,1,1
-3527.5,83,1158.4807,1467.561552,988.5597926,1084.13862,447.2898546,447.2898546,2178.59633,20474.02586,1,1,1,1,1,1,1
-3528,83,1158.4807,1467.561552,972.0584002,1047.271032,447.2898546,447.2898546,2129.808634,20014.92029,1,1,1,1,1,1,1
-3528.5,83,1158.4807,1467.561552,924.6326635,1055.620253,447.2898546,447.2898546,2094.087206,19678.77226,1,1,1,1,1,1,1
-3529,83,1158.4807,1467.561552,894.5219846,1071.460399,447.2898546,447.2898546,2081.041742,19556.01064,1,1,1,1,1,1,1
-3529.5,83,1158.4807,1467.561552,923.1530503,1034.622802,447.2898546,447.2898546,2073.539942,19485.41687,1,1,1,1,1,1,1
-3530,83,1158.4807,1467.561552,897.1785322,1052.524922,447.2898546,447.2898546,2066.160565,19415.97512,1,1,1,1,1,1,1
-3530.5,83,1158.4807,1467.561552,920.4712154,1024.87025,447.2898546,447.2898546,2062.172769,19378.44869,1,1,1,1,1,1,1
-3531,83,1158.4807,1467.561552,949.5182018,994.9766014,447.2898546,447.2898546,2061.3987,19371.1644,1,1,1,1,1,1,1
-3531.5,83,1158.4807,1467.561552,946.3642313,998.1305719,447.2898546,447.2898546,2061.3987,19371.1644,1,1,1,1,1,1,1
-3532,83,1158.4807,1467.561552,930.3922348,1014.499831,447.2898546,447.2898546,2061.761519,19374.5787,1,1,1,1,1,1,1
-3532.5,83,1158.4807,1467.561552,942.1225549,1013.945661,447.2898546,447.2898546,2071.978466,19470.72284,1,1,1,1,1,1,1
-3533,83,1158.4807,1467.561552,959.0058829,1018.325834,447.2898546,447.2898546,2091.416637,19653.64101,1,1,1,1,1,1,1
-3533.5,83,1158.4807,1467.561552,925.6459543,1079.184,447.2898546,447.2898546,2116.55435,19890.19377,1,1,1,1,1,1,1
-3534,83,1158.4807,1467.561552,943.5139722,1092.923966,447.2898546,447.2898546,2145.448926,20162.10001,1,1,1,1,1,1,1
-3534.5,83,1158.4807,1467.561552,991.5085779,1074.229953,447.2898546,447.2898546,2172.233786,20414.15306,1,1,1,1,1,1,1
-3535,83,1158.4807,1467.561552,1035.125453,1056.154006,447.2898546,447.2898546,2195.58219,20633.86755,1,1,1,1,1,1,1
-3535.5,83,1158.4807,1467.561552,1000.051605,1112.301373,447.2898546,447.2898546,2214.846079,20815.14608,1,1,1,1,1,1,1
-3536,83,1158.4807,1467.561552,1000.794794,1128.744485,447.2898546,447.2898546,2230.55677,20962.9879,1,1,1,1,1,1,1
-3536.5,83,1158.4807,1467.561552,1000.120205,1135.16636,447.2898546,447.2898546,2235.811519,21012.43652,1,1,1,1,1,1,1
-3537,83,1158.4807,1467.561552,976.3340173,1153.601116,447.2898546,447.2898546,2230.919342,20966.39952,1,1,1,1,1,1,1
-3537.5,83,1158.4807,1467.561552,956.7666853,1161.397696,447.2898546,447.2898546,2220.159413,20865.14548,1,1,1,1,1,1,1
-3538,83,1158.4807,1467.561552,966.9443253,1135.537188,447.2898546,447.2898546,2205.823152,20730.23754,1,1,1,1,1,1,1
-3538.5,83,1158.4807,1467.561552,958.1808557,1117.122054,447.2898546,447.2898546,2180.97694,20496.42798,1,1,1,1,1,1,1
-3539,83,1158.4807,1467.561552,964.1131593,1073.51137,447.2898546,447.2898546,2146.532605,20172.29747,1,1,1,1,1,1,1
-3539.5,83,1158.4807,1467.561552,955.4645864,1062.891817,447.2898546,447.2898546,2128.919204,20006.55055,1,1,1,1,1,1,1
-3540,83,1158.4807,1467.561552,989.9459257,1030.795608,447.2898546,447.2898546,2131.099639,20027.06929,1,1,1,1,1,1,1
-3540.5,83,1158.4807,1467.561552,963.9902849,1057.659834,447.2898546,447.2898546,2131.93029,20034.88613,1,1,1,1,1,1,1
-3541,83,1158.4807,1467.561552,937.2029046,1078.287213,447.2898546,447.2898546,2126.299558,19981.89898,1,1,1,1,1,1,1
-3541.5,83,1158.4807,1467.561552,963.4975513,1051.133577,447.2898546,447.2898546,2125.513611,19974.50306,1,1,1,1,1,1,1
-3542,83,1158.4807,1467.561552,979.947808,1040.563136,447.2898546,447.2898546,2130.889232,20025.08952,1,1,1,1,1,1,1
-3542.5,83,1158.4807,1467.561552,961.6961296,1048.540317,447.2898546,447.2898546,2121.497227,19936.70829,1,1,1,1,1,1,1
-3543,83,1158.4807,1467.561552,954.7840925,1027.798618,447.2898546,447.2898546,2096.217587,19698.81996,1,1,1,1,1,1,1
-3543.5,83,1158.4807,1467.561552,923.8157401,1048.279545,447.2898546,447.2898546,2086.630456,19608.60224,1,1,1,1,1,1,1
-3544,83,1158.4807,1467.561552,938.1597534,1044.099045,447.2898546,447.2898546,2095.920676,19696.02561,1,1,1,1,1,1,1
-3544.5,83,1158.4807,1467.561552,944.9779481,1023.72611,447.2898546,447.2898546,2083.530213,19579.42823,1,1,1,1,1,1,1
-3545,83,1158.4807,1467.561552,887.4257659,1040.510689,447.2898546,447.2898546,2046.263037,19228.73358,1,1,1,1,1,1,1
-3545.5,83,1158.4807,1467.561552,897.730884,1026.222166,447.2898546,447.2898546,2042.620883,19194.46013,1,1,1,1,1,1,1
-3546,83,1158.4807,1467.561552,899.0592774,1062.629585,447.2898546,447.2898546,2077.117353,19519.08097,1,1,1,1,1,1,1
-3546.5,83,1158.4807,1467.561552,917.5010626,1063.059074,447.2898546,447.2898546,2094.368055,19681.41465,1,1,1,1,1,1,1
-3547,83,1158.4807,1467.561552,952.9778872,1019.201643,447.2898546,447.2898546,2086.707333,19609.32542,1,1,1,1,1,1,1
-3547.5,83,1158.4807,1467.561552,975.1726724,1014.975639,447.2898546,447.2898546,2103.132731,19763.89292,1,1,1,1,1,1,1
-3548,83,1158.4807,1467.561552,992.0259904,1046.417004,447.2898546,447.2898546,2147.280746,20179.33763,1,1,1,1,1,1,1
-3548.5,83,1158.4807,1467.561552,975.6164604,1077.985893,447.2898546,447.2898546,2161.138801,20309.74564,1,1,1,1,1,1,1
-3549,83,1158.4807,1467.561552,968.0327661,1063.141813,447.2898546,447.2898546,2140.636871,20116.81672,1,1,1,1,1,1,1
-3549.5,83,1158.4807,1467.561552,960.5882656,1068.693704,447.2898546,447.2898546,2138.907608,20100.54438,1,1,1,1,1,1,1
-3550,83,1158.4807,1467.561552,938.2910441,1116.267735,447.2898546,447.2898546,2162.01464,20317.988,1,1,1,1,1,1,1
-3550.5,83,1158.4807,1467.561552,983.478296,1080.569363,447.2898546,447.2898546,2170.688972,20399.61561,1,1,1,1,1,1,1
-3551,83,1158.4807,1467.561552,1019.838312,1033.779028,447.2898546,447.2898546,2161.153709,20309.88624,1,1,1,1,1,1,1
-3551.5,83,1158.4807,1467.561552,997.9747328,1066.60279,447.2898546,447.2898546,2171.171874,20404.15994,1,1,1,1,1,1,1
-3552,83,1158.4807,1467.561552,1017.990476,1080.974818,447.2898546,447.2898546,2202.607454,20699.97702,1,1,1,1,1,1,1
-3552.5,83,1158.4807,1467.561552,1037.029414,1079.357145,447.2898546,447.2898546,2218.533337,20849.84388,1,1,1,1,1,1,1
-3553,83,1158.4807,1467.561552,986.6121347,1126.719173,447.2898546,447.2898546,2215.740604,20823.56391,1,1,1,1,1,1,1
-3553.5,83,1158.4807,1467.561552,982.432075,1130.604316,447.2898546,447.2898546,2215.470633,20821.02321,1,1,1,1,1,1,1
-3554,83,1158.4807,1467.561552,1009.893867,1108.930491,447.2898546,447.2898546,2220.761457,20870.81126,1,1,1,1,1,1,1
-3554.5,83,1158.4807,1467.561552,1011.433506,1095.719631,447.2898546,447.2898546,2210.092391,20770.41249,1,1,1,1,1,1,1
-3555,83,1158.4807,1467.561552,1004.657367,1074.114319,447.2898546,447.2898546,2184.147997,20526.26867,1,1,1,1,1,1,1
-3555.5,83,1158.4807,1467.561552,984.5198798,1073.447215,447.2898546,447.2898546,2165.12961,20347.30069,1,1,1,1,1,1,1
-3556,83,1158.4807,1467.561552,985.7267254,1060.997705,447.2898546,447.2898546,2154.852014,20250.58576,1,1,1,1,1,1,1
-3556.5,83,1158.4807,1467.561552,960.9101624,1061.547958,447.2898546,447.2898546,2132.669402,20041.84126,1,1,1,1,1,1,1
-3557,83,1158.4807,1467.561552,913.7222619,1072.055925,447.2898546,447.2898546,2099.137924,19726.30061,1,1,1,1,1,1,1
-3557.5,83,1158.4807,1467.561552,950.0195993,1023.056955,447.2898546,447.2898546,2087.526212,19617.03111,1,1,1,1,1,1,1
-3558,83,1158.4807,1467.561552,955.5600031,1028.078174,447.2898546,447.2898546,2097.181814,19707.8931,1,1,1,1,1,1,1
-3558.5,83,1158.4807,1467.561552,917.9045441,1069.936303,447.2898546,447.2898546,2101.024218,19744.05132,1,1,1,1,1,1,1
-3559,83,1158.4807,1467.561552,934.800433,1047.664604,447.2898546,447.2898546,2096.110039,19697.80786,1,1,1,1,1,1,1
-3559.5,83,1158.4807,1467.561552,973.3000957,1013.230688,447.2898546,447.2898546,2099.826841,19732.78384,1,1,1,1,1,1,1
-3560,83,1158.4807,1467.561552,930.3041896,1069.820846,447.2898546,447.2898546,2112.253202,19849.71923,1,1,1,1,1,1,1
-3560.5,83,1158.4807,1467.561552,955.0405896,1049.320645,447.2898546,447.2898546,2116.125188,19886.15569,1,1,1,1,1,1,1
-3561,83,1158.4807,1467.561552,939.5889074,1058.849941,447.2898546,447.2898546,2110.711609,19835.21231,1,1,1,1,1,1,1
-3561.5,83,1158.4807,1467.561552,938.3492506,1044.634182,447.2898546,447.2898546,2096.583372,19702.26199,1,1,1,1,1,1,1
-3562,83,1158.4807,1467.561552,928.1774876,1032.462605,447.2898546,447.2898546,2076.157548,19510.04954,1,1,1,1,1,1,1
-3562.5,83,1158.4807,1467.561552,891.1460202,1059.864251,447.2898546,447.2898546,2067.355325,19427.21814,1,1,1,1,1,1,1
-3563,83,1158.4807,1467.561552,931.811836,1023.623479,447.2898546,447.2898546,2071.400688,19465.28605,1,1,1,1,1,1,1
-3563.5,83,1158.4807,1467.561552,926.1226638,1029.977499,447.2898546,447.2898546,2072.007753,19470.99828,1,1,1,1,1,1,1
-3564,83,1158.4807,1467.561552,938.9339907,1010.953102,447.2898546,447.2898546,2066.328242,19417.55282,1,1,1,1,1,1,1
-3564.5,83,1158.4807,1467.561552,909.9408589,1039.330981,447.2898546,447.2898546,2065.765981,19412.26151,1,1,1,1,1,1,1
-3565,83,1158.4807,1467.561552,909.3125066,1046.42096,447.2898546,447.2898546,2071.673258,19467.85083,1,1,1,1,1,1,1
-3565.5,83,1158.4807,1467.561552,955.6107673,1008.329231,447.2898546,447.2898546,2079.175058,19538.44457,1,1,1,1,1,1,1
-3566,83,1158.4807,1467.561552,923.0474046,1047.223255,447.2898546,447.2898546,2084.961976,19592.90096,1,1,1,1,1,1,1
-3566.5,83,1158.4807,1467.561552,892.7904548,1028.024453,447.2898546,447.2898546,2039.751603,19167.45903,1,1,1,1,1,1,1
-3567,83,1158.4807,1467.561552,831.8258052,988.2308007,447.2898546,447.2898546,1947.644215,18300.70327,1,1,1,1,1,1,1
-3567.5,83,1158.4807,1467.561552,807.5707033,936.2801286,447.2898546,447.2898546,1878.237334,17647.76026,1,1,1,1,1,1,1
-3568,83,1158.4807,1467.561552,811.4008613,891.1529985,447.2898546,447.2898546,1840.98814,17297.6179,1,1,1,1,1,1,1
-3568.5,83,1158.4807,1467.561552,794.1367882,871.7158202,447.2898546,447.2898546,1808.063807,16988.26623,1,1,1,1,1,1,1
-3569,83,1158.4807,1467.561552,799.8944281,827.8104397,447.2898546,447.2898546,1773.84256,16666.72888,1,1,1,1,1,1,1
-3569.5,83,1158.4807,1467.561552,804.2714096,837.1486475,447.2898546,447.2898546,1786.146838,16782.33808,1,1,1,1,1,1,1
-3570,83,1158.4807,1467.561552,803.1023591,899.9546655,447.2898546,447.2898546,1841.44024,17301.86574,1,1,1,1,1,1,1
-3570.5,83,1158.4807,1467.561552,852.3140678,904.901161,447.2898546,447.2898546,1890.30936,17761.25205,1,1,1,1,1,1,1
-3571,83,1158.4807,1467.561552,852.1205131,941.7714929,447.2898546,447.2898546,1923.724941,18075.61641,1,1,1,1,1,1,1
-3571.5,83,1158.4807,1467.561552,847.5741027,975.1659031,447.2898546,447.2898546,1950.096328,18323.7788,1,1,1,1,1,1,1
-3572,83,1158.4807,1467.561552,847.0940946,1001.051241,447.2898546,447.2898546,1973.320481,18542.32472,1,1,1,1,1,1,1
-3572.5,83,1158.4807,1467.561552,864.5538727,1008.18806,447.2898546,447.2898546,1995.805809,18753.91759,1,1,1,1,1,1,1
-3573,83,1158.4807,1467.561552,894.2358476,1001.743151,447.2898546,447.2898546,2017.047962,18953.81172,1,1,1,1,1,1,1
-3573.5,83,1158.4807,1467.561552,928.2278976,960.3796353,447.2898546,447.2898546,2010.309221,18890.39821,1,1,1,1,1,1,1
-3574,83,1158.4807,1467.561552,878.3141076,975.8131844,447.2898546,447.2898546,1978.788898,18593.78357,1,1,1,1,1,1,1
-3574.5,83,1158.4807,1467.561552,825.7469878,995.4307591,447.2898546,447.2898546,1948.668329,18310.34102,1,1,1,1,1,1,1
-3575,83,1158.4807,1467.561552,861.0051417,934.0241714,447.2898546,447.2898546,1924.765745,18085.41106,1,1,1,1,1,1,1
-3575.5,83,1158.4807,1467.561552,853.028751,917.4086979,447.2898546,447.2898546,1902.284798,17873.85916,1,1,1,1,1,1,1
-3576,83,1158.4807,1467.561552,853.1345486,894.4201353,447.2898546,447.2898546,1881.444806,17677.8092,1,1,1,1,1,1,1
-3576.5,83,1158.4807,1467.561552,824.103392,935.4371961,447.2898546,447.2898546,1892.36298,17780.5228,1,1,1,1,1,1,1
-3577,83,1158.4807,1467.561552,867.4270591,933.2514688,447.2898546,447.2898546,1929.928877,18133.99733,1,1,1,1,1,1,1
-3577.5,83,1158.4807,1467.561552,907.5602525,913.6967564,447.2898546,447.2898546,1948.740571,18311.02035,1,1,1,1,1,1,1
-3578,83,1158.4807,1467.561552,867.4994544,951.7235514,447.2898546,447.2898546,1946.88209,18293.53198,1,1,1,1,1,1,1
-3578.5,83,1158.4807,1467.561552,876.0427801,955.5412791,447.2898546,447.2898546,1958.182159,18399.86861,1,1,1,1,1,1,1
-3579,83,1158.4807,1467.561552,907.7301912,951.1194475,447.2898546,447.2898546,1983.107224,18634.42022,1,1,1,1,1,1,1
-3579.5,83,1158.4807,1467.561552,884.2090987,970.2215941,447.2898546,447.2898546,1979.067241,18596.40282,1,1,1,1,1,1,1
-3580,83,1158.4807,1467.561552,861.6307023,958.8962874,447.2898546,447.2898546,1948.074558,18304.75295,1,1,1,1,1,1,1
-3580.5,83,1158.4807,1467.561552,833.4726747,958.5198128,447.2898546,447.2898546,1921.990047,18059.29055,1,1,1,1,1,1,1
-3581,83,1158.4807,1467.561552,815.6942379,957.5541053,447.2898546,447.2898546,1904.854472,17898.04049,1,1,1,1,1,1,1
-3581.5,83,1158.4807,1467.561552,846.6664325,905.9895445,447.2898546,447.2898546,1886.053158,17721.13276,1,1,1,1,1,1,1
-3582,83,1158.4807,1467.561552,828.020928,902.3707846,447.2898546,447.2898546,1865.961844,17532.26664,1,1,1,1,1,1,1
-3582.5,83,1158.4807,1467.561552,850.1562423,885.0764205,447.2898546,447.2898546,1870.304407,17573.06857,1,1,1,1,1,1,1
-3583,83,1158.4807,1467.561552,869.9475891,893.4498789,447.2898546,447.2898546,1895.881114,17813.62293,1,1,1,1,1,1,1
-3583.5,83,1158.4807,1467.561552,839.786486,959.786806,447.2898546,447.2898546,1928.918842,18124.4927,1,1,1,1,1,1,1
-3584,83,1158.4807,1467.561552,836.3872854,1001.826529,447.2898546,447.2898546,1964.24221,18456.89558,1,1,1,1,1,1,1
-3584.5,83,1158.4807,1467.561552,859.1397318,1015.353255,447.2898546,447.2898546,1997.407139,18768.98677,1,1,1,1,1,1,1
-3585,83,1158.4807,1467.561552,915.3971171,991.7712996,447.2898546,447.2898546,2027.276777,19050.06805,1,1,1,1,1,1,1
-3585.5,83,1158.4807,1467.561552,894.8145322,1021.976693,447.2898546,447.2898546,2036.073911,19132.85113,1,1,1,1,1,1,1
-3586,83,1158.4807,1467.561552,892.1892736,1013.359209,447.2898546,447.2898546,2025.797016,19036.14294,1,1,1,1,1,1,1
-3586.5,83,1158.4807,1467.561552,911.7008371,981.3286913,447.2898546,447.2898546,2014.352403,18928.44601,1,1,1,1,1,1,1
-3587,83,1158.4807,1467.561552,913.6011269,970.1125368,447.2898546,447.2898546,2005.836384,18848.30755,1,1,1,1,1,1,1
-3587.5,83,1158.4807,1467.561552,875.0222082,992.6709997,447.2898546,447.2898546,1991.191236,18710.49261,1,1,1,1,1,1,1
-3588,83,1158.4807,1467.561552,848.8505771,996.4767644,447.2898546,447.2898546,1970.745161,18518.08965,1,1,1,1,1,1,1
-3588.5,83,1158.4807,1467.561552,838.6867595,997.7605206,447.2898546,447.2898546,1962.626867,18441.69447,1,1,1,1,1,1,1
-3589,83,1158.4807,1467.561552,862.2750578,979.1545426,447.2898546,447.2898546,1967.181274,18484.55256,1,1,1,1,1,1,1
-3589.5,83,1158.4807,1467.561552,890.8404286,958.7887207,447.2898546,447.2898546,1974.677389,18555.0931,1,1,1,1,1,1,1
-3590,83,1158.4807,1467.561552,870.1705562,987.4969463,447.2898546,447.2898546,1982.025513,18624.24109,1,1,1,1,1,1,1
-3590.5,83,1158.4807,1467.561552,899.6415947,962.2504775,447.2898546,447.2898546,1985.887787,18660.58596,1,1,1,1,1,1,1
-3591,83,1158.4807,1467.561552,903.6054443,959.2430246,447.2898546,447.2898546,1986.762039,18668.81281,1,1,1,1,1,1,1
-3591.5,83,1158.4807,1467.561552,902.2728634,964.5711842,447.2898546,447.2898546,1990.41467,18703.18501,1,1,1,1,1,1,1
-3592,83,1158.4807,1467.561552,896.4241659,977.4942199,447.2898546,447.2898546,1996.881472,18764.03926,1,1,1,1,1,1,1
-3592.5,83,1158.4807,1467.561552,890.1880316,983.892035,447.2898546,447.2898546,1997.029681,18765.43434,1,1,1,1,1,1,1
-3593,83,1158.4807,1467.561552,868.5789972,999.0064704,447.2898546,447.2898546,1991.092836,18709.56722,1,1,1,1,1,1,1
-3593.5,83,1158.4807,1467.561552,863.3446146,1000.084286,447.2898546,447.2898546,1987.293001,18673.80945,1,1,1,1,1,1,1
-3594,83,1158.4807,1467.561552,866.1443362,996.5316556,447.2898546,447.2898546,1986.6047,18667.3322,1,1,1,1,1,1,1
-3594.5,83,1158.4807,1467.561552,872.3116564,990.3643354,447.2898546,447.2898546,1986.6047,18667.3322,1,1,1,1,1,1,1
-3595,83,1158.4807,1467.561552,912.4616374,950.2143544,447.2898546,447.2898546,1986.6047,18667.3322,1,1,1,1,1,1,1
-3595.5,83,1158.4807,1467.561552,894.3340747,968.3419172,447.2898546,447.2898546,1986.6047,18667.3322,1,1,1,1,1,1,1
-3596,83,1158.4807,1467.561552,888.5842808,975.7415531,447.2898546,447.2898546,1988.112397,18681.52043,1,1,1,1,1,1,1
-3596.5,83,1158.4807,1467.561552,904.3324093,992.8931517,447.2898546,447.2898546,2018.187227,18964.53261,1,1,1,1,1,1,1
-3597,83,1158.4807,1467.561552,902.5092531,1052.614073,447.2898546,447.2898546,2071.11483,19462.59573,1,1,1,1,1,1,1
-3597.5,83,1158.4807,1467.561552,928.8154476,1054.694947,447.2898546,447.2898546,2097.0657,19706.8004,1,1,1,1,1,1,1
-3598,83,1158.4807,1467.561552,967.323351,1013.987239,447.2898546,447.2898546,2095.054929,19687.87841,1,1,1,1,1,1,1
-3598.5,83,1158.4807,1467.561552,940.1572988,1024.630825,447.2898546,447.2898546,2079.950088,19545.73775,1,1,1,1,1,1,1
-3599,83,1158.4807,1467.561552,887.1527068,1054.90334,447.2898546,447.2898546,2059.169018,19350.18214,1,1,1,1,1,1,1
-3599.5,83,1158.4807,1467.561552,923.8783459,1001.933332,447.2898546,447.2898546,2044.319599,19210.44515,1,1,1,1,1,1,1
-3600,83,1158.4807,1467.561552,916.8511056,999.3676518,447.2898546,447.2898546,2035.550523,19127.92574,1,1,1,1,1,1,1
-3600.5,83,1158.4807,1467.561552,928.3076446,979.7059661,447.2898546,447.2898546,2028.049761,19057.3415,1,1,1,1,1,1,1
-3601,83,1158.4807,1467.561552,891.1437973,1010.834653,447.2898546,447.2898546,2022.532578,19005.42345,1,1,1,1,1,1,1
-3601.5,83,1158.4807,1467.561552,885.4457927,1046.413825,447.2898546,447.2898546,2049.84849,19262.47357,1,1,1,1,1,1,1
-3602,83,1158.4807,1467.561552,954.5532664,1033.801436,447.2898546,447.2898546,2101.493965,19748.4717,1,1,1,1,1,1,1
-3602.5,83,1158.4807,1467.561552,935.0928386,1067.854069,447.2898546,447.2898546,2114.833809,19874.0031,1,1,1,1,1,1,1
-3603,83,1158.4807,1467.561552,913.1014447,1065.085714,447.2898546,447.2898546,2092.199212,19661.00554,1,1,1,1,1,1,1
-3603.5,83,1158.4807,1467.561552,885.3837056,1059.985837,447.2898546,447.2898546,2062.198502,19378.69088,1,1,1,1,1,1,1
-3604,83,1158.4807,1467.561552,864.4142481,1042.577477,447.2898546,447.2898546,2027.11512,19048.54626,1,1,1,1,1,1,1
-3604.5,83,1158.4807,1467.561552,863.2037684,920.7570397,447.2898546,447.2898546,1914.859507,17992.35169,1,1,1,1,1,1,1
-3605,83,1158.4807,1467.561552,758.4875412,839.6314949,447.2898546,447.2898546,1747.302061,16417.35916,1,1,1,1,1,1,1
-3605.5,83,1158.4807,1467.561552,694.9498615,784.4418104,447.2898546,447.2898546,1640.792891,15416.61631,1,1,1,1,1,1,1
-3606,83,1158.4807,1467.561552,664.030768,763.5125477,447.2898546,447.2898546,1594.280139,14979.59008,1,1,1,1,1,1,1
-3606.5,83,1158.4807,1467.561552,670.5531328,746.3445931,447.2898546,447.2898546,1584.729163,14889.8508,1,1,1,1,1,1,1
-3607,83,1158.4807,1467.561552,663.3808851,768.280117,447.2898546,447.2898546,1597.97302,15014.28802,1,1,1,1,1,1,1
-3607.5,83,1158.4807,1467.561552,697.773225,791.6847935,447.2898546,447.2898546,1649.822226,15501.45487,1,1,1,1,1,1,1
-3608,83,1158.4807,1467.561552,754.2280278,822.4126424,447.2898546,447.2898546,1728.032837,16236.30869,1,1,1,1,1,1,1
-3608.5,83,1158.4807,1467.561552,793.2295488,847.8947145,447.2898546,447.2898546,1785.88014,16779.83242,1,1,1,1,1,1,1
-3609,83,1158.4807,1467.561552,825.7414772,853.7382622,447.2898546,447.2898546,1820.289004,17103.13241,1,1,1,1,1,1,1
-3609.5,83,1158.4807,1467.561552,798.287664,905.9915241,447.2898546,447.2898546,1842.537058,17312.17136,1,1,1,1,1,1,1
-3610,83,1158.4807,1467.561552,778.542276,945.1283619,447.2898546,447.2898546,1859.932121,17475.61211,1,1,1,1,1,1,1
-3610.5,83,1158.4807,1467.561552,845.004174,927.1983922,447.2898546,447.2898546,1903.996868,17890.04524,1,1,1,1,1,1,1
-3611,83,1158.4807,1467.561552,855.2425934,991.4359779,447.2898546,447.2898546,1971.980079,18529.7109,1,1,1,1,1,1,1
-3611.5,83,1158.4807,1467.561552,891.2494131,1005.078163,447.2898546,447.2898546,2017.36629,18956.8074,1,1,1,1,1,1,1
-3612,83,1158.4807,1467.561552,922.0221933,998.857376,447.2898546,447.2898546,2039.810859,19168.01665,1,1,1,1,1,1,1
-3612.5,83,1158.4807,1467.561552,938.0448543,1043.9418,447.2898546,447.2898546,2095.67212,19693.6864,1,1,1,1,1,1,1
-3613,83,1158.4807,1467.561552,991.0667908,1087.799492,447.2898546,447.2898546,2184.234055,20527.07864,1,1,1,1,1,1,1
-3613.5,83,1158.4807,1467.561552,1040.514742,1112.238813,447.2898546,447.2898546,2249.764302,21143.56356,1,1,1,1,1,1,1
-3614,83,1158.4807,1467.561552,1088.503126,1110.518899,447.2898546,447.2898546,2287.537601,21498.63246,1,1,1,1,1,1,1
-3614.5,83,1158.4807,1467.561552,1099.040795,1128.646426,447.2898546,447.2898546,2309.968831,21709.39203,1,1,1,1,1,1,1
-3615,83,1158.4807,1467.561552,1062.202862,1181.506629,447.2898546,447.2898546,2322.506208,21827.19098,1,1,1,1,1,1,1
-3615.5,83,1158.4807,1467.561552,1020.616958,1189.861679,447.2898546,447.2898546,2296.50254,21582.86511,1,1,1,1,1,1,1
-3616,83,1158.4807,1467.561552,997.222291,1140.277114,447.2898546,447.2898546,2235.966308,21013.73289,1,1,1,1,1,1,1
-3616.5,83,1158.4807,1467.561552,976.7368565,1087.054056,447.2898546,447.2898546,2170.452969,20397.39468,1,1,1,1,1,1,1
-3617,83,1158.4807,1467.561552,981.9543823,1016.41349,447.2898546,447.2898546,2110.646885,19834.60337,1,1,1,1,1,1,1
-3617.5,83,1158.4807,1467.561552,968.0698409,993.9535299,447.2898546,447.2898546,2077.423396,19521.96108,1,1,1,1,1,1,1
-3618,83,1158.4807,1467.561552,903.7482591,1045.89796,447.2898546,447.2898546,2066.108206,19415.48221,1,1,1,1,1,1,1
-3618.5,83,1158.4807,1467.561552,905.2554246,1048.810429,447.2898546,447.2898546,2070.147788,19453.49555,1,1,1,1,1,1,1
-3619,83,1158.4807,1467.561552,937.7567675,1029.679422,447.2898546,447.2898546,2082.370173,19568.51171,1,1,1,1,1,1,1
-3619.5,83,1158.4807,1467.561552,911.6064298,1055.314101,447.2898546,447.2898546,2081.899207,19564.07979,1,1,1,1,1,1,1
-3620,83,1158.4807,1467.561552,888.6116365,1064.380971,447.2898546,447.2898546,2069.167858,19444.27412,1,1,1,1,1,1,1
-3620.5,83,1158.4807,1467.561552,917.4431001,1014.881406,447.2898546,447.2898546,2050.274286,19266.48018,1,1,1,1,1,1,1
-3621,83,1158.4807,1467.561552,894.2360807,1014.421009,447.2898546,447.2898546,2028.638326,19062.87997,1,1,1,1,1,1,1
-3621.5,83,1158.4807,1467.561552,862.3949883,1025.923827,447.2898546,447.2898546,2010.046179,18887.92303,1,1,1,1,1,1,1
-3622,83,1158.4807,1467.561552,889.0039558,983.3202928,447.2898546,447.2898546,1995.424378,18750.32822,1,1,1,1,1,1,1
-3622.5,83,1158.4807,1467.561552,889.8195994,983.2821598,447.2898546,447.2898546,1996.134792,18757.0136,1,1,1,1,1,1,1
-3623,83,1158.4807,1467.561552,923.8880279,961.9117056,447.2898546,447.2898546,2007.742451,18866.24475,1,1,1,1,1,1,1
-3623.5,83,1158.4807,1467.561552,905.0822162,979.856281,447.2898546,447.2898546,2006.954961,18858.83392,1,1,1,1,1,1,1
-3624,83,1158.4807,1467.561552,904.6816075,967.5554014,447.2898546,447.2898546,1995.344619,18749.57727,1,1,1,1,1,1,1
-3624.5,83,1158.4807,1467.561552,905.4350069,967.746964,447.2898546,447.2898546,1996.209252,18757.71356,1,1,1,1,1,1,1
-3625,83,1158.4807,1467.561552,892.015616,992.4053022,447.2898546,447.2898546,2006.482812,18854.39086,1,1,1,1,1,1,1
-3625.5,83,1158.4807,1467.561552,887.1899697,974.4136125,447.2898546,447.2898546,1985.623673,18658.1007,1,1,1,1,1,1,1
-3626,83,1158.4807,1467.561552,845.1241949,964.9634148,447.2898546,447.2898546,1938.530448,18214.94076,1,1,1,1,1,1,1
-3626.5,83,1158.4807,1467.561552,842.8169426,914.2550867,447.2898546,447.2898546,1890.148683,17759.71742,1,1,1,1,1,1,1
-3627,83,1158.4807,1467.561552,821.6723974,889.6046351,447.2898546,447.2898546,1848.813687,17371.14512,1,1,1,1,1,1,1
-3627.5,83,1158.4807,1467.561552,833.8459941,885.4258161,447.2898546,447.2898546,1855.985962,17438.5348,1,1,1,1,1,1,1
-3628,83,1158.4807,1467.561552,824.7088694,942.8643221,447.2898546,447.2898546,1899.760135,17850.17304,1,1,1,1,1,1,1
-3628.5,83,1158.4807,1467.561552,858.425328,948.8490929,447.2898546,447.2898546,1935.958649,18190.73918,1,1,1,1,1,1,1
-3629,83,1158.4807,1467.561552,908.4201908,926.8433327,447.2898546,447.2898546,1961.545162,18431.51523,1,1,1,1,1,1,1
-3629.5,83,1158.4807,1467.561552,911.5851134,961.5949219,447.2898546,447.2898546,1996.206518,18757.68798,1,1,1,1,1,1,1
-3630,83,1158.4807,1467.561552,912.2841666,1001.600686,447.2898546,447.2898546,2033.417196,19107.85085,1,1,1,1,1,1,1
-3630.5,83,1158.4807,1467.561552,914.5076308,959.2842578,447.2898546,447.2898546,1996.765721,18762.9504,1,1,1,1,1,1,1
-3631,83,1158.4807,1467.561552,838.6541213,937.0451577,447.2898546,447.2898546,1907.180088,17919.98986,1,1,1,1,1,1,1
-3631.5,83,1158.4807,1467.561552,783.5706926,944.6394624,447.2898546,447.2898546,1864.004251,17513.8733,1,1,1,1,1,1,1
-3632,83,1158.4807,1467.561552,817.6533386,910.2182342,447.2898546,447.2898546,1863.700712,17511.02113,1,1,1,1,1,1,1
-3632.5,83,1158.4807,1467.561552,859.26711,876.805454,447.2898546,447.2898546,1871.05752,17580.14458,1,1,1,1,1,1,1
-3633,83,1158.4807,1467.561552,833.0063058,914.1936473,447.2898546,447.2898546,1881.089289,17674.43989,1,1,1,1,1,1,1
-3633.5,83,1158.4807,1467.561552,821.1226619,970.5393557,447.2898546,447.2898546,1921.687494,18056.44405,1,1,1,1,1,1,1
-3634,83,1158.4807,1467.561552,901.4752548,956.5687855,447.2898546,447.2898546,1982.370625,18627.4884,1,1,1,1,1,1,1
-3634.5,83,1158.4807,1467.561552,928.8159611,966.6122307,447.2898546,447.2898546,2016.54459,18949.07477,1,1,1,1,1,1,1
-3635,83,1158.4807,1467.561552,886.8914832,1019.945734,447.2898546,447.2898546,2026.97383,19047.21675,1,1,1,1,1,1,1
-3635.5,83,1158.4807,1467.561552,896.5055963,1004.801195,447.2898546,447.2898546,2021.918054,18999.64059,1,1,1,1,1,1,1
-3636,83,1158.4807,1467.561552,880.2566628,1005.478147,447.2898546,447.2898546,2007.68306,18865.68568,1,1,1,1,1,1,1
-3636.5,83,1158.4807,1467.561552,849.5302872,1010.591269,447.2898546,447.2898546,1984.26949,18645.35755,1,1,1,1,1,1,1
-3637,83,1158.4807,1467.561552,826.6237589,1003.373945,447.2898546,447.2898546,1956.732189,18386.22421,1,1,1,1,1,1,1
-3637.5,83,1158.4807,1467.561552,829.060307,986.6080117,447.2898546,447.2898546,1943.632446,18262.95205,1,1,1,1,1,1,1
-3638,83,1158.4807,1467.561552,882.6990116,931.7093478,447.2898546,447.2898546,1942.480989,18252.11619,1,1,1,1,1,1,1
-3638.5,83,1158.4807,1467.561552,905.7964195,917.9029237,447.2898546,447.2898546,1950.974699,18332.04461,1,1,1,1,1,1,1
-3639,83,1158.4807,1467.561552,910.5493827,928.9443198,447.2898546,447.2898546,1965.412518,18467.90816,1,1,1,1,1,1,1
-3639.5,83,1158.4807,1467.561552,877.6778687,982.8907619,447.2898546,447.2898546,1984.677498,18649.19701,1,1,1,1,1,1,1
-3640,83,1158.4807,1467.561552,897.8608384,985.9316685,447.2898546,447.2898546,2005.90754,18848.97739,1,1,1,1,1,1,1
-3640.5,83,1158.4807,1467.561552,883.2303531,1015.803405,447.2898546,447.2898546,2019.840345,18980.08863,1,1,1,1,1,1,1
-3641,83,1158.4807,1467.561552,892.0698288,1013.035737,447.2898546,447.2898546,2025.391577,19032.32746,1,1,1,1,1,1,1
-3641.5,83,1158.4807,1467.561552,886.9985724,993.3819859,447.2898546,447.2898546,2002.788981,18819.63072,1,1,1,1,1,1,1
-3642,83,1158.4807,1467.561552,845.0321764,991.3881243,447.2898546,447.2898546,1962.602161,18441.4619,1,1,1,1,1,1,1
-3642.5,83,1158.4807,1467.561552,821.7782165,984.3277538,447.2898546,447.2898546,1934.89077,18180.69004,1,1,1,1,1,1,1
-3643,83,1158.4807,1467.561552,813.8663785,974.8509369,447.2898546,447.2898546,1918.994807,18031.10477,1,1,1,1,1,1,1
-3643.5,83,1158.4807,1467.561552,863.7876379,918.0142847,447.2898546,447.2898546,1912.67378,17971.62214,1,1,1,1,1,1,1
-3644,83,1158.4807,1467.561552,867.2846852,914.4928442,447.2898546,447.2898546,1912.651329,17971.41087,1,1,1,1,1,1,1
-3644.5,83,1158.4807,1467.561552,853.6899946,937.2148041,447.2898546,447.2898546,1920.995278,18049.92957,1,1,1,1,1,1,1
-3645,83,1158.4807,1467.561552,845.7464642,960.0209957,447.2898546,447.2898546,1934.581493,18177.77951,1,1,1,1,1,1,1
-3645.5,83,1158.4807,1467.561552,841.1082698,980.7380959,447.2898546,447.2898546,1949.280243,18316.09882,1,1,1,1,1,1,1
-3646,83,1158.4807,1467.561552,838.8880126,998.0386949,447.2898546,447.2898546,1963.065565,18445.82244,1,1,1,1,1,1,1
-3646.5,83,1158.4807,1467.561552,853.4201613,982.2238252,447.2898546,447.2898546,1961.892595,18434.78438,1,1,1,1,1,1,1
-3647,83,1158.4807,1467.561552,843.8280935,977.1239369,447.2898546,447.2898546,1948.462026,18308.39955,1,1,1,1,1,1,1
-3647.5,83,1158.4807,1467.561552,826.0100931,969.6640224,447.2898546,447.2898546,1925.354466,18090.95095,1,1,1,1,1,1,1
-3648,83,1158.4807,1467.561552,858.728374,906.9873589,447.2898546,447.2898546,1897.968895,17833.24538,1,1,1,1,1,1,1
-3648.5,83,1158.4807,1467.561552,854.3767776,900.8664706,447.2898546,447.2898546,1888.395094,17743.15315,1,1,1,1,1,1,1
-3649,83,1158.4807,1467.561552,857.4265937,904.5231993,447.2898546,447.2898546,1894.525901,17800.84564,1,1,1,1,1,1,1
-3649.5,83,1158.4807,1467.561552,834.4570874,953.6404524,447.2898546,447.2898546,1918.428878,18025.7791,1,1,1,1,1,1,1
-3650,83,1158.4807,1467.561552,830.3985469,994.6532046,447.2898546,447.2898546,1952.209998,18343.66888,1,1,1,1,1,1,1
-3650.5,83,1158.4807,1467.561552,851.0213712,992.4843309,447.2898546,447.2898546,1969.080275,18502.42263,1,1,1,1,1,1,1
-3651,83,1158.4807,1467.561552,901.1445836,944.8024724,447.2898546,447.2898546,1971.311555,18523.41972,1,1,1,1,1,1,1
-3651.5,83,1158.4807,1467.561552,890.2596411,951.1554948,447.2898546,447.2898546,1967.168065,18484.42828,1,1,1,1,1,1,1
-3652,83,1158.4807,1467.561552,853.197186,981.3201369,447.2898546,447.2898546,1960.862396,18425.09004,1,1,1,1,1,1,1
-3652.5,83,1158.4807,1467.561552,892.9567402,942.4682079,447.2898546,447.2898546,1961.692279,18432.89994,1,1,1,1,1,1,1
-3653,83,1158.4807,1467.561552,916.8672195,929.1213612,447.2898546,447.2898546,1971.349592,18523.77753,1,1,1,1,1,1,1
-3653.5,83,1158.4807,1467.561552,906.4638949,988.9323939,447.2898546,447.2898546,2016.515886,18948.80497,1,1,1,1,1,1,1
-3654,83,1158.4807,1467.561552,932.2269252,1037.177106,447.2898546,447.2898546,2084.169983,19585.44871,1,1,1,1,1,1,1
-3654.5,83,1158.4807,1467.561552,990.4721309,1024.17577,447.2898546,447.2898546,2125.529503,19974.65296,1,1,1,1,1,1,1
-3655,83,1158.4807,1467.561552,969.7764557,1064.291637,447.2898546,447.2898546,2143.281885,20141.70724,1,1,1,1,1,1,1
-3655.5,83,1158.4807,1467.561552,947.0229988,1089.585601,447.2898546,447.2898546,2145.604857,20163.56739,1,1,1,1,1,1,1
-3656,83,1158.4807,1467.561552,977.4982767,1052.475585,447.2898546,447.2898546,2139.539965,20106.49494,1,1,1,1,1,1,1
-3656.5,83,1158.4807,1467.561552,997.3512309,1024.416821,447.2898546,447.2898546,2132.038014,20035.89953,1,1,1,1,1,1,1
-3657,83,1158.4807,1467.561552,989.64504,1023.07937,447.2898546,447.2898546,2123.770354,19958.09871,1,1,1,1,1,1,1
-3657.5,83,1158.4807,1467.561552,944.7337604,1050.456148,447.2898546,447.2898546,2107.74097,19807.25793,1,1,1,1,1,1,1
-3658,83,1158.4807,1467.561552,965.3390062,1012.344333,447.2898546,447.2898546,2091.737881,19656.66415,1,1,1,1,1,1,1
-3658.5,83,1158.4807,1467.561552,982.2812717,1036.375337,447.2898546,447.2898546,2129.193329,20009.13022,1,1,1,1,1,1,1
-3659,83,1158.4807,1467.561552,1015.11103,1085.013347,447.2898546,447.2898546,2203.66749,20709.9522,1,1,1,1,1,1,1
-3659.5,83,1158.4807,1467.561552,1060.454694,1111.079392,447.2898546,447.2898546,2265.152308,21288.21539,1,1,1,1,1,1,1
-3660,83,1158.4807,1467.561552,1033.122278,1196.859799,447.2898546,447.2898546,2311.763564,21726.25508,1,1,1,1,1,1,1
-3660.5,83,1158.4807,1467.561552,1070.622089,1207.320558,447.2898546,447.2898546,2348.116524,22067.82146,1,1,1,1,1,1,1
-3661,83,1158.4807,1467.561552,1065.08796,1250.1413,447.2898546,447.2898546,2375.642507,22326.45082,1,1,1,1,1,1,1
-3661.5,83,1158.4807,1467.561552,1099.874768,1208.927364,447.2898546,447.2898546,2370.913821,22282.02113,1,1,1,1,1,1,1
-3662,83,1158.4807,1467.561552,1084.065718,1189.400472,447.2898546,447.2898546,2344.915836,22037.74821,1,1,1,1,1,1,1
-3662.5,83,1158.4807,1467.561552,1046.345485,1195.650606,447.2898546,447.2898546,2321.080854,21813.79893,1,1,1,1,1,1,1
-3663,83,1158.4807,1467.561552,1008.939049,1208.006816,447.2898546,447.2898546,2301.563185,21630.41434,1,1,1,1,1,1,1
-3663.5,83,1158.4807,1467.561552,1003.21975,1193.913593,447.2898546,447.2898546,2286.060548,21484.75397,1,1,1,1,1,1,1
-3664,83,1158.4807,1467.561552,1009.42168,1169.336427,447.2898546,447.2898546,2271.682333,21349.6583,1,1,1,1,1,1,1
-3664.5,83,1158.4807,1467.561552,1020.014478,1127.948511,447.2898546,447.2898546,2246.372807,21111.73285,1,1,1,1,1,1,1
-3665,83,1158.4807,1467.561552,1000.275504,1112.62208,447.2898546,447.2898546,2215.343588,20819.82775,1,1,1,1,1,1,1
-3665.5,83,1158.4807,1467.561552,1001.22269,1114.086616,447.2898546,447.2898546,2217.549071,20840.58167,1,1,1,1,1,1,1
-3666,83,1158.4807,1467.561552,983.9835083,1162.815854,447.2898546,447.2898546,2245.47568,21103.30511,1,1,1,1,1,1,1
-3666.5,83,1158.4807,1467.561552,1050.692369,1153.119868,447.2898546,447.2898546,2291.286801,21533.85885,1,1,1,1,1,1,1
-3667,83,1158.4807,1467.561552,1084.016503,1190.396113,447.2898546,447.2898546,2345.166186,22040.10036,1,1,1,1,1,1,1
-3667.5,83,1158.4807,1467.561552,1130.322646,1208.153942,447.2898546,447.2898546,2392.746299,22487.1556,1,1,1,1,1,1,1
-3668,83,1158.4807,1467.561552,1153.408538,1232.926551,447.2898546,447.2898546,2432.475394,22860.09155,1,1,1,1,1,1,1
-3668.5,83,1158.4807,1467.561552,1159.224511,1191.659137,447.2898546,447.2898546,2404.179526,22594.40059,1,1,1,1,1,1,1
-3669,83,1158.4807,1467.561552,1095.728901,1169.721914,447.2898546,447.2898546,2338.399688,21976.52376,1,1,1,1,1,1,1
-3669.5,83,1158.4807,1467.561552,1035.761805,1175.448463,447.2898546,447.2898546,2297.075119,21588.24521,1,1,1,1,1,1,1
-3670,83,1158.4807,1467.561552,1017.17282,1170.29561,447.2898546,447.2898546,2278.497857,21413.69605,1,1,1,1,1,1,1
-3670.5,83,1158.4807,1467.561552,1009.417235,1192.886446,447.2898546,447.2898546,2290.106758,21522.77119,1,1,1,1,1,1,1
-3671,83,1158.4807,1467.561552,1072.323558,1169.486537,447.2898546,447.2898546,2320.96474,21812.70785,1,1,1,1,1,1,1
-3671.5,83,1158.4807,1467.561552,1110.512536,1187.174806,447.2898546,447.2898546,2362.735865,22205.18247,1,1,1,1,1,1,1
-3672,83,1158.4807,1467.561552,1114.385054,1239.982121,447.2898546,447.2898546,2405.829707,22609.97666,1,1,1,1,1,1,1
-3672.5,83,1158.4807,1467.561552,1138.090828,1217.255994,447.2898546,447.2898546,2405.868389,22610.39333,1,1,1,1,1,1,1
-3673,83,1158.4807,1467.561552,1145.656381,1176.807696,447.2898546,447.2898546,2380.965305,22376.46341,1,1,1,1,1,1,1
-3673.5,83,1158.4807,1467.561552,1118.782963,1187.628112,447.2898546,447.2898546,2369.15457,22265.49172,1,1,1,1,1,1,1
-3674,83,1158.4807,1467.561552,1136.368666,1167.506963,447.2898546,447.2898546,2367.288927,22247.96212,1,1,1,1,1,1,1
-3674.5,83,1158.4807,1467.561552,1126.618796,1172.240279,447.2898546,447.2898546,2363.598233,22213.28487,1,1,1,1,1,1,1
-3675,83,1158.4807,1467.561552,1119.34748,1172.950891,447.2898546,447.2898546,2358.771521,22167.9341,1,1,1,1,1,1,1
-3675.5,83,1158.4807,1467.561552,1124.140068,1170.023336,447.2898546,447.2898546,2360.143576,22180.82581,1,1,1,1,1,1,1
-3676,83,1158.4807,1467.561552,1133.83135,1164.571939,447.2898546,447.2898546,2363.262756,22210.13291,1,1,1,1,1,1,1
-3676.5,83,1158.4807,1467.561552,1061.558981,1219.78291,447.2898546,447.2898546,2350.710053,22092.1896,1,1,1,1,1,1,1
-3677,83,1158.4807,1467.561552,1089.762095,1166.51244,447.2898546,447.2898546,2332.064296,21916.99746,1,1,1,1,1,1,1
-3677.5,83,1158.4807,1467.561552,1119.45662,1149.649776,447.2898546,447.2898546,2341.604909,22006.63967,1,1,1,1,1,1,1
-3678,83,1158.4807,1467.561552,1137.072336,1167.822315,447.2898546,447.2898546,2368.038873,22255.00865,1,1,1,1,1,1,1
-3678.5,83,1158.4807,1467.561552,1114.970021,1215.661705,447.2898546,447.2898546,2386.974302,22432.92245,1,1,1,1,1,1,1
-3679,83,1158.4807,1467.561552,1148.644376,1196.015159,447.2898546,447.2898546,2397.295082,22529.89465,1,1,1,1,1,1,1
-3679.5,83,1158.4807,1467.561552,1098.360456,1237.159547,447.2898546,447.2898546,2390.570955,22466.7159,1,1,1,1,1,1,1
-3680,83,1158.4807,1467.561552,1075.78726,1238.229565,447.2898546,447.2898546,2374.750634,22318.07138,1,1,1,1,1,1,1
-3680.5,83,1158.4807,1467.561552,1118.86033,1180.812381,447.2898546,447.2898546,2364.197087,22218.91193,1,1,1,1,1,1,1
-3681,83,1158.4807,1467.561552,1071.720219,1215.51825,447.2898546,447.2898546,2355.048212,22132.95068,1,1,1,1,1,1,1
-3681.5,83,1158.4807,1467.561552,1077.138359,1176.180264,447.2898546,447.2898546,2329.58392,21893.69226,1,1,1,1,1,1,1
-3682,83,1158.4807,1467.561552,1062.163244,1150.092529,447.2898546,447.2898546,2297.893656,21595.93603,1,1,1,1,1,1,1
-3682.5,83,1158.4807,1467.561552,1042.197933,1167.342324,447.2898546,447.2898546,2295.769258,21575.97528,1,1,1,1,1,1,1
-3683,83,1158.4807,1467.561552,1085.407445,1145.123205,447.2898546,447.2898546,2312.19342,21730.29402,1,1,1,1,1,1,1
-3683.5,83,1158.4807,1467.561552,1061.437957,1188.502056,447.2898546,447.2898546,2327.349293,21872.69615,1,1,1,1,1,1,1
-3684,83,1158.4807,1467.561552,1076.734173,1198.212207,447.2898546,447.2898546,2346.004845,22047.9807,1,1,1,1,1,1,1
-3684.5,83,1158.4807,1467.561552,1135.202811,1213.378022,447.2898546,447.2898546,2402.535231,22578.94702,1,1,1,1,1,1,1
-3685,83,1158.4807,1467.561552,1178.329115,1268.144511,447.2898546,447.2898546,2486.82356,23369.95061,1,1,1,1,1,1,1
-3685.5,83,1158.4807,1467.561552,1241.495435,1275.002395,447.2898546,447.2898546,2550.204405,23964.54218,1,1,1,1,1,1,1
-3686,83,1158.4807,1467.561552,1206.901115,1360.930113,447.2898546,447.2898546,2596.666784,24400.41725,1,1,1,1,1,1,1
-3686.5,83,1158.4807,1467.561552,1182.030632,1435.003744,447.2898546,447.2898546,2641.200898,24818.20271,1,1,1,1,1,1,1
-3687,83,1158.4807,1467.561552,1217.210052,1448.238895,447.2898546,447.2898546,2685.021915,25229.29878,1,1,1,1,1,1,1
-3687.5,83,1158.4807,1467.561552,1264.355483,1445.036363,447.2898546,447.2898546,2724.796288,25602.4318,1,1,1,1,1,1,1
-3688,83,1158.4807,1467.561552,1338.98778,1412.503157,447.2898546,447.2898546,2762.532464,25956.46815,1,1,1,1,1,1,1
-3688.5,83,1158.4807,1467.561552,1375.58838,1422.201464,447.2898546,447.2898546,2798.861656,26297.63774,1,1,1,1,1,1,1
-3689,83,1158.4807,1467.561552,1328.14603,1517.732085,447.2898546,447.2898546,2834.299598,26630.60685,1,1,1,1,1,1,1
-3689.5,83,1158.4807,1467.561552,1305.24084,1584.552049,447.2898546,447.2898546,2869.435201,26960.78026,1,1,1,1,1,1,1
-3690,83,1158.4807,1467.561552,1325.638321,1598.632152,447.2898546,447.2898546,2898.616897,27235.02793,1,1,1,1,1,1,1
-3690.5,83,1158.4807,1467.561552,1319.836283,1602.118536,447.2898546,447.2898546,2896.641973,27216.46755,1,1,1,1,1,1,1
-3691,83,1158.4807,1467.561552,1399.816467,1498.301433,447.2898546,447.2898546,2876.309935,27025.38568,1,1,1,1,1,1,1
-3691.5,83,1158.4807,1467.561552,1435.300181,1435.300181,447.2898546,447.2898546,2853.358219,26809.69189,1,1,1,1,1,1,1
-3692,83,1158.4807,1467.561552,1367.754273,1480.671414,447.2898546,447.2898546,2836.177908,26648.25527,1,1,1,1,1,1,1
-3692.5,83,1158.4807,1467.561552,1361.904904,1475.837703,447.2898546,447.2898546,2828.305279,26574.28516,1,1,1,1,1,1,1
-3693,83,1158.4807,1467.561552,1335.314567,1495.131338,447.2898546,447.2898546,2822.927555,26523.75661,1,1,1,1,1,1,1
-3693.5,83,1158.4807,1467.561552,1361.188142,1446.580156,447.2898546,447.2898546,2806.215192,26366.73015,1,1,1,1,1,1,1
-3694,83,1158.4807,1467.561552,1316.645792,1453.882262,447.2898546,447.2898546,2778.137336,26102.96486,1,1,1,1,1,1,1
-3694.5,83,1158.4807,1467.561552,1247.081307,1473.290134,447.2898546,447.2898546,2734.733465,25695.65482,1,1,1,1,1,1,1
-3695,83,1158.4807,1467.561552,1254.98561,1425.517687,447.2898546,447.2898546,2698.648206,25357.13052,1,1,1,1,1,1,1
-3695.5,83,1158.4807,1467.561552,1289.511775,1387.869241,447.2898546,447.2898546,2695.821795,25330.61493,1,1,1,1,1,1,1
-3696,83,1158.4807,1467.561552,1295.536755,1394.063208,447.2898546,447.2898546,2706.881432,25434.36831,1,1,1,1,1,1,1
-3696.5,83,1158.4807,1467.561552,1287.367015,1413.300687,447.2898546,447.2898546,2716.899173,25528.34708,1,1,1,1,1,1,1
-3697,83,1158.4807,1467.561552,1304.267692,1403.778396,447.2898546,447.2898546,2723.577556,25590.99867,1,1,1,1,1,1,1
-3697.5,83,1158.4807,1467.561552,1318.351147,1381.502696,447.2898546,447.2898546,2716.162941,25521.44042,1,1,1,1,1,1,1
-3698,83,1158.4807,1467.561552,1299.15847,1370.134689,447.2898546,447.2898546,2688.501532,25261.94171,1,1,1,1,1,1,1
-3698.5,83,1158.4807,1467.561552,1244.613309,1356.734387,447.2898546,447.2898546,2627.002407,24685.00338,1,1,1,1,1,1,1
-3699,83,1158.4807,1467.561552,1247.770905,1308.099902,447.2898546,447.2898546,2585.841206,24298.85983,1,1,1,1,1,1,1
-3699.5,83,1158.4807,1467.561552,1268.992264,1294.628472,447.2898546,447.2898546,2592.856071,24364.66792,1,1,1,1,1,1,1
-3700,83,1158.4807,1467.561552,1223.200044,1369.821749,447.2898546,447.2898546,2619.467741,24614.31865,1,1,1,1,1,1,1
-3700.5,83,1158.4807,1467.561552,1294.141241,1364.503383,447.2898546,447.2898546,2678.8638,25171.52819,1,1,1,1,1,1,1
-3701,83,1158.4807,1467.561552,1381.413769,1381.413769,447.2898546,447.2898546,2768.792822,26015.45361,1,1,1,1,1,1,1
-3701.5,83,1158.4807,1467.561552,1379.941256,1537.63494,447.2898546,447.2898546,2895.499037,27205.76197,1,1,1,1,1,1,1
-3702,83,1158.4807,1467.561552,1362.014936,1642.339823,447.2898546,447.2898546,2966.923659,27876.97733,1,1,1,1,1,1,1
-3702.5,83,1158.4807,1467.561552,1409.150534,1530.312437,447.2898546,447.2898546,2911.5752,27356.81018,1,1,1,1,1,1,1
-3703,83,1158.4807,1467.561552,1367.059169,1450.376463,447.2898546,447.2898546,2814.567222,26445.22473,1,1,1,1,1,1,1
-3703.5,83,1158.4807,1467.561552,1236.162809,1429.159494,447.2898546,447.2898546,2684.151791,25221.18427,1,1,1,1,1,1,1
-3704,83,1158.4807,1467.561552,1164.088336,1323.732085,447.2898546,447.2898546,2524.247718,23721.03571,1,1,1,1,1,1,1
-3704.5,83,1158.4807,1467.561552,1105.268017,1190.532129,447.2898546,447.2898546,2364.329336,22219.86068,1,1,1,1,1,1,1
-3705,83,1158.4807,1467.561552,1069.381329,1091.973856,447.2898546,447.2898546,2256.083326,21202.89412,1,1,1,1,1,1,1
-3705.5,83,1158.4807,1467.561552,1077.422563,1077.422563,447.2898546,447.2898546,2251.959253,21164.24256,1,1,1,1,1,1,1
-3706,83,1158.4807,1467.561552,1099.857834,1099.857834,447.2898546,447.2898546,2288.081098,21503.73882,1,1,1,1,1,1,1
-3706.5,83,1158.4807,1467.561552,1088.998544,1180.254658,447.2898546,447.2898546,2341.192681,22002.76649,1,1,1,1,1,1,1
-3707,83,1158.4807,1467.561552,1129.833438,1223.715592,447.2898546,447.2898546,2406.342489,22614.70753,1,1,1,1,1,1,1
-3707.5,83,1158.4807,1467.561552,1129.309843,1281.971923,447.2898546,447.2898546,2454.971233,23071.13544,1,1,1,1,1,1,1
-3708,83,1158.4807,1467.561552,1169.215326,1283.779688,447.2898546,447.2898546,2492.72666,23425.32905,1,1,1,1,1,1,1
-3708.5,83,1158.4807,1467.561552,1194.807665,1303.034159,447.2898546,447.2898546,2533.318093,23806.12758,1,1,1,1,1,1,1
-3709,83,1158.4807,1467.561552,1225.423547,1301.434386,447.2898546,447.2898546,2559.580875,24052.50508,1,1,1,1,1,1,1
-3709.5,83,1158.4807,1467.561552,1216.287124,1317.290739,447.2898546,447.2898546,2565.6632,24109.5648,1,1,1,1,1,1,1
-3710,83,1158.4807,1467.561552,1178.93573,1356.06012,447.2898546,447.2898546,2566.946941,24121.6079,1,1,1,1,1,1,1
-3710.5,83,1158.4807,1467.561552,1171.405151,1375.127786,447.2898546,447.2898546,2577.389646,24219.57354,1,1,1,1,1,1,1
-3711,83,1158.4807,1467.561552,1207.669478,1362.01623,447.2898546,447.2898546,2598.345792,24416.16838,1,1,1,1,1,1,1
-3711.5,83,1158.4807,1467.561552,1239.43424,1369.901002,447.2898546,447.2898546,2634.233557,24752.84053,1,1,1,1,1,1,1
-3712,83,1158.4807,1467.561552,1246.368444,1396.046165,447.2898546,447.2898546,2664.174044,25033.7198,1,1,1,1,1,1,1
-3712.5,83,1158.4807,1467.561552,1292.072374,1363.407844,447.2898546,447.2898546,2675.99959,25144.65821,1,1,1,1,1,1,1
-3713,83,1158.4807,1467.561552,1253.789688,1403.533811,447.2898546,447.2898546,2677.668389,25160.31366,1,1,1,1,1,1,1
-3713.5,83,1158.4807,1467.561552,1263.866499,1352.86548,447.2898546,447.2898546,2640.92738,24815.6372,1,1,1,1,1,1,1
-3714,83,1158.4807,1467.561552,1230.297338,1322.877593,447.2898546,447.2898546,2583.401054,24275.9681,1,1,1,1,1,1,1
-3714.5,83,1158.4807,1467.561552,1217.493933,1293.36305,447.2898546,447.2898546,2545.098778,23916.64476,1,1,1,1,1,1,1
-3715,83,1158.4807,1467.561552,1204.041721,1304.109844,447.2898546,447.2898546,2542.649189,23893.66489,1,1,1,1,1,1,1
-3715.5,83,1158.4807,1467.561552,1247.061173,1306.54049,447.2898546,447.2898546,2583.786834,24279.5873,1,1,1,1,1,1,1
-3716,83,1158.4807,1467.561552,1252.340609,1365.950016,447.2898546,447.2898546,2642.338721,24828.87714,1,1,1,1,1,1,1
-3716.5,83,1158.4807,1467.561552,1327.240482,1380.757859,447.2898546,447.2898546,2723.534265,25590.59278,1,1,1,1,1,1,1
-3717,83,1158.4807,1467.561552,1389.815548,1427.636686,447.2898546,447.2898546,2812.214854,26423.19148,1,1,1,1,1,1,1
-3717.5,83,1158.4807,1467.561552,1357.345253,1573.229821,447.2898546,447.2898546,2904.468446,27290.02775,1,1,1,1,1,1,1
-3718,83,1158.4807,1467.561552,1371.433231,1653.726039,447.2898546,447.2898546,2984.668555,28043.74481,1,1,1,1,1,1,1
-3718.5,83,1158.4807,1467.561552,1401.108646,1678.251016,447.2898546,447.2898546,3030.898293,28478.2141,1,1,1,1,1,1,1
-3719,83,1158.4807,1467.561552,1514.263316,1608.2764,447.2898546,447.2898546,3067.72854,28824.34632,1,1,1,1,1,1,1
-3719.5,83,1158.4807,1467.561552,1585.600212,1585.600212,447.2898546,447.2898546,3109.233099,29214.40788,1,1,1,1,1,1,1
-3720,83,1158.4807,1467.561552,1608.019382,1608.019382,447.2898546,447.2898546,3147.476626,29573.82223,1,1,1,1,1,1,1
-3720.5,83,1158.4807,1467.561552,1614.211239,1614.211239,447.2898546,447.2898546,3158.039561,29673.09348,1,1,1,1,1,1,1
-3721,83,1158.4807,1467.561552,1603.836212,1625.224371,447.2898546,447.2898546,3158.583444,29678.20503,1,1,1,1,1,1,1
-3721.5,83,1158.4807,1467.561552,1521.494566,1726.533222,447.2898546,447.2898546,3174.760933,29830.24153,1,1,1,1,1,1,1
-3722,83,1158.4807,1467.561552,1506.437503,1756.875702,447.2898546,447.2898546,3187.798434,29952.76825,1,1,1,1,1,1,1
-3722.5,83,1158.4807,1467.561552,1549.315748,1712.90616,447.2898546,447.2898546,3186.868407,29944.02779,1,1,1,1,1,1,1
-3723,83,1158.4807,1467.561552,1609.693788,1653.744243,447.2898546,447.2898546,3187.905492,29953.77435,1,1,1,1,1,1,1
-3723.5,83,1158.4807,1467.561552,1606.00067,1717.002594,447.2898546,447.2898546,3235.568005,30401.61306,1,1,1,1,1,1,1
-3724,83,1158.4807,1467.561552,1637.784344,1762.440718,447.2898546,447.2898546,3299.01878,30998.21769,1,1,1,1,1,1,1
-3724.5,83,1158.4807,1467.561552,1678.978953,1736.267751,447.2898546,447.2898546,3311.398842,31114.63457,1,1,1,1,1,1,1
-3725,83,1158.4807,1467.561552,1596.918979,1786.986868,447.2898546,447.2898546,3284.80783,30864.42169,1,1,1,1,1,1,1
-3725.5,83,1158.4807,1467.561552,1531.192266,1797.486573,447.2898546,447.2898546,3240.179077,30444.94156,1,1,1,1,1,1,1
-3726,83,1158.4807,1467.561552,1532.72315,1729.343958,447.2898546,447.2898546,3186.010527,29935.94351,1,1,1,1,1,1,1
-3726.5,83,1158.4807,1467.561552,1467.748251,1687.33131,447.2898546,447.2898546,3095.483035,29085.18453,1,1,1,1,1,1,1
-3727,83,1158.4807,1467.561552,1453.39524,1577.085075,447.2898546,447.2898546,2989.207467,28086.40186,1,1,1,1,1,1,1
-3727.5,83,1158.4807,1467.561552,1395.924845,1551.784707,447.2898546,447.2898546,2918.608921,27422.91331,1,1,1,1,1,1,1
-3728,83,1158.4807,1467.561552,1385.756487,1532.13201,447.2898546,447.2898546,2893.172723,27183.86324,1,1,1,1,1,1,1
-3728.5,83,1158.4807,1467.561552,1354.50469,1589.897022,447.2898546,447.2898546,2915.786735,27396.39045,1,1,1,1,1,1,1
-3729,83,1158.4807,1467.561552,1346.756908,1646.036221,447.2898546,447.2898546,2957.061616,27784.2937,1,1,1,1,1,1,1
-3729.5,83,1158.4807,1467.561552,1450.284818,1592.465829,447.2898546,447.2898546,2999.672882,28184.75613,1,1,1,1,1,1,1
-3730,83,1158.4807,1467.561552,1483.06634,1606.538957,447.2898546,447.2898546,3039.637283,28560.34364,1,1,1,1,1,1,1
-3730.5,83,1158.4807,1467.561552,1512.681404,1606.529957,447.2898546,447.2898546,3064.889051,28797.66069,1,1,1,1,1,1,1
-3731,83,1158.4807,1467.561552,1469.227717,1678.602025,447.2898546,447.2898546,3089.298664,29027.06324,1,1,1,1,1,1,1
-3731.5,83,1158.4807,1467.561552,1507.14434,1688.312826,447.2898546,447.2898546,3129.921614,29408.83945,1,1,1,1,1,1,1
-3732,83,1158.4807,1467.561552,1486.214836,1720.534154,447.2898546,447.2898546,3139.552654,29499.35245,1,1,1,1,1,1,1
-3732.5,83,1158.4807,1467.561552,1534.045241,1631.421036,447.2898546,447.2898546,3104.341462,29168.43624,1,1,1,1,1,1,1
-3733,83,1158.4807,1467.561552,1486.854412,1630.68347,447.2898546,447.2898546,3063.4612,28784.24162,1,1,1,1,1,1,1
-3733.5,83,1158.4807,1467.561552,1422.229455,1703.342464,447.2898546,447.2898546,3070.313619,28848.64108,1,1,1,1,1,1,1
-3734,83,1158.4807,1467.561552,1429.632929,1724.062907,447.2898546,447.2898546,3094.30257,29074.09051,1,1,1,1,1,1,1
-3734.5,83,1158.4807,1467.561552,1503.535117,1641.201507,447.2898546,447.2898546,3086.66112,29002.27567,1,1,1,1,1,1,1
-3735,83,1158.4807,1467.561552,1493.009406,1638.529954,447.2898546,447.2898546,3075.404754,28896.48743,1,1,1,1,1,1,1
-3735.5,83,1158.4807,1467.561552,1453.889714,1683.759914,447.2898546,447.2898546,3080.61655,28945.46814,1,1,1,1,1,1,1
-3736,83,1158.4807,1467.561552,1488.295206,1656.541941,447.2898546,447.2898546,3086.746892,29003.08172,1,1,1,1,1,1,1
-3736.5,83,1158.4807,1467.561552,1521.467777,1584.411574,447.2898546,447.2898546,3053.517679,28690.79244,1,1,1,1,1,1,1
-3737,83,1158.4807,1467.561552,1425.446151,1615.781077,447.2898546,447.2898546,2998.373447,28172.54445,1,1,1,1,1,1,1
-3737.5,83,1158.4807,1467.561552,1401.137172,1591.561816,447.2898546,447.2898546,2956.982058,27783.54613,1,1,1,1,1,1,1
-3738,83,1158.4807,1467.561552,1420.015425,1528.602777,447.2898546,447.2898546,2919.383546,27430.19353,1,1,1,1,1,1,1
-3738.5,83,1158.4807,1467.561552,1338.299715,1558.642134,447.2898546,447.2898546,2875.30651,27015.95538,1,1,1,1,1,1,1
-3739,83,1158.4807,1467.561552,1392.353051,1489.591823,447.2898546,447.2898546,2862.514866,26895.73908,1,1,1,1,1,1,1
-3739.5,83,1158.4807,1467.561552,1442.575151,1461.878699,447.2898546,447.2898546,2881.713977,27076.17337,1,1,1,1,1,1,1
-3740,83,1158.4807,1467.561552,1424.96909,1512.94438,447.2898546,447.2898546,2910.253733,27344.39107,1,1,1,1,1,1,1
-3740.5,83,1158.4807,1467.561552,1470.094993,1509.949581,447.2898546,447.2898546,2946.189272,27682.11509,1,1,1,1,1,1,1
-3741,83,1158.4807,1467.561552,1426.101327,1608.108254,447.2898546,447.2898546,2992.388283,28116.29561,1,1,1,1,1,1,1
-3741.5,83,1158.4807,1467.561552,1411.772141,1691.023773,447.2898546,447.2898546,3050.887915,28666.07762,1,1,1,1,1,1,1
-3742,83,1158.4807,1467.561552,1504.253726,1620.020337,447.2898546,447.2898546,3069.2078,28838.24833,1,1,1,1,1,1,1
-3742.5,83,1158.4807,1467.561552,1539.321872,1549.869709,447.2898546,447.2898546,3039.284752,28557.03036,1,1,1,1,1,1,1
-3743,83,1158.4807,1467.561552,1471.817083,1572.124793,447.2898546,447.2898546,3000.688822,28194.30433,1,1,1,1,1,1,1
-3743.5,83,1158.4807,1467.561552,1427.416816,1598.753272,447.2898546,447.2898546,2985.531086,28051.85107,1,1,1,1,1,1,1
-3744,83,1158.4807,1467.561552,1434.464637,1596.215246,447.2898546,447.2898546,2989.377136,28087.99664,1,1,1,1,1,1,1
-3744.5,83,1158.4807,1467.561552,1419.455744,1632.899046,447.2898546,447.2898546,3007.86456,28261.74247,1,1,1,1,1,1,1
-3745,83,1158.4807,1467.561552,1504.283221,1587.025091,447.2898546,447.2898546,3041.089621,28573.99267,1,1,1,1,1,1,1
-3745.5,83,1158.4807,1467.561552,1467.218968,1676.675393,447.2898546,447.2898546,3085.942152,28995.51859,1,1,1,1,1,1,1
-3746,83,1158.4807,1467.561552,1489.794707,1702.850701,447.2898546,447.2898546,3127.524229,29386.30876,1,1,1,1,1,1,1
-3746.5,83,1158.4807,1467.561552,1555.306395,1630.50763,447.2898546,447.2898546,3121.696832,29331.54289,1,1,1,1,1,1,1
-3747,83,1158.4807,1467.561552,1554.302544,1585.702596,447.2898546,447.2898546,3082.624441,28964.33892,1,1,1,1,1,1,1
-3747.5,83,1158.4807,1467.561552,1534.216914,1544.764195,447.2898546,447.2898546,3030.574915,28475.17487,1,1,1,1,1,1,1
-3748,83,1158.4807,1467.561552,1498.264457,1518.102047,447.2898546,447.2898546,2977.169035,27973.26424,1,1,1,1,1,1,1
-3748.5,83,1158.4807,1467.561552,1464.849401,1494.442318,447.2898546,447.2898546,2928.488055,27515.758,1,1,1,1,1,1,1
-3749,83,1158.4807,1467.561552,1418.765751,1505.953316,447.2898546,447.2898546,2898.999625,27238.62442,1,1,1,1,1,1,1
-3749.5,83,1158.4807,1467.561552,1386.334588,1521.893873,447.2898546,447.2898546,2884.934032,27106.4354,1,1,1,1,1,1,1
-3750,83,1158.4807,1467.561552,1397.501097,1484.571467,447.2898546,447.2898546,2862.624332,26896.76769,1,1,1,1,1,1,1
-3750.5,83,1158.4807,1467.561552,1301.242777,1504.204343,447.2898546,447.2898546,2804.624231,26351.78374,1,1,1,1,1,1,1
-3751,83,1158.4807,1467.561552,1221.591931,1454.399261,447.2898546,447.2898546,2694.017127,25313.72019,1,1,1,1,1,1,1
-3751.5,83,1158.4807,1467.561552,1164.840083,1332.423828,447.2898546,447.2898546,2532.794636,23801.21666,1,1,1,1,1,1,1
-3752,83,1158.4807,1467.561552,1078.774581,1265.085295,447.2898546,447.2898546,2400.765928,22562.19004,1,1,1,1,1,1,1
-3752.5,83,1158.4807,1467.561552,1023.200381,1209.59093,447.2898546,447.2898546,2313.258385,21740.29989,1,1,1,1,1,1,1
-3753,83,1158.4807,1467.561552,1045.136136,1104.557386,447.2898546,447.2898546,2246.78095,21115.47293,1,1,1,1,1,1,1
-3753.5,83,1158.4807,1467.561552,1073.99945,1073.99945,447.2898546,447.2898546,2246.511653,21113.049,1,1,1,1,1,1,1
-3754,83,1158.4807,1467.561552,1026.713145,1173.802571,447.2898546,447.2898546,2288.706407,21509.61415,1,1,1,1,1,1,1
-3754.5,83,1158.4807,1467.561552,1085.56172,1191.121735,447.2898546,447.2898546,2346.752631,22055.0065,1,1,1,1,1,1,1
-3755,83,1158.4807,1467.561552,1115.438624,1208.265203,447.2898546,447.2898546,2381.877317,22385.03246,1,1,1,1,1,1,1
-3755.5,83,1158.4807,1467.561552,1106.323245,1222.778323,447.2898546,447.2898546,2385.848562,22422.34539,1,1,1,1,1,1,1
-3756,83,1158.4807,1467.561552,1090.249352,1237.468517,447.2898546,447.2898546,2384.830113,22412.77597,1,1,1,1,1,1,1
-3756.5,83,1158.4807,1467.561552,1134.456211,1220.884526,447.2898546,447.2898546,2406.17224,22613.22375,1,1,1,1,1,1,1
-3757,83,1158.4807,1467.561552,1187.752398,1236.232088,447.2898546,447.2898546,2466.468143,23178.99127,1,1,1,1,1,1,1
-3757.5,83,1158.4807,1467.561552,1235.352819,1321.043566,447.2898546,447.2898546,2586.316625,24303.32006,1,1,1,1,1,1,1
-3758,83,1158.4807,1467.561552,1292.832435,1419.640528,447.2898546,447.2898546,2727.311239,25626.04328,1,1,1,1,1,1,1
-3758.5,83,1158.4807,1467.561552,1338.073428,1519.418167,447.2898546,447.2898546,2845.692274,26737.69661,1,1,1,1,1,1,1
-3759,83,1158.4807,1467.561552,1336.889575,1558.726723,447.2898546,447.2898546,2874.177094,27005.34153,1,1,1,1,1,1,1
-3759.5,83,1158.4807,1467.561552,1385.607149,1463.732735,447.2898546,447.2898546,2837.757894,26663.11507,1,1,1,1,1,1,1
-3760,83,1158.4807,1467.561552,1337.236557,1427.717599,447.2898546,447.2898546,2771.355452,26039.45377,1,1,1,1,1,1,1
-3760.5,83,1158.4807,1467.561552,1206.491234,1404.561158,447.2898546,447.2898546,2635.787289,24767.41614,1,1,1,1,1,1,1
-3761,83,1158.4807,1467.561552,1148.603118,1305.763212,447.2898546,447.2898546,2493.968683,23436.98016,1,1,1,1,1,1,1
-3761.5,83,1158.4807,1467.561552,1145.299733,1201.276771,447.2898546,447.2898546,2401.335311,22567.65125,1,1,1,1,1,1,1
-3762,83,1158.4807,1467.561552,1141.967051,1180.594115,447.2898546,447.2898546,2381.037218,22377.13859,1,1,1,1,1,1,1
-3762.5,83,1158.4807,1467.561552,1093.04352,1266.106038,447.2898546,447.2898546,2409.751261,22646.79152,1,1,1,1,1,1,1
-3763,83,1158.4807,1467.561552,1116.172624,1292.818802,447.2898546,447.2898546,2452.898099,23051.68708,1,1,1,1,1,1,1
-3763.5,83,1158.4807,1467.561552,1163.046792,1294.098186,447.2898546,447.2898546,2496.48289,23460.56704,1,1,1,1,1,1,1
-3764,83,1158.4807,1467.561552,1138.506243,1345.094549,447.2898546,447.2898546,2520.42856,23685.20745,1,1,1,1,1,1,1
-3764.5,83,1158.4807,1467.561552,1168.549214,1301.5039,447.2898546,447.2898546,2508.166111,23570.17005,1,1,1,1,1,1,1
-3765,83,1158.4807,1467.561552,1138.273391,1291.063753,447.2898546,447.2898546,2471.313971,23224.45066,1,1,1,1,1,1,1
-3765.5,83,1158.4807,1467.561552,1124.152503,1251.801577,447.2898546,447.2898546,2423.370996,22774.662,1,1,1,1,1,1,1
-3766,83,1158.4807,1467.561552,1128.031675,1190.321362,447.2898546,447.2898546,2377.940994,22348.04743,1,1,1,1,1,1,1
-3766.5,83,1158.4807,1467.561552,1105.213878,1150.324648,447.2898546,447.2898546,2331.067873,21907.63524,1,1,1,1,1,1,1
-3767,83,1158.4807,1467.561552,1073.009883,1116.806204,447.2898546,447.2898546,2280.334589,21430.95394,1,1,1,1,1,1,1
-3767.5,83,1158.4807,1467.561552,999.0868603,1125.089463,447.2898546,447.2898546,2224.84761,20909.19373,1,1,1,1,1,1,1
-3768,83,1158.4807,1467.561552,1015.655488,1086.381182,447.2898546,447.2898546,2205.415654,20726.40305,1,1,1,1,1,1,1
-3768.5,83,1158.4807,1467.561552,1019.402922,1111.770111,447.2898546,447.2898546,2232.050796,20977.04725,1,1,1,1,1,1,1
-3769,83,1158.4807,1467.561552,992.0361054,1180.269325,447.2898546,447.2898546,2266.484095,21300.80202,1,1,1,1,1,1,1
-3769.5,83,1158.4807,1467.561552,1024.059075,1170.714261,447.2898546,447.2898546,2284.213685,21467.40108,1,1,1,1,1,1,1
-3770,83,1158.4807,1467.561552,1054.114636,1149.696662,447.2898546,447.2898546,2291.285392,21533.84561,1,1,1,1,1,1,1
-3770.5,83,1158.4807,1467.561552,1051.683758,1154.543021,447.2898546,447.2898546,2293.175722,21551.60695,1,1,1,1,1,1,1
-3771,83,1158.4807,1467.561552,1043.229671,1123.126185,447.2898546,447.2898546,2261.680588,21255.6545,1,1,1,1,1,1,1
-3771.5,83,1158.4807,1467.561552,1012.377117,1061.095673,447.2898546,447.2898546,2179.303617,20480.6821,1,1,1,1,1,1,1
-3772,83,1158.4807,1467.561552,961.4080452,1040.884917,447.2898546,447.2898546,2114.234721,19868.36606,1,1,1,1,1,1,1
-3772.5,83,1158.4807,1467.561552,926.4619335,1037.600882,447.2898546,447.2898546,2079.286803,19539.49645,1,1,1,1,1,1,1
-3773,83,1158.4807,1467.561552,895.8273803,1037.27826,447.2898546,447.2898546,2050.988065,19273.19724,1,1,1,1,1,1,1
-3773.5,83,1158.4807,1467.561552,869.532377,1034.390476,447.2898546,447.2898546,2024.310394,19022.1533,1,1,1,1,1,1,1
-3774,83,1158.4807,1467.561552,864.8599285,1022.225846,447.2898546,447.2898546,2008.918485,18877.31117,1,1,1,1,1,1,1
-3774.5,83,1158.4807,1467.561552,893.8751196,994.8734134,447.2898546,447.2898546,2010.438784,18891.6175,1,1,1,1,1,1,1
-3775,83,1158.4807,1467.561552,868.1521815,1004.767844,447.2898546,447.2898546,1995.969457,18755.45711,1,1,1,1,1,1,1
-3775.5,83,1158.4807,1467.561552,834.6210757,999.7109588,447.2898546,447.2898546,1960.693821,18423.50392,1,1,1,1,1,1,1
-3776,83,1158.4807,1467.561552,835.6119172,949.4497886,447.2898546,447.2898546,1915.652982,17999.65747,1,1,1,1,1,1,1
-3776.5,83,1158.4807,1467.561552,808.2055183,905.0289535,447.2898546,447.2898546,1850.68702,17388.83789,1,1,1,1,1,1,1
-3777,83,1158.4807,1467.561552,786.9797081,842.3412784,447.2898546,447.2898546,1775.291476,16680.34293,1,1,1,1,1,1,1
-3777.5,83,1158.4807,1467.561552,757.3469959,788.2591182,447.2898546,447.2898546,1700.191666,15974.71737,1,1,1,1,1,1,1
-3778,83,1158.4807,1467.561552,712.6206701,814.1460786,447.2898546,447.2898546,1683.291526,15815.92625,1,1,1,1,1,1,1
-3778.5,83,1158.4807,1467.561552,733.5679288,843.7255213,447.2898546,447.2898546,1728.618662,16241.81298,1,1,1,1,1,1,1
-3779,83,1158.4807,1467.561552,764.363225,885.5415085,447.2898546,447.2898546,1793.757748,16853.84913,1,1,1,1,1,1,1
-3779.5,83,1158.4807,1467.561552,812.8313955,928.6358851,447.2898546,447.2898546,1876.217351,17628.87273,1,1,1,1,1,1,1
-3780,83,1158.4807,1467.561552,846.1281196,993.7232231,447.2898546,447.2898546,1965.739719,18470.98719,1,1,1,1,1,1,1
-3780.5,83,1158.4807,1467.561552,890.6365583,1038.315491,447.2898546,447.2898546,2047.191307,19237.46858,1,1,1,1,1,1,1
-3781,83,1158.4807,1467.561552,958.5170735,1004.807014,447.2898546,447.2898546,2078.611484,19533.1414,1,1,1,1,1,1,1
-3781.5,83,1158.4807,1467.561552,967.1657038,967.1657038,447.2898546,447.2898546,2052.108068,19283.73694,1,1,1,1,1,1,1
-3782,83,1158.4807,1467.561552,920.892782,957.816459,447.2898546,447.2898546,2001.260701,18805.24959,1,1,1,1,1,1,1
-3782.5,83,1158.4807,1467.561552,881.2082026,935.7159264,447.2898546,447.2898546,1944.7802,18273.75262,1,1,1,1,1,1,1
-3783,83,1158.4807,1467.561552,830.8152161,917.5181432,447.2898546,447.2898546,1882.336923,17686.34076,1,1,1,1,1,1,1
-3783.5,83,1158.4807,1467.561552,802.8985933,859.4427904,447.2898546,447.2898546,1804.914931,16958.67974,1,1,1,1,1,1,1
-3784,83,1158.4807,1467.561552,803.4466545,825.242343,447.2898546,447.2898546,1774.725365,16675.02355,1,1,1,1,1,1,1
-3784.5,83,1158.4807,1467.561552,799.2468107,884.0919465,447.2898546,447.2898546,1823.75077,17135.6582,1,1,1,1,1,1,1
-3785,83,1158.4807,1467.561552,858.3655276,898.841864,447.2898546,447.2898546,1890.39427,17762.12078,1,1,1,1,1,1,1
-3785.5,83,1158.4807,1467.561552,874.4059267,947.6439843,447.2898546,447.2898546,1949.466122,18317.84824,1,1,1,1,1,1,1
-3786,83,1158.4807,1467.561552,884.6317641,958.6090052,447.2898546,447.2898546,1968.838104,18500.14365,1,1,1,1,1,1,1
-3786.5,83,1158.4807,1467.561552,796.5159449,913.0156095,447.2898546,447.2898546,1847.802652,17362.07455,1,1,1,1,1,1,1
-3787,83,1158.4807,1467.561552,696.4064963,793.0574802,447.2898546,447.2898546,1649.828076,15501.50976,1,1,1,1,1,1,1
-3787.5,83,1158.4807,1467.561552,598.3789945,653.2123482,447.2898546,447.2898546,1460.626498,13723.80341,1,1,1,1,1,1,1
-3788,83,1158.4807,1467.561552,528.3884783,544.1944033,447.2898546,447.2898546,1325.647028,12455.55871,1,1,1,1,1,1,1
-3788.5,83,1158.4807,1467.561552,456.8383015,499.5988991,447.2898546,447.2898546,1234.580288,11599.91046,1,1,1,1,1,1,1
-3789,83,1158.4807,1467.561552,411.5430602,467.3955088,447.2898546,447.2898546,1172.461071,11016.24838,1,1,1,1,1,1,1
-3789.5,83,1158.4807,1467.561552,420.9402019,487.8558319,447.2898546,447.2898546,1196.393289,11241.11147,1,1,1,1,1,1,1
-3790,83,1158.4807,1467.561552,441.8783398,518.7267467,447.2898546,447.2898546,1237.920925,11631.29879,1,1,1,1,1,1,1
-3790.5,83,1158.4807,1467.561552,455.3088302,481.6162778,447.2898546,447.2898546,1218.94033,11452.96021,1,1,1,1,1,1,1
-3791,83,1158.4807,1467.561552,426.1045588,454.6316991,447.2898546,447.2898546,1173.901332,11029.78129,1,1,1,1,1,1,1
-3791.5,83,1158.4807,1467.561552,396.8150569,427.3612261,447.2898546,447.2898546,1128.565364,10603.8119,1,1,1,1,1,1,1
-3792,83,1158.4807,1467.561552,365.240084,403.1868955,447.2898546,447.2898546,1083.879503,10183.95093,1,1,1,1,1,1,1
-3792.5,83,1158.4807,1467.561552,351.3246454,366.5200363,447.2898546,447.2898546,1044.295577,9812.027154,1,1,1,1,1,1,1
-3793,83,1158.4807,1467.561552,331.0566529,335.3507804,447.2898546,447.2898546,1005.249688,9445.158487,1,1,1,1,1,1,1
-3793.5,83,1158.4807,1467.561552,299.4964982,305.5469325,447.2898546,447.2898546,959.0186511,9010.779566,1,1,1,1,1,1,1
-3794,83,1158.4807,1467.561552,253.301306,282.3720663,447.2898546,447.2898546,906.7563281,8519.731174,1,1,1,1,1,1,1
-3794.5,83,1158.4807,1467.561552,210.4274111,250.1513658,447.2898546,447.2898546,850.1806718,7988.155515,1,1,1,1,1,1,1
-3795,83,1158.4807,1467.561552,176.5584788,191.9874722,447.2898546,447.2898546,780.8431366,7336.672149,1,1,1,1,1,1,1
-3795.5,83,1158.4807,1467.561552,127.7108341,136.3911523,447.2898546,447.2898546,709.1519749,6663.073619,1,1,1,1,1,1,1
-3796,83,1158.4807,1467.561552,78.09697138,84.51572917,447.2898546,447.2898546,638.5985809,6000.16558,1,1,1,1,1,1,1
-3796.5,83,1158.4807,1467.561552,37.7089172,40.75905687,447.2898546,447.2898546,578.0686267,5431.436276,1,1,1,1,1,1,1
-3797,83,1158.4807,1467.561552,-0.096883786,-0.298131303,447.2898546,447.2898546,521.2495119,4897.573637,1,1,1,1,1,1,1
-3797.5,83,1158.4807,1467.561552,-39.96159793,-42.71979386,447.2898546,447.2898546,462.3282588,4343.959617,1,1,1,1,1,1,1
-3798,83,1158.4807,1467.561552,-71.20773282,-73.40292616,447.2898546,447.2898546,418.7887434,3934.869431,1,1,1,1,1,1,1
-3798.5,83,1158.4807,1467.561552,-87.85268858,-98.97232549,447.2898546,447.2898546,390.6245204,3670.243095,1,1,1,1,1,1,1
-3799,83,1158.4807,1467.561552,-113.2993491,-125.5500669,447.2898546,447.2898546,358.8320954,3371.526485,1,1,1,1,1,1,1
-3799.5,83,1158.4807,1467.561552,-172.4591112,-175.9571091,447.2898546,447.2898546,286.6125819,2692.964095,1,1,1,1,1,1,1
-3800,83,1158.4807,1467.561552,-220.5427151,-243.7226424,447.2898546,447.2898546,205.7681603,1933.36324,1,1,1,1,1,1,1
-3800.5,83,1158.4807,1467.561552,-255.5838506,-282.1612964,447.2898546,447.2898546,153.2853392,1440.243378,1,1,1,1,1,1,1
-3801,83,1158.4807,1467.561552,-283.9781546,-307.6430008,447.2898546,447.2898546,114.8603443,1079.208801,1,1,1,1,1,1,1
-3801.5,83,1158.4807,1467.561552,-299.7323273,-342.9109458,447.2898546,447.2898546,78.50531414,737.6226615,1,1,1,1,1,1,1
-3802,83,1158.4807,1467.561552,-327.1341849,-354.1293007,447.2898546,447.2898546,50.98988512,479.0925706,1,1,1,1,1,1,1
-3802.5,83,1158.4807,1467.561552,-309.0240795,-352.1608998,447.2898546,447.2898546,65.29549592,613.5056334,1,1,1,1,1,1,1
-3803,83,1158.4807,1467.561552,-283.5924859,-339.6877028,447.2898546,447.2898546,92.30105664,867.2453527,1,1,1,1,1,1,1
-3803.5,83,1158.4807,1467.561552,-299.5272344,-318.1344063,447.2898546,447.2898546,96.30399268,904.8562989,1,1,1,1,1,1,1
-3804,83,1158.4807,1467.561552,-291.2079898,-328.0783969,447.2898546,447.2898546,95.1464547,893.9804907,1,1,1,1,1,1,1
-3804.5,83,1158.4807,1467.561552,-278.224348,-337.7299747,447.2898546,447.2898546,97.52037062,916.284975,1,1,1,1,1,1,1
-3805,83,1158.4807,1467.561552,-301.3750261,-348.6826701,447.2898546,447.2898546,73.22280428,687.9887965,1,1,1,1,1,1,1
-3805.5,83,1158.4807,1467.561552,-340.4283176,-373.4994945,447.2898546,447.2898546,27.71686904,260.4230892,1,1,1,1,1,1,1
-3806,83.00125818,1158.498116,1467.561552,-343.9270604,-403.751826,447.296635,447.296635,3.74326314,35.17116174,1,1,1,1,1,1,1
-3806.5,83.00474746,1158.547196,1467.561552,-351.3263111,-401.6953133,447.3154388,447.3154388,0,0,1,1,1,1,1,1,1
-3807,83.00765684,1158.587632,1467.561552,-350.1488832,-402.7494399,447.3311176,447.3311176,0,0,1,1,1,1,1,1,1
-3807.5,83.00548632,1158.557604,1467.561552,-342.5991428,-386.6928824,447.3194206,447.3194206,16.62307416,156.1874853,1,1,1,1,1,1,1
-3808,83.0013512,1158.499752,1467.561552,-268.9288648,-307.7980305,447.2971363,447.2971363,125.461329,1178.813639,1,1,1,1,1,1,1
-3808.5,83,1158.4807,1467.561552,-124.0734171,-139.5823738,447.2898546,447.2898546,338.8714257,3183.979288,1,1,1,1,1,1,1
-3809,83,1158.4807,1467.561552,60.24610039,69.95712457,447.2898546,447.2898546,613.7063433,5766.282557,1,1,1,1,1,1,1
-3809.5,83,1158.4807,1467.561552,255.3312014,269.4522571,447.2898546,447.2898546,900.7029567,8462.85486,1,1,1,1,1,1,1
-3810,83,1158.4807,1467.561552,409.1229459,438.6026284,447.2898546,447.2898546,1148.679902,10792.80499,1,1,1,1,1,1,1
-3810.5,83,1158.4807,1467.561552,487.552301,574.5995482,447.2898546,447.2898546,1319.317674,12396.0892,1,1,1,1,1,1,1
-3811,83,1158.4807,1467.561552,589.5016102,644.4900395,447.2898546,447.2898546,1442.675774,13555.14131,1,1,1,1,1,1,1
-3811.5,83,1158.4807,1467.561552,650.1469053,704.8080795,447.2898546,447.2898546,1532.273628,14396.98747,1,1,1,1,1,1,1
-3812,83,1158.4807,1467.561552,654.7285084,774.1868723,447.2898546,447.2898546,1595.510254,14991.14828,1,1,1,1,1,1,1
-3812.5,83,1158.4807,1467.561552,690.674223,768.7457319,447.2898546,447.2898546,1622.875398,15248.26675,1,1,1,1,1,1,1
-3813,83,1158.4807,1467.561552,700.6680546,764.0099724,447.2898546,447.2898546,1627.592901,15292.59191,1,1,1,1,1,1,1
-3813.5,83,1158.4807,1467.561552,682.3106019,774.3819941,447.2898546,447.2898546,1620.42973,15225.28755,1,1,1,1,1,1,1
-3814,83,1158.4807,1467.561552,686.7296233,759.2899274,447.2898546,447.2898546,1610.854517,15135.32041,1,1,1,1,1,1,1
-3814.5,83,1158.4807,1467.561552,695.0860281,773.4512524,447.2898546,447.2898546,1631.054145,15325.11303,1,1,1,1,1,1,1
-3815,83,1158.4807,1467.561552,743.6194815,773.6507274,447.2898546,447.2898546,1674.772503,15735.88314,1,1,1,1,1,1,1
-3815.5,83,1158.4807,1467.561552,733.90044,827.7713204,447.2898546,447.2898546,1714.6047,16110.13964,1,1,1,1,1,1,1
-3816,83,1158.4807,1467.561552,762.0639471,842.1127177,447.2898546,447.2898546,1752.735723,16468.41242,1,1,1,1,1,1,1
-3816.5,83,1158.4807,1467.561552,797.7750803,858.5593903,447.2898546,447.2898546,1799.525283,16908.03935,1,1,1,1,1,1,1
-3817,83,1158.4807,1467.561552,804.8074044,907.7051186,447.2898546,447.2898546,1849.922719,17381.56536,1,1,1,1,1,1,1
-3817.5,83,1158.4807,1467.561552,818.5614108,941.7857092,447.2898546,447.2898546,1893.151147,17787.97734,1,1,1,1,1,1,1
-3818,83,1158.4807,1467.561552,848.3407315,950.2633932,447.2898546,447.2898546,1928.032833,18116.15516,1,1,1,1,1,1,1
-3818.5,83,1158.4807,1467.561552,884.9845585,939.829491,447.2898546,447.2898546,1951.992207,18341.61955,1,1,1,1,1,1,1
-3819,83,1158.4807,1467.561552,875.5296016,960.9644022,447.2898546,447.2898546,1962.670307,18442.10349,1,1,1,1,1,1,1
-3819.5,83,1158.4807,1467.561552,874.8548752,948.1798518,447.2898546,447.2898546,1950.366167,18326.31807,1,1,1,1,1,1,1
-3820,83,1158.4807,1467.561552,884.1441545,914.3917615,447.2898546,447.2898546,1927.971145,18115.57496,1,1,1,1,1,1,1
-3820.5,83,1158.4807,1467.561552,835.9033352,948.0859178,447.2898546,447.2898546,1914.673793,17990.44294,1,1,1,1,1,1,1
-3821,83,1158.4807,1467.561552,836.0702481,949.4070556,447.2898546,447.2898546,1916.033847,18003.24156,1,1,1,1,1,1,1
-3821.5,83,1158.4807,1467.561552,871.2325978,962.9412923,447.2898546,447.2898546,1960.549465,18422.14549,1,1,1,1,1,1,1
-3822,83,1158.4807,1467.561552,912.6610638,995.2533307,447.2898546,447.2898546,2027.959299,19056.49028,1,1,1,1,1,1,1
-3822.5,83,1158.4807,1467.561552,909.9838394,1054.094549,447.2898546,447.2898546,2079.300818,19539.62817,1,1,1,1,1,1,1
-3823,83,1158.4807,1467.561552,914.0246714,1094.82076,447.2898546,447.2898546,2120.224959,19924.73525,1,1,1,1,1,1,1
-3823.5,83,1158.4807,1467.561552,941.4375466,1112.596379,447.2898546,447.2898546,2161.534101,20313.46548,1,1,1,1,1,1,1
-3824,83,1158.4807,1467.561552,979.868568,1119.832145,447.2898546,447.2898546,2203.279973,20706.30599,1,1,1,1,1,1,1
-3824.5,83,1158.4807,1467.561552,1044.433357,1087.30235,447.2898546,447.2898546,2232.565229,20981.8882,1,1,1,1,1,1,1
-3825,83,1158.4807,1467.561552,1001.510657,1143.739058,447.2898546,447.2898546,2244.919574,21098.14607,1,1,1,1,1,1,1
-3825.5,83,1158.4807,1467.561552,1010.772541,1111.255696,447.2898546,447.2898546,2223.691018,20898.3797,1,1,1,1,1,1,1
-3826,83,1158.4807,1467.561552,1012.209815,1067.476635,447.2898546,447.2898546,2184.98377,20534.13397,1,1,1,1,1,1,1
-3826.5,83,1158.4807,1467.561552,971.9695148,1059.598123,447.2898546,447.2898546,2140.99696,20120.20557,1,1,1,1,1,1,1
-3827,83,1158.4807,1467.561552,906.6008209,1070.260036,447.2898546,447.2898546,2090.986974,19649.59798,1,1,1,1,1,1,1
-3827.5,83,1158.4807,1467.561552,874.5866845,1041.064318,447.2898546,447.2898546,2035.031372,19123.04064,1,1,1,1,1,1,1
-3828,83,1158.4807,1467.561552,891.352615,966.9105683,447.2898546,447.2898546,1982.570903,18629.37333,1,1,1,1,1,1,1
-3828.5,83,1158.4807,1467.561552,904.6042077,941.5268284,447.2898546,447.2898546,1971.480643,18525.0112,1,1,1,1,1,1,1
-3829,83,1158.4807,1467.561552,886.9116081,960.5434845,447.2898546,447.2898546,1972.690092,18536.39235,1,1,1,1,1,1,1
-3829.5,83,1158.4807,1467.561552,843.8852879,970.3082337,447.2898546,447.2898546,1942.28453,18250.26775,1,1,1,1,1,1,1
-3830,83,1158.4807,1467.561552,811.9369285,953.1433508,447.2898546,447.2898546,1897.387293,17827.77232,1,1,1,1,1,1,1
-3830.5,83,1158.4807,1467.561552,835.7156001,905.9869568,447.2898546,447.2898546,1876.116609,17627.68467,1,1,1,1,1,1,1
-3831,83,1158.4807,1467.561552,825.5800013,918.2916794,447.2898546,447.2898546,1878.054693,17645.88907,1,1,1,1,1,1,1
-3831.5,83,1158.4807,1467.561552,835.8131439,911.8447008,447.2898546,447.2898546,1881.462577,17677.91821,1,1,1,1,1,1,1
-3832,83,1158.4807,1467.561552,828.3133755,940.2744718,447.2898546,447.2898546,1900.594355,17857.95187,1,1,1,1,1,1,1
-3832.5,83,1158.4807,1467.561552,884.6851534,970.3849601,447.2898546,447.2898546,1979.651394,18601.9002,1,1,1,1,1,1,1
-3833,83,1158.4807,1467.561552,910.1801748,1062.684343,447.2898546,447.2898546,2087.332964,19615.21279,1,1,1,1,1,1,1
-3833.5,83,1158.4807,1467.561552,973.8364621,1112.137511,447.2898546,447.2898546,2190.732546,20588.23086,1,1,1,1,1,1,1
-3834,83,1158.4807,1467.561552,1075.005345,1110.864763,447.2898546,447.2898546,2276.079239,21390.85435,1,1,1,1,1,1,1
-3834.5,83,1158.4807,1467.561552,1044.207166,1176.656867,447.2898546,447.2898546,2304.629097,21659.22118,1,1,1,1,1,1,1
-3835,83,1158.4807,1467.561552,1061.295754,1143.400448,447.2898546,447.2898546,2291.978425,21540.35709,1,1,1,1,1,1,1
-3835.5,83,1158.4807,1467.561552,1019.418214,1140.274773,447.2898546,447.2898546,2256.063032,21202.8321,1,1,1,1,1,1,1
-3836,83,1158.4807,1467.561552,960.9035323,1143.023524,447.2898546,447.2898546,2207.144016,20742.66779,1,1,1,1,1,1,1
-3836.5,83,1158.4807,1467.561552,938.2382357,1109.065101,447.2898546,447.2898546,2155.381407,20255.5672,1,1,1,1,1,1,1
-3837,83,1158.4807,1467.561552,948.9539311,1042.967081,447.2898546,447.2898546,2104.75302,19779.14014,1,1,1,1,1,1,1
-3837.5,83,1158.4807,1467.561552,909.5154042,1045.466099,447.2898546,447.2898546,2070.985366,19461.37745,1,1,1,1,1,1,1
-3838,83,1158.4807,1467.561552,898.5370459,1047.934287,447.2898546,447.2898546,2063.205857,19388.17006,1,1,1,1,1,1,1
-3838.5,83,1158.4807,1467.561552,981.166444,1027.203619,447.2898546,447.2898546,2119.789842,19920.64072,1,1,1,1,1,1,1
-3839,83,1158.4807,1467.561552,988.2933548,1100.256188,447.2898546,447.2898546,2193.085916,20610.37669,1,1,1,1,1,1,1
-3839.5,83,1158.4807,1467.561552,964.1429347,1162.531855,447.2898546,447.2898546,2227.937806,20938.34283,1,1,1,1,1,1,1
-3840,83,1158.4807,1467.561552,973.6568146,1174.167693,447.2898546,447.2898546,2246.766154,21115.47958,1,1,1,1,1,1,1
-3840.5,83,1158.4807,1467.561552,1053.125391,1163.299225,447.2898546,447.2898546,2301.155057,21626.57926,1,1,1,1,1,1,1
-3841,83,1158.4807,1467.561552,1072.371992,1234.428261,447.2898546,447.2898546,2369.328002,22267.12111,1,1,1,1,1,1,1
-3841.5,83,1158.4807,1467.561552,1082.163404,1182.720946,447.2898546,447.2898546,2337.776835,21970.67168,1,1,1,1,1,1,1
-3842,83,1158.4807,1467.561552,1014.835882,1142.242734,447.2898546,447.2898546,2252.230053,21166.63855,1,1,1,1,1,1,1
-3842.5,83,1158.4807,1467.561552,994.7045053,1107.447393,447.2898546,447.2898546,2205.521137,20727.39555,1,1,1,1,1,1,1
-3843,83,1158.4807,1467.561552,975.7865323,1099.876343,447.2898546,447.2898546,2181.306382,20499.5281,1,1,1,1,1,1,1
-3843.5,83,1158.4807,1467.561552,940.4298783,1096.393365,447.2898546,447.2898546,2145.801323,20165.41572,1,1,1,1,1,1,1
-3844,83,1158.4807,1467.561552,921.2504259,1067.275614,447.2898546,447.2898546,2101.649749,19749.93743,1,1,1,1,1,1,1
-3844.5,83,1158.4807,1467.561552,905.8076097,1070.339764,447.2898546,447.2898546,2090.333752,19643.45083,1,1,1,1,1,1,1
-3845,83,1158.4807,1467.561552,912.4759914,1078.431612,447.2898546,447.2898546,2103.826471,19770.42145,1,1,1,1,1,1,1
-3845.5,83,1158.4807,1467.561552,944.5160598,1065.244647,447.2898546,447.2898546,2121.061905,19932.6118,1,1,1,1,1,1,1
-3846,83,1158.4807,1467.561552,963.639021,1065.074707,447.2898546,447.2898546,2138.387693,20095.65188,1,1,1,1,1,1,1
-3846.5,83,1158.4807,1467.561552,957.2835511,1101.350168,447.2898546,447.2898546,2165.738387,20353.02921,1,1,1,1,1,1,1
-3847,83,1158.4807,1467.561552,980.7018774,1120.77989,447.2898546,447.2898546,2204.908761,20721.63317,1,1,1,1,1,1,1
-3847.5,83,1158.4807,1467.561552,1014.571516,1128.896924,447.2898546,447.2898546,2242.638252,21076.62217,1,1,1,1,1,1,1
-3848,83,1158.4807,1467.561552,1013.467401,1165.964367,447.2898546,447.2898546,2272.208576,21354.60322,1,1,1,1,1,1,1
-3848.5,83,1158.4807,1467.561552,1065.231752,1139.082053,447.2898546,447.2898546,2291.679152,21537.54511,1,1,1,1,1,1,1
-3849,83,1158.4807,1467.561552,1081.15033,1132.625189,447.2898546,447.2898546,2299.083411,21607.11415,1,1,1,1,1,1,1
-3849.5,83,1158.4807,1467.561552,1053.804194,1148.977921,447.2898546,447.2898546,2290.48101,21526.28788,1,1,1,1,1,1,1
-3850,83,1158.4807,1467.561552,1015.651901,1168.092241,447.2898546,447.2898546,2275.583257,21386.31084,1,1,1,1,1,1,1
-3850.5,83,1158.4807,1467.561552,986.5188555,1173.572332,447.2898546,447.2898546,2257.07533,21212.41364,1,1,1,1,1,1,1
-3851,83,1158.4807,1467.561552,990.9841846,1140.686092,447.2898546,447.2898546,2232.417739,20980.49258,1,1,1,1,1,1,1
-3851.5,83,1158.4807,1467.561552,965.0049162,1132.257913,447.2898546,447.2898546,2201.051751,20685.33732,1,1,1,1,1,1,1
-3852,83,1158.4807,1467.561552,935.4447681,1135.496322,447.2898546,447.2898546,2176.989177,20458.90216,1,1,1,1,1,1,1
-3852.5,83,1158.4807,1467.561552,994.0843876,1077.54605,447.2898546,447.2898546,2177.61999,20464.83851,1,1,1,1,1,1,1
-3853,83,1158.4807,1467.561552,1025.072072,1059.757296,447.2898546,447.2898546,2189.685473,20578.37817,1,1,1,1,1,1,1
-3853.5,83,1158.4807,1467.561552,1020.774754,1105.934842,447.2898546,447.2898546,2227.969904,20938.64513,1,1,1,1,1,1,1
-3854,83,1158.4807,1467.561552,1077.880852,1114.121232,447.2898546,447.2898546,2281.880513,21445.46234,1,1,1,1,1,1,1
-3854.5,83,1158.4807,1467.561552,1111.874396,1126.776485,447.2898546,447.2898546,2318.547332,21789.99433,1,1,1,1,1,1,1
-3855,83,1158.4807,1467.561552,1098.08931,1165.841063,447.2898546,447.2898546,2337.830296,21971.17417,1,1,1,1,1,1,1
-3855.5,83,1158.4807,1467.561552,1090.296992,1181.155075,447.2898546,447.2898546,2343.43348,22023.82055,1,1,1,1,1,1,1
-3856,83,1158.4807,1467.561552,1067.524503,1203.472198,447.2898546,447.2898546,2343.09908,22020.67833,1,1,1,1,1,1,1
-3856.5,83,1158.4807,1467.561552,1017.437876,1201.831958,447.2898546,447.2898546,2303.131477,21645.14957,1,1,1,1,1,1,1
-3857,83,1158.4807,1467.561552,970.86096,1147.758774,447.2898546,447.2898546,2218.63038,20850.59061,1,1,1,1,1,1,1
-3857.5,83,1158.4807,1467.561552,1005.053748,1061.280818,447.2898546,447.2898546,2172.778306,20419.27679,1,1,1,1,1,1,1
-3858,83,1158.4807,1467.561552,1014.047832,1041.242771,447.2898546,447.2898546,2162.682155,20324.26948,1,1,1,1,1,1,1
-3858.5,83,1158.4807,1467.561552,958.1130272,1079.504569,447.2898546,447.2898546,2146.526412,20172.23931,1,1,1,1,1,1,1
-3859,83,1158.4807,1467.561552,972.4730506,1040.595132,447.2898546,447.2898546,2124.085165,19961.06085,1,1,1,1,1,1,1
-3859.5,83,1158.4807,1467.561552,975.7702632,1049.970522,447.2898546,447.2898546,2135.669963,20070.07736,1,1,1,1,1,1,1
-3860,83,1158.4807,1467.561552,981.8022729,1099.820327,447.2898546,447.2898546,2186.754311,20550.79489,1,1,1,1,1,1,1
-3860.5,83,1158.4807,1467.561552,980.6775498,1105.870428,447.2898546,447.2898546,2191.257021,20593.16652,1,1,1,1,1,1,1
-3861,83,1158.4807,1467.561552,936.4872172,1113.408004,447.2898546,447.2898546,2157.751197,20277.86739,1,1,1,1,1,1,1
-3861.5,83,1158.4807,1467.561552,929.3728636,1120.76232,447.2898546,447.2898546,2157.970097,20279.92721,1,1,1,1,1,1,1
-3862,83,1158.4807,1467.561552,969.6901403,1101.025424,447.2898546,447.2898546,2176.782959,20456.96147,1,1,1,1,1,1,1
-3862.5,83,1158.4807,1467.561552,975.051132,1106.740909,447.2898546,447.2898546,2186.908668,20552.24708,1,1,1,1,1,1,1
-3863,83,1158.4807,1467.561552,991.7853357,1096.433083,447.2898546,447.2898546,2192.783473,20607.53082,1,1,1,1,1,1,1
-3863.5,83,1158.4807,1467.561552,971.3568481,1124.694946,447.2898546,447.2898546,2199.944939,20674.92258,1,1,1,1,1,1,1
-3864,83,1158.4807,1467.561552,1005.88267,1097.583619,447.2898546,447.2898546,2206.722684,20738.70305,1,1,1,1,1,1,1
-3864.5,83,1158.4807,1467.561552,1001.660972,1099.263214,447.2898546,447.2898546,2204.398898,20716.83562,1,1,1,1,1,1,1
-3865,83,1158.4807,1467.561552,998.1061153,1096.049471,447.2898546,447.2898546,2198.211815,20658.61317,1,1,1,1,1,1,1
-3865.5,83,1158.4807,1467.561552,1017.931597,1073.901574,447.2898546,447.2898546,2196.088911,20638.63573,1,1,1,1,1,1,1
-3866,83,1158.4807,1467.561552,1038.984594,1053.116566,447.2898546,447.2898546,2196.332874,20640.93179,1,1,1,1,1,1,1
-3866.5,83,1158.4807,1467.561552,1038.445669,1066.407339,447.2898546,447.2898546,2207.990087,20750.62922,1,1,1,1,1,1,1
-3867,83,1158.4807,1467.561552,1037.559451,1094.38594,447.2898546,447.2898546,2232.756256,20983.6858,1,1,1,1,1,1,1
-3867.5,83,1158.4807,1467.561552,1055.932776,1121.248205,447.2898546,447.2898546,2270.141392,21335.14985,1,1,1,1,1,1,1
-3868,83,1158.4807,1467.561552,1071.615152,1153.193193,447.2898546,447.2898546,2307.715917,21688.22412,1,1,1,1,1,1,1
-3868.5,83,1158.4807,1467.561552,1079.782942,1169.764853,447.2898546,447.2898546,2327.074049,21870.10999,1,1,1,1,1,1,1
-3869,83,1158.4807,1467.561552,1093.499136,1168.989074,447.2898546,447.2898546,2336.832674,21961.80044,1,1,1,1,1,1,1
-3869.5,83,1158.4807,1467.561552,1078.591448,1176.008108,447.2898546,447.2898546,2330.839794,21905.49219,1,1,1,1,1,1,1
-3870,83,1158.4807,1467.561552,1092.312784,1130.289362,447.2898546,447.2898546,2305.989175,21671.99971,1,1,1,1,1,1,1
-3870.5,83,1158.4807,1467.561552,1037.158829,1137.114262,447.2898546,447.2898546,2268.172148,21316.67767,1,1,1,1,1,1,1
-3871,83,1158.4807,1467.561552,999.8257098,1120.405572,447.2898546,447.2898546,2221.737974,20879.97387,1,1,1,1,1,1,1
-3871.5,83,1158.4807,1467.561552,976.5158181,1093.624324,447.2898546,447.2898546,2176.257393,20452.01565,1,1,1,1,1,1,1
-3872,83,1158.4807,1467.561552,953.3236272,1089.374102,447.2898546,447.2898546,2151.17157,20215.95138,1,1,1,1,1,1,1
-3872.5,83,1158.4807,1467.561552,995.8106456,1057.629732,447.2898546,447.2898546,2160.991623,20308.36076,1,1,1,1,1,1,1
-3873,83,1158.4807,1467.561552,1000.97728,1077.017178,447.2898546,447.2898546,2183.437433,20519.58201,1,1,1,1,1,1,1
-3873.5,83,1158.4807,1467.561552,974.2519028,1120.706784,447.2898546,447.2898546,2198.944724,20665.51015,1,1,1,1,1,1,1
-3874,83,1158.4807,1467.561552,1024.45815,1081.192697,447.2898546,447.2898546,2208.719831,20757.49624,1,1,1,1,1,1,1
-3874.5,83,1158.4807,1467.561552,1029.487722,1085.596545,447.2898546,447.2898546,2217.343754,20838.64973,1,1,1,1,1,1,1
-3875,83,1158.4807,1467.561552,1018.006239,1102.840092,447.2898546,447.2898546,2222.610041,20888.20683,1,1,1,1,1,1,1
-3875.5,83,1158.4807,1467.561552,1023.705834,1094.418208,447.2898546,447.2898546,2220.121939,20864.79346,1,1,1,1,1,1,1
-3876,83,1158.4807,1467.561552,1038.388437,1073.806527,447.2898546,447.2898546,2214.702037,20813.79089,1,1,1,1,1,1,1
-3876.5,83,1158.4807,1467.561552,1025.145474,1088.298249,447.2898546,447.2898546,2215.843391,20824.53087,1,1,1,1,1,1,1
-3877,83,1158.4807,1467.561552,1024.89266,1095.653822,447.2898546,447.2898546,2222.336111,20885.62879,1,1,1,1,1,1,1
-3877.5,83,1158.4807,1467.561552,1002.052393,1122.049046,447.2898546,447.2898546,2225.585716,20916.20869,1,1,1,1,1,1,1
-3878,83,1158.4807,1467.561552,997.230478,1132.171116,447.2898546,447.2898546,2230.431537,20961.80942,1,1,1,1,1,1,1
-3878.5,83,1158.4807,1467.561552,1038.168262,1109.936658,447.2898546,447.2898546,2246.919423,21116.91234,1,1,1,1,1,1,1
-3879,83,1158.4807,1467.561552,1057.332591,1115.225108,447.2898546,447.2898546,2266.82999,21304.06649,1,1,1,1,1,1,1
-3879.5,83,1158.4807,1467.561552,1018.645039,1155.763762,447.2898546,447.2898546,2268.278019,21317.67229,1,1,1,1,1,1,1
-3880,83,1158.4807,1467.561552,1012.477287,1142.214199,447.2898546,447.2898546,2252.58169,21170.16511,1,1,1,1,1,1,1
-3880.5,83,1158.4807,1467.561552,1041.890573,1106.611219,447.2898546,447.2898546,2247.869775,21125.90574,1,1,1,1,1,1,1
-3881,83,1158.4807,1467.561552,1021.340762,1136.051026,447.2898546,447.2898546,2254.963169,21192.56802,1,1,1,1,1,1,1
-3881.5,83,1158.4807,1467.561552,1061.216527,1112.323902,447.2898546,447.2898546,2267.599645,21311.29805,1,1,1,1,1,1,1
-3882,83,1158.4807,1467.561552,1034.112803,1165.839542,447.2898546,447.2898546,2288.265847,21505.4741,1,1,1,1,1,1,1
-3882.5,83,1158.4807,1467.561552,1018.90906,1220.451511,447.2898546,447.2898546,2319.103101,21795.2161,1,1,1,1,1,1,1
-3883,83,1158.4807,1467.561552,1068.112642,1212.607511,447.2898546,447.2898546,2350.243986,22087.81048,1,1,1,1,1,1,1
-3883.5,83,1158.4807,1467.561552,1095.476503,1194.839084,447.2898546,447.2898546,2357.312362,22154.22384,1,1,1,1,1,1,1
-3884,83,1158.4807,1467.561552,1070.411074,1206.613012,447.2898546,447.2898546,2347.533085,22062.3397,1,1,1,1,1,1,1
-3884.5,83,1158.4807,1467.561552,1090.464344,1174.11767,447.2898546,447.2898546,2338.379633,21976.33532,1,1,1,1,1,1,1
-3885,83,1158.4807,1467.561552,1062.068733,1196.96173,447.2898546,447.2898546,2334.294768,21937.95482,1,1,1,1,1,1,1
-3885.5,83,1158.4807,1467.561552,1033.041474,1228.997683,447.2898546,447.2898546,2336.508278,21958.75274,1,1,1,1,1,1,1
-3886,83,1158.4807,1467.561552,1077.587603,1191.551179,447.2898546,447.2898546,2341.731585,22007.8299,1,1,1,1,1,1,1
-3886.5,83,1158.4807,1467.561552,1088.459086,1202.920524,447.2898546,447.2898546,2358.094968,22161.57744,1,1,1,1,1,1,1
-3887,83,1158.4807,1467.561552,1066.729354,1252.101522,447.2898546,447.2898546,2378.291939,22351.34492,1,1,1,1,1,1,1
-3887.5,83,1158.4807,1467.561552,1050.022739,1257.719544,447.2898546,447.2898546,2370.133601,22274.6905,1,1,1,1,1,1,1
-3888,83,1158.4807,1467.561552,1042.786905,1232.577174,447.2898546,447.2898546,2346.312227,22050.86857,1,1,1,1,1,1,1
-3888.5,83,1158.4807,1467.561552,1085.610398,1161.618263,447.2898546,447.2898546,2325.113247,21851.68649,1,1,1,1,1,1,1
-3889,83,1158.4807,1467.561552,1099.80876,1122.027119,447.2898546,447.2898546,2305.389952,21666.37007,1,1,1,1,1,1,1
-3889.5,83,1158.4807,1467.561552,1033.940289,1156.870444,447.2898546,447.2898546,2281.112846,21438.26625,1,1,1,1,1,1,1
-3890,83,1158.4807,1467.561552,978.4476958,1179.520789,447.2898546,447.2898546,2255.212398,21194.88978,1,1,1,1,1,1,1
-3890.5,83,1158.4807,1467.561552,974.2002568,1174.869271,447.2898546,447.2898546,2248.347516,21130.39817,1,1,1,1,1,1,1
-3891,83,1158.4807,1467.561552,1012.187007,1149.314169,447.2898546,447.2898546,2258.178071,21222.77487,1,1,1,1,1,1,1
-3891.5,83,1158.4807,1467.561552,1026.471085,1165.24909,447.2898546,447.2898546,2281.823845,21444.94689,1,1,1,1,1,1,1
-3892,83,1158.4807,1467.561552,1015.918353,1200.505108,447.2898546,447.2898546,2301.154144,21626.57126,1,1,1,1,1,1,1
-3892.5,83,1158.4807,1467.561552,1055.472951,1167.202395,447.2898546,447.2898546,2306.0464,21672.5381,1,1,1,1,1,1,1
-3893,83,1158.4807,1467.561552,1057.125705,1168.115591,447.2898546,447.2898546,2308.054786,21691.40815,1,1,1,1,1,1,1
-3893.5,83,1158.4807,1467.561552,1051.077611,1201.216943,447.2898546,447.2898546,2328.893516,21887.20554,1,1,1,1,1,1,1
-3894,83,1158.4807,1467.561552,1069.649508,1214.341587,447.2898546,447.2898546,2352.659041,22110.50217,1,1,1,1,1,1,1
-3894.5,83,1158.4807,1467.561552,1075.089391,1196.411759,447.2898546,447.2898546,2343.469844,22024.16227,1,1,1,1,1,1,1
-3895,83,1158.4807,1467.561552,1036.49,1207.948284,447.2898546,447.2898546,2322.989089,21831.72841,1,1,1,1,1,1,1
-3895.5,83,1158.4807,1467.561552,1030.394703,1201.753866,447.2898546,447.2898546,2313.460195,21742.19649,1,1,1,1,1,1,1
-3896,83,1158.4807,1467.561552,1086.149067,1138.879805,447.2898546,447.2898546,2307.888941,21689.84974,1,1,1,1,1,1,1
-3896.5,83,1158.4807,1467.561552,1052.528488,1154.465046,447.2898546,447.2898546,2293.775495,21557.24243,1,1,1,1,1,1,1
-3897,83,1158.4807,1467.561552,1007.698641,1174.876098,447.2898546,447.2898546,2274.66776,21377.70954,1,1,1,1,1,1,1
-3897.5,83,1158.4807,1467.561552,1032.593128,1134.321986,447.2898546,447.2898546,2262.414555,21262.58048,1,1,1,1,1,1,1
-3898,83,1158.4807,1467.561552,1017.967225,1139.78005,447.2898546,447.2898546,2255.240874,21195.17728,1,1,1,1,1,1,1
-3898.5,83,1158.4807,1467.561552,1035.682953,1115.095689,447.2898546,447.2898546,2249.724827,21143.34298,1,1,1,1,1,1,1
-3899,83,1158.4807,1467.561552,1050.65451,1093.538367,447.2898546,447.2898546,2243.952147,21089.04226,1,1,1,1,1,1,1
-3899.5,83,1158.4807,1467.561552,1037.497568,1094.213495,447.2898546,447.2898546,2232.541582,20981.66536,1,1,1,1,1,1,1
-3900,83,1158.4807,1467.561552,1026.967273,1090.491021,447.2898546,447.2898546,2219.513433,20859.06674,1,1,1,1,1,1,1
-3900.5,83,1158.4807,1467.561552,1022.388995,1100.153507,447.2898546,447.2898546,2224.161004,20902.80164,1,1,1,1,1,1,1
-3901,83,1158.4807,1467.561552,1008.305119,1136.910211,447.2898546,447.2898546,2244.461903,21093.80214,1,1,1,1,1,1,1
-3901.5,83,1158.4807,1467.561552,993.2778576,1189.749331,447.2898546,447.2898546,2275.022654,21381.04335,1,1,1,1,1,1,1
-3902,83,1158.4807,1467.561552,1024.893974,1203.126963,447.2898546,447.2898546,2310.22935,21711.83988,1,1,1,1,1,1,1
-3902.5,83,1158.4807,1467.561552,1053.54696,1262.406848,447.2898546,447.2898546,2375.997376,22329.78513,1,1,1,1,1,1,1
-3903,83,1158.4807,1467.561552,1145.949128,1308.407804,447.2898546,447.2898546,2494.373852,23440.75544,1,1,1,1,1,1,1
-3903.5,83,1158.4807,1467.561552,1301.546488,1362.044843,447.2898546,447.2898546,2683.340733,25213.52703,1,1,1,1,1,1,1
-3904,83,1158.4807,1467.561552,1374.433434,1542.940376,447.2898546,447.2898546,2896.537691,27215.64043,1,1,1,1,1,1,1
-3904.5,83,1158.4807,1467.561552,1544.76571,1647.767387,447.2898546,447.2898546,3126.755545,29379.06464,1,1,1,1,1,1,1
-3905,83,1158.4807,1467.561552,1625.75504,1798.840334,447.2898546,447.2898546,3321.157486,31206.84011,1,1,1,1,1,1,1
-3905.5,83,1158.4807,1467.561552,1651.652929,1926.066406,447.2898546,447.2898546,3450.303622,32421.90571,1,1,1,1,1,1,1
-3906,83,1158.4807,1467.561552,1801.804729,1899.637664,447.2898546,447.2898546,3556.080101,33417.39666,1,1,1,1,1,1,1
-3906.5,83,1158.4807,1467.561552,1902.149584,1902.149584,447.2898546,447.2898546,3641.541965,34221.23435,1,1,1,1,1,1,1
-3907,83,1158.4807,1467.561552,1841.434173,2049.016026,447.2898546,447.2898546,3715.36182,34914.68095,1,1,1,1,1,1,1
-3907.5,83,1158.4807,1467.561552,1852.115099,2116.717876,447.2898546,447.2898546,3790.591265,35620.70202,1,1,1,1,1,1,1
-3908,83,1158.4807,1467.561552,1926.998129,2115.692974,447.2898546,447.2898546,3864.705406,36316.09127,1,1,1,1,1,1,1
-3908.5,83,1158.4807,1467.561552,1987.999313,2125.132426,447.2898546,447.2898546,3935.389002,36979.29258,1,1,1,1,1,1,1
-3909,83,1158.4807,1467.561552,1959.133054,2223.910399,447.2898546,447.2898546,4005.541565,37637.5116,1,1,1,1,1,1,1
-3909.5,83,1158.4807,1467.561552,2075.818733,2189.502392,447.2898546,447.2898546,4087.144707,38403.24008,1,1,1,1,1,1,1
-3910,83,1158.4807,1467.561552,2118.174821,2234.234578,447.2898546,447.2898546,4165.513065,39139.2249,1,1,1,1,1,1,1
-3910.5,83,1158.4807,1467.561552,2075.482988,2340.176008,447.2898546,447.2898546,4224.946812,39697.86498,1,1,1,1,1,1,1
-3911,83,1158.4807,1467.561552,2118.255082,2341.572557,447.2898546,447.2898546,4270.612177,40127.23902,1,1,1,1,1,1,1
-3911.5,83,1158.4807,1467.561552,2200.972829,2291.229252,447.2898546,447.2898546,4304.528174,40446.15222,1,1,1,1,1,1,1
-3912,83,1158.4807,1467.561552,2137.772983,2361.47928,447.2898546,447.2898546,4311.914512,40515.60643,1,1,1,1,1,1,1
-3912.5,83,1158.4807,1467.561552,2069.009412,2412.321724,447.2898546,447.2898546,4293.140451,40339.07334,1,1,1,1,1,1,1
-3913,83,1158.4807,1467.561552,2034.642289,2420.495439,447.2898546,447.2898546,4265.698916,40081.03959,1,1,1,1,1,1,1
-3913.5,83,1158.4807,1467.561552,2099.696088,2322.474948,447.2898546,447.2898546,4231.162382,39756.29108,1,1,1,1,1,1,1
-3914,83,1158.4807,1467.561552,2026.204715,2360.608079,447.2898546,447.2898546,4196.151801,39427.15017,1,1,1,1,1,1,1
-3914.5,83,1158.4807,1467.561552,2032.211491,2323.911472,447.2898546,447.2898546,4168.686476,39169.04179,1,1,1,1,1,1,1
-3915,83,1158.4807,1467.561552,2096.938428,2227.474015,447.2898546,447.2898546,4141.595098,38914.49587,1,1,1,1,1,1,1
-3915.5,83,1158.4807,1467.561552,2030.44019,2257.765487,447.2898546,447.2898546,4109.674739,38614.66474,1,1,1,1,1,1,1
-3916,83,1158.4807,1467.561552,1978.352276,2276.168747,447.2898546,447.2898546,4077.267601,38310.4941,1,1,1,1,1,1,1
-3916.5,83,1158.4807,1467.561552,2049.342373,2206.130092,447.2898546,447.2898546,4078.221927,38319.44829,1,1,1,1,1,1,1
-3917,83,1158.4807,1467.561552,2019.247545,2245.827552,447.2898546,447.2898546,4087.857738,38409.85769,1,1,1,1,1,1,1
-3917.5,83,1158.4807,1467.561552,1965.159757,2260.990258,447.2898546,447.2898546,4048.798014,38043.37322,1,1,1,1,1,1,1
-3918,83,1158.4807,1467.561552,1937.808008,2229.521041,447.2898546,447.2898546,3989.773018,37489.56055,1,1,1,1,1,1,1
-3918.5,83,1158.4807,1467.561552,1900.549634,2215.849856,447.2898546,447.2898546,3938.667074,37010.04982,1,1,1,1,1,1,1
-3919,83,1158.4807,1467.561552,1920.540779,2138.297718,447.2898546,447.2898546,3880.907801,36468.11286,1,1,1,1,1,1,1
-3919.5,83,1158.4807,1467.561552,1850.428813,2141.506532,447.2898546,447.2898546,3813.774073,35838.21848,1,1,1,1,1,1,1
-3920,83,1158.4807,1467.561552,1791.112491,2145.398479,447.2898546,447.2898546,3758.15832,35316.39372,1,1,1,1,1,1,1
-3920.5,83,1158.4807,1467.561552,1818.910958,2121.203449,447.2898546,447.2898546,3761.774418,35350.32253,1,1,1,1,1,1,1
-3921,83,1158.4807,1467.561552,1815.377977,2145.13599,447.2898546,447.2898546,3782.243822,35542.38052,1,1,1,1,1,1,1
-3921.5,83,1158.4807,1467.561552,1876.958433,2075.922124,447.2898546,447.2898546,3774.584022,35470.51089,1,1,1,1,1,1,1
-3922,83,1158.4807,1467.561552,1815.306878,2086.483839,447.2898546,447.2898546,3723.89894,34994.92105,1,1,1,1,1,1,1
-3922.5,83,1158.4807,1467.561552,1736.556273,2080.050921,447.2898546,447.2898546,3652.030751,34319.94107,1,1,1,1,1,1,1
-3923,83,1158.4807,1467.561552,1790.012565,1929.486462,447.2898546,447.2898546,3571.365905,33561.22679,1,1,1,1,1,1,1
-3923.5,83,1158.4807,1467.561552,1714.548126,1892.316402,447.2898546,447.2898546,3475.220679,32656.40668,1,1,1,1,1,1,1
-3924,83,1158.4807,1467.561552,1634.010328,1855.423615,447.2898546,447.2898546,3374.823794,31711.54415,1,1,1,1,1,1,1
-3924.5,83,1158.4807,1467.561552,1567.02298,1814.212397,447.2898546,447.2898546,3283.483207,30852.1523,1,1,1,1,1,1,1
-3925,83,1158.4807,1467.561552,1564.80995,1719.865256,447.2898546,447.2898546,3204.541729,30110.07738,1,1,1,1,1,1,1
-3925.5,83,1158.4807,1467.561552,1561.616188,1636.569753,447.2898546,447.2898546,3132.249319,29430.71565,1,1,1,1,1,1,1
-3926,83,1158.4807,1467.561552,1461.012399,1667.631559,447.2898546,447.2898546,3072.934138,28873.26911,1,1,1,1,1,1,1
-3926.5,83,1158.4807,1467.561552,1386.744143,1683.245925,447.2898546,447.2898546,3022.906087,28403.10274,1,1,1,1,1,1,1
-3927,83,1158.4807,1467.561552,1408.069387,1610.527978,447.2898546,447.2898546,2979.071379,27991.14228,1,1,1,1,1,1,1
-3927.5,83,1158.4807,1467.561552,1456.190297,1526.583064,447.2898546,447.2898546,2948.515439,27703.97653,1,1,1,1,1,1,1
-3928,83,1158.4807,1467.561552,1378.541991,1562.935605,447.2898546,447.2898546,2913.292554,27372.95006,1,1,1,1,1,1,1
-3928.5,83,1158.4807,1467.561552,1368.240428,1514.00076,447.2898546,447.2898546,2863.354917,26903.64241,1,1,1,1,1,1,1
-3929,83,1158.4807,1467.561552,1343.294959,1483.944057,447.2898546,447.2898546,2820.564099,26501.55017,1,1,1,1,1,1,1
-3929.5,83,1158.4807,1467.561552,1279.716587,1501.549693,447.2898546,447.2898546,2786.685345,26183.23111,1,1,1,1,1,1,1
-3930,83,1158.4807,1467.561552,1236.920355,1481.58592,447.2898546,447.2898546,2732.821715,25677.73472,1,1,1,1,1,1,1
-3930.5,83,1158.4807,1467.561552,1185.071382,1401.062709,447.2898546,447.2898546,2613.233328,24555.83177,1,1,1,1,1,1,1
-3931,83,1158.4807,1467.561552,1160.957548,1276.841274,447.2898546,447.2898546,2478.971738,23296.29031,1,1,1,1,1,1,1
-3931.5,83,1158.4807,1467.561552,1103.024447,1218.067474,447.2898546,447.2898546,2381.675369,22383.00048,1,1,1,1,1,1,1
-3932,83,1158.4807,1467.561552,1057.508294,1146.802195,447.2898546,447.2898546,2291.185867,21532.91021,1,1,1,1,1,1,1
-3932.5,83,1158.4807,1467.561552,1019.994706,1055.359631,447.2898546,447.2898546,2180.429999,20491.23042,1,1,1,1,1,1,1
-3933,83,1158.4807,1467.561552,907.3538925,1040.388202,447.2898546,447.2898546,2064.367377,19399.10077,1,1,1,1,1,1,1
-3933.5,83,1158.4807,1467.561552,840.4250488,1000.57805,447.2898546,447.2898546,1966.792525,18480.89442,1,1,1,1,1,1,1
-3934,83,1158.4807,1467.561552,818.7175976,936.2304274,447.2898546,447.2898546,1888.343061,17742.82885,1,1,1,1,1,1,1
-3934.5,83,1158.4807,1467.561552,816.6798315,873.8362156,447.2898546,447.2898546,1830.189786,17196.15818,1,1,1,1,1,1,1
-3935,83,1158.4807,1467.561552,792.6556891,869.8189152,447.2898546,447.2898546,1805.034286,16959.80128,1,1,1,1,1,1,1
-3935.5,83,1158.4807,1467.561552,788.6386851,877.5483301,447.2898546,447.2898546,1808.36426,16991.08896,1,1,1,1,1,1,1
-3936,83,1158.4807,1467.561552,813.9909165,864.4886274,447.2898546,447.2898546,1819.391747,17094.7016,1,1,1,1,1,1,1
-3936.5,83,1158.4807,1467.561552,827.6374162,861.4185353,447.2898546,447.2898546,1828.879423,17183.84655,1,1,1,1,1,1,1
-3937,83,1158.4807,1467.561552,814.4844026,882.1666173,447.2898546,447.2898546,1835.692512,17247.86099,1,1,1,1,1,1,1
-3937.5,83,1158.4807,1467.561552,818.2634276,880.7100069,447.2898546,447.2898546,1837.775838,17267.43569,1,1,1,1,1,1,1
-3938,83,1158.4807,1467.561552,795.9070289,903.1334751,447.2898546,447.2898546,1837.836,17268.0011,1,1,1,1,1,1,1
-3938.5,83,1158.4807,1467.561552,792.1033562,905.4343354,447.2898546,447.2898546,1836.488489,17255.33997,1,1,1,1,1,1,1
-3939,83,1158.4807,1467.561552,786.9261189,887.3847724,447.2898546,447.2898546,1815.652539,17059.56865,1,1,1,1,1,1,1
-3939.5,83,1158.4807,1467.561552,751.7633501,881.9458173,447.2898546,447.2898546,1779.229155,16717.34063,1,1,1,1,1,1,1
-3940,83,1158.4807,1467.561552,734.2425803,856.533826,447.2898546,447.2898546,1740.714229,16355.46062,1,1,1,1,1,1,1
-3940.5,83,1158.4807,1467.561552,721.3567353,829.9480718,447.2898546,447.2898546,1705.304943,16022.7611,1,1,1,1,1,1,1
-3941,83,1158.4807,1467.561552,693.841612,819.6631144,447.2898546,447.2898546,1671.394289,15704.14257,1,1,1,1,1,1,1
-3941.5,83,1158.4807,1467.561552,711.2523617,766.5875153,447.2898546,447.2898546,1639.399372,15403.52343,1,1,1,1,1,1,1
-3942,83,1158.4807,1467.561552,737.0654295,751.9556402,447.2898546,447.2898546,1649.430432,15497.77333,1,1,1,1,1,1,1
-3942.5,83,1158.4807,1467.561552,716.8822408,825.496058,447.2898546,447.2898546,1697.296883,15947.51873,1,1,1,1,1,1,1
-3943,83,1158.4807,1467.561552,767.843769,853.4567008,447.2898546,447.2898546,1768.09758,16612.75045,1,1,1,1,1,1,1
-3943.5,83,1158.4807,1467.561552,867.9908755,896.7909052,447.2898546,447.2898546,1897.669983,17830.85433,1,1,1,1,1,1,1
-3944,83,1158.4807,1467.561552,927.2750658,1027.135861,447.2898546,447.2898546,2070.463989,19456.47141,1,1,1,1,1,1,1
-3944.5,83,1158.4807,1467.561552,1009.534045,1161.506912,447.2898546,447.2898546,2259.954655,21238.89714,1,1,1,1,1,1,1
-3945,83,1158.4807,1467.561552,1154.207349,1223.533938,447.2898546,447.2898546,2430.950935,22845.38489,1,1,1,1,1,1,1
-3945.5,83,1158.4807,1467.561552,1243.665171,1321.501726,447.2898546,447.2898546,2594.254906,24377.79053,1,1,1,1,1,1,1
-3946,83,1158.4807,1467.561552,1320.094919,1430.102829,447.2898546,447.2898546,2756.085272,25896.32267,1,1,1,1,1,1,1
-3946.5,83,1158.4807,1467.561552,1375.609471,1573.529691,447.2898546,447.2898546,2921.972209,27454.55218,1,1,1,1,1,1,1
-3947,83,1158.4807,1467.561552,1432.982539,1705.224609,447.2898546,447.2898546,3081.092132,28949.93774,1,1,1,1,1,1,1
-3947.5,83,1158.4807,1467.561552,1495.559167,1791.384057,447.2898546,447.2898546,3205.606246,30120.0555,1,1,1,1,1,1,1
-3948,83,1158.4807,1467.561552,1556.556286,1815.079572,447.2898546,447.2898546,3274.996305,30772.22256,1,1,1,1,1,1,1
-3948.5,83,1158.4807,1467.561552,1569.889693,1830.459368,447.2898546,447.2898546,3298.662214,30994.76697,1,1,1,1,1,1,1
-3949,83,1158.4807,1467.561552,1626.006754,1785.866594,447.2898546,447.2898546,3308.514838,31087.49255,1,1,1,1,1,1,1
-3949.5,83,1158.4807,1467.561552,1600.486616,1816.126424,447.2898546,447.2898546,3312.566443,31125.62352,1,1,1,1,1,1,1
-3950,83,1158.4807,1467.561552,1664.236299,1756.581019,447.2898546,447.2898546,3316.16091,31159.45222,1,1,1,1,1,1,1
-3950.5,83,1158.4807,1467.561552,1649.061733,1785.781132,447.2898546,447.2898546,3328.152077,31272.30382,1,1,1,1,1,1,1
-3951,83,1158.4807,1467.561552,1620.03366,1826.846467,447.2898546,447.2898546,3338.443056,31369.15511,1,1,1,1,1,1,1
-3951.5,83,1158.4807,1467.561552,1609.842442,1839.653535,447.2898546,447.2898546,3340.679163,31390.19977,1,1,1,1,1,1,1
-3952,83,1158.4807,1467.561552,1612.395255,1830.628449,447.2898546,447.2898546,3335.146383,31338.12929,1,1,1,1,1,1,1
-3952.5,83,1158.4807,1467.561552,1635.502124,1796.001677,447.2898546,447.2898546,3325.297772,31245.44107,1,1,1,1,1,1,1
-3953,83,1158.4807,1467.561552,1660.981124,1752.403406,447.2898546,447.2898546,3309.806073,31099.64434,1,1,1,1,1,1,1
-3953.5,83,1158.4807,1467.561552,1643.197424,1732.976133,447.2898546,447.2898546,3278.573275,30805.82378,1,1,1,1,1,1,1
-3954,83,1158.4807,1467.561552,1559.481337,1793.096594,447.2898546,447.2898546,3259.18729,30623.53914,1,1,1,1,1,1,1
-3954.5,83,1158.4807,1467.561552,1543.040255,1823.689468,447.2898546,447.2898546,3270.465419,30729.51181,1,1,1,1,1,1,1
-3955,83,1158.4807,1467.561552,1534.485842,1850.139519,447.2898546,447.2898546,3285.218906,30868.24851,1,1,1,1,1,1,1
-3955.5,83,1158.4807,1467.561552,1639.329666,1753.809405,447.2898546,447.2898546,3292.49788,30936.75256,1,1,1,1,1,1,1
-3956,83,1158.4807,1467.561552,1707.187313,1707.187313,447.2898546,447.2898546,3310.652943,31107.61492,1,1,1,1,1,1,1
-3956.5,83,1158.4807,1467.561552,1691.33716,1808.495314,447.2898546,447.2898546,3383.714943,31795.22136,1,1,1,1,1,1,1
-3957,83,1158.4807,1467.561552,1634.350244,1931.134234,447.2898546,447.2898546,3439.843879,32323.46619,1,1,1,1,1,1,1
-3957.5,83,1158.4807,1467.561552,1585.91363,1938.338881,447.2898546,447.2898546,3404.592565,31991.70625,1,1,1,1,1,1,1
-3958,83,1158.4807,1467.561552,1579.801675,1880.22395,447.2898546,447.2898546,3349.681824,31474.92624,1,1,1,1,1,1,1
-3958.5,83,1158.4807,1467.561552,1638.897095,1776.968348,447.2898546,447.2898546,3311.926628,31119.60167,1,1,1,1,1,1,1
-3959,83,1158.4807,1467.561552,1618.402666,1752.462476,447.2898546,447.2898546,3274.279953,30765.46846,1,1,1,1,1,1,1
-3959.5,83,1158.4807,1467.561552,1621.365296,1699.905373,447.2898546,447.2898546,3234.287112,30389.58096,1,1,1,1,1,1,1
-3960,83,1158.4807,1467.561552,1532.759187,1761.754159,447.2898546,447.2898546,3213.005632,30189.62377,1,1,1,1,1,1,1
-3960.5,83,1158.4807,1467.561552,1529.816997,1795.957374,447.2898546,447.2898546,3237.868897,30423.23522,1,1,1,1,1,1,1
-3961,83,1158.4807,1467.561552,1632.904986,1734.35908,447.2898546,447.2898546,3271.00433,30734.60092,1,1,1,1,1,1,1
-3961.5,83,1158.4807,1467.561552,1634.031815,1757.975127,447.2898546,447.2898546,3291.528818,30927.63284,1,1,1,1,1,1,1
-3962,83,1158.4807,1467.561552,1577.992121,1839.658192,447.2898546,447.2898546,3313.45252,31133.96264,1,1,1,1,1,1,1
-3962.5,83,1158.4807,1467.561552,1614.738843,1833.459043,447.2898546,447.2898546,3339.569617,31379.75744,1,1,1,1,1,1,1
-3963,83,1158.4807,1467.561552,1704.282531,1762.702246,447.2898546,447.2898546,3355.631964,31530.92438,1,1,1,1,1,1,1
-3963.5,83,1158.4807,1467.561552,1712.44188,1735.192707,447.2898546,447.2898546,3339.0883,31375.22732,1,1,1,1,1,1,1
-3964,83,1158.4807,1467.561552,1662.158335,1764.404025,447.2898546,447.2898546,3321.072631,31205.67688,1,1,1,1,1,1,1
-3964.5,83,1158.4807,1467.561552,1656.473031,1770.852064,447.2898546,447.2898546,3321.724127,31211.80865,1,1,1,1,1,1,1
-3965,83,1158.4807,1467.561552,1635.830911,1783.630375,447.2898546,447.2898546,3315.00095,31148.5348,1,1,1,1,1,1,1
-3965.5,83,1158.4807,1467.561552,1658.640263,1738.744702,447.2898546,447.2898546,3296.127113,30970.90793,1,1,1,1,1,1,1
-3966,83,1158.4807,1467.561552,1585.702952,1798.719743,447.2898546,447.2898546,3285.045436,30866.61571,1,1,1,1,1,1,1
-3966.5,83,1158.4807,1467.561552,1611.456163,1805.248806,447.2898546,447.2898546,3312.645007,31126.36293,1,1,1,1,1,1,1
-3967,83,1158.4807,1467.561552,1687.593034,1756.840916,447.2898546,447.2898546,3336.35212,31349.47676,1,1,1,1,1,1,1
-3967.5,83,1158.4807,1467.561552,1695.670108,1729.926069,447.2898546,447.2898546,3320.246448,31197.90154,1,1,1,1,1,1,1
-3968,83,1158.4807,1467.561552,1624.042422,1794.132733,447.2898546,447.2898546,3313.901689,31138.18921,1,1,1,1,1,1,1
-3968.5,83,1158.4807,1467.561552,1666.140434,1769.829507,447.2898546,447.2898546,3329.115417,31281.37011,1,1,1,1,1,1,1
-3969,83,1158.4807,1467.561552,1632.514508,1803.216889,447.2898546,447.2898546,3328.911826,31279.45409,1,1,1,1,1,1,1
-3969.5,83,1158.4807,1467.561552,1635.100643,1784.042981,447.2898546,447.2898546,3314.730439,31145.98937,1,1,1,1,1,1,1
-3970,83,1158.4807,1467.561552,1637.895684,1762.378272,447.2898546,447.2898546,3298.597224,30994.15555,1,1,1,1,1,1,1
-3970.5,83,1158.4807,1467.561552,1634.303493,1747.21358,447.2898546,447.2898546,3282.573723,30843.35598,1,1,1,1,1,1,1
-3971,83,1158.4807,1467.561552,1668.132111,1702.33642,447.2898546,447.2898546,3273.416501,30757.234,1,1,1,1,1,1,1
-3971.5,83,1158.4807,1467.561552,1583.22462,1783.86734,447.2898546,447.2898546,3270.73099,30732.00145,1,1,1,1,1,1,1
-3972,83,1158.4807,1467.561552,1516.059177,1840.325238,447.2898546,447.2898546,3262.214349,30651.98051,1,1,1,1,1,1,1
-3972.5,83,1158.4807,1467.561552,1601.714824,1736.984159,447.2898546,447.2898546,3248.148448,30519.81998,1,1,1,1,1,1,1
-3973,83,1158.4807,1467.561552,1558.222557,1767.483009,447.2898546,447.2898546,3237.814338,30422.72246,1,1,1,1,1,1,1
-3973.5,83,1158.4807,1467.561552,1547.387318,1780.743597,447.2898546,447.2898546,3239.743442,30440.84808,1,1,1,1,1,1,1
-3974,83,1158.4807,1467.561552,1582.337312,1737.641325,447.2898546,447.2898546,3233.260026,30379.93074,1,1,1,1,1,1,1
-3974.5,83,1158.4807,1467.561552,1536.67302,1755.243393,447.2898546,447.2898546,3210.94103,30170.22542,1,1,1,1,1,1,1
-3975,83,1158.4807,1467.561552,1580.817859,1713.187002,447.2898546,447.2898546,3212.601784,30185.82944,1,1,1,1,1,1,1
-3975.5,83,1158.4807,1467.561552,1637.540512,1681.8852,447.2898546,447.2898546,3232.819469,30375.79141,1,1,1,1,1,1,1
-3976,83,1158.4807,1467.561552,1632.214228,1687.360781,447.2898546,447.2898546,3232.938502,30376.90993,1,1,1,1,1,1,1
-3976.5,83,1158.4807,1467.561552,1607.231895,1695.104492,447.2898546,447.2898546,3219.227627,30248.08471,1,1,1,1,1,1,1
-3977,83,1158.4807,1467.561552,1632.600758,1666.00205,447.2898546,447.2898546,3216.258171,30220.1845,1,1,1,1,1,1,1
-3977.5,83,1158.4807,1467.561552,1581.667684,1735.864325,447.2898546,447.2898546,3231.313275,30361.6399,1,1,1,1,1,1,1
-3978,83,1158.4807,1467.561552,1553.988589,1764.324282,447.2898546,447.2898546,3231.934659,30367.47815,1,1,1,1,1,1,1
-3978.5,83,1158.4807,1467.561552,1614.793569,1681.964473,447.2898546,447.2898546,3214.791526,30206.40371,1,1,1,1,1,1,1
-3979,83,1158.4807,1467.561552,1530.794716,1747.565724,447.2898546,447.2898546,3200.158513,30068.91472,1,1,1,1,1,1,1
-3979.5,83,1158.4807,1467.561552,1490.914737,1774.243115,447.2898546,447.2898546,3189.305879,29966.93361,1,1,1,1,1,1,1
-3980,83,1158.4807,1467.561552,1480.906271,1785.518037,447.2898546,447.2898546,3190.451937,29977.70602,1,1,1,1,1,1,1
-3980.5,83,1158.4807,1467.561552,1581.047441,1713.383197,447.2898546,447.2898546,3212.922468,30188.84192,1,1,1,1,1,1,1
-3981,83,1158.4807,1467.561552,1655.579421,1689.02547,447.2898546,447.2898546,3252.845729,30563.9551,1,1,1,1,1,1,1
-3981.5,83,1158.4807,1467.561552,1606.336771,1799.246707,447.2898546,447.2898546,3303.375412,31039.17303,1,1,1,1,1,1,1
-3982,83,1158.4807,1467.561552,1600.706199,1854.12039,447.2898546,447.2898546,3345.2362,31433.08734,1,1,1,1,1,1,1
-3982.5,83,1158.4807,1467.561552,1647.947637,1846.086112,447.2898546,447.2898546,3378.756789,31748.55847,1,1,1,1,1,1,1
-3983,83,1158.4807,1467.561552,1700.92322,1806.611699,447.2898546,447.2898546,3390.299258,31857.18811,1,1,1,1,1,1,1
-3983.5,83,1158.4807,1467.561552,1675.043309,1789.94329,447.2898546,447.2898546,3353.92293,31514.84069,1,1,1,1,1,1,1
-3984,83,1158.4807,1467.561552,1572.390002,1819.506986,447.2898546,447.2898546,3291.819182,30930.44432,1,1,1,1,1,1,1
-3984.5,83,1158.4807,1467.561552,1581.062521,1726.807242,447.2898546,447.2898546,3223.629087,30289.4404,1,1,1,1,1,1,1
-3985,83,1158.4807,1467.561552,1485.232371,1716.846784,447.2898546,447.2898546,3135.411226,29460.42664,1,1,1,1,1,1,1
-3985.5,83,1158.4807,1467.561552,1432.108241,1660.399655,447.2898546,447.2898546,3042.112355,28583.60432,1,1,1,1,1,1,1
-3986,83,1158.4807,1467.561552,1441.119019,1582.722072,447.2898546,447.2898546,2983.543566,28033.17188,1,1,1,1,1,1,1
-3986.5,83,1158.4807,1467.561552,1400.045205,1578.035873,447.2898546,447.2898546,2944.514179,27666.37217,1,1,1,1,1,1,1
-3987,83,1158.4807,1467.561552,1429.77159,1499.840004,447.2898546,447.2898546,2903.172523,27277.84185,1,1,1,1,1,1,1
-3987.5,83,1158.4807,1467.561552,1352.538527,1522.771689,447.2898546,447.2898546,2857.738179,26850.86021,1,1,1,1,1,1,1
-3988,83,1158.4807,1467.561552,1284.714406,1538.83374,447.2898546,447.2898546,2817.843886,26475.9915,1,1,1,1,1,1,1
-3988.5,83,1158.4807,1467.561552,1310.017918,1468.568423,447.2898546,447.2898546,2784.710432,26164.67489,1,1,1,1,1,1,1
-3989,83,1158.4807,1467.561552,1292.7034,1457.183179,447.2898546,447.2898546,2761.349174,25945.35004,1,1,1,1,1,1,1
-3989.5,83,1158.4807,1467.561552,1287.542762,1442.577732,447.2898546,447.2898546,2743.557965,25778.4403,1,1,1,1,1,1,1
-3990,83,1158.4807,1467.561552,1326.519517,1390.493075,447.2898546,447.2898546,2731.693062,25667.13243,1,1,1,1,1,1,1
-3990.5,83,1158.4807,1467.561552,1290.031724,1425.091704,447.2898546,447.2898546,2729.982656,25651.08672,1,1,1,1,1,1,1
-3991,83,1158.4807,1467.561552,1301.690053,1458.024505,447.2898546,447.2898546,2768.159061,26009.36854,1,1,1,1,1,1,1
-3991.5,83,1158.4807,1467.561552,1367.982202,1471.976544,447.2898546,447.2898546,2830.06529,26590.82356,1,1,1,1,1,1,1
-3992,83,1158.4807,1467.561552,1377.235261,1522.116927,447.2898546,447.2898546,2877.362497,27035.27787,1,1,1,1,1,1,1
-3992.5,83,1158.4807,1467.561552,1371.813901,1567.737004,447.2898546,447.2898546,2911.649583,27357.50924,1,1,1,1,1,1,1
-3993,83,1158.4807,1467.561552,1421.644139,1550.705952,447.2898546,447.2898546,2939.625708,27620.43039,1,1,1,1,1,1,1
-3993.5,83,1158.4807,1467.561552,1422.629121,1572.086552,447.2898546,447.2898546,2958.70161,27799.70648,1,1,1,1,1,1,1
-3994,83,1158.4807,1467.561552,1404.993622,1584.35451,447.2898546,447.2898546,2954.12368,27756.68268,1,1,1,1,1,1,1
-3994.5,83,1158.4807,1467.561552,1448.997609,1509.466239,447.2898546,447.2898546,2927.781636,27509.11885,1,1,1,1,1,1,1
-3995,83,1158.4807,1467.561552,1402.604182,1518.145377,447.2898546,447.2898546,2895.613309,27206.79989,1,1,1,1,1,1,1
-3995.5,83,1158.4807,1467.561552,1393.982975,1490.975218,447.2898546,447.2898546,2865.085078,26919.89446,1,1,1,1,1,1,1
-3996,83,1158.4807,1467.561552,1371.22786,1484.918181,447.2898546,447.2898546,2842.076136,26703.67692,1,1,1,1,1,1,1
-3996.5,83,1158.4807,1467.561552,1344.623788,1486.163134,447.2898546,447.2898546,2823.178581,26526.11501,1,1,1,1,1,1,1
-3997,83,1158.4807,1467.561552,1306.008089,1502.051816,447.2898546,447.2898546,2806.429862,26368.74725,1,1,1,1,1,1,1
-3997.5,83,1158.4807,1467.561552,1310.779434,1478.633403,447.2898546,447.2898546,2792.688376,26239.63466,1,1,1,1,1,1,1
-3998,83,1158.4807,1467.561552,1332.505564,1453.342498,447.2898546,447.2898546,2790.061243,26214.95057,1,1,1,1,1,1,1
-3998.5,83,1158.4807,1467.561552,1320.597009,1469.153088,447.2898546,447.2898546,2792.936828,26241.96903,1,1,1,1,1,1,1
-3999,83,1158.4807,1467.561552,1279.081621,1501.003723,447.2898546,447.2898546,2785.814268,26175.04639,1,1,1,1,1,1,1
-3999.5,83,1158.4807,1467.561552,1284.049208,1477.881184,447.2898546,447.2898546,2771.667284,26042.18407,1,1,1,1,1,1,1
-4000,83,1158.4807,1467.561552,1328.600061,1420.821485,447.2898546,447.2898546,2761.027411,25942.32504,1,1,1,1,1,1,1
-4000.5,83,1158.4807,1467.561552,1300.328221,1446.20029,447.2898546,447.2898546,2758.409474,25917.76562,1,1,1,1,1,1,1
-4001,83,1158.4807,1467.561552,1270.211792,1481.033217,447.2898546,447.2898546,2762.678565,25957.81545,1,1,1,1,1,1,1
-4001.5,83,1158.4807,1467.561552,1315.707375,1445.037872,447.2898546,447.2898546,2771.059421,26036.45187,1,1,1,1,1,1,1
-4002,83,1158.4807,1467.561552,1346.46724,1429.753874,447.2898546,447.2898546,2782.966484,26148.28889,1,1,1,1,1,1,1
-4002.5,83,1158.4807,1467.561552,1383.274425,1411.469785,447.2898546,447.2898546,2796.617507,26276.55212,1,1,1,1,1,1,1
-4003,83,1158.4807,1467.561552,1384.10652,1421.290115,447.2898546,447.2898546,2804.46726,26350.30692,1,1,1,1,1,1,1
-4003.5,83,1158.4807,1467.561552,1317.482063,1484.757163,447.2898546,447.2898546,2802.140977,26328.44956,1,1,1,1,1,1,1
-4004,83,1158.4807,1467.561552,1345.551387,1477.527557,447.2898546,447.2898546,2817.498471,26472.74611,1,1,1,1,1,1,1
-4004.5,83,1158.4807,1467.561552,1390.230678,1476.224328,447.2898546,447.2898546,2850.585836,26783.64791,1,1,1,1,1,1,1
-4005,83,1158.4807,1467.561552,1402.258242,1469.428901,447.2898546,447.2898546,2853.891737,26814.70053,1,1,1,1,1,1,1
-4005.5,83,1158.4807,1467.561552,1416.560435,1435.92446,447.2898546,447.2898546,2839.16816,26676.35066,1,1,1,1,1,1,1
-4006,83,1158.4807,1467.561552,1412.989874,1431.825967,447.2898546,447.2898546,2833.516684,26623.25071,1,1,1,1,1,1,1
-4006.5,83,1158.4807,1467.561552,1417.222372,1426.830998,447.2898546,447.2898546,2832.954781,26617.97102,1,1,1,1,1,1,1
-4007,83,1158.4807,1467.561552,1367.455399,1441.382969,447.2898546,447.2898546,2807.003915,26374.14114,1,1,1,1,1,1,1
-4007.5,83,1158.4807,1467.561552,1313.660034,1423.131703,447.2898546,447.2898546,2747.974878,25819.97977,1,1,1,1,1,1,1
-4008,83,1158.4807,1467.561552,1291.97025,1381.320473,447.2898546,447.2898546,2692.119751,25295.88532,1,1,1,1,1,1,1
-4008.5,83,1158.4807,1467.561552,1256.351845,1369.718169,447.2898546,447.2898546,2649.379385,24894.92743,1,1,1,1,1,1,1
-4009,83,1158.4807,1467.561552,1221.648206,1368.219239,447.2898546,447.2898546,2616.611827,24587.52676,1,1,1,1,1,1,1
-4009.5,83,1158.4807,1467.561552,1210.756077,1347.374209,447.2898546,447.2898546,2587.886635,24318.04816,1,1,1,1,1,1,1
-4010,83,1158.4807,1467.561552,1200.726821,1327.119118,447.2898546,447.2898546,2560.475922,24060.90149,1,1,1,1,1,1,1
-4010.5,83,1158.4807,1467.561552,1195.307179,1303.775653,447.2898546,447.2898546,2534.4411,23816.66219,1,1,1,1,1,1,1
-4011,83,1158.4807,1467.561552,1145.23266,1325.555423,447.2898546,447.2898546,2508.83069,23576.40477,1,1,1,1,1,1,1
-4011.5,83,1158.4807,1467.561552,1167.89748,1274.952667,447.2898546,447.2898546,2483.543994,23339.18379,1,1,1,1,1,1,1
-4012,83,1158.4807,1467.561552,1120.37197,1296.274359,447.2898546,447.2898546,2459.826249,23116.68181,1,1,1,1,1,1,1
-4012.5,83,1158.4807,1467.561552,1076.130195,1315.270239,447.2898546,447.2898546,2436.975949,22902.31739,1,1,1,1,1,1,1
-4013,83,1158.4807,1467.561552,1142.376751,1222.871159,447.2898546,447.2898546,2413.743653,22684.34169,1,1,1,1,1,1,1
-4013.5,83,1158.4807,1467.561552,1099.906169,1238.75081,447.2898546,447.2898546,2392.8789,22488.40161,1,1,1,1,1,1,1
-4014,83,1158.4807,1467.561552,1086.997241,1250.878847,447.2898546,447.2898546,2392.304028,22483.00037,1,1,1,1,1,1,1
-4014.5,83,1158.4807,1467.561552,1092.36232,1265.139554,447.2898546,447.2898546,2407.329978,22624.13556,1,1,1,1,1,1,1
-4015,83,1158.4807,1467.561552,1078.737519,1283.333665,447.2898546,447.2898546,2410.429752,22653.28084,1,1,1,1,1,1,1
-4015.5,83,1158.4807,1467.561552,1079.202784,1275.556933,447.2898546,447.2898546,2404.738773,22599.83385,1,1,1,1,1,1,1
-4016,83,1158.4807,1467.561552,1095.467589,1252.218111,447.2898546,447.2898546,2399.521571,22550.81466,1,1,1,1,1,1,1
-4016.5,83,1158.4807,1467.561552,1092.728743,1248.705936,447.2898546,447.2898546,2394.922641,22507.60377,1,1,1,1,1,1,1
-4017,83,1158.4807,1467.561552,1110.355418,1227.579698,447.2898546,447.2898546,2392.348106,22483.41395,1,1,1,1,1,1,1
-4017.5,83,1158.4807,1467.561552,1143.870395,1190.903504,447.2898546,447.2898546,2390.022,22461.5583,1,1,1,1,1,1,1
-4018,83,1158.4807,1467.561552,1121.794283,1190.643845,447.2898546,447.2898546,2373.588392,22307.15065,1,1,1,1,1,1,1
-4018.5,83,1158.4807,1467.561552,1050.641734,1232.283834,447.2898546,447.2898546,2351.87547,22103.13993,1,1,1,1,1,1,1
-4019,83,1158.4807,1467.561552,1045.102149,1227.201628,447.2898546,447.2898546,2344.060471,22029.71158,1,1,1,1,1,1,1
-4019.5,83,1158.4807,1467.561552,1109.006838,1162.725011,447.2898546,447.2898546,2343.639766,22025.75873,1,1,1,1,1,1,1
-4020,83,1158.4807,1467.561552,1133.984763,1133.984763,447.2898546,447.2898546,2340.871455,21999.74828,1,1,1,1,1,1,1
-4020.5,83,1158.4807,1467.561552,1131.185332,1131.185332,447.2898546,447.2898546,2336.752203,21961.04421,1,1,1,1,1,1,1
-4021,83,1158.4807,1467.561552,1066.114404,1218.185025,447.2898546,447.2898546,2352.885905,22112.63354,1,1,1,1,1,1,1
-4021.5,83,1158.4807,1467.561552,1045.372855,1277.677934,447.2898546,447.2898546,2381.396533,22380.515,1,1,1,1,1,1,1
-4022,83,1158.4807,1467.561552,1079.27056,1267.203047,447.2898546,447.2898546,2398.630043,22542.438,1,1,1,1,1,1,1
-4022.5,83,1158.4807,1467.561552,1128.626014,1231.194067,447.2898546,447.2898546,2408.887982,22638.78601,1,1,1,1,1,1,1
-4023,83,1158.4807,1467.561552,1157.939482,1213.351105,447.2898546,447.2898546,2418.774222,22731.56255,1,1,1,1,1,1,1
-4023.5,83,1158.4807,1467.561552,1158.767779,1222.173342,447.2898546,447.2898546,2427.509646,22813.51173,1,1,1,1,1,1,1
-4024,83,1158.4807,1467.561552,1172.780955,1212.742382,447.2898546,447.2898546,2431.65707,22852.41955,1,1,1,1,1,1,1
-4024.5,83,1158.4807,1467.561552,1135.646577,1254.597992,447.2898546,447.2898546,2435.930667,22892.51147,1,1,1,1,1,1,1
-4025,83,1158.4807,1467.561552,1147.028004,1267.866884,447.2898546,447.2898546,2458.241767,23101.81773,1,1,1,1,1,1,1
-4025.5,83,1158.4807,1467.561552,1127.712919,1323.672243,447.2898546,447.2898546,2491.269967,23411.66322,1,1,1,1,1,1,1
-4026,83,1158.4807,1467.561552,1180.730485,1296.872587,447.2898546,447.2898546,2515.000407,23634.28459,1,1,1,1,1,1,1
-4026.5,83,1158.4807,1467.561552,1192.64723,1291.686101,447.2898546,447.2898546,2521.090981,23691.42202,1,1,1,1,1,1,1
-4027,83,1158.4807,1467.561552,1161.533001,1318.340522,447.2898546,447.2898546,2517.054841,23653.5576,1,1,1,1,1,1,1
-4027.5,83,1158.4807,1467.561552,1171.200077,1294.954656,447.2898546,447.2898546,2504.638344,23537.07509,1,1,1,1,1,1,1
-4028,83,1158.4807,1467.561552,1183.436031,1232.52832,447.2898546,447.2898546,2459.210356,23110.90362,1,1,1,1,1,1,1
-4028.5,83,1158.4807,1467.561552,1160.46147,1199.577514,447.2898546,447.2898546,2410.510192,22653.91421,1,1,1,1,1,1,1
-4029,83,1158.4807,1467.561552,1104.581583,1245.064392,447.2898546,447.2898546,2400.963687,22564.36486,1,1,1,1,1,1,1
-4029.5,83,1158.4807,1467.561552,1133.23443,1228.153035,447.2898546,447.2898546,2410.219075,22651.27877,1,1,1,1,1,1,1
-4030,83,1158.4807,1467.561552,1148.786679,1227.870572,447.2898546,447.2898546,2423.631622,22777.13133,1,1,1,1,1,1,1
-4030.5,83,1158.4807,1467.561552,1125.127762,1268.542805,447.2898546,447.2898546,2439.031179,22921.59814,1,1,1,1,1,1,1
-4031,83,1158.4807,1467.561552,1116.742555,1284.854337,447.2898546,447.2898546,2446.20486,22988.89587,1,1,1,1,1,1,1
-4031.5,83,1158.4807,1467.561552,1114.982122,1282.828893,447.2898546,447.2898546,2442.778346,22956.75089,1,1,1,1,1,1,1
-4032,83,1158.4807,1467.561552,1088.973638,1286.591659,447.2898546,447.2898546,2422.644003,22767.86607,1,1,1,1,1,1,1
-4032.5,83,1158.4807,1467.561552,1059.104776,1285.582948,447.2898546,447.2898546,2397.620665,22532.93065,1,1,1,1,1,1,1
-4033,83,1158.4807,1467.561552,1083.095405,1238.602932,447.2898546,447.2898546,2380.401877,22371.16958,1,1,1,1,1,1,1
-4033.5,83,1158.4807,1467.561552,1112.286664,1197.214419,447.2898546,447.2898546,2371.427888,22286.85154,1,1,1,1,1,1,1
-4034,83,1158.4807,1467.561552,1102.747419,1202.423231,447.2898546,447.2898546,2368.241835,22256.91586,1,1,1,1,1,1,1
-4034.5,83,1158.4807,1467.561552,1085.907177,1216.252164,447.2898546,447.2898546,2366.026244,22236.09834,1,1,1,1,1,1,1
-4035,83,1158.4807,1467.561552,1053.349844,1236.080556,447.2898546,447.2898546,2356.661296,22148.1067,1,1,1,1,1,1,1
-4035.5,83,1158.4807,1467.561552,1040.819993,1230.216744,447.2898546,447.2898546,2343.128239,22020.95226,1,1,1,1,1,1,1
-4036,83,1158.4807,1467.561552,1032.899946,1228.803221,447.2898546,447.2898546,2336.260891,21956.42778,1,1,1,1,1,1,1
-4036.5,83,1158.4807,1467.561552,1053.77758,1212.669221,447.2898546,447.2898546,2339.75171,21989.22698,1,1,1,1,1,1,1
-4037,83,1158.4807,1467.561552,1114.937925,1160.93889,447.2898546,447.2898546,2346.689793,22054.41605,1,1,1,1,1,1,1
-4037.5,83,1158.4807,1467.561552,1091.720571,1198.118644,447.2898546,447.2898546,2356.961714,22150.92955,1,1,1,1,1,1,1
-4038,83,1158.4807,1467.561552,1067.672587,1261.819582,447.2898546,447.2898546,2386.135468,22425.04159,1,1,1,1,1,1,1
-4038.5,83,1158.4807,1467.561552,1069.074579,1297.837953,447.2898546,447.2898546,2415.569758,22701.45309,1,1,1,1,1,1,1
-4039,83,1158.4807,1467.561552,1140.592153,1220.89105,447.2898546,447.2898546,2410.643699,22655.24078,1,1,1,1,1,1,1
-4039.5,83,1158.4807,1467.561552,1137.752668,1199.439739,447.2898546,447.2898546,2391.801679,22478.28006,1,1,1,1,1,1,1
-4040,83,1158.4807,1467.561552,1115.310139,1208.252651,447.2898546,447.2898546,2381.773301,22384.0552,1,1,1,1,1,1,1
-4040.5,83,1158.4807,1467.561552,1145.424879,1176.784288,447.2898546,447.2898546,2380.777185,22374.69551,1,1,1,1,1,1,1
-4041,83,1158.4807,1467.561552,1097.110605,1236.516236,447.2898546,447.2898546,2389.177431,22453.6231,1,1,1,1,1,1,1
-4041.5,83,1158.4807,1467.561552,1060.658926,1287.581491,447.2898546,447.2898546,2399.929532,22554.64826,1,1,1,1,1,1,1
-4042,83,1158.4807,1467.561552,1082.387039,1270.966082,447.2898546,447.2898546,2403.691236,22589.99212,1,1,1,1,1,1,1
-4042.5,83,1158.4807,1467.561552,1078.640015,1274.523971,447.2898546,447.2898546,2403.551778,22588.68199,1,1,1,1,1,1,1
-4043,83,1158.4807,1467.561552,1100.359771,1217.5878,447.2898546,447.2898546,2377.642106,22345.23937,1,1,1,1,1,1,1
-4043.5,83,1158.4807,1467.561552,1094.485095,1147.086232,447.2898546,447.2898546,2320.117239,21804.74484,1,1,1,1,1,1,1
-4044,83,1158.4807,1467.561552,1029.810856,1100.063456,447.2898546,447.2898546,2228.090506,20939.54165,1,1,1,1,1,1,1
-4044.5,83,1158.4807,1467.561552,958.6234913,1052.106298,447.2898546,447.2898546,2121.946788,19940.93826,1,1,1,1,1,1,1
-4045,83,1158.4807,1467.561552,908.9759703,1017.93154,447.2898546,447.2898546,2045.321678,19219.87501,1,1,1,1,1,1,1
-4045.5,83,1158.4807,1467.561552,912.0743723,950.6704772,447.2898546,447.2898546,1986.66723,18667.92077,1,1,1,1,1,1,1
-4046,83,1158.4807,1467.561552,859.0571468,967.4564769,447.2898546,447.2898546,1953.546267,18356.24345,1,1,1,1,1,1,1
-4046.5,83,1158.4807,1467.561552,860.9893693,964.7387303,447.2898546,447.2898546,1952.828304,18349.48715,1,1,1,1,1,1,1
-4047,83,1158.4807,1467.561552,885.6549591,959.459539,447.2898546,447.2898546,1970.550057,18516.25353,1,1,1,1,1,1,1
-4047.5,83,1158.4807,1467.561552,872.6267053,997.1698292,447.2898546,447.2898546,1993.113765,18728.58459,1,1,1,1,1,1,1
-4048,83,1158.4807,1467.561552,911.1477095,974.4166098,447.2898546,447.2898546,2007.52781,18864.22471,1,1,1,1,1,1,1
-4048.5,83,1158.4807,1467.561552,890.4056138,1010.424055,447.2898546,447.2898546,2021.482093,18995.53848,1,1,1,1,1,1,1
-4049,83,1158.4807,1467.561552,883.3684713,1043.998731,447.2898546,447.2898546,2045.742184,19223.83244,1,1,1,1,1,1,1
-4049.5,83,1158.4807,1467.561552,913.5728904,1044.127373,447.2898546,447.2898546,2073.471523,19484.77296,1,1,1,1,1,1,1
-4050,83,1158.4807,1467.561552,929.899816,1034.781088,447.2898546,447.2898546,2079.852234,19544.81727,1,1,1,1,1,1,1
-4050.5,83,1158.4807,1467.561552,921.256926,1031.8096,447.2898546,447.2898546,2069.234474,19444.90116,1,1,1,1,1,1,1
-4051,83,1158.4807,1467.561552,917.4384462,1034.558248,447.2898546,447.2898546,2068.256137,19435.69477,1,1,1,1,1,1,1
-4051.5,83,1158.4807,1467.561552,905.1422602,1048.208714,447.2898546,447.2898546,2069.4942,19447.34502,1,1,1,1,1,1,1
-4052,83,1158.4807,1467.561552,903.7450502,1033.153352,447.2898546,447.2898546,2054.454551,19305.81813,1,1,1,1,1,1,1
-4052.5,83,1158.4807,1467.561552,905.0696884,1007.198197,447.2898546,447.2898546,2031.938595,19093.937,1,1,1,1,1,1,1
-4053,83,1158.4807,1467.561552,933.0571679,965.2138817,447.2898546,447.2898546,2019.14302,18973.52696,1,1,1,1,1,1,1
-4053.5,83,1158.4807,1467.561552,922.0124622,972.1690175,447.2898546,447.2898546,2015.404771,18938.349,1,1,1,1,1,1,1
-4054,83,1158.4807,1467.561552,885.1954818,997.8170453,447.2898546,447.2898546,2005.195187,18842.27429,1,1,1,1,1,1,1
-4054.5,83,1158.4807,1467.561552,866.8009954,997.2871668,447.2898546,447.2898546,1987.896018,18679.4842,1,1,1,1,1,1,1
-4055,83,1158.4807,1467.561552,874.1310741,966.5801715,447.2898546,447.2898546,1966.525875,18478.3855,1,1,1,1,1,1,1
-4055.5,83,1158.4807,1467.561552,847.6184003,968.1192244,447.2898546,447.2898546,1943.695332,18263.54358,1,1,1,1,1,1,1
-4056,83,1158.4807,1467.561552,869.9395275,930.6807503,447.2898546,447.2898546,1929.876147,18133.50117,1,1,1,1,1,1,1
-4056.5,83,1158.4807,1467.561552,842.2140413,955.4342799,447.2898546,447.2898546,1927.159105,18107.9333,1,1,1,1,1,1,1
-4057,83,1158.4807,1467.561552,862.1525888,940.7224314,447.2898546,447.2898546,1931.937344,18152.89782,1,1,1,1,1,1,1
-4057.5,83,1158.4807,1467.561552,840.7803478,973.4093758,447.2898546,447.2898546,1942.280656,18250.23138,1,1,1,1,1,1,1
-4058,83,1158.4807,1467.561552,832.5703479,1004.005611,447.2898546,447.2898546,1962.745612,18442.81191,1,1,1,1,1,1,1
-4058.5,83,1158.4807,1467.561552,853.3621227,1008.549915,447.2898546,447.2898546,1985.906041,18660.75773,1,1,1,1,1,1,1
-4059,83,1158.4807,1467.561552,916.0842705,966.6238485,447.2898546,447.2898546,2004.91608,18839.64748,1,1,1,1,1,1,1
-4059.5,83,1158.4807,1467.561552,950.3799144,950.3799144,447.2898546,447.2898546,2021.418579,18994.94059,1,1,1,1,1,1,1
-4060,83,1158.4807,1467.561552,946.2298486,958.8396889,447.2898546,447.2898546,2025.358694,19032.01802,1,1,1,1,1,1,1
-4060.5,83,1158.4807,1467.561552,898.3094184,1005.594179,447.2898546,447.2898546,2024.292873,19021.98813,1,1,1,1,1,1,1
-4061,83,1158.4807,1467.561552,927.1138587,1004.327585,447.2898546,447.2898546,2049.466558,19258.87943,1,1,1,1,1,1,1
-4061.5,83,1158.4807,1467.561552,913.675981,1043.848078,447.2898546,447.2898546,2073.310054,19483.25369,1,1,1,1,1,1,1
-4062,83,1158.4807,1467.561552,888.8207104,1050.608124,447.2898546,447.2898546,2056.768693,19327.59507,1,1,1,1,1,1,1
-4062.5,83,1158.4807,1467.561552,869.0818765,1033.834659,447.2898546,447.2898546,2023.390122,19013.49342,1,1,1,1,1,1,1
-4063,83,1158.4807,1467.561552,883.7781147,1003.697491,447.2898546,447.2898546,2009.274742,18880.66368,1,1,1,1,1,1,1
-4063.5,83,1158.4807,1467.561552,909.1317527,978.5018263,447.2898546,447.2898546,2009.419906,18882.02947,1,1,1,1,1,1,1
-4064,83,1158.4807,1467.561552,890.891987,971.2397069,447.2898546,447.2898546,1986.106973,18662.64836,1,1,1,1,1,1,1
-4064.5,83,1158.4807,1467.561552,857.1613863,972.7667497,447.2898546,447.2898546,1956.667326,18385.61328,1,1,1,1,1,1,1
-4065,83,1158.4807,1467.561552,876.0099718,955.5536971,447.2898546,447.2898546,1958.163128,18399.68943,1,1,1,1,1,1,1
-4065.5,83,1158.4807,1467.561552,891.0250233,958.8121983,447.2898546,447.2898546,1974.868437,18556.89112,1,1,1,1,1,1,1
-4066,83,1158.4807,1467.561552,861.546003,1011.198019,447.2898546,447.2898546,1995.807841,18753.93654,1,1,1,1,1,1,1
-4066.5,83,1158.4807,1467.561552,879.7319504,1019.078834,447.2898546,447.2898546,2019.637225,18978.1775,1,1,1,1,1,1,1
-4067,83,1158.4807,1467.561552,894.2393407,1021.92634,447.2898546,447.2898546,2035.502508,19127.47405,1,1,1,1,1,1,1
-4067.5,83,1158.4807,1467.561552,881.5763947,1041.696565,447.2898546,447.2898546,2041.999742,19188.61451,1,1,1,1,1,1,1
-4068,83,1158.4807,1467.561552,897.6329971,1019.496354,447.2898546,447.2898546,2036.383506,19135.76434,1,1,1,1,1,1,1
-4068.5,83,1158.4807,1467.561552,879.6943332,1025.291131,447.2898546,447.2898546,2025.281723,19031.29396,1,1,1,1,1,1,1
-4069,83,1158.4807,1467.561552,904.4027831,1000.061462,447.2898546,447.2898546,2024.804707,19026.80518,1,1,1,1,1,1,1
-4069.5,83,1158.4807,1467.561552,937.5717859,982.4110942,447.2898546,447.2898546,2038.9917,19160.30874,1,1,1,1,1,1,1
-4070,83,1158.4807,1467.561552,937.9724698,1016.151065,447.2898546,447.2898546,2070.20117,19453.99832,1,1,1,1,1,1,1
-4070.5,83,1158.4807,1467.561552,929.8654957,1084.573501,447.2898546,447.2898546,2125.337969,19972.85013,1,1,1,1,1,1,1
-4071,83,1158.4807,1467.561552,968.3840668,1175.930735,447.2898546,447.2898546,2239.782645,21049.43805,1,1,1,1,1,1,1
-4071.5,83,1158.4807,1467.561552,1037.633641,1251.040808,447.2898546,447.2898546,2355.216337,22134.53007,1,1,1,1,1,1,1
-4072,83,1158.4807,1467.561552,1143.084738,1246.07385,447.2898546,447.2898546,2436.405062,22896.86926,1,1,1,1,1,1,1
-4072.5,83,1158.4807,1467.561552,1154.779528,1320.394018,447.2898546,447.2898546,2512.800619,23613.64768,1,1,1,1,1,1,1
-4073,83,1158.4807,1467.561552,1263.326264,1375.32968,447.2898546,447.2898546,2660.771942,25001.80395,1,1,1,1,1,1,1
-4073.5,83,1158.4807,1467.561552,1391.378367,1468.0163,447.2898546,447.2898546,2846.433122,26744.9457,1,1,1,1,1,1,1
-4074,83,1158.4807,1467.561552,1401.877611,1636.236324,447.2898546,447.2898546,2995.718469,28147.59249,1,1,1,1,1,1,1
-4074.5,83,1158.4807,1467.561552,1522.437957,1648.073071,447.2898546,447.2898546,3108.644731,29208.87816,1,1,1,1,1,1,1
-4075,83,1158.4807,1467.561552,1584.273635,1682.392028,447.2898546,447.2898546,3189.722443,29970.82155,1,1,1,1,1,1,1
-4075.5,83,1158.4807,1467.561552,1550.96413,1796.597886,447.2898546,447.2898546,3255.1976,30586.05246,1,1,1,1,1,1,1
-4076,83,1158.4807,1467.561552,1631.231949,1756.301057,447.2898546,447.2898546,3287.724207,30891.83009,1,1,1,1,1,1,1
-4076.5,83,1158.4807,1467.561552,1632.51304,1756.080887,447.2898546,447.2898546,3288.611417,30900.17589,1,1,1,1,1,1,1
-4077,83,1158.4807,1467.561552,1596.606625,1788.261637,447.2898546,447.2898546,3285.42592,30870.19632,1,1,1,1,1,1,1
-4077.5,83,1158.4807,1467.561552,1657.910016,1726.505346,447.2898546,447.2898546,3285.0387,30866.5521,1,1,1,1,1,1,1
-4078,83,1158.4807,1467.561552,1669.796083,1714.61928,447.2898546,447.2898546,3285.0387,30866.5521,1,1,1,1,1,1,1
-4078.5,83,1158.4807,1467.561552,1593.027676,1795.515826,447.2898546,447.2898546,3288.568226,30899.76964,1,1,1,1,1,1,1
-4079,83,1158.4807,1467.561552,1563.535604,1835.454839,447.2898546,447.2898546,3297.50013,30983.83032,1,1,1,1,1,1,1
-4079.5,83,1158.4807,1467.561552,1659.954917,1751.92422,447.2898546,447.2898546,3308.518616,31087.52797,1,1,1,1,1,1,1
-4080,83,1158.4807,1467.561552,1634.42344,1793.603918,447.2898546,447.2898546,3322.324936,31217.46307,1,1,1,1,1,1,1
-4080.5,83,1158.4807,1467.561552,1623.554121,1818.875847,447.2898546,447.2898546,3334.638626,31333.35048,1,1,1,1,1,1,1
-4081,83,1158.4807,1467.561552,1623.353093,1818.203463,447.2898546,447.2898546,3333.891087,31326.3154,1,1,1,1,1,1,1
-4081.5,83,1158.4807,1467.561552,1679.269878,1748.969951,447.2898546,447.2898546,3322.506265,31219.16988,1,1,1,1,1,1,1
-4082,83,1158.4807,1467.561552,1635.579438,1770.575622,447.2898546,447.2898546,3303.625532,31041.47817,1,1,1,1,1,1,1
-4082.5,83,1158.4807,1467.561552,1622.840971,1758.71977,447.2898546,447.2898546,3282.684614,30844.41491,1,1,1,1,1,1,1
-4083,83,1158.4807,1467.561552,1565.127182,1799.57989,447.2898546,447.2898546,3268.833603,30714.17411,1,1,1,1,1,1,1
-4083.5,83,1158.4807,1467.561552,1560.895723,1796.385915,447.2898546,447.2898546,3262.927633,30658.68301,1,1,1,1,1,1,1
-4084,83,1158.4807,1467.561552,1626.980024,1739.65551,447.2898546,447.2898546,3270.367652,30728.58793,1,1,1,1,1,1,1
-4084.5,83,1158.4807,1467.561552,1683.218775,1706.001311,447.2898546,447.2898546,3289.213927,30905.86,1,1,1,1,1,1,1
-4085,83,1158.4807,1467.561552,1665.870684,1756.867715,447.2898546,447.2898546,3317.803562,31174.91106,1,1,1,1,1,1,1
-4085.5,83,1158.4807,1467.561552,1648.478825,1809.787332,447.2898546,447.2898546,3348.177407,31460.76762,1,1,1,1,1,1,1
-4086,83,1158.4807,1467.561552,1693.475884,1752.082961,447.2898546,447.2898546,3337.313062,31358.52036,1,1,1,1,1,1,1
-4086.5,83,1158.4807,1467.561552,1595.852804,1796.819343,447.2898546,447.2898546,3292.235471,30934.31138,1,1,1,1,1,1,1
-4087,83,1158.4807,1467.561552,1612.885951,1737.515842,447.2898546,447.2898546,3257.456124,30607.27372,1,1,1,1,1,1,1
-4087.5,83,1158.4807,1467.561552,1647.064593,1658.344972,447.2898546,447.2898546,3221.672465,30271.05596,1,1,1,1,1,1,1
-4088,83,1158.4807,1467.561552,1589.245298,1631.44478,447.2898546,447.2898546,3151.095165,29607.81881,1,1,1,1,1,1,1
-4088.5,83,1158.4807,1467.561552,1519.075477,1644.988622,447.2898546,447.2898546,3103.146415,29157.20527,1,1,1,1,1,1,1
-4089,83,1158.4807,1467.561552,1484.395236,1684.949625,447.2898546,447.2898546,3107.65007,29199.53055,1,1,1,1,1,1,1
-4089.5,83,1158.4807,1467.561552,1491.261378,1693.055065,447.2898546,447.2898546,3120.419799,29319.54096,1,1,1,1,1,1,1
-4090,83,1158.4807,1467.561552,1444.310819,1672.087042,447.2898546,447.2898546,3062.489496,28775.10942,1,1,1,1,1,1,1
-4090.5,83,1158.4807,1467.561552,1381.973921,1601.200589,447.2898546,447.2898546,2948.858121,27707.1966,1,1,1,1,1,1,1
-4091,83,1158.4807,1467.561552,1288.69463,1521.820584,447.2898546,447.2898546,2809.174476,26394.70666,1,1,1,1,1,1,1
-4091.5,83,1158.4807,1467.561552,1221.51336,1407.073252,447.2898546,447.2898546,2651.656744,24916.29193,1,1,1,1,1,1,1
-4092,83,1158.4807,1467.561552,1122.30593,1333.155263,447.2898546,447.2898546,2494.958815,23446.26942,1,1,1,1,1,1,1
-4092.5,83,1158.4807,1467.561552,1103.625116,1184.63394,447.2898546,447.2898546,2357.27363,22153.69077,1,1,1,1,1,1,1
-4093,83,1158.4807,1467.561552,1074.915817,1074.915817,447.2898546,447.2898546,2245.422852,21102.5655,1,1,1,1,1,1,1
-4093.5,83,1158.4807,1467.561552,962.7265056,1082.73661,447.2898546,447.2898546,2153.699188,20239.73681,1,1,1,1,1,1,1
-4094,83,1158.4807,1467.561552,941.5629459,1055.454354,447.2898546,447.2898546,2109.412621,19822.98839,1,1,1,1,1,1,1
-4094.5,83,1158.4807,1467.561552,953.3559183,1032.802245,447.2898546,447.2898546,2099.485313,19729.56984,1,1,1,1,1,1,1
-4095,83,1158.4807,1467.561552,925.5485311,1071.78253,447.2898546,447.2898546,2109.698721,19825.68097,1,1,1,1,1,1,1
-4095.5,83,1158.4807,1467.561552,910.3941415,1105.183595,447.2898546,447.2898546,2126.379398,19982.65066,1,1,1,1,1,1,1
-4096,83,1158.4807,1467.561552,964.8072958,1059.935595,447.2898546,447.2898546,2134.757153,20061.48742,1,1,1,1,1,1,1
-4096.5,83,1158.4807,1467.561552,940.9918176,1089.257667,447.2898546,447.2898546,2139.791193,20108.85935,1,1,1,1,1,1,1
-4097,83,1158.4807,1467.561552,931.5469284,1123.352876,447.2898546,447.2898546,2162.325418,20320.91212,1,1,1,1,1,1,1
-4097.5,83,1158.4807,1467.561552,1002.443638,1093.220195,447.2898546,447.2898546,2199.589699,20671.57912,1,1,1,1,1,1,1
-4098,83,1158.4807,1467.561552,1045.171675,1102.471477,447.2898546,447.2898546,2245.608915,21104.50401,1,1,1,1,1,1,1
-4098.5,83,1158.4807,1467.561552,1043.936351,1123.307475,447.2898546,447.2898546,2262.671844,21264.99746,1,1,1,1,1,1,1
-4099,83,1158.4807,1467.561552,1007.284635,1135.299095,447.2898546,447.2898546,2241.670903,21067.50538,1,1,1,1,1,1,1
-4099.5,83,1158.4807,1467.561552,992.6166535,1112.249038,447.2898546,447.2898546,2208.001106,20750.73306,1,1,1,1,1,1,1
-4100,83,1158.4807,1467.561552,1015.898243,1051.234374,447.2898546,447.2898546,2173.507721,20426.14067,1,1,1,1,1,1,1
-4100.5,83,1158.4807,1467.561552,952.9884028,1072.857274,447.2898546,447.2898546,2135.765243,20070.97397,1,1,1,1,1,1,1
-4101,83,1158.4807,1467.561552,917.6717416,1056.504745,447.2898546,447.2898546,2088.531582,19626.49243,1,1,1,1,1,1,1
-4101.5,83,1158.4807,1467.561552,916.6417924,1033.659894,447.2898546,447.2898546,2066.706905,19421.11575,1,1,1,1,1,1,1
-4102,83,1158.4807,1467.561552,927.1971698,1045.562766,447.2898546,447.2898546,2087.237374,19614.31294,1,1,1,1,1,1,1
-4102.5,83,1158.4807,1467.561552,951.6307614,1058.862449,447.2898546,447.2898546,2121.731668,19938.91422,1,1,1,1,1,1,1
-4103,83,1158.4807,1467.561552,1000.19545,1048.015599,447.2898546,447.2898546,2156.211138,20263.37521,1,1,1,1,1,1,1
-4103.5,83,1158.4807,1467.561552,1008.083351,1099.743545,447.2898546,447.2898546,2210.708146,20776.20705,1,1,1,1,1,1,1
-4104,83,1158.4807,1467.561552,1078.334704,1167.307013,447.2898546,447.2898546,2321.716943,21819.69695,1,1,1,1,1,1,1
-4104.5,83,1158.4807,1467.561552,1160.856768,1232.662341,447.2898546,447.2898546,2442.122388,22950.39304,1,1,1,1,1,1,1
-4105,83,1158.4807,1467.561552,1217.652368,1275.760633,447.2898546,447.2898546,2529.310353,23768.52973,1,1,1,1,1,1,1
-4105.5,83,1158.4807,1467.561552,1253.301922,1322.046402,447.2898546,447.2898546,2603.471318,24464.25229,1,1,1,1,1,1,1
-4106,83,1158.4807,1467.561552,1245.003033,1413.736376,447.2898546,447.2898546,2678.949714,25172.33411,1,1,1,1,1,1,1
-4106.5,83,1158.4807,1467.561552,1286.94206,1432.008708,447.2898546,447.2898546,2733.448312,25683.59922,1,1,1,1,1,1,1
-4107,83,1158.4807,1467.561552,1246.747494,1423.401695,447.2898546,447.2898546,2689.276854,25269.21539,1,1,1,1,1,1,1
-4107.5,83,1158.4807,1467.561552,1223.755739,1345.367984,447.2898546,447.2898546,2597.836191,24411.38755,1,1,1,1,1,1,1
-4108,83,1158.4807,1467.561552,1145.161198,1333.051417,447.2898546,447.2898546,2515.551705,23639.45608,1,1,1,1,1,1,1
-4108.5,83,1158.4807,1467.561552,1107.651856,1284.264392,447.2898546,447.2898546,2437.44379,22906.70649,1,1,1,1,1,1,1
-4109,83,1158.4807,1467.561552,1067.956042,1236.33823,447.2898546,447.2898546,2367.733756,22252.13101,1,1,1,1,1,1,1
-4109.5,83,1158.4807,1467.561552,1070.753151,1146.712517,447.2898546,447.2898546,2301.657012,21631.29583,1,1,1,1,1,1,1
-4110,83,1158.4807,1467.561552,1009.121141,1128.37561,447.2898546,447.2898546,2236.099467,21014.99741,1,1,1,1,1,1,1
-4110.5,83,1158.4807,1467.561552,989.8669727,1087.863218,447.2898546,447.2898546,2183.196534,20517.3149,1,1,1,1,1,1,1
-4111,83,1158.4807,1467.561552,985.2290151,1074.284136,447.2898546,447.2898546,2166.5435,20360.60562,1,1,1,1,1,1,1
-4111.5,83,1158.4807,1467.561552,983.7223636,1072.944421,447.2898546,447.2898546,2163.940846,20336.11385,1,1,1,1,1,1,1
-4112,83,1158.4807,1467.561552,964.2683964,1087.029154,447.2898546,447.2898546,2159.032355,20289.92367,1,1,1,1,1,1,1
-4112.5,83,1158.4807,1467.561552,989.7285224,1051.675182,447.2898546,447.2898546,2149.987836,20204.81254,1,1,1,1,1,1,1
-4113,83,1158.4807,1467.561552,952.8170938,1051.84886,447.2898546,447.2898546,2116.404325,19888.7823,1,1,1,1,1,1,1
-4113.5,83,1158.4807,1467.561552,882.5536615,1056.292415,447.2898546,447.2898546,2056.234964,19322.57196,1,1,1,1,1,1,1
-4114,83,1158.4807,1467.561552,866.8939899,967.1695853,447.2898546,447.2898546,1960.448818,18421.1984,1,1,1,1,1,1,1
-4114.5,83,1158.4807,1467.561552,832.3770251,895.431289,447.2898546,447.2898546,1863.911695,17513.21013,1,1,1,1,1,1,1
-4115,83,1158.4807,1467.561552,758.067795,888.3704452,447.2898546,447.2898546,1790.648609,16824.63568,1,1,1,1,1,1,1
-4115.5,83,1158.4807,1467.561552,765.3125447,852.1913648,447.2898546,447.2898546,1764.691514,16580.74749,1,1,1,1,1,1,1
-4116,83,1158.4807,1467.561552,751.5719973,876.1509742,447.2898546,447.2898546,1773.85913,16666.88481,1,1,1,1,1,1,1
-4116.5,83,1158.4807,1467.561552,792.8978113,859.0978177,447.2898546,447.2898546,1795.633909,16871.47683,1,1,1,1,1,1,1
-4117,83,1158.4807,1467.561552,811.7072998,885.4823246,447.2898546,447.2898546,1836.176854,17252.41163,1,1,1,1,1,1,1
-4117.5,83,1158.4807,1467.561552,826.4297612,931.9314328,447.2898546,447.2898546,1891.426296,17771.81577,1,1,1,1,1,1,1
-4118,83,1158.4807,1467.561552,847.5049289,981.8243743,447.2898546,447.2898546,1956.120471,18380.46767,1,1,1,1,1,1,1
-4118.5,83,1158.4807,1467.561552,911.7368235,961.8501569,447.2898546,447.2898546,1996.578864,18761.19178,1,1,1,1,1,1,1
-4119,83,1158.4807,1467.561552,893.716078,993.8228948,447.2898546,447.2898546,2009.333085,18881.21273,1,1,1,1,1,1,1
-4119.5,83,1158.4807,1467.561552,893.7380409,1007.973467,447.2898546,447.2898546,2022.288348,19003.12532,1,1,1,1,1,1,1
-4120,83,1158.4807,1467.561552,908.4709934,1045.450485,447.2898546,447.2898546,2070.015863,19452.25403,1,1,1,1,1,1,1
-4120.5,83,1158.4807,1467.561552,972.3299493,1039.203346,447.2898546,447.2898546,2122.682281,19947.85969,1,1,1,1,1,1,1
-4121,83,1158.4807,1467.561552,980.6562937,1055.025405,447.2898546,447.2898546,2144.757271,20155.59161,1,1,1,1,1,1,1
-4121.5,83,1158.4807,1467.561552,959.7617145,1089.42873,447.2898546,447.2898546,2157.10652,20271.80141,1,1,1,1,1,1,1
-4122,83,1158.4807,1467.561552,995.3857097,1071.419377,447.2898546,447.2898546,2173.209318,20423.33299,1,1,1,1,1,1,1
-4122.5,83,1158.4807,1467.561552,992.3302818,1089.210014,447.2898546,447.2898546,2186.678964,20550.08564,1,1,1,1,1,1,1
-4123,83,1158.4807,1467.561552,959.5930176,1111.161662,447.2898546,447.2898546,2176.819527,20457.3054,1,1,1,1,1,1,1
-4123.5,83,1158.4807,1467.561552,970.9761959,1080.928658,447.2898546,447.2898546,2159.58811,20295.15331,1,1,1,1,1,1,1
-4124,83,1158.4807,1467.561552,1012.102494,1039.750841,447.2898546,447.2898546,2159.540983,20294.71029,1,1,1,1,1,1,1
-4124.5,83,1158.4807,1467.561552,989.8473723,1057.51083,447.2898546,447.2898546,2155.432109,20256.04481,1,1,1,1,1,1,1
-4125,83,1158.4807,1467.561552,975.5025662,1050.076471,447.2898546,447.2898546,2135.521668,20068.68193,1,1,1,1,1,1,1
-4125.5,83,1158.4807,1467.561552,994.1571949,1014.591274,447.2898546,447.2898546,2120.136501,19923.90297,1,1,1,1,1,1,1
-4126,83,1158.4807,1467.561552,993.7287267,1006.963259,447.2898546,447.2898546,2112.772312,19854.60397,1,1,1,1,1,1,1
-4126.5,83,1158.4807,1467.561552,962.0811849,1034.926908,447.2898546,447.2898546,2109.40417,19822.90865,1,1,1,1,1,1,1
-4127,83,1158.4807,1467.561552,957.5947388,1044.418468,447.2898546,447.2898546,2113.978894,19865.9581,1,1,1,1,1,1,1
-4127.5,83,1158.4807,1467.561552,937.4122518,1085.621277,447.2898546,447.2898546,2133.195065,20046.78766,1,1,1,1,1,1,1
-4128,83,1158.4807,1467.561552,1000.287503,1062.071863,447.2898546,447.2898546,2169.144624,20385.08304,1,1,1,1,1,1,1
-4128.5,83,1158.4807,1467.561552,1019.754003,1061.124746,447.2898546,447.2898546,2186.074289,20544.39588,1,1,1,1,1,1,1
-4129,83,1158.4807,1467.561552,992.2613531,1081.900126,447.2898546,447.2898546,2179.933655,20486.61064,1,1,1,1,1,1,1
-4129.5,83,1158.4807,1467.561552,953.3426717,1111.181151,447.2898546,447.2898546,2171.122701,20403.69734,1,1,1,1,1,1,1
-4130,83,1158.4807,1467.561552,967.9224648,1099.133987,447.2898546,447.2898546,2173.43793,20425.48434,1,1,1,1,1,1,1
-4130.5,83,1158.4807,1467.561552,1012.381081,1061.082186,447.2898546,447.2898546,2179.295272,20480.60349,1,1,1,1,1,1,1
-4131,83,1158.4807,1467.561552,1020.612436,1055.116458,447.2898546,447.2898546,2181.36621,20500.09142,1,1,1,1,1,1,1
-4131.5,83,1158.4807,1467.561552,990.3965603,1101.787156,447.2898546,447.2898546,2196.408571,20641.64416,1,1,1,1,1,1,1
-4132,83,1158.4807,1467.561552,972.7930243,1149.619283,447.2898546,447.2898546,2224.042301,20901.6849,1,1,1,1,1,1,1
-4132.5,83,1158.4807,1467.561552,1011.750619,1118.914372,447.2898546,447.2898546,2231.586266,20972.67575,1,1,1,1,1,1,1
-4133,83,1158.4807,1467.561552,979.5445409,1141.28077,447.2898546,447.2898546,2222.591141,20888.02908,1,1,1,1,1,1,1
-4133.5,83,1158.4807,1467.561552,958.921395,1156.455047,447.2898546,447.2898546,2217.610686,20841.16146,1,1,1,1,1,1,1
-4134,83,1158.4807,1467.561552,967.7352429,1159.155401,447.2898546,447.2898546,2228.135855,20940.20633,1,1,1,1,1,1,1
-4134.5,83,1158.4807,1467.561552,1020.699411,1113.828658,447.2898546,447.2898546,2235.117172,21005.90277,1,1,1,1,1,1,1
-4135,83,1158.4807,1467.561552,994.0082364,1135.141095,447.2898546,447.2898546,2230.201032,20959.64017,1,1,1,1,1,1,1
-4135.5,83,1158.4807,1467.561552,1007.353117,1114.086632,447.2898546,447.2898546,2223.153787,20893.32339,1,1,1,1,1,1,1
-4136,83,1158.4807,1467.561552,976.7740617,1138.159156,447.2898546,447.2898546,2217.205459,20837.34841,1,1,1,1,1,1,1
-4136.5,83,1158.4807,1467.561552,973.6814977,1143.279998,447.2898546,447.2898546,2219.058793,20854.78899,1,1,1,1,1,1,1
-4137,83,1158.4807,1467.561552,1025.137667,1118.066815,447.2898546,447.2898546,2242.51339,21075.45688,1,1,1,1,1,1,1
-4137.5,83,1158.4807,1467.561552,1069.331025,1198.988105,447.2898546,447.2898546,2339.561201,21987.43693,1,1,1,1,1,1,1
-4138,83,1158.4807,1467.561552,1222.764081,1295.08318,447.2898546,447.2898546,2553.388054,23994.28434,1,1,1,1,1,1,1
-4138.5,83,1158.4807,1467.561552,1347.637354,1432.32763,447.2898546,447.2898546,2777.393874,26096.58386,1,1,1,1,1,1,1
-4139,83,1158.4807,1467.561552,1479.241542,1538.43927,447.2898546,447.2898546,2978.451115,27985.3151,1,1,1,1,1,1,1
-4139.5,83,1158.4807,1467.561552,1623.848515,1634.307545,447.2898546,447.2898546,3180.706548,29886.03604,1,1,1,1,1,1,1
-4140,83,1158.4807,1467.561552,1727.167977,1799.10075,447.2898546,447.2898546,3407.015753,32014.65535,1,1,1,1,1,1,1
-4140.5,83,1158.4807,1467.561552,1721.22034,2008.580671,447.2898546,447.2898546,3580.000935,33642.46081,1,1,1,1,1,1,1
-4141,83,1158.4807,1467.561552,1809.711568,1987.960415,447.2898546,447.2898546,3637.066728,34179.34149,1,1,1,1,1,1,1
-4141.5,83,1158.4807,1467.561552,1840.602381,1967.215575,447.2898546,447.2898546,3645.085181,34254.68172,1,1,1,1,1,1,1
-4142,83,1158.4807,1467.561552,1866.306533,1943.008073,447.2898546,447.2898546,3646.268056,34265.7954,1,1,1,1,1,1,1
-4142.5,83,1158.4807,1467.561552,1896.301162,1909.168211,447.2898546,447.2898546,3643.228648,34237.23797,1,1,1,1,1,1,1
-4143,83,1158.4807,1467.561552,1774.006934,2025.467743,447.2898546,447.2898546,3638.490591,34192.72022,1,1,1,1,1,1,1
-4143.5,83,1158.4807,1467.561552,1761.273107,2040.701432,447.2898546,447.2898546,3640.466403,34211.28455,1,1,1,1,1,1,1
-4144,83,1158.4807,1467.561552,1872.829499,1949.935687,447.2898546,447.2898546,3656.897765,34365.67059,1,1,1,1,1,1,1
-4144.5,83,1158.4807,1467.561552,1845.055512,1997.966435,447.2898546,447.2898546,3672.90744,34516.09476,1,1,1,1,1,1,1
-4145,83,1158.4807,1467.561552,1850.491553,2005.162464,447.2898546,447.2898546,3682.890643,34609.89499,1,1,1,1,1,1,1
-4145.5,83,1158.4807,1467.561552,1788.972995,2085.126568,447.2898546,447.2898546,3697.468729,34746.86851,1,1,1,1,1,1,1
-4146,83,1158.4807,1467.561552,1818.916331,2079.393082,447.2898546,447.2898546,3719.93382,34957.74042,1,1,1,1,1,1,1
-4146.5,83,1158.4807,1467.561552,1854.382174,2049.580297,447.2898546,447.2898546,3725.496974,35009.94301,1,1,1,1,1,1,1
-4147,83,1158.4807,1467.561552,1769.925635,2090.005257,447.2898546,447.2898546,3687.662271,34654.64271,1,1,1,1,1,1,1
-4147.5,83,1158.4807,1467.561552,1818.188743,1972.787717,447.2898546,447.2898546,3631.307042,34125.12894,1,1,1,1,1,1,1
-4148,83,1158.4807,1467.561552,1753.669774,1961.838748,447.2898546,447.2898546,3568.104662,33530.5633,1,1,1,1,1,1,1
-4148.5,83,1158.4807,1467.561552,1700.78406,1919.169102,447.2898546,447.2898546,3486.410614,32761.71833,1,1,1,1,1,1,1
-4149,83,1158.4807,1467.561552,1635.313953,1880.231482,447.2898546,447.2898546,3397.148222,31921.64549,1,1,1,1,1,1,1
-4149.5,83,1158.4807,1467.561552,1557.997377,1878.093331,447.2898546,447.2898546,3329.218858,31282.34391,1,1,1,1,1,1,1
-4150,83,1158.4807,1467.561552,1628.262069,1743.570873,447.2898546,447.2898546,3275.266972,30774.79063,1,1,1,1,1,1,1
-4150.5,83,1158.4807,1467.561552,1587.814726,1695.383579,447.2898546,447.2898546,3203.19426,30097.41144,1,1,1,1,1,1,1
-4151,83,1158.4807,1467.561552,1549.415909,1604.288694,447.2898546,447.2898546,3094.308994,29074.15089,1,1,1,1,1,1,1
-4151.5,83,1158.4807,1467.561552,1443.825441,1540.60027,447.2898546,447.2898546,2949.92455,27717.21951,1,1,1,1,1,1,1
-4152,83,1158.4807,1467.561552,1337.605086,1459.356877,447.2898546,447.2898546,2797.100209,26281.38202,1,1,1,1,1,1,1
-4152.5,83,1158.4807,1467.561552,1214.290164,1422.590768,447.2898546,447.2898546,2659.164935,24986.72814,1,1,1,1,1,1,1
-4153,83,1158.4807,1467.561552,1147.652058,1348.617448,447.2898546,447.2898546,2531.895434,23792.78089,1,1,1,1,1,1,1
-4153.5,83,1158.4807,1467.561552,1093.668394,1242.088163,447.2898546,447.2898546,2395.856146,22515.97665,1,1,1,1,1,1,1
-4154,83,1158.4807,1467.561552,996.5815247,1138.331213,447.2898546,447.2898546,2229.396799,20951.58777,1,1,1,1,1,1,1
-4154.5,83,1158.4807,1467.561552,911.9976333,1035.833097,447.2898546,447.2898546,2064.448212,19399.86124,1,1,1,1,1,1,1
-4155,83,1158.4807,1467.561552,822.7230656,977.1817711,447.2898546,447.2898546,1929.222541,18127.35079,1,1,1,1,1,1,1
-4155.5,83,1158.4807,1467.561552,811.3697254,927.9643344,447.2898546,447.2898546,1874.024871,17608.05707,1,1,1,1,1,1,1
-4156,83,1158.4807,1467.561552,799.6536863,932.1130613,447.2898546,447.2898546,1867.1954,17543.8569,1,1,1,1,1,1,1
-4156.5,83,1158.4807,1467.561552,783.2404326,950.7939642,447.2898546,447.2898546,1869.229016,17562.96448,1,1,1,1,1,1,1
-4157,83,1158.4807,1467.561552,806.8322192,934.774527,447.2898546,447.2898546,1876.022176,17626.79188,1,1,1,1,1,1,1
-4157.5,83,1158.4807,1467.561552,833.7958514,940.237875,447.2898546,447.2898546,1905.585428,17904.92873,1,1,1,1,1,1,1
-4158,83,1158.4807,1467.561552,883.8850065,944.6269412,447.2898546,447.2898546,1955.373986,18373.44272,1,1,1,1,1,1,1
-4158.5,83,1158.4807,1467.561552,868.3234113,978.6081673,447.2898546,447.2898546,1972.2123,18531.89591,1,1,1,1,1,1,1
-4159,83,1158.4807,1467.561552,855.5316847,978.0162838,447.2898546,447.2898546,1959.977184,18416.76041,1,1,1,1,1,1,1
-4159.5,83,1158.4807,1467.561552,831.4785213,975.5987859,447.2898546,447.2898546,1935.778256,18189.04181,1,1,1,1,1,1,1
-4160,83,1158.4807,1467.561552,823.8601992,936.13878,447.2898546,447.2898546,1892.808887,17784.73891,1,1,1,1,1,1,1
-4160.5,83,1158.4807,1467.561552,850.7658369,880.1749737,447.2898546,447.2898546,1866.454181,17536.89248,1,1,1,1,1,1,1
-4161,83,1158.4807,1467.561552,869.0856828,869.0856828,447.2898546,447.2898546,1872.94033,17597.8349,1,1,1,1,1,1,1
-4161.5,83,1158.4807,1467.561552,825.9723124,931.0686926,447.2898546,447.2898546,1890.053302,17758.7682,1,1,1,1,1,1,1
-4162,83,1158.4807,1467.561552,838.8572582,939.7872225,447.2898546,447.2898546,1909.786937,17944.45629,1,1,1,1,1,1,1
-4162.5,83,1158.4807,1467.561552,834.4394627,979.6404985,447.2898546,447.2898546,1942.179951,18249.28362,1,1,1,1,1,1,1
-4163,83,1158.4807,1467.561552,897.7822113,959.538633,447.2898546,447.2898546,1981.708838,18621.26082,1,1,1,1,1,1,1
-4163.5,83,1158.4807,1467.561552,871.7195571,995.1659131,447.2898546,447.2898546,1990.453067,18703.54629,1,1,1,1,1,1,1
-4164,83,1158.4807,1467.561552,861.1459483,959.8565508,447.2898546,447.2898546,1948.509305,18308.84406,1,1,1,1,1,1,1
-4164.5,83,1158.4807,1467.561552,875.1590509,893.3898549,447.2898546,447.2898546,1900.558077,17857.60996,1,1,1,1,1,1,1
-4165,83,1158.4807,1467.561552,860.4228229,871.8235566,447.2898546,447.2898546,1867.659371,17548.24245,1,1,1,1,1,1,1
-4165.5,83,1158.4807,1467.561552,814.2510084,911.6098583,447.2898546,447.2898546,1861.896526,17494.0693,1,1,1,1,1,1,1
-4166,83,1158.4807,1467.561552,792.9545055,943.3881191,447.2898546,447.2898546,1871.300381,17582.42621,1,1,1,1,1,1,1
-4166.5,83,1158.4807,1467.561552,846.3129839,899.2304777,447.2898546,447.2898546,1879.565635,17660.09377,1,1,1,1,1,1,1
-4167,83,1158.4807,1467.561552,816.1362249,931.8889731,447.2898546,447.2898546,1881.796075,17681.05448,1,1,1,1,1,1,1
-4167.5,83,1158.4807,1467.561552,796.3055732,947.6299199,447.2898546,447.2898546,1878.116976,17646.47817,1,1,1,1,1,1,1
-4168,83,1158.4807,1467.561552,838.0538096,896.5882677,447.2898546,447.2898546,1869.774948,17568.09392,1,1,1,1,1,1,1
-4168.5,83,1158.4807,1467.561552,832.4566319,883.555574,447.2898546,447.2898546,1853.062082,17411.06241,1,1,1,1,1,1,1
-4169,83,1158.4807,1467.561552,812.017039,879.6851256,447.2898546,447.2898546,1831.253464,17206.15204,1,1,1,1,1,1,1
-4169.5,83,1158.4807,1467.561552,789.1101247,889.5595457,447.2898546,447.2898546,1819.561793,17096.29923,1,1,1,1,1,1,1
-4170,83,1158.4807,1467.561552,776.6468828,917.8237269,447.2898546,447.2898546,1833.737261,17229.48971,1,1,1,1,1,1,1
-4170.5,83,1158.4807,1467.561552,809.1993576,894.8516298,447.2898546,447.2898546,1842.331757,17310.24216,1,1,1,1,1,1,1
-4171,83,1158.4807,1467.561552,798.2879078,893.6995231,447.2898546,447.2898546,1831.509656,17208.55926,1,1,1,1,1,1,1
-4171.5,83,1158.4807,1467.561552,801.7470703,874.8219155,447.2898546,447.2898546,1817.677986,17078.59935,1,1,1,1,1,1,1
-4172,83,1158.4807,1467.561552,768.3662682,895.1882427,447.2898546,447.2898546,1806.003293,16968.9062,1,1,1,1,1,1,1
-4172.5,83,1158.4807,1467.561552,795.0887918,851.1400529,447.2898546,447.2898546,1790.460482,16822.86829,1,1,1,1,1,1,1
-4173,83,1158.4807,1467.561552,781.0018725,834.0629556,447.2898546,447.2898546,1762.502689,16560.18134,1,1,1,1,1,1,1
-4173.5,83,1158.4807,1467.561552,744.2851826,856.0734302,447.2898546,447.2898546,1749.310275,16436.2275,1,1,1,1,1,1,1
-4174,83,1158.4807,1467.561552,770.8396382,846.3668389,447.2898546,447.2898546,1764.424165,16578.23496,1,1,1,1,1,1,1
-4174.5,83,1158.4807,1467.561552,769.4727649,861.6777017,447.2898546,447.2898546,1776.932646,16695.76301,1,1,1,1,1,1,1
-4175,83,1158.4807,1467.561552,798.7387031,837.3664749,447.2898546,447.2898546,1781.377918,16737.53036,1,1,1,1,1,1,1
-4175.5,83,1158.4807,1467.561552,776.7229925,875.6572763,447.2898546,447.2898546,1795.978991,16874.71922,1,1,1,1,1,1,1
-4176,83,1158.4807,1467.561552,757.303803,919.3629026,447.2898546,447.2898546,1817.765783,17079.42409,1,1,1,1,1,1,1
-4176.5,83,1158.4807,1467.561552,780.9920824,904.9164055,447.2898546,447.2898546,1826.056704,17157.32442,1,1,1,1,1,1,1
-4177,83,1158.4807,1467.561552,805.9366122,862.0821773,447.2898546,447.2898546,1810.008377,17006.53729,1,1,1,1,1,1,1
-4177.5,83,1158.4807,1467.561552,798.9966718,853.9066486,447.2898546,447.2898546,1796.448325,16879.1292,1,1,1,1,1,1,1
-4178,83,1158.4807,1467.561552,808.1302076,841.3455374,447.2898546,447.2898546,1793.372397,16850.22808,1,1,1,1,1,1,1
-4178.5,83,1158.4807,1467.561552,798.2583074,847.3700974,447.2898546,447.2898546,1789.921615,16817.80494,1,1,1,1,1,1,1
-4179,83,1158.4807,1467.561552,776.1798838,863.4523835,447.2898546,447.2898546,1784.542223,16767.26113,1,1,1,1,1,1,1
-4179.5,83,1158.4807,1467.561552,793.5824051,848.5511382,447.2898546,447.2898546,1786.785469,16788.33839,1,1,1,1,1,1,1
-4180,83,1158.4807,1467.561552,803.8174075,859.2290856,447.2898546,447.2898546,1805.547081,16964.61971,1,1,1,1,1,1,1
-4180.5,83,1158.4807,1467.561552,806.1765567,885.0901466,447.2898546,447.2898546,1830.863217,17202.48553,1,1,1,1,1,1,1
-4181,83,1158.4807,1467.561552,793.6559932,925.388314,447.2898546,447.2898546,1855.782206,17436.62014,1,1,1,1,1,1,1
-4181.5,83,1158.4807,1467.561552,786.7881973,955.1430061,447.2898546,447.2898546,1876.334185,17629.7389,1,1,1,1,1,1,1
-4182,83,1158.4807,1467.561552,798.4627367,962.8923707,447.2898546,447.2898546,1893.982798,17795.73513,1,1,1,1,1,1,1
-4182.5,83,1158.4807,1467.561552,809.0815125,969.1196138,447.2898546,447.2898546,1909.382539,17940.65072,1,1,1,1,1,1,1
-4183,83,1158.4807,1467.561552,820.4104528,969.6392437,447.2898546,447.2898546,1920.213096,18042.56928,1,1,1,1,1,1,1
-4183.5,83,1158.4807,1467.561552,831.8060144,1003.189581,447.2898546,447.2898546,1961.300846,18429.21624,1,1,1,1,1,1,1
-4184,83,1158.4807,1467.561552,926.3671244,1002.084768,447.2898546,447.2898546,2046.733713,19233.16305,1,1,1,1,1,1,1
-4184.5,83,1158.4807,1467.561552,988.2918707,1094.236278,447.2898546,447.2898546,2187.582547,20558.58901,1,1,1,1,1,1,1
-4185,83,1158.4807,1467.561552,1054.974187,1213.787506,447.2898546,447.2898546,2339.365552,21985.5673,1,1,1,1,1,1,1
-4185.5,83,1158.4807,1467.561552,1150.826512,1288.559278,447.2898546,447.2898546,2481.947608,23324.11031,1,1,1,1,1,1,1
-4186,83,1158.4807,1467.561552,1190.049852,1407.710231,447.2898546,447.2898546,2623.756087,24654.54873,1,1,1,1,1,1,1
-4186.5,83,1158.4807,1467.561552,1271.573918,1512.184274,447.2898546,447.2898546,2782.185955,26141.45257,1,1,1,1,1,1,1
-4187,83,1158.4807,1467.561552,1396.281445,1616.831789,447.2898546,447.2898546,2975.032745,27953.19615,1,1,1,1,1,1,1
-4187.5,83,1158.4807,1467.561552,1482.36023,1752.592453,447.2898546,447.2898546,3162.237682,29712.50592,1,1,1,1,1,1,1
-4188,83,1158.4807,1467.561552,1655.844225,1779.541201,447.2898546,447.2898546,3330.013699,31290.11219,1,1,1,1,1,1,1
-4188.5,83,1158.4807,1467.561552,1718.495865,1900.887247,447.2898546,447.2898546,3485.923186,32757.13068,1,1,1,1,1,1,1
-4189,83,1158.4807,1467.561552,1829.104348,1967.178311,447.2898546,447.2898546,3633.824322,34148.43858,1,1,1,1,1,1,1
-4189.5,83,1158.4807,1467.561552,1857.0066,2124.134883,447.2898546,447.2898546,3804.913788,35754.98977,1,1,1,1,1,1,1
-4190,83,1158.4807,1467.561552,1945.057634,2236.972225,447.2898546,447.2898546,4004.525555,37627.97916,1,1,1,1,1,1,1
-4190.5,82.99973512,1158.476594,1467.561552,2008.438492,2358.361844,447.2884272,447.2884272,4180.500947,39280.3707,1,1,1,1,1,1,1
-4191,82.99576001,1158.42127,1467.561552,2064.187622,2407.086658,447.2670051,447.2670051,4282.087815,40235.14483,1,1,1,1,1,1,1
-4191.5,82.9840686,1158.258258,1467.561552,2188.404636,2324.687686,447.2039997,447.2039997,4324.935386,40638.0427,1,1,1,1,1,1,1
-4192,82.96434035,1157.983324,1467.561552,2152.322141,2377.669481,447.0976835,447.0976835,4341.307506,40791.9911,1,1,1,1,1,1,1
-4192.5,82.93879904,1157.626684,1467.561552,2139.675781,2397.185628,446.9600405,446.9600405,4346.98952,40845.4209,1,1,1,1,1,1,1
-4193,82.90955147,1157.218678,1467.561552,2081.25295,2458.448477,446.8024244,446.8024244,4348.307017,40857.81106,1,1,1,1,1,1,1
-4193.5,82.87733927,1156.768681,1467.561552,2058.219939,2482.231117,446.6288317,446.6288317,4347.280395,40848.15918,1,1,1,1,1,1,1
-4194,82.84236049,1156.27994,1467.561552,2080.953206,2459.575645,446.4403299,446.4403299,4345.423613,40830.70164,1,1,1,1,1,1,1
-4194.5,82.80680288,1155.784127,1467.561552,2058.590263,2481.842833,446.2487087,446.2487087,4343.516505,40812.77115,1,1,1,1,1,1,1
-4195,82.77438128,1155.331699,1467.561552,2148.102604,2392.115841,446.0739876,446.0739876,4341.776438,40796.41076,1,1,1,1,1,1,1
-4195.5,82.7473833,1154.954859,1467.561552,2111.897727,2428.056755,445.9284945,445.9284945,4340.32718,40782.78449,1,1,1,1,1,1,1
-4196,82.72674739,1154.666694,1467.561552,2170.493154,2369.186733,445.8172869,445.8172869,4339.218929,40772.36502,1,1,1,1,1,1,1
-4196.5,82.7132356,1154.478557,1467.561552,2134.35967,2405.01067,445.7444714,445.7444714,4338.495149,40765.55992,1,1,1,1,1,1,1
-4197,82.70824524,1154.408803,1467.561552,2117.920423,2421.091803,445.7175782,445.7175782,4338.226984,40763.03826,1,1,1,1,1,1,1
-4197.5,82.71182656,1154.458111,1467.561552,2088.192312,2450.425776,445.736878,445.736878,4338.314997,40763.86613,1,1,1,1,1,1,1
-4198,82.7225852,1154.608129,1467.561552,2079.860082,2458.327793,445.7948567,445.7948567,4338.692552,40767.41581,1,1,1,1,1,1,1
-4198.5,82.74080512,1154.862609,1467.561552,2087.314175,2450.325336,445.8930445,445.8930445,4339.41073,40774.1679,1,1,1,1,1,1,1
-4199,82.76752374,1155.235772,1467.561552,2206.946453,2330.098921,446.0370321,446.0370321,4340.536789,40784.75464,1,1,1,1,1,1,1
-4199.5,82.80172402,1155.712848,1467.561552,2268.27732,2268.27732,446.2213386,446.2213386,4342.069147,40799.16171,1,1,1,1,1,1,1
-4200,82.84166921,1156.270708,1467.561552,2148.118133,2388.030709,446.4366046,446.4366046,4343.955405,40816.89584,1,1,1,1,1,1,1
-4200.5,82.88966699,1156.941147,1467.561552,2101.332932,2434.174476,446.6952662,446.6952662,4346.237281,40838.34966,1,1,1,1,1,1,1
-4201,82.94737375,1157.746579,1467.561552,2104.17127,2357.947755,447.0062499,447.0062499,4272.727714,40147.13378,1,1,1,1,1,1,1
-4201.5,82.98918824,1158.32991,1467.561552,1835.756274,2079.956514,447.2315896,447.2315896,3759.634583,35328.19853,1,1,1,1,1,1,1
-4202,83,1158.4807,1467.561552,1724.719967,1834.410278,447.2898546,447.2898546,3434.410993,32272.33522,1,1,1,1,1,1,1
-4202.5,83,1158.4807,1467.561552,1679.076986,1758.492292,447.2898546,447.2898546,3330.483068,31294.2416,1,1,1,1,1,1,1
-4203,83,1158.4807,1467.561552,1582.381883,1747.725036,447.2898546,447.2898546,3241.823266,30460.50207,1,1,1,1,1,1,1
-4203.5,83,1158.4807,1467.561552,1496.161641,1732.173752,447.2898546,447.2898546,3157.499709,29668.00511,1,1,1,1,1,1,1
-4204,83,1158.4807,1467.561552,1422.056705,1714.086975,447.2898546,447.2898546,3079.331756,28933.39407,1,1,1,1,1,1,1
-4204.5,83,1158.4807,1467.561552,1489.699246,1594.627353,447.2898546,447.2898546,3035.134791,28518.02886,1,1,1,1,1,1,1
-4205,83,1158.4807,1467.561552,1506.662781,1546.973243,447.2898546,447.2898546,3008.956988,28272.00893,1,1,1,1,1,1,1
-4205.5,83,1158.4807,1467.561552,1479.767354,1520.047039,447.2898546,447.2898546,2963.050319,27840.57589,1,1,1,1,1,1,1
-4206,83,1158.4807,1467.561552,1374.154111,1557.544688,447.2898546,447.2898546,2904.951856,27294.56408,1,1,1,1,1,1,1
-4206.5,83,1158.4807,1467.561552,1380.747175,1469.167313,447.2898546,447.2898546,2838.862478,26673.50483,1,1,1,1,1,1,1
-4207,83,1158.4807,1467.561552,1294.511161,1456.352267,447.2898546,447.2898546,2759.056879,25924.04852,1,1,1,1,1,1,1
-4207.5,83,1158.4807,1467.561552,1277.327526,1359.885553,447.2898546,447.2898546,2659.46517,24989.54439,1,1,1,1,1,1,1
-4208,83,1158.4807,1467.561552,1253.495646,1269.956644,447.2898546,447.2898546,2556.499102,24023.59377,1,1,1,1,1,1,1
-4208.5,83,1158.4807,1467.561552,1210.007534,1234.45213,447.2898546,447.2898546,2485.000694,23352.84975,1,1,1,1,1,1,1
-4209,83,1158.4807,1467.561552,1123.434928,1256.529068,447.2898546,447.2898546,2426.886822,22807.65266,1,1,1,1,1,1,1
-4209.5,83,1158.4807,1467.561552,1082.399708,1221.48828,447.2898546,447.2898546,2367.298262,22248.04991,1,1,1,1,1,1,1
-4210,83,1158.4807,1467.561552,1018.628839,1202.270831,447.2898546,447.2898546,2304.315359,21656.27331,1,1,1,1,1,1,1
-4210.5,83,1158.4807,1467.561552,974.9278262,1130.904166,447.2898546,447.2898546,2206.961971,20740.78973,1,1,1,1,1,1,1
-4211,83,1158.4807,1467.561552,947.6416405,1014.74531,447.2898546,447.2898546,2077.754703,19525.07887,1,1,1,1,1,1,1
-4211.5,83,1158.4807,1467.561552,855.3887073,962.0343508,447.2898546,447.2898546,1945.236025,18278.04192,1,1,1,1,1,1,1
-4212,83,1158.4807,1467.561552,817.9919254,876.7760893,447.2898546,447.2898546,1834.131919,17233.29659,1,1,1,1,1,1,1
-4212.5,83,1158.4807,1467.561552,799.5431862,826.4668648,447.2898546,447.2898546,1772.322677,16652.44813,1,1,1,1,1,1,1
-4213,83,1158.4807,1467.561552,764.4590566,816.8313095,447.2898546,447.2898546,1732.204501,16275.50482,1,1,1,1,1,1,1
-4213.5,83,1158.4807,1467.561552,751.3641601,792.8311982,447.2898546,447.2898546,1698.926571,15962.83072,1,1,1,1,1,1,1
-4214,83,1158.4807,1467.561552,740.1481956,770.358326,447.2898546,447.2898546,1668.705133,15678.87516,1,1,1,1,1,1,1
-4214.5,83,1158.4807,1467.561552,700.5574261,748.3871556,447.2898546,447.2898546,1613.478316,15159.97336,1,1,1,1,1,1,1
-4215,83,1158.4807,1467.561552,670.9946467,699.120015,447.2898546,447.2898546,1542.97084,14497.49671,1,1,1,1,1,1,1
-4215.5,83,1158.4807,1467.561552,617.5267331,681.2199106,447.2898546,447.2898546,1486.676054,13968.56027,1,1,1,1,1,1,1
-4216,83,1158.4807,1467.561552,574.8045391,652.7699919,447.2898546,447.2898546,1437.313016,13504.7532,1,1,1,1,1,1,1
-4216.5,83,1158.4807,1467.561552,525.0378791,623.6553276,447.2898546,447.2898546,1384.779305,13011.15524,1,1,1,1,1,1,1
-4217,83,1158.4807,1467.561552,506.9815182,558.5897117,447.2898546,447.2898546,1322.058128,12421.83777,1,1,1,1,1,1,1
-4217.5,83,1158.4807,1467.561552,473.608304,492.9392552,447.2898546,447.2898546,1242.684124,11676.05308,1,1,1,1,1,1,1
-4218,83,1158.4807,1467.561552,417.6910564,440.2872262,447.2898546,447.2898546,1155.659717,10858.38646,1,1,1,1,1,1,1
-4218.5,83,1158.4807,1467.561552,369.8776683,387.8046226,447.2898546,447.2898546,1075.468629,10104.92395,1,1,1,1,1,1,1
-4219,83,1158.4807,1467.561552,312.0792837,345.8849922,447.2898546,447.2898546,998.8894935,9385.398766,1,1,1,1,1,1,1
-4219.5,83,1158.4807,1467.561552,258.7087437,290.3758147,447.2898546,447.2898546,916.8594948,8614.658653,1,1,1,1,1,1,1
-4220,83,1158.4807,1467.561552,214.5499983,243.1350413,447.2898546,447.2898546,847.9993808,7967.660715,1,1,1,1,1,1,1
-4220.5,83,1158.4807,1467.561552,184.4320761,204.3452827,447.2898546,447.2898546,796.0849699,7479.88174,1,1,1,1,1,1,1
-4221,83,1158.4807,1467.561552,155.2852516,170.3242338,447.2898546,447.2898546,750.2337315,7049.070986,1,1,1,1,1,1,1
-4221.5,83,1158.4807,1467.561552,122.2378293,138.4291483,447.2898546,447.2898546,706.7312637,6640.329116,1,1,1,1,1,1,1
-4222,83,1158.4807,1467.561552,92.96696853,99.72671562,447.2898546,447.2898546,660.0198985,6201.437085,1,1,1,1,1,1,1
-4222.5,83,1158.4807,1467.561552,58.4667883,60.90374219,447.2898546,447.2898546,607.5382463,5708.328204,1,1,1,1,1,1,1
-4223,83,1158.4807,1467.561552,17.71711424,19.02032882,447.2898546,447.2898546,548.0029627,5148.944705,1,1,1,1,1,1,1
-4223.5,83,1158.4807,1467.561552,-26.99630716,-27.96735511,447.2898546,447.2898546,482.1114105,4529.838591,1,1,1,1,1,1,1
-4224,83,1158.4807,1467.561552,-68.92309776,-80.29884244,447.2898546,447.2898546,415.7071075,3905.914986,1,1,1,1,1,1,1
-4224.5,83,1158.4807,1467.561552,-119.0250905,-124.5286604,447.2898546,447.2898546,356.0329907,3345.226728,1,1,1,1,1,1,1
-4225,83,1158.4807,1467.561552,-168.5519046,-171.0171249,447.2898546,447.2898546,293.4864186,2757.549713,1,1,1,1,1,1,1
-4225.5,83,1158.4807,1467.561552,-215.0586646,-225.7683702,447.2898546,447.2898546,222.4625467,2090.220876,1,1,1,1,1,1,1
-4226,83,1158.4807,1467.561552,-271.8212878,-288.6349757,447.2898546,447.2898546,137.1130733,1288.291211,1,1,1,1,1,1,1
-4226.5,83,1158.4807,1467.561552,-344.9241395,-356.0117117,447.2898546,447.2898546,36.97353376,347.3970144,1,1,1,1,1,1,1
-4227,83.00251636,1158.515466,1467.561552,-352.4244574,-399.8454376,447.3034154,447.3034154,0.54483762,5.1191901,1,1,1,1,1,1,1
-4227.5,83.00995846,1158.61975,1467.561552,-352.7060863,-400.5450548,447.3435211,447.3435211,0,0,1,1,1,1,1,1,1
-4228,83.019722,1158.756144,1467.561552,-362.7855777,-390.4726772,447.3961371,447.3961371,0,0,1,1,1,1,1,1,1
-4228.5,83.02780256,1158.868771,1467.561552,-362.7873014,-390.3701785,447.4396836,447.4396836,0,0,1,1,1,1,1,1,1
-4229,83.03132608,1158.917568,1467.561552,-368.8827646,-384.0395788,447.4586719,447.4586719,0,0,1,1,1,1,1,1,1
-4229.5,83.02633695,1158.848246,1467.561552,-367.4957811,-384.9851607,447.4317853,447.4317853,0,0,1,1,1,1,1,1,1
-4230,83.01330212,1158.666593,1467.561552,-358.9271791,-391.3588968,447.3615402,447.3615402,1.39148086,13.07434436,1,1,1,1,1,1,1
-4230.5,83.00273618,1158.518973,1467.561552,-320.604491,-345.6542203,447.3046,447.3046,61.52984302,578.124084,1,1,1,1,1,1,1
-4231,83,1158.4807,1467.561552,-306.0647509,-338.4104502,447.2898546,447.2898546,77.20031724,725.3610239,1,1,1,1,1,1,1
-4231.5,83,1158.4807,1467.561552,-317.5969667,-358.1412603,447.2898546,447.2898546,54.92625144,516.0775214,1,1,1,1,1,1,1
-4232,83,1158.4807,1467.561552,-326.1730839,-377.8587341,447.2898546,447.2898546,34.76770396,326.6714275,1,1,1,1,1,1,1
-4232.5,83,1158.4807,1467.561552,-331.1539669,-394.0100151,447.2898546,447.2898546,19.71204098,185.2112616,1,1,1,1,1,1,1
-4233,83,1158.4807,1467.561552,-331.1605889,-381.3208701,447.2898546,447.2898546,28.7478758,270.1105104,1,1,1,1,1,1,1
-4233.5,83,1158.4807,1467.561552,-309.7004876,-358.3999926,447.2898546,447.2898546,60.36817732,567.2094371,1,1,1,1,1,1,1
-4234,83,1158.4807,1467.561552,-290.2973528,-349.9257786,447.2898546,447.2898546,80.22981434,753.8259979,1,1,1,1,1,1,1
-4234.5,83,1158.4807,1467.561552,-292.2273153,-338.6614067,447.2898546,447.2898546,86.880145,816.311691,1,1,1,1,1,1,1
-4235,83,1158.4807,1467.561552,-308.5806173,-321.3244673,447.2898546,447.2898546,87.58067122,822.8935753,1,1,1,1,1,1,1
-4235.5,83,1158.4807,1467.561552,-306.2704746,-336.3451017,447.2898546,447.2898546,78.52505756,737.8081928,1,1,1,1,1,1,1
-4236,83,1158.4807,1467.561552,-304.2396031,-350.0391132,447.2898546,447.2898546,70.21574602,659.7354611,1,1,1,1,1,1,1
-4236.5,83,1158.4807,1467.561552,-313.1393191,-346.170477,447.2898546,447.2898546,66.63115618,626.0550655,1,1,1,1,1,1,1
-4237,83,1158.4807,1467.561552,-337.1866437,-355.502435,447.2898546,447.2898546,42.84916056,402.6034026,1,1,1,1,1,1,1
-4237.5,83.0006622,1158.489971,1467.561552,-351.7091963,-386.4148174,447.2934232,447.2934232,10.5165585,98.81180346,1,1,1,1,1,1,1
-4238,83.00358258,1158.530856,1467.561552,-363.8925976,-389.126327,447.3091613,447.3091613,0,0,1,1,1,1,1,1,1
-4238.5,83.0075488,1158.586449,1467.561552,-368.9629817,-384.0226952,447.3305353,447.3305353,0,0,1,1,1,1,1,1,1
-4239,83.0092311,1158.610035,1467.561552,-363.9115899,-388.9387336,447.3396013,447.3396013,0,0,1,1,1,1,1,1,1
-4239.5,83.00761206,1158.587303,1467.561552,-358.8141247,-393.9072197,447.3308763,447.3308763,0,0,1,1,1,1,1,1,1
-4240,83.00378632,1158.533775,1467.561552,-356.4118232,-378.7425612,447.3102592,447.3102592,12.47339786,117.1980764,1,1,1,1,1,1,1
-4240.5,83.00077694,1158.491611,1467.561552,-331.4106286,-344.9375931,447.2940416,447.2940416,54.44855514,511.5897788,1,1,1,1,1,1,1
-4241,83,1158.4807,1467.561552,-295.5490681,-341.6819678,447.2898546,447.2898546,82.3609285,773.8494377,1,1,1,1,1,1,1
-4241.5,83,1158.4807,1467.561552,-292.6251067,-348.1446783,447.2898546,447.2898546,79.84030298,750.1662614,1,1,1,1,1,1,1
-4242,83,1158.4807,1467.561552,-306.5930855,-359.9136221,447.2898546,447.2898546,61.50357198,577.8772709,1,1,1,1,1,1,1
-4242.5,83,1158.4807,1467.561552,-332.6632643,-374.9011797,447.2898546,447.2898546,32.25126918,303.0271906,1,1,1,1,1,1,1
-4243,83,1158.4807,1467.561552,-353.3406379,-380.2338628,447.2898546,447.2898546,13.71995498,128.9102143,1,1,1,1,1,1,1
-4243.5,83,1158.4807,1467.561552,-341.2238778,-397.6390151,447.2898546,447.2898546,9.9521,93.5082,1,1,1,1,1,1,1
-4244,83,1158.4807,1467.561552,-348.1790207,-392.7931819,447.2898546,447.2898546,8.44883978,79.3838051,1,1,1,1,1,1,1
-4244.5,83.00019866,1158.483812,1467.561552,-359.6193708,-389.5876517,447.2909252,447.2909252,2.5949796,24.38196486,1,1,1,1,1,1,1
-4245,83.00149196,1158.501823,1467.561552,-346.4435408,-406.4766126,447.2978948,447.2978948,0,0,1,1,1,1,1,1,1
-4245.5,83.00488124,1158.548939,1467.561552,-363.7959291,-389.230628,447.3161598,447.3161598,0,0,1,1,1,1,1,1,1
-4246,83.01073674,1158.630814,1467.561552,-371.5820289,-381.5571052,447.3477153,447.3477153,0,0,1,1,1,1,1,1,1
-4246.5,83.01783406,1158.729515,1467.561552,-374.0315318,-379.1199957,447.385963,447.385963,0,0,1,1,1,1,1,1,1
-4247,83.0239421,1158.814756,1467.561552,-361.5859083,-391.5068629,447.4188794,447.4188794,0,0,1,1,1,1,1,1,1
-4247.5,83.02977399,1158.896502,1467.561552,-361.4685848,-391.6920157,447.4503077,447.4503077,0,0,1,1,1,1,1,1,1
-4248,83.03670176,1158.993061,1467.561552,-350.3380539,-402.8697979,447.4876417,447.4876417,0,0,1,1,1,1,1,1,1
-4248.5,83.04059104,1159.046877,1467.561552,-350.0687831,-402.8738332,447.5086011,447.5086011,0,0,1,1,1,1,1,1,1
-4249,83.03586832,1158.980888,1467.561552,-366.1451273,-386.3777421,447.4831502,447.4831502,0,0,1,1,1,1,1,1,1
-4249.5,83.0236958,1158.811436,1467.561552,-372.3950974,-379.9182307,447.4175521,447.4175521,0,0,1,1,1,1,1,1,1
-4250,83.01015896,1158.622723,1467.561552,-348.9218282,-395.5990855,447.3446016,447.3446016,5.57976342,52.42644022,1,1,1,1,1,1,1
-4250.5,83.00192546,1158.507656,1467.561552,-310.290347,-336.7739557,447.300231,447.300231,75.24896688,707.0264876,1,1,1,1,1,1,1
-4251,83,1158.4807,1467.561552,-265.7006912,-304.4986004,447.2898546,447.2898546,130.1273285,1222.654876,1,1,1,1,1,1,1
-4251.5,83,1158.4807,1467.561552,-251.0987155,-302.8279871,447.2898546,447.2898546,141.7281217,1331.653875,1,1,1,1,1,1,1
-4252,83,1158.4807,1467.561552,-288.3148708,-313.4311448,447.2898546,447.2898546,107.6485967,1011.448084,1,1,1,1,1,1,1
-4252.5,83,1158.4807,1467.561552,-291.0343163,-336.8968461,447.2898546,447.2898546,88.98690128,836.1056979,1,1,1,1,1,1,1
-4253,83,1158.4807,1467.561552,-269.413163,-329.2827547,447.2898546,447.2898546,109.8161658,1031.81419,1,1,1,1,1,1,1
-4253.5,83,1158.4807,1467.561552,-257.085081,-310.1027463,447.2898546,447.2898546,132.2688431,1242.775983,1,1,1,1,1,1,1
-4254,83,1158.4807,1467.561552,-248.6238805,-297.8022305,447.2898546,447.2898546,147.0851123,1381.987233,1,1,1,1,1,1,1
-4254.5,83,1158.4807,1467.561552,-244.3591817,-281.3762414,447.2898546,447.2898546,161.8629399,1520.837282,1,1,1,1,1,1,1
-4255,83,1158.4807,1467.561552,-238.1905284,-261.6881895,447.2898546,447.2898546,180.3312558,1694.362457,1,1,1,1,1,1,1
-4255.5,83,1158.4807,1467.561552,-235.2837907,-241.910284,447.2898546,447.2898546,196.5337044,1846.598093,1,1,1,1,1,1,1
-4256,83,1158.4807,1467.561552,-226.5180577,-235.6144979,447.2898546,447.2898546,207.2913962,1947.675373,1,1,1,1,1,1,1
-4256.5,83,1158.4807,1467.561552,-218.9588592,-232.5027061,447.2898546,447.2898546,214.9130975,2019.287816,1,1,1,1,1,1,1
-4257,83,1158.4807,1467.561552,-215.6551527,-241.6077131,447.2898546,447.2898546,210.7698119,1980.358091,1,1,1,1,1,1,1
-4257.5,83,1158.4807,1467.561552,-220.3092283,-250.0936843,447.2898546,447.2898546,201.3848217,1892.178252,1,1,1,1,1,1,1
-4258,83,1158.4807,1467.561552,-215.3180288,-256.0390054,447.2898546,447.2898546,200.7030233,1885.771922,1,1,1,1,1,1,1
-4258.5,83,1158.4807,1467.561552,-224.780619,-240.6447142,447.2898546,447.2898546,204.9393121,1925.575192,1,1,1,1,1,1,1
-4259,83,1158.4807,1467.561552,-227.1233564,-227.1233564,447.2898546,447.2898546,212.9241728,2000.599824,1,1,1,1,1,1,1
-4259.5,83,1158.4807,1467.561552,-211.8104664,-226.1122077,447.2898546,447.2898546,224.5830957,2110.145254,1,1,1,1,1,1,1
-4260,83,1158.4807,1467.561552,-203.9482695,-225.4165084,447.2898546,447.2898546,230.6958581,2167.58003,1,1,1,1,1,1,1
-4260.5,83,1158.4807,1467.561552,-210.7181911,-223.7452984,447.2898546,447.2898546,227.054376,2133.365121,1,1,1,1,1,1,1
-4261,83,1158.4807,1467.561552,-228.0286987,-240.6091616,447.2898546,447.2898546,202.6449456,1904.018141,1,1,1,1,1,1,1
-4261.5,83,1158.4807,1467.561552,-254.6346529,-263.0844596,447.2898546,447.2898546,167.5888808,1574.637297,1,1,1,1,1,1,1
-4262,83,1158.4807,1467.561552,-272.6176554,-278.1250828,447.2898546,447.2898546,144.0013877,1353.012892,1,1,1,1,1,1,1
-4262.5,83,1158.4807,1467.561552,-272.7222538,-285.6988314,447.2898546,447.2898546,138.5174649,1301.487032,1,1,1,1,1,1,1
-4263,83,1158.4807,1467.561552,-255.3963739,-293.482543,447.2898546,447.2898546,145.3326885,1365.521852,1,1,1,1,1,1,1
-4263.5,83,1158.4807,1467.561552,-255.8179838,-275.8394184,447.2898546,447.2898546,157.6329243,1481.092482,1,1,1,1,1,1,1
-4264,83,1158.4807,1467.561552,-245.0634071,-263.388281,447.2898546,447.2898546,174.2081102,1636.830212,1,1,1,1,1,1,1
-4264.5,83,1158.4807,1467.561552,-230.5842227,-239.0268997,447.2898546,447.2898546,201.9499914,1897.488433,1,1,1,1,1,1,1
-4265,83,1158.4807,1467.561552,-210.9688494,-234.3180587,447.2898546,447.2898546,219.3229615,2060.722162,1,1,1,1,1,1,1
-4265.5,83,1158.4807,1467.561552,-220.6252995,-238.7458579,447.2898546,447.2898546,209.263605,1966.206352,1,1,1,1,1,1,1
-4266,83,1158.4807,1467.561552,-233.3164896,-252.8745134,447.2898546,447.2898546,190.1078823,1786.222174,1,1,1,1,1,1,1
-4266.5,83,1158.4807,1467.561552,-248.2007426,-263.4503671,447.2898546,447.2898546,171.9233891,1615.363206,1,1,1,1,1,1,1
-4267,83,1158.4807,1467.561552,-251.4982999,-279.9120011,447.2898546,447.2898546,157.809645,1482.753114,1,1,1,1,1,1,1
-4267.5,83,1158.4807,1467.561552,-248.462986,-278.4370677,447.2898546,447.2898546,161.03085,1513.019044,1,1,1,1,1,1,1
-4268,83,1158.4807,1467.561552,-243.6938129,-276.5892643,447.2898546,447.2898546,165.7570793,1557.425946,1,1,1,1,1,1,1
-4268.5,83,1158.4807,1467.561552,-258.2510511,-277.7466866,447.2898546,447.2898546,154.5328704,1451.96518,1,1,1,1,1,1,1
-4269,83,1158.4807,1467.561552,-266.6483737,-292.8635123,447.2898546,447.2898546,137.7447866,1294.226965,1,1,1,1,1,1,1
-4269.5,83,1158.4807,1467.561552,-260.0518368,-293.2499437,447.2898546,447.2898546,142.1769236,1335.870925,1,1,1,1,1,1,1
-4270,83,1158.4807,1467.561552,-255.7527979,-270.2379317,447.2898546,447.2898546,161.6803624,1519.122,1,1,1,1,1,1,1
-4270.5,83,1158.4807,1467.561552,-247.2326244,-273.2118462,447.2898546,447.2898546,165.6422301,1556.346914,1,1,1,1,1,1,1
-4271,83,1158.4807,1467.561552,-241.689234,-289.5104064,447.2898546,447.2898546,157.9601534,1484.167527,1,1,1,1,1,1,1
-4271.5,83,1158.4807,1467.561552,-244.6926002,-276.3882829,447.2898546,447.2898546,165.1877161,1552.076447,1,1,1,1,1,1,1
-4272,83,1158.4807,1467.561552,-227.7465174,-243.62306,447.2898546,447.2898546,200.6937473,1885.685301,1,1,1,1,1,1,1
-4272.5,83,1158.4807,1467.561552,-210.0988704,-238.3809919,447.2898546,447.2898546,217.0427816,2039.298046,1,1,1,1,1,1,1
-4273,83,1158.4807,1467.561552,-212.5305099,-252.9071192,447.2898546,447.2898546,204.9311829,1925.499452,1,1,1,1,1,1,1
-4273.5,83,1158.4807,1467.561552,-231.6691183,-252.5720401,447.2898546,447.2898546,191.5000626,1799.302832,1,1,1,1,1,1,1
-4274,83,1158.4807,1467.561552,-237.1634651,-260.4069163,447.2898546,447.2898546,181.98017,1709.85559,1,1,1,1,1,1,1
-4274.5,83,1158.4807,1467.561552,-237.2265853,-267.5108302,447.2898546,447.2898546,176.8610225,1661.756847,1,1,1,1,1,1,1
-4275,83,1158.4807,1467.561552,-230.155689,-270.0434925,447.2898546,447.2898546,180.1023826,1692.211746,1,1,1,1,1,1,1
-4275.5,83,1158.4807,1467.561552,-227.9307512,-269.3961891,447.2898546,447.2898546,182.1543782,1711.491924,1,1,1,1,1,1,1
-4276,83,1158.4807,1467.561552,-232.397232,-269.1885585,447.2898546,447.2898546,179.1122209,1682.908281,1,1,1,1,1,1,1
-4276.5,83,1158.4807,1467.561552,-234.2102831,-273.0930317,447.2898546,447.2898546,175.0286978,1644.540173,1,1,1,1,1,1,1
-4277,83,1158.4807,1467.561552,-231.0422317,-278.5630153,447.2898546,447.2898546,173.3844499,1629.091371,1,1,1,1,1,1,1
-4277.5,83,1158.4807,1467.561552,-235.5718448,-272.9735716,447.2898546,447.2898546,174.1409165,1636.199141,1,1,1,1,1,1,1
-4278,83,1158.4807,1467.561552,-231.8090942,-272.0055193,447.2898546,447.2898546,177.5196647,1667.945025,1,1,1,1,1,1,1
-4278.5,83,1158.4807,1467.561552,-232.7853979,-264.425438,447.2898546,447.2898546,182.2368808,1712.267256,1,1,1,1,1,1,1
-4279,83,1158.4807,1467.561552,-224.9355438,-251.8722352,447.2898546,447.2898546,196.8100979,1849.194976,1,1,1,1,1,1,1
-4279.5,83,1158.4807,1467.561552,-211.0673897,-231.9469201,447.2898546,447.2898546,220.946793,2075.979295,1,1,1,1,1,1,1
-4280,83,1158.4807,1467.561552,-201.6180883,-207.4347862,447.2898546,447.2898546,245.2036503,2303.892882,1,1,1,1,1,1,1
-4280.5,83,1158.4807,1467.561552,-178.9394968,-198.3650509,447.2898546,447.2898546,267.7074437,2515.334626,1,1,1,1,1,1,1
-4281,83,1158.4807,1467.561552,-156.3772794,-178.975794,447.2898546,447.2898546,296.8964125,2789.588995,1,1,1,1,1,1,1
-4281.5,83,1158.4807,1467.561552,-129.099403,-140.4215225,447.2898546,447.2898546,339.5694033,3190.537372,1,1,1,1,1,1,1
-4282,83,1158.4807,1467.561552,-81.74441293,-89.54834805,447.2898546,447.2898546,402.2790998,3779.747512,1,1,1,1,1,1,1
-4282.5,83,1158.4807,1467.561552,-22.33788173,-25.05696492,447.2898546,447.2898546,487.7807047,4583.106141,1,1,1,1,1,1,1
-4283,83,1158.4807,1467.561552,36.06599734,41.57502774,447.2898546,447.2898546,577.4723403,5425.833972,1,1,1,1,1,1,1
-4283.5,83,1158.4807,1467.561552,91.21363837,106.6405049,447.2898546,447.2898546,663.4185943,6233.37094,1,1,1,1,1,1,1
-4284,83,1158.4807,1467.561552,152.7340609,176.5913333,447.2898546,447.2898546,754.5066028,7089.218183,1,1,1,1,1,1,1
-4284.5,83,1158.4807,1467.561552,242.2313471,251.1182694,447.2898546,447.2898546,874.8693698,8220.126901,1,1,1,1,1,1,1
-4285,83,1158.4807,1467.561552,332.3551781,352.263781,447.2898546,447.2898546,1019.604342,9580.032729,1,1,1,1,1,1,1
-4285.5,83,1158.4807,1467.561552,419.0231556,473.9118033,447.2898546,447.2898546,1183.67929,11121.65352,1,1,1,1,1,1,1
-4286,83,1158.4807,1467.561552,511.6905238,597.1368484,447.2898546,447.2898546,1351.366272,12697.21202,1,1,1,1,1,1,1
-4286.5,83,1158.4807,1467.561552,635.7451202,705.3630906,447.2898546,447.2898546,1527.974193,14356.59092,1,1,1,1,1,1,1
-4287,83,1158.4807,1467.561552,723.6512197,840.3947477,447.2898546,447.2898546,1716.733926,16130.14604,1,1,1,1,1,1,1
-4287.5,83,1158.4807,1467.561552,799.6496134,919.3744855,447.2898546,447.2898546,1855.922154,17438.0584,1,1,1,1,1,1,1
-4288,83,1158.4807,1467.561552,889.6638629,950.2591804,447.2898546,447.2898546,1965.805192,18471.60345,1,1,1,1,1,1,1
-4288.5,83,1158.4807,1467.561552,930.4496886,981.455881,447.2898546,447.2898546,2031.608048,19090.8263,1,1,1,1,1,1,1
-4289,83,1158.4807,1467.561552,891.5925649,1039.065828,447.2898546,447.2898546,2048.750448,19252.14084,1,1,1,1,1,1,1
-4289.5,83,1158.4807,1467.561552,928.7010881,1033.242227,447.2898546,447.2898546,2077.350007,19521.27048,1,1,1,1,1,1,1
-4290,83,1158.4807,1467.561552,939.2530392,1066.301763,447.2898546,447.2898546,2117.217404,19896.43326,1,1,1,1,1,1,1
-4290.5,83,1158.4807,1467.561552,953.4294936,1061.3134,447.2898546,447.2898546,2125.615997,19975.46617,1,1,1,1,1,1,1
-4291,83,1158.4807,1467.561552,955.1750048,1048.56527,447.2898546,447.2898546,2115.557421,19880.81277,1,1,1,1,1,1,1
-4291.5,83,1158.4807,1467.561552,989.1952033,1022.966669,447.2898546,447.2898546,2123.256489,19953.26299,1,1,1,1,1,1,1
-4292,83,1158.4807,1467.561552,1016.517866,1030.165792,447.2898546,447.2898546,2154.81511,20250.2384,1,1,1,1,1,1,1
-4292.5,83,1158.4807,1467.561552,954.8584611,1082.52673,447.2898546,447.2898546,2146.314699,20170.24706,1,1,1,1,1,1,1
-4293,83,1158.4807,1467.561552,928.6029896,1055.157405,447.2898546,447.2898546,2097.293154,19708.94117,1,1,1,1,1,1,1
-4293.5,83,1158.4807,1467.561552,954.1023357,987.2498027,447.2898546,447.2898546,2058.525375,19344.12557,1,1,1,1,1,1,1
-4294,83,1158.4807,1467.561552,945.5747149,1024.660678,447.2898546,447.2898546,2084.92992,19592.59945,1,1,1,1,1,1,1
-4294.5,83,1158.4807,1467.561552,956.1119331,1063.833041,447.2898546,447.2898546,2130.371852,20020.22061,1,1,1,1,1,1,1
-4295,83,1158.4807,1467.561552,979.869878,1068.686262,447.2898546,447.2898546,2156.526014,20266.33853,1,1,1,1,1,1,1
-4295.5,83,1158.4807,1467.561552,1008.018925,1092.020503,447.2898546,447.2898546,2203.589935,20709.2228,1,1,1,1,1,1,1
-4296,83,1158.4807,1467.561552,1061.516989,1119.478311,447.2898546,447.2898546,2272.249424,21354.8684,1,1,1,1,1,1,1
-4296.5,83,1158.4807,1467.561552,1050.157516,1200.436832,447.2898546,447.2898546,2327.392042,21873.09793,1,1,1,1,1,1,1
-4297,83,1158.4807,1467.561552,1070.912938,1169.418352,447.2898546,447.2898546,2319.606375,21799.94493,1,1,1,1,1,1,1
-4297.5,83,1158.4807,1467.561552,1074.139627,1117.982061,447.2898546,447.2898546,2282.138424,21447.90231,1,1,1,1,1,1,1
-4298,83,1158.4807,1467.561552,1004.045579,1146.118583,447.2898546,447.2898546,2248.250164,21129.3877,1,1,1,1,1,1,1
-4298.5,83,1158.4807,1467.561552,967.5474119,1128.72574,447.2898546,447.2898546,2200.147422,20676.82764,1,1,1,1,1,1,1
-4299,83,1158.4807,1467.561552,991.4015629,1040.47586,447.2898546,447.2898546,2141.279608,20122.86574,1,1,1,1,1,1,1
-4299.5,83,1158.4807,1467.561552,957.231285,1064.673862,447.2898546,447.2898546,2132.163506,20037.08048,1,1,1,1,1,1,1
-4300,83,1158.4807,1467.561552,958.1215997,1095.01169,447.2898546,447.2898546,2160.710968,20305.72001,1,1,1,1,1,1,1
-4300.5,83,1158.4807,1467.561552,1016.501828,1072.282459,447.2898546,447.2898546,2193.301099,20612.40209,1,1,1,1,1,1,1
-4301,83,1158.4807,1467.561552,1041.972052,1077.261346,447.2898546,447.2898546,2221.135978,20874.33589,1,1,1,1,1,1,1
-4301.5,83,1158.4807,1467.561552,1029.38289,1100.183318,447.2898546,447.2898546,2230.581884,20963.22454,1,1,1,1,1,1,1
-4302,83,1158.4807,1467.561552,989.0934431,1129.82716,447.2898546,447.2898546,2220.850562,20871.64987,1,1,1,1,1,1,1
-4302.5,83,1158.4807,1467.561552,968.3523825,1152.049884,447.2898546,447.2898546,2222.205359,20884.39861,1,1,1,1,1,1,1
-4303,83,1158.4807,1467.561552,986.3177806,1150.225769,447.2898546,447.2898546,2236.960537,21023.24871,1,1,1,1,1,1,1
-4303.5,83,1158.4807,1467.561552,1046.372453,1097.044114,447.2898546,447.2898546,2243.243615,21082.37449,1,1,1,1,1,1,1
-4304,83,1158.4807,1467.561552,1056.926505,1056.926505,447.2898546,447.2898546,2216.217403,20828.05085,1,1,1,1,1,1,1
-4304.5,83,1158.4807,1467.561552,975.7538778,1113.818937,447.2898546,447.2898546,2194.021934,20619.18499,1,1,1,1,1,1,1
-4305,83,1158.4807,1467.561552,957.0795751,1138.838945,447.2898546,447.2898546,2199.823137,20673.776,1,1,1,1,1,1,1
-4305.5,83,1158.4807,1467.561552,958.3733582,1125.046986,447.2898546,447.2898546,2188.398279,20566.26476,1,1,1,1,1,1,1
-4306,83,1158.4807,1467.561552,947.4327091,1097.590979,447.2898546,447.2898546,2153.297013,20235.9523,1,1,1,1,1,1,1
-4306.5,83,1158.4807,1467.561552,921.5531699,1088.766253,447.2898546,447.2898546,2121.572512,19937.41599,1,1,1,1,1,1,1
-4307,83,1158.4807,1467.561552,974.8083844,1035.618636,447.2898546,447.2898546,2121.670414,19938.33717,1,1,1,1,1,1,1
-4307.5,83,1158.4807,1467.561552,1005.745851,1046.898679,447.2898546,447.2898546,2160.264092,20301.51442,1,1,1,1,1,1,1
-4308,83,1158.4807,1467.561552,1030.027506,1108.573968,447.2898546,447.2898546,2236.797364,21021.53815,1,1,1,1,1,1,1
-4308.5,83,1158.4807,1467.561552,1021.699347,1167.474068,447.2898546,447.2898546,2279.832053,21426.23178,1,1,1,1,1,1,1
-4309,83,1158.4807,1467.561552,1043.200369,1145.992178,447.2898546,447.2898546,2279.847029,21426.37272,1,1,1,1,1,1,1
-4309.5,83,1158.4807,1467.561552,1040.391523,1134.367997,447.2898546,447.2898546,2268.553501,21320.2606,1,1,1,1,1,1,1
-4310,83,1158.4807,1467.561552,1036.238876,1115.447018,447.2898546,447.2898546,2249.90496,21144.98218,1,1,1,1,1,1,1
-4310.5,83,1158.4807,1467.561552,981.713033,1128.177655,447.2898546,447.2898546,2212.595319,20793.9658,1,1,1,1,1,1,1
-4311,83,1158.4807,1467.561552,980.5318681,1057.479213,447.2898546,447.2898546,2146.887166,20175.63437,1,1,1,1,1,1,1
-4311.5,83,1158.4807,1467.561552,932.3178279,1071.606937,447.2898546,447.2898546,2115.72702,19882.40844,1,1,1,1,1,1,1
-4312,83,1158.4807,1467.561552,924.6933114,1100.203133,447.2898546,447.2898546,2134.897628,20062.80912,1,1,1,1,1,1,1
-4312.5,83,1158.4807,1467.561552,977.9956612,1073.961598,447.2898546,447.2898546,2159.635472,20295.59941,1,1,1,1,1,1,1
-4313,83,1158.4807,1467.561552,998.0337989,1073.956353,447.2898546,447.2898546,2177.948895,20467.93367,1,1,1,1,1,1,1
-4313.5,83,1158.4807,1467.561552,964.5770129,1132.122965,447.2898546,447.2898546,2200.5374,20680.49755,1,1,1,1,1,1,1
-4314,83,1158.4807,1467.561552,975.8065394,1160.977826,447.2898546,447.2898546,2236.911064,21022.76042,1,1,1,1,1,1,1
-4314.5,83,1158.4807,1467.561552,1022.461626,1123.186067,447.2898546,447.2898546,2245.145706,21100.26198,1,1,1,1,1,1,1
-4315,83,1158.4807,1467.561552,971.7883807,1131.459308,447.2898546,447.2898546,2206.523091,20736.82436,1,1,1,1,1,1,1
-4315.5,83,1158.4807,1467.561552,910.5662095,1112.914256,447.2898546,447.2898546,2133.60335,20050.62975,1,1,1,1,1,1,1
-4316,83,1158.4807,1467.561552,904.4355015,1021.880632,447.2898546,447.2898546,2044.781044,19214.78765,1,1,1,1,1,1,1
-4316.5,83,1158.4807,1467.561552,886.6865697,948.1231895,447.2898546,447.2898546,1961.130942,18427.61732,1,1,1,1,1,1,1
-4317,83,1158.4807,1467.561552,877.2639359,895.5604896,447.2898546,447.2898546,1904.466353,17894.38802,1,1,1,1,1,1,1
-4317.5,83,1158.4807,1467.561552,870.0059832,870.0059832,447.2898546,447.2898546,1874.64416,17613.88463,1,1,1,1,1,1,1
-4318,83,1158.4807,1467.561552,837.7572427,895.1532258,447.2898546,447.2898546,1868.221346,17553.49668,1,1,1,1,1,1,1
-4318.5,83,1158.4807,1467.561552,847.9096159,912.431329,447.2898546,447.2898546,1893.133526,17787.8029,1,1,1,1,1,1,1
-4319,83,1158.4807,1467.561552,872.5389227,939.0081101,447.2898546,447.2898546,1939.86527,18227.50157,1,1,1,1,1,1,1
-4319.5,83,1158.4807,1467.561552,886.755346,973.5884941,447.2898546,447.2898546,1984.472935,18647.27184,1,1,1,1,1,1,1
-4320,83,1158.4807,1467.561552,885.7505102,992.085305,447.2898546,447.2898546,2000.462779,18797.7407,1,1,1,1,1,1,1
-4320.5,83,1158.4807,1467.561552,871.5293035,1022.994228,447.2898546,447.2898546,2015.717959,18941.29589,1,1,1,1,1,1,1
-4321,83,1158.4807,1467.561552,901.622524,1037.232999,447.2898546,447.2898546,2056.243881,19322.6558,1,1,1,1,1,1,1
-4321.5,83,1158.4807,1467.561552,892.3863834,1061.306755,447.2898546,447.2898546,2069.807576,19450.29396,1,1,1,1,1,1,1
-4322,83,1158.4807,1467.561552,930.4148207,996.3459929,447.2898546,447.2898546,2045.18685,19218.60621,1,1,1,1,1,1,1
-4322.5,83,1158.4807,1467.561552,903.4088644,990.7409698,447.2898546,447.2898546,2015.375481,18938.07337,1,1,1,1,1,1,1
-4323,83,1158.4807,1467.561552,921.4385205,965.988181,447.2898546,447.2898546,2009.230355,18880.24625,1,1,1,1,1,1,1
-4323.5,83,1158.4807,1467.561552,906.9122197,968.7893547,447.2898546,447.2898546,1998.511966,18779.38295,1,1,1,1,1,1,1
-4324,83,1158.4807,1467.561552,846.6941946,973.3597324,447.2898546,447.2898546,1947.641657,18300.67972,1,1,1,1,1,1,1
-4324.5,83,1158.4807,1467.561552,822.5796695,978.6239083,447.2898546,447.2898546,1930.409595,18138.52136,1,1,1,1,1,1,1
-4325,83,1158.4807,1467.561552,875.8912226,967.7702453,447.2898546,447.2898546,1969.221816,18503.75489,1,1,1,1,1,1,1
-4325.5,83,1158.4807,1467.561552,887.8036053,968.0024121,447.2898546,447.2898546,1980.324145,18608.23086,1,1,1,1,1,1,1
-4326,83,1158.4807,1467.561552,887.7766471,943.1610738,447.2898546,447.2898546,1957.591055,18394.30599,1,1,1,1,1,1,1
-4326.5,83,1158.4807,1467.561552,877.0115013,924.920421,447.2898546,447.2898546,1931.07498,18144.78267,1,1,1,1,1,1,1
-4327,83,1158.4807,1467.561552,845.6082725,934.2330255,447.2898546,447.2898546,1910.880843,17954.75064,1,1,1,1,1,1,1
-4327.5,83,1158.4807,1467.561552,855.0063971,902.5338021,447.2898546,447.2898546,1890.494363,17762.90785,1,1,1,1,1,1,1
-4328,83,1158.4807,1467.561552,857.5656296,874.8901877,447.2898546,447.2898546,1867.826978,17549.8017,1,1,1,1,1,1,1
-4328.5,83,1158.4807,1467.561552,818.3915087,916.4156831,447.2898546,447.2898546,1869.923079,17569.48576,1,1,1,1,1,1,1
-4329,83,1158.4807,1467.561552,816.0300738,945.1950181,447.2898546,447.2898546,1893.901613,17795.00015,1,1,1,1,1,1,1
-4329.5,83,1158.4807,1467.561552,822.1110099,971.5719917,447.2898546,447.2898546,1923.534854,18073.82823,1,1,1,1,1,1,1
-4330,83,1158.4807,1467.561552,844.6576495,984.9216323,447.2898546,447.2898546,1956.349098,18382.61934,1,1,1,1,1,1,1
-4330.5,83,1158.4807,1467.561552,861.5954989,991.2980472,447.2898546,447.2898546,1977.661588,18583.17542,1,1,1,1,1,1,1
-4331,83,1158.4807,1467.561552,873.4030598,978.5560008,447.2898546,447.2898546,1976.807087,18575.1343,1,1,1,1,1,1,1
-4331.5,83,1158.4807,1467.561552,891.2901073,946.7863706,447.2898546,447.2898546,1964.116442,18455.71156,1,1,1,1,1,1,1
-4332,83,1158.4807,1467.561552,873.8711474,946.3079583,447.2898546,447.2898546,1947.755871,18301.75414,1,1,1,1,1,1,1
-4332.5,83,1158.4807,1467.561552,860.9881759,939.1195486,447.2898546,447.2898546,1929.407946,18129.09519,1,1,1,1,1,1,1
-4333,83,1158.4807,1467.561552,875.3045012,899.5330834,447.2898546,447.2898546,1906.307207,17911.71117,1,1,1,1,1,1,1
-4333.5,83,1158.4807,1467.561552,842.3268329,911.7904421,447.2898546,447.2898546,1887.36577,17733.46722,1,1,1,1,1,1,1
-4334,83,1158.4807,1467.561552,838.9795825,909.1404962,447.2898546,447.2898546,1881.882838,17681.87121,1,1,1,1,1,1,1
-4334.5,83,1158.4807,1467.561552,822.7834599,921.2462047,447.2898546,447.2898546,1878.201186,17647.2693,1,1,1,1,1,1,1
-4335,83,1158.4807,1467.561552,813.6180541,923.7442368,447.2898546,447.2898546,1872.21547,17591.02467,1,1,1,1,1,1,1
-4335.5,83,1158.4807,1467.561552,837.1939421,907.1054248,447.2898546,447.2898546,1878.46069,17649.72057,1,1,1,1,1,1,1
-4336,83,1158.4807,1467.561552,866.0547674,895.4867137,447.2898546,447.2898546,1894.1522,17797.32895,1,1,1,1,1,1,1
-4336.5,83,1158.4807,1467.561552,870.466796,911.9966493,447.2898546,447.2898546,1913.277675,17977.30474,1,1,1,1,1,1,1
-4337,83,1158.4807,1467.561552,883.128651,925.3443377,447.2898546,447.2898546,1937.054839,18201.05488,1,1,1,1,1,1,1
-4337.5,83,1158.4807,1467.561552,906.8080329,919.0901419,447.2898546,447.2898546,1952.983631,18350.94942,1,1,1,1,1,1,1
-4338,83,1158.4807,1467.561552,909.2812084,921.4065154,447.2898546,447.2898546,1957.361716,18392.14827,1,1,1,1,1,1,1
-4338.5,83,1158.4807,1467.561552,905.1113098,935.7430624,447.2898546,447.2898546,1966.656063,18479.6106,1,1,1,1,1,1,1
-4339,83,1158.4807,1467.561552,873.5528123,984.810195,447.2898546,447.2898546,1982.66147,18630.22537,1,1,1,1,1,1,1
-4339.5,83,1158.4807,1467.561552,890.0362746,964.9302955,447.2898546,447.2898546,1979.55687,18601.01021,1,1,1,1,1,1,1
-4340,83,1158.4807,1467.561552,862.5139386,921.3708837,447.2898546,447.2898546,1914.577702,17989.53852,1,1,1,1,1,1,1
-4340.5,83,1158.4807,1467.561552,836.8533784,860.5016726,447.2898546,447.2898546,1836.342454,17253.98163,1,1,1,1,1,1,1
-4341,83,1158.4807,1467.561552,764.4647665,871.649646,447.2898546,447.2898546,1781.38588,16737.60527,1,1,1,1,1,1,1
-4341.5,83,1158.4807,1467.561552,784.3682799,861.0175271,447.2898546,447.2898546,1789.703887,16815.75983,1,1,1,1,1,1,1
-4342,83,1158.4807,1467.561552,802.972018,906.0699403,447.2898546,447.2898546,1846.80901,17352.30953,1,1,1,1,1,1,1
-4342.5,83,1158.4807,1467.561552,864.1966728,923.0846208,447.2898546,447.2898546,1917.755061,18019.49333,1,1,1,1,1,1,1
-4343,83,1158.4807,1467.561552,928.6074487,947.3671952,447.2898546,447.2898546,1998.761016,18781.72669,1,1,1,1,1,1,1
-4343.5,83,1158.4807,1467.561552,931.2344872,1044.161502,447.2898546,447.2898546,2089.647186,19636.99043,1,1,1,1,1,1,1
-4344,83,1158.4807,1467.561552,1000.1398,1082.532591,447.2898546,447.2898546,2187.713467,20559.82108,1,1,1,1,1,1,1
-4344.5,83,1158.4807,1467.561552,994.5807935,1120.852855,447.2898546,447.2898546,2217.662105,20841.64594,1,1,1,1,1,1,1
-4345,83,1158.4807,1467.561552,993.6823041,1077.94609,447.2898546,447.2898546,2177.618101,20464.82072,1,1,1,1,1,1,1
-4345.5,83,1158.4807,1467.561552,959.8717404,1052.935152,447.2898546,447.2898546,2123.846603,19958.81626,1,1,1,1,1,1,1
-4346,83,1158.4807,1467.561552,901.3459915,1071.714068,447.2898546,447.2898546,2087.512269,19616.89999,1,1,1,1,1,1,1
-4346.5,83,1158.4807,1467.561552,907.8368692,1038.291019,447.2898546,447.2898546,2062.89167,19385.21322,1,1,1,1,1,1,1
-4347,83,1158.4807,1467.561552,895.4368718,1029.820374,447.2898546,447.2898546,2043.812714,19205.67524,1,1,1,1,1,1,1
-4347.5,83,1158.4807,1467.561552,866.0953843,1044.156569,447.2898546,447.2898546,2030.096152,19076.59888,1,1,1,1,1,1,1
-4348,83,1158.4807,1467.561552,881.0558835,1020.926629,447.2898546,447.2898546,2022.537056,19005.46571,1,1,1,1,1,1,1
-4348.5,83,1158.4807,1467.561552,927.6035424,991.6618052,447.2898546,447.2898546,2038.336146,19154.13947,1,1,1,1,1,1,1
-4349,83,1158.4807,1467.561552,905.380501,1048.652114,447.2898546,447.2898546,2070.117656,19453.21193,1,1,1,1,1,1,1
-4349.5,83,1158.4807,1467.561552,926.5055636,1073.053967,447.2898546,447.2898546,2111.735905,19844.85106,1,1,1,1,1,1,1
-4350,83,1158.4807,1467.561552,1005.516252,1060.22888,447.2898546,447.2898546,2172.239634,20414.20744,1,1,1,1,1,1,1
-4350.5,83,1158.4807,1467.561552,1045.063499,1140.9051,447.2898546,447.2898546,2274.727153,21378.00644,1,1,1,1,1,1,1
-4351,83,1158.4807,1467.561552,1102.89429,1260.805367,447.2898546,447.2898546,2418.776851,22731.12646,1,1,1,1,1,1,1
-4351.5,83,1158.4807,1467.561552,1186.707786,1346.933604,447.2898546,447.2898546,2565.72147,24110.11127,1,1,1,1,1,1,1
-4352,83,1158.4807,1467.561552,1233.612475,1448.817643,447.2898546,447.2898546,2700.392043,25373.48998,1,1,1,1,1,1,1
-4352.5,83,1158.4807,1467.561552,1305.096418,1521.403883,447.2898546,447.2898546,2818.80504,26485.17034,1,1,1,1,1,1,1
-4353,83,1158.4807,1467.561552,1400.493647,1568.36039,447.2898546,447.2898546,2936.644163,27592.40969,1,1,1,1,1,1,1
-4353.5,83,1158.4807,1467.561552,1477.797991,1569.31131,447.2898546,447.2898546,3003.39056,28219.69557,1,1,1,1,1,1,1
-4354,83,1158.4807,1467.561552,1501.8406,1522.531707,447.2898546,447.2898546,2983.997484,28037.43803,1,1,1,1,1,1,1
-4354.5,83,1158.4807,1467.561552,1455.415062,1494.104636,447.2898546,447.2898546,2920.152312,27437.41821,1,1,1,1,1,1,1
-4355,83,1158.4807,1467.561552,1354.001236,1504.774971,447.2898546,447.2898546,2845.899472,26739.6312,1,1,1,1,1,1,1
-4355.5,83,1158.4807,1467.561552,1254.274366,1501.171261,447.2898546,447.2898546,2762.818222,25959.35946,1,1,1,1,1,1,1
-4356,83,1158.4807,1467.561552,1202.400351,1413.03521,447.2898546,447.2898546,2639.753395,24804.62359,1,1,1,1,1,1,1
-4356.5,83,1158.4807,1467.561552,1173.615371,1298.468144,447.2898546,447.2898546,2510.003145,23587.40407,1,1,1,1,1,1,1
-4357,83,1158.4807,1467.561552,1162.218646,1194.997505,447.2898546,447.2898546,2410.295731,22651.75423,1,1,1,1,1,1,1
-4357.5,83,1158.4807,1467.561552,1081.115677,1184.821086,447.2898546,447.2898546,2338.833922,21980.60399,1,1,1,1,1,1,1
-4358,83,1158.4807,1467.561552,1040.652162,1150.990128,447.2898546,447.2898546,2281.763578,21444.38059,1,1,1,1,1,1,1
-4358.5,83,1158.4807,1467.561552,992.6593328,1164.418427,447.2898546,447.2898546,2254.716811,21190.25358,1,1,1,1,1,1,1
-4359,83,1158.4807,1467.561552,994.6235252,1152.520727,447.2898546,447.2898546,2246.564728,21113.6201,1,1,1,1,1,1,1
-4359.5,83,1158.4807,1467.561552,1006.925269,1150.71416,447.2898546,447.2898546,2254.963354,21192.55081,1,1,1,1,1,1,1
-4360,83,1158.4807,1467.561552,1055.918892,1151.378847,447.2898546,447.2898546,2294.014218,21559.48523,1,1,1,1,1,1,1
-4360.5,83,1158.4807,1467.561552,1130.822806,1153.414986,447.2898546,447.2898546,2352.439642,22108.44048,1,1,1,1,1,1,1
-4361,83,1158.4807,1467.561552,1122.448236,1249.737098,447.2898546,447.2898546,2422.326505,22764.71364,1,1,1,1,1,1,1
-4361.5,83,1158.4807,1467.561552,1120.201881,1315.019599,447.2898546,447.2898546,2476.639184,23274.40821,1,1,1,1,1,1,1
-4362,83,1158.4807,1467.561552,1147.550643,1329.205694,447.2898546,447.2898546,2514.233234,23627.08746,1,1,1,1,1,1,1
-4362.5,83,1158.4807,1467.561552,1162.433326,1337.423289,447.2898546,447.2898546,2535.142191,23823.23948,1,1,1,1,1,1,1
-4363,83,1158.4807,1467.561552,1186.617861,1294.913255,447.2898546,447.2898546,2518.554746,23667.62837,1,1,1,1,1,1,1
-4363.5,83,1158.4807,1467.561552,1187.18397,1260.61803,447.2898546,447.2898546,2488.025593,23381.22685,1,1,1,1,1,1,1
-4364,83,1158.4807,1467.561552,1172.7838,1245.327128,447.2898546,447.2898546,2461.151899,23129.11782,1,1,1,1,1,1,1
-4364.5,83,1158.4807,1467.561552,1159.837157,1231.579662,447.2898546,447.2898546,2436.990788,22902.45657,1,1,1,1,1,1,1
-4365,83,1158.4807,1467.561552,1147.517756,1218.498236,447.2898546,447.2898546,2414.29422,22689.51616,1,1,1,1,1,1,1
-4365.5,83,1158.4807,1467.561552,1089.433339,1252.41745,447.2898546,447.2898546,2395.228054,22510.47383,1,1,1,1,1,1,1
-4366,83,1158.4807,1467.561552,1063.804865,1257.3837,447.2898546,447.2898546,2380.026142,22367.63889,1,1,1,1,1,1,1
-4366.5,83,1158.4807,1467.561552,1045.1065,1259.97649,447.2898546,447.2898546,2368.177001,22256.30606,1,1,1,1,1,1,1
-4367,83,1158.4807,1467.561552,1047.575347,1246.653557,447.2898546,447.2898546,2360.191611,22181.27715,1,1,1,1,1,1,1
-4367.5,83,1158.4807,1467.561552,1039.899687,1253.789216,447.2898546,447.2898546,2359.793995,22177.54104,1,1,1,1,1,1,1
-4368,83,1158.4807,1467.561552,1051.138709,1250.798411,447.2898546,447.2898546,2365.86266,22234.56102,1,1,1,1,1,1,1
-4368.5,83,1158.4807,1467.561552,1073.595731,1243.586455,447.2898546,447.2898546,2377.07961,22339.9541,1,1,1,1,1,1,1
-4369,83,1158.4807,1467.561552,1101.574819,1234.051276,447.2898546,447.2898546,2390.649053,22467.45009,1,1,1,1,1,1,1
-4369.5,83,1158.4807,1467.561552,1102.749854,1251.741754,447.2898546,447.2898546,2404.608143,22598.60104,1,1,1,1,1,1,1
-4370,83,1158.4807,1467.561552,1158.555455,1214.380512,447.2898546,447.2898546,2420.263811,22745.53657,1,1,1,1,1,1,1
-4370.5,83,1158.4807,1467.561552,1121.245695,1246.361686,447.2898546,447.2898546,2415.441352,22700.29607,1,1,1,1,1,1,1
-4371,83,1158.4807,1467.561552,1098.508011,1239.334075,447.2898546,447.2898546,2392.370946,22483.62149,1,1,1,1,1,1,1
-4371.5,83,1158.4807,1467.561552,1067.232767,1243.80173,447.2898546,447.2898546,2372.555987,22297.45075,1,1,1,1,1,1,1
-4372,83,1158.4807,1467.561552,1110.524013,1180.557465,447.2898546,447.2898546,2357.876191,22159.52157,1,1,1,1,1,1,1
-4372.5,83,1158.4807,1467.561552,1139.207896,1139.207896,447.2898546,447.2898546,2348.558046,22071.96961,1,1,1,1,1,1,1
-4373,83,1158.4807,1467.561552,1080.153197,1201.174187,447.2898546,447.2898546,2350.699732,22092.09283,1,1,1,1,1,1,1
-4373.5,83,1158.4807,1467.561552,1116.882107,1209.715274,447.2898546,447.2898546,2384.006696,22405.03937,1,1,1,1,1,1,1
-4374,83,1158.4807,1467.561552,1190.144406,1222.199722,447.2898546,447.2898546,2456.623024,23086.5881,1,1,1,1,1,1,1
-4374.5,83,1158.4807,1467.561552,1173.715995,1279.618003,447.2898546,447.2898546,2493.033436,23428.20667,1,1,1,1,1,1,1
-4375,83,1158.4807,1467.561552,1167.306301,1281.876661,447.2898546,447.2898546,2489.276266,23392.95941,1,1,1,1,1,1,1
-4375.5,83,1158.4807,1467.561552,1193.170272,1242.301887,447.2898546,447.2898546,2476.866922,23276.54467,1,1,1,1,1,1,1
-4376,83,1158.4807,1467.561552,1173.089848,1245.188798,447.2898546,447.2898546,2461.304394,23130.54871,1,1,1,1,1,1,1
-4376.5,83,1158.4807,1467.561552,1143.763561,1325.235314,447.2898546,447.2898546,2507.211917,23561.21884,1,1,1,1,1,1,1
-4377,83,1158.4807,1467.561552,1228.241341,1393.060648,447.2898546,447.2898546,2645.064009,24854.4435,1,1,1,1,1,1,1
-4377.5,83,1158.4807,1467.561552,1326.150639,1446.108059,447.2898546,447.2898546,2775.599569,26079.41967,1,1,1,1,1,1,1
-4378,83,1158.4807,1467.561552,1420.030635,1477.556031,447.2898546,447.2898546,2877.841864,27039.81064,1,1,1,1,1,1,1
-4378.5,83,1158.4807,1467.561552,1497.965361,1548.977657,447.2898546,447.2898546,3003.249036,28218.36513,1,1,1,1,1,1,1
-4379,83,1158.4807,1467.561552,1564.347638,1650.308026,447.2898546,447.2898546,3146.225287,29562.06039,1,1,1,1,1,1,1
-4379.5,83,1158.4807,1467.561552,1559.436246,1795.020146,447.2898546,447.2898546,3261.509433,30645.54122,1,1,1,1,1,1,1
-4380,83,1158.4807,1467.561552,1577.666132,1864.513957,447.2898546,447.2898546,3334.42424,31331.33275,1,1,1,1,1,1,1
-4380.5,83,1158.4807,1467.561552,1643.529354,1929.360546,447.2898546,447.2898546,3446.173673,32383.03707,1,1,1,1,1,1,1
-4381,83,1158.4807,1467.561552,1815.027247,1938.341135,447.2898546,447.2898546,3598.774856,33818.88822,1,1,1,1,1,1,1
-4381.5,83,1158.4807,1467.561552,1886.044962,1976.118969,447.2898546,447.2898546,3688.284662,34660.56141,1,1,1,1,1,1,1
-4382,83,1158.4807,1467.561552,1898.322586,2015.744602,447.2898546,447.2898546,3735.636698,35105.08068,1,1,1,1,1,1,1
-4382.5,83,1158.4807,1467.561552,1897.036367,2068.783602,447.2898546,447.2898546,3787.568256,35592.33786,1,1,1,1,1,1,1
-4383,83,1158.4807,1467.561552,1943.019661,2090.95929,447.2898546,447.2898546,3855.962649,36234.06079,1,1,1,1,1,1,1
-4383.5,83,1158.4807,1467.561552,1937.313539,2140.869121,447.2898546,447.2898546,3900.319343,36650.24554,1,1,1,1,1,1,1
-4384,83,1158.4807,1467.561552,1868.023888,2221.767392,447.2898546,447.2898546,3911.967761,36759.53897,1,1,1,1,1,1,1
-4384.5,83,1158.4807,1467.561552,1877.315418,2233.845456,447.2898546,447.2898546,3933.411143,36960.73494,1,1,1,1,1,1,1
-4385,83,1158.4807,1467.561552,1933.671672,2210.14605,447.2898546,447.2898546,3966.181169,37268.20532,1,1,1,1,1,1,1
-4385.5,83,1158.4807,1467.561552,2000.622642,2167.783288,447.2898546,447.2898546,3990.854331,37499.70608,1,1,1,1,1,1,1
-4386,83,1158.4807,1467.561552,2017.133096,2170.536179,447.2898546,447.2898546,4010.183827,37681.06887,1,1,1,1,1,1,1
-4386.5,83,1158.4807,1467.561552,1972.895361,2254.409754,447.2898546,447.2898546,4049.957049,38054.2483,1,1,1,1,1,1,1
-4387,83,1158.4807,1467.561552,2045.606888,2246.042053,447.2898546,447.2898546,4111.527018,38632.16539,1,1,1,1,1,1,1
-4387.5,83,1158.4807,1467.561552,2027.038027,2300.333582,447.2898546,447.2898546,4144.122717,38938.2449,1,1,1,1,1,1,1
-4388,83,1158.4807,1467.561552,2048.64572,2280.356903,447.2898546,447.2898546,4145.515968,38951.33556,1,1,1,1,1,1,1
-4388.5,83,1158.4807,1467.561552,2051.708927,2252.292998,447.2898546,447.2898546,4124.156409,38750.64491,1,1,1,1,1,1,1
-4389,83,1158.4807,1467.561552,2027.00537,2240.374357,447.2898546,447.2898546,4089.823646,38428.32947,1,1,1,1,1,1,1
-4389.5,83,1158.4807,1467.561552,2049.506499,2177.156255,447.2898546,447.2898546,4049.312419,38048.19946,1,1,1,1,1,1,1
-4390,83,1158.4807,1467.561552,2076.348933,2104.807854,447.2898546,447.2898546,4003.648785,37619.75227,1,1,1,1,1,1,1
-4390.5,83,1158.4807,1467.561552,1944.298653,2189.730131,447.2898546,447.2898546,3956.357441,37176.0329,1,1,1,1,1,1,1
-4391,83,1158.4807,1467.561552,1940.397294,2146.469266,447.2898546,447.2898546,3909.032079,36731.99438,1,1,1,1,1,1,1
-4391.5,83,1158.4807,1467.561552,1985.921027,2053.821628,447.2898546,447.2898546,3861.746024,36288.32406,1,1,1,1,1,1,1
-4392,83,1158.4807,1467.561552,1872.421597,2123.296051,447.2898546,447.2898546,3817.569449,35873.82953,1,1,1,1,1,1,1
-4392.5,83,1158.4807,1467.561552,1919.65147,2040.693207,447.2898546,447.2898546,3782.073709,35540.78439,1,1,1,1,1,1,1
-4393,83,1158.4807,1467.561552,1873.453442,2055.05649,447.2898546,447.2898546,3750.129393,35241.06127,1,1,1,1,1,1,1
-4393.5,83,1158.4807,1467.561552,1832.611793,2053.379634,447.2898546,447.2898546,3709.35489,34858.3948,1,1,1,1,1,1,1
-4394,83,1158.4807,1467.561552,1820.616069,2012.259866,447.2898546,447.2898546,3664.889471,34440.759,1,1,1,1,1,1,1
-4394.5,83,1158.4807,1467.561552,1808.865415,1973.024864,447.2898546,447.2898546,3624.067095,34057.0916,1,1,1,1,1,1,1
-4395,83,1158.4807,1467.561552,1816.29325,1916.386485,447.2898546,447.2898546,3582.785568,33668.72949,1,1,1,1,1,1,1
-4395.5,83,1158.4807,1467.561552,1778.366286,1900.412525,447.2898546,447.2898546,3536.703021,33235.0336,1,1,1,1,1,1,1
-4396,83,1158.4807,1467.561552,1690.877595,1931.191639,447.2898546,447.2898546,3488.219965,32778.74619,1,1,1,1,1,1,1
-4396.5,83,1158.4807,1467.561552,1672.706357,1862.808127,447.2898546,447.2898546,3414.220721,32082.31929,1,1,1,1,1,1,1
-4397,83,1158.4807,1467.561552,1572.230463,1842.768323,447.2898546,447.2898546,3311.362727,31114.33138,1,1,1,1,1,1,1
-4397.5,83,1158.4807,1467.561552,1538.370152,1760.237282,447.2898546,447.2898546,3215.939021,30217.17509,1,1,1,1,1,1,1
-4398,83,1158.4807,1467.561552,1516.861735,1676.531391,447.2898546,447.2898546,3128.1609,29392.29247,1,1,1,1,1,1,1
-4398.5,83,1158.4807,1467.561552,1438.227815,1653.562076,447.2898546,447.2898546,3041.500451,28577.85381,1,1,1,1,1,1,1
-4399,83,1158.4807,1467.561552,1366.136622,1625.010904,447.2898546,447.2898546,2955.658971,27771.11144,1,1,1,1,1,1,1
-4399.5,83,1158.4807,1467.561552,1350.832164,1555.159795,447.2898546,447.2898546,2883.026459,27088.50763,1,1,1,1,1,1,1
-4400,83,1158.4807,1467.561552,1392.708969,1451.078325,447.2898546,447.2898546,2833.230838,26620.57206,1,1,1,1,1,1,1
-4400.5,83,1158.4807,1467.561552,1387.119425,1424.258741,447.2898546,447.2898546,2808.875584,26391.72669,1,1,1,1,1,1,1
-4401,83,1158.4807,1467.561552,1295.233535,1498.861318,447.2898546,447.2898546,2796.13875,26272.05354,1,1,1,1,1,1,1
-4401.5,83,1158.4807,1467.561552,1314.743172,1445.312082,447.2898546,447.2898546,2769.147443,26018.5975,1,1,1,1,1,1,1
-4402,83,1158.4807,1467.561552,1252.412311,1448.293042,447.2898546,447.2898546,2716.933672,25528.67101,1,1,1,1,1,1,1
-4402.5,83,1158.4807,1467.561552,1216.012455,1391.624745,447.2898546,447.2898546,2632.696355,24738.4197,1,1,1,1,1,1,1
-4403,83,1158.4807,1467.561552,1180.098219,1321.507086,447.2898546,447.2898546,2536.724297,23838.08203,1,1,1,1,1,1,1
-4403.5,83,1158.4807,1467.561552,1148.230579,1261.269606,447.2898546,447.2898546,2453.358717,23056.00846,1,1,1,1,1,1,1
-4404,83,1158.4807,1467.561552,1096.230666,1219.063819,447.2898546,447.2898546,2376.869829,22337.89058,1,1,1,1,1,1,1
-4404.5,83,1158.4807,1467.561552,975.1457211,1142.61994,447.2898546,447.2898546,2213.471891,20801.71458,1,1,1,1,1,1,1
-4405,83,1158.4807,1467.561552,894.998067,992.859766,447.2898546,447.2898546,2009.624816,18883.95782,1,1,1,1,1,1,1
-4405.5,83,1158.4807,1467.561552,826.5785576,924.6644378,447.2898546,447.2898546,1885.048447,17711.89613,1,1,1,1,1,1,1
-4406,83,1158.4807,1467.561552,788.361538,872.2107908,447.2898546,447.2898546,1803.327765,16943.76685,1,1,1,1,1,1,1
-4406.5,83,1158.4807,1467.561552,714.6045135,814.9369962,447.2898546,447.2898546,1685.780897,15839.31611,1,1,1,1,1,1,1
-4407,83,1158.4807,1467.561552,646.767604,721.4685824,447.2898546,447.2898546,1544.795712,14514.64282,1,1,1,1,1,1,1
-4407.5,83,1158.4807,1467.561552,639.5488878,692.8446285,447.2898546,447.2898546,1511.060856,14197.67612,1,1,1,1,1,1,1
-4408,83,1158.4807,1467.561552,668.8895999,705.4475401,447.2898546,447.2898546,1546.671652,14532.26904,1,1,1,1,1,1,1
-4408.5,83,1158.4807,1467.561552,651.1079159,714.2406343,447.2898546,447.2898546,1538.48495,14455.34828,1,1,1,1,1,1,1
-4409,83,1158.4807,1467.561552,634.9326839,688.3372966,447.2898546,447.2898546,1504.898103,14139.77189,1,1,1,1,1,1,1
-4409.5,83,1158.4807,1467.561552,584.1210764,679.55117,447.2898546,447.2898546,1461.257506,13729.73225,1,1,1,1,1,1,1
-4410,83,1158.4807,1467.561552,533.3994079,651.9326097,447.2898546,447.2898546,1409.468564,13243.13183,1,1,1,1,1,1,1
-4410.5,83,1158.4807,1467.561552,517.7946791,592.869519,447.2898546,447.2898546,1356.897695,12749.18484,1,1,1,1,1,1,1
-4411,83,1158.4807,1467.561552,504.6635047,529.6950463,447.2898546,447.2898546,1297.039051,12186.76315,1,1,1,1,1,1,1
-4411.5,83,1158.4807,1467.561552,446.5427444,473.1193271,447.2898546,447.2898546,1205.10249,11322.94247,1,1,1,1,1,1,1
-4412,83,1158.4807,1467.561552,368.5831693,414.5356596,447.2898546,447.2898546,1095.655475,10294.59658,1,1,1,1,1,1,1
-4412.5,83,1158.4807,1467.561552,301.8321488,323.0042506,447.2898546,447.2898546,974.0052315,9151.591,1,1,1,1,1,1,1
-4413,83,1158.4807,1467.561552,205.5495361,232.0413014,447.2898546,447.2898546,832.8603416,7825.416798,1,1,1,1,1,1,1
-4413.5,83,1158.4807,1467.561552,122.2677583,136.1334625,447.2898546,447.2898546,705.6333298,6630.013277,1,1,1,1,1,1,1
-4414,83,1158.4807,1467.561552,51.45437333,56.1016079,447.2898546,447.2898546,599.0259591,5628.348134,1,1,1,1,1,1,1
-4414.5,83,1158.4807,1467.561552,15.23751757,18.47399538,447.2898546,447.2898546,545.8227788,5128.459843,1,1,1,1,1,1,1
-4415,83,1158.4807,1467.561552,1.547061037,2.133460967,447.2898546,447.2898546,524.1858832,4925.163026,1,1,1,1,1,1,1
-4415.5,83,1158.4807,1467.561552,-6.968622813,-7.236454604,447.2898546,447.2898546,511.2992621,4804.08252,1,1,1,1,1,1,1
-4416,83,1158.4807,1467.561552,-8.95139516,-9.953953925,447.2898546,447.2898546,507.9128658,4772.264653,1,1,1,1,1,1,1
-4416.5,83,1158.4807,1467.561552,-6.672058712,-7.942375784,447.2898546,447.2898546,511.0046667,4801.314998,1,1,1,1,1,1,1
-4417,83,1158.4807,1467.561552,-3.98804226,-4.676098045,447.2898546,447.2898546,515.2916423,4841.594437,1,1,1,1,1,1,1
-4417.5,83,1158.4807,1467.561552,-9.989798395,-10.12627397,447.2898546,447.2898546,507.0411329,4764.073805,1,1,1,1,1,1,1
-4418,83,1158.4807,1467.561552,-20.92721889,-22.65107056,447.2898546,447.2898546,490.1905858,4605.748997,1,1,1,1,1,1,1
-4418.5,83,1158.4807,1467.561552,-50.19708066,-56.41811917,447.2898546,447.2898546,445.5250537,4186.079353,1,1,1,1,1,1,1
-4419,83,1158.4807,1467.561552,-121.2582433,-130.1633312,447.2898546,447.2898546,351.5760941,3303.350578,1,1,1,1,1,1,1
-4419.5,83,1158.4807,1467.561552,-186.8304096,-192.7277467,447.2898546,447.2898546,265.7700294,2497.131176,1,1,1,1,1,1,1
-4420,83,1158.4807,1467.561552,-216.6538324,-227.1682504,447.2898546,447.2898546,220.3692188,2070.552622,1,1,1,1,1,1,1
-4420.5,83,1158.4807,1467.561552,-189.7468908,-219.8589588,447.2898546,447.2898546,244.808314,2300.178199,1,1,1,1,1,1,1
-4421,83,1158.4807,1467.561552,-149.0107542,-161.9997322,447.2898546,447.2898546,312.6214941,2937.339799,1,1,1,1,1,1,1
-4421.5,83,1158.4807,1467.561552,-90.21558287,-92.93841601,447.2898546,447.2898546,394.9926983,3711.285647,1,1,1,1,1,1,1
-4422,83,1158.4807,1467.561552,-22.13443382,-23.51692449,447.2898546,447.2898546,489.0628309,4595.152871,1,1,1,1,1,1,1
-4422.5,83,1158.4807,1467.561552,23.19763277,25.62558151,447.2898546,447.2898546,556.7096819,5230.75173,1,1,1,1,1,1,1
-4423,83,1158.4807,1467.561552,37.61998441,44.60569769,447.2898546,447.2898546,580.7761123,5456.875541,1,1,1,1,1,1,1
-4423.5,83,1158.4807,1467.561552,20.91361179,25.56108108,447.2898546,447.2898546,555.0185758,5214.861815,1,1,1,1,1,1,1
-4424,83,1158.4807,1467.561552,-10.53727683,-10.86864078,447.2898546,447.2898546,506.1422422,4755.628026,1,1,1,1,1,1,1
-4424.5,83,1158.4807,1467.561552,-26.58668869,-27.58991436,447.2898546,447.2898546,482.5929496,4534.363044,1,1,1,1,1,1,1
-4425,83,1158.4807,1467.561552,-29.55668754,-33.19123361,447.2898546,447.2898546,476.4630839,4476.767773,1,1,1,1,1,1,1
-4425.5,83,1158.4807,1467.561552,-29.44757684,-34.56889455,447.2898546,447.2898546,475.5562052,4468.247111,1,1,1,1,1,1,1
-4426,83,1158.4807,1467.561552,-24.16273016,-27.07118175,447.2898546,447.2898546,484.6977113,4554.139294,1,1,1,1,1,1,1
-4426.5,83,1158.4807,1467.561552,51.9390698,52.52836402,447.2898546,447.2898546,596.8151598,5607.57608,1,1,1,1,1,1,1
-4427,83,1158.4807,1467.561552,175.5447563,198.0331746,447.2898546,447.2898546,788.823713,7411.656429,1,1,1,1,1,1,1
-4427.5,83,1158.4807,1467.561552,271.2817954,316.7282572,447.2898546,447.2898546,946.185714,8890.203522,1,1,1,1,1,1,1
-4428,83,1158.4807,1467.561552,366.9720628,384.4619942,447.2898546,447.2898546,1071.633523,10068.89013,1,1,1,1,1,1,1
-4428.5,83,1158.4807,1467.561552,462.2504905,503.9125223,447.2898546,447.2898546,1242.376148,11673.15911,1,1,1,1,1,1,1
-4429,83,1158.4807,1467.561552,600.7856466,687.417797,447.2898546,447.2898546,1487.561922,13976.88383,1,1,1,1,1,1,1
-4429.5,83,1158.4807,1467.561552,677.1874318,811.791956,447.2898546,447.2898546,1649.393131,15497.4232,1,1,1,1,1,1,1
-4430,83,1158.4807,1467.561552,733.0321434,794.7963924,447.2898546,447.2898546,1684.244249,15824.87848,1,1,1,1,1,1,1
-4430.5,83,1158.4807,1467.561552,779.8377895,784.9967017,447.2898546,447.2898546,1717.441629,16136.7956,1,1,1,1,1,1,1
-4431,83,1158.4807,1467.561552,771.1481563,858.7317814,447.2898546,447.2898546,1775.793975,16685.06464,1,1,1,1,1,1,1
-4431.5,83,1158.4807,1467.561552,804.4061435,882.9505732,447.2898546,447.2898546,1827.355577,17169.52849,1,1,1,1,1,1,1
-4432,83,1158.4807,1467.561552,827.4902815,890.4492335,447.2898546,447.2898546,1854.790395,17427.30145,1,1,1,1,1,1,1
-4432.5,83,1158.4807,1467.561552,860.0085418,907.0005969,447.2898546,447.2898546,1899.279075,17845.6725,1,1,1,1,1,1,1
-4433,83,1158.4807,1467.561552,860.4498978,984.172515,447.2898546,447.2898546,1970.099903,18512.01759,1,1,1,1,1,1,1
-4433.5,83,1158.4807,1467.561552,888.7590631,970.2325083,447.2898546,447.2898546,1983.236584,18635.63755,1,1,1,1,1,1,1
-4434,83,1158.4807,1467.561552,891.0356713,927.4044742,447.2898546,447.2898546,1946.166401,18286.79683,1,1,1,1,1,1,1
-4434.5,83,1158.4807,1467.561552,874.7478229,910.4518157,447.2898546,447.2898546,1915.779371,18000.84685,1,1,1,1,1,1,1
-4435,83,1158.4807,1467.561552,846.1426665,954.1518194,447.2898546,447.2898546,1929.578539,18130.7005,1,1,1,1,1,1,1
-4435.5,83,1158.4807,1467.561552,865.0750237,975.4672081,447.2898546,447.2898546,1966.370421,18476.92241,1,1,1,1,1,1,1
-4436,83,1158.4807,1467.561552,902.2792867,983.9964668,447.2898546,447.2898546,2008.177542,18870.33857,1,1,1,1,1,1,1
-4436.5,83,1158.4807,1467.561552,909.4457025,1025.62327,447.2898546,447.2898546,2052.782479,19290.08331,1,1,1,1,1,1,1
-4437,83,1158.4807,1467.561552,942.9493227,1042.132307,447.2898546,447.2898546,2098.50179,19720.3144,1,1,1,1,1,1,1
-4437.5,83,1158.4807,1467.561552,948.0069258,1068.901757,447.2898546,447.2898546,2127.595653,19994.09562,1,1,1,1,1,1,1
-4438,83,1158.4807,1467.561552,922.748001,1061.656302,447.2898546,447.2898546,2097.882323,19714.48491,1,1,1,1,1,1,1
-4438.5,83,1158.4807,1467.561552,888.1355988,1049.230012,447.2898546,447.2898546,2054.881868,19309.83928,1,1,1,1,1,1,1
-4439,83,1158.4807,1467.561552,885.2394446,1032.47678,447.2898546,447.2898546,2036.919219,19140.80576,1,1,1,1,1,1,1
-4439.5,83,1158.4807,1467.561552,876.7586883,1035.969066,447.2898546,447.2898546,2032.359616,19097.89868,1,1,1,1,1,1,1
-4440,83,1158.4807,1467.561552,920.4925923,991.2738324,447.2898546,447.2898546,2031.4811,19089.6317,1,1,1,1,1,1,1
-4440.5,83,1158.4807,1467.561552,931.3778928,988.8116329,447.2898546,447.2898546,2039.180897,19162.08896,1,1,1,1,1,1,1
-4441,83,1158.4807,1467.561552,936.6523327,1028.404247,447.2898546,447.2898546,2080.195873,19548.05076,1,1,1,1,1,1,1
-4441.5,83,1158.4807,1467.561552,951.208052,1051.335215,447.2898546,447.2898546,2114.463768,19870.52077,1,1,1,1,1,1,1
-4442,83,1158.4807,1467.561552,937.0768266,1049.476501,447.2898546,447.2898546,2099.847007,19732.97338,1,1,1,1,1,1,1
-4442.5,83,1158.4807,1467.561552,922.4615186,1026.581956,447.2898546,447.2898546,2065.556991,19410.29502,1,1,1,1,1,1,1
-4443,83,1158.4807,1467.561552,908.0439004,1003.627469,447.2898546,447.2898546,2031.39375,19088.80939,1,1,1,1,1,1,1
-4443.5,83,1158.4807,1467.561552,910.3955408,967.1928743,447.2898546,447.2898546,2000.236765,18795.61379,1,1,1,1,1,1,1
-4444,83,1158.4807,1467.561552,855.8228757,989.9576409,447.2898546,447.2898546,1971.158844,18521.98293,1,1,1,1,1,1,1
-4444.5,83,1158.4807,1467.561552,876.6781554,950.7447575,447.2898546,447.2898546,1954.378002,18364.07054,1,1,1,1,1,1,1
-4445,83,1158.4807,1467.561552,880.9374169,960.6330906,447.2898546,447.2898546,1967.310915,18485.7728,1,1,1,1,1,1,1
-4445.5,83,1158.4807,1467.561552,911.5572227,961.5482798,447.2898546,447.2898546,1996.138325,18757.04616,1,1,1,1,1,1,1
-4446,83,1158.4807,1467.561552,918.6933592,988.5946064,447.2898546,447.2898546,2027.385925,19051.0949,1,1,1,1,1,1,1
-4446.5,83,1158.4807,1467.561552,903.0519613,1011.439325,447.2898546,447.2898546,2033.970678,19113.05957,1,1,1,1,1,1,1
-4447,83,1158.4807,1467.561552,899.135984,1000.581371,447.2898546,447.2898546,2020.465496,18985.97203,1,1,1,1,1,1,1
-4447.5,83,1158.4807,1467.561552,913.1523638,957.4410199,447.2898546,447.2898546,1993.84225,18735.43948,1,1,1,1,1,1,1
-4448,83,1158.4807,1467.561552,884.2290366,925.975824,447.2898546,447.2898546,1938.637606,18215.94887,1,1,1,1,1,1,1
-4448.5,83,1158.4807,1467.561552,856.1282595,885.6072162,447.2898546,447.2898546,1876.358322,17630.12053,1,1,1,1,1,1,1
-4449,83,1158.4807,1467.561552,805.4877376,877.4197698,447.2898546,447.2898546,1823.363684,17132.02114,1,1,1,1,1,1,1
-4449.5,83,1158.4807,1467.561552,794.8767852,850.266857,447.2898546,447.2898546,1789.486244,16813.7145,1,1,1,1,1,1,1
-4450,83,1158.4807,1467.561552,757.7559383,865.146418,447.2898546,447.2898546,1769.534239,16626.24892,1,1,1,1,1,1,1
-4450.5,83,1158.4807,1467.561552,768.348933,849.6527258,447.2898546,447.2898546,1765.137373,16584.93646,1,1,1,1,1,1,1
-4451,83,1158.4807,1467.561552,768.5334174,896.7885429,447.2898546,447.2898546,1807.588049,16983.79617,1,1,1,1,1,1,1
-4451.5,83,1158.4807,1467.561552,800.5172757,952.1413704,447.2898546,447.2898546,1886.366004,17724.31312,1,1,1,1,1,1,1
-4452,83,1158.4807,1467.561552,901.6453838,962.4971148,447.2898546,447.2898546,1987.945298,18679.94807,1,1,1,1,1,1,1
-4452.5,83,1158.4807,1467.561552,890.0246007,1023.474946,447.2898546,447.2898546,2033.065273,19104.53911,1,1,1,1,1,1,1
-4453,83,1158.4807,1467.561552,908.6100593,985.8691449,447.2898546,447.2898546,2015.677163,18940.91211,1,1,1,1,1,1,1
-4453.5,83,1158.4807,1467.561552,918.5646828,949.5685111,447.2898546,447.2898546,1991.593394,18714.27717,1,1,1,1,1,1,1
-4454,83,1158.4807,1467.561552,917.8955519,930.4674011,447.2898546,447.2898546,1973.520682,18544.20817,1,1,1,1,1,1,1
-4454.5,83,1158.4807,1467.561552,873.0770539,944.8171058,447.2898546,447.2898546,1945.666794,18282.09579,1,1,1,1,1,1,1
-4455,83,1158.4807,1467.561552,816.7612143,945.5472672,447.2898546,447.2898546,1894.930542,17804.71232,1,1,1,1,1,1,1
-4455.5,83,1158.4807,1467.561552,828.5791214,875.6069703,447.2898546,447.2898546,1842.452177,17311.37318,1,1,1,1,1,1,1
-4456,83,1158.4807,1467.561552,814.0257168,846.7655386,447.2898546,447.2898546,1803.523569,16945.60659,1,1,1,1,1,1,1
-4456.5,83,1158.4807,1467.561552,833.187845,849.8890105,447.2898546,447.2898546,1823.515981,17133.45216,1,1,1,1,1,1,1
-4457,83,1158.4807,1467.561552,828.3711047,922.4719875,447.2898546,447.2898546,1884.637826,17707.9983,1,1,1,1,1,1,1
-4457.5,83,1158.4807,1467.561552,846.8827515,967.7620746,447.2898546,447.2898546,1942.696414,18254.14377,1,1,1,1,1,1,1
-4458,83,1158.4807,1467.561552,880.6316491,966.9258652,447.2898546,447.2898546,1972.783857,18537.27477,1,1,1,1,1,1,1
-4458.5,83,1158.4807,1467.561552,901.5835784,1003.351586,447.2898546,447.2898546,2025.23622,19030.86555,1,1,1,1,1,1,1
-4459,83,1158.4807,1467.561552,922.8289531,1083.865419,447.2898546,447.2898546,2118.259171,19906.23693,1,1,1,1,1,1,1
-4459.5,83,1158.4807,1467.561552,945.5100881,1102.704106,447.2898546,447.2898546,2156.213958,20263.40192,1,1,1,1,1,1,1
-4460,83,1158.4807,1467.561552,930.0339215,1098.779884,447.2898546,447.2898546,2138.47897,20096.51068,1,1,1,1,1,1,1
-4460.5,83,1158.4807,1467.561552,935.5806641,1076.774371,447.2898546,447.2898546,2123.433783,19954.93119,1,1,1,1,1,1,1
-4461,83,1158.4807,1467.561552,940.4468602,1104.092385,447.2898546,447.2898546,2152.855307,20231.79607,1,1,1,1,1,1,1
-4461.5,83,1158.4807,1467.561552,987.6627288,1106.254662,447.2898546,447.2898546,2197.99321,20656.55586,1,1,1,1,1,1,1
-4462,83,1158.4807,1467.561552,1023.861579,1109.183378,447.2898546,447.2898546,2233.762155,20993.15154,1,1,1,1,1,1,1
-4462.5,83,1158.4807,1467.561552,1048.030616,1077.011467,447.2898546,447.2898546,2226.446641,20924.31048,1,1,1,1,1,1,1
-4463,83,1158.4807,1467.561552,1025.090121,1052.350318,447.2898546,447.2898546,2182.931795,20514.82365,1,1,1,1,1,1,1
-4463.5,83,1158.4807,1467.561552,990.8640351,1031.307465,447.2898546,447.2898546,2132.40678,20039.36967,1,1,1,1,1,1,1
-4464,83,1158.4807,1467.561552,972.7915363,999.2808907,447.2898546,447.2898546,2086.609153,19608.40181,1,1,1,1,1,1,1
-4464.5,83,1158.4807,1467.561552,943.8049064,962.8716722,447.2898546,447.2898546,2026.827504,19045.84007,1,1,1,1,1,1,1
-4465,83,1158.4807,1467.561552,889.421473,919.2387776,447.2898546,447.2898546,1937.225492,18202.66048,1,1,1,1,1,1,1
-4465.5,83,1158.4807,1467.561552,855.9415727,927.1437178,447.2898546,447.2898546,1913.846402,17982.65721,1,1,1,1,1,1,1
-4466,83,1158.4807,1467.561552,891.0841748,945.9547639,447.2898546,447.2898546,1963.168337,18446.78983,1,1,1,1,1,1,1
-4466.5,83,1158.4807,1467.561552,886.1603541,959.5826561,447.2898546,447.2898546,1971.124744,18521.66199,1,1,1,1,1,1,1
-4467,83,1158.4807,1467.561552,847.1624541,961.3423967,447.2898546,447.2898546,1937.083822,18201.32732,1,1,1,1,1,1,1
-4467.5,83,1158.4807,1467.561552,844.8759346,934.2161611,447.2898546,447.2898546,1910.19681,17948.31327,1,1,1,1,1,1,1
-4468,83,1158.4807,1467.561552,850.3268757,933.5352422,447.2898546,447.2898546,1914.556896,17989.34285,1,1,1,1,1,1,1
-4468.5,83,1158.4807,1467.561552,856.3841767,972.2981904,447.2898546,447.2898546,1955.529411,18374.90563,1,1,1,1,1,1,1
-4469,83,1158.4807,1467.561552,910.2235668,992.2737464,447.2898546,447.2898546,2023.007351,19009.89125,1,1,1,1,1,1,1
-4469.5,83,1158.4807,1467.561552,925.0520565,1036.264641,447.2898546,447.2898546,2076.776418,19515.87277,1,1,1,1,1,1,1
-4470,83,1158.4807,1467.561552,977.7319193,1024.485692,447.2898546,447.2898546,2114.165541,19867.71451,1,1,1,1,1,1,1
-4470.5,83,1158.4807,1467.561552,968.9689716,1078.298052,447.2898546,447.2898546,2155.348054,20255.25322,1,1,1,1,1,1,1
-4471,83,1158.4807,1467.561552,957.8242772,1155.182253,447.2898546,447.2898546,2215.443699,20820.76964,1,1,1,1,1,1,1
-4471.5,83,1158.4807,1467.561552,977.3525833,1147.779698,447.2898546,447.2898546,2226.529034,20925.08544,1,1,1,1,1,1,1
-4472,83,1158.4807,1467.561552,934.1820668,1117.923776,447.2898546,447.2898546,2159.771795,20296.88205,1,1,1,1,1,1,1
-4472.5,83,1158.4807,1467.561552,901.4277335,1087.223994,447.2898546,447.2898546,2101.765192,19751.02405,1,1,1,1,1,1,1
-4473,83,1158.4807,1467.561552,896.8536943,1060.074646,447.2898546,447.2898546,2072.764722,19478.12194,1,1,1,1,1,1,1
-4473.5,83,1158.4807,1467.561552,942.3048718,994.9596336,447.2898546,447.2898546,2054.788604,19308.96139,1,1,1,1,1,1,1
-4474,83,1158.4807,1467.561552,916.9983525,1019.738809,447.2898546,447.2898546,2054.306453,19304.42441,1,1,1,1,1,1,1
-4474.5,83,1158.4807,1467.561552,921.1589349,1038.811086,447.2898546,447.2898546,2075.545618,19504.29099,1,1,1,1,1,1,1
-4475,83,1158.4807,1467.561552,933.6148597,1074.277454,447.2898546,447.2898546,2119.35345,19916.53413,1,1,1,1,1,1,1
-4475.5,83,1158.4807,1467.561552,991.0652377,1073.43813,447.2898546,447.2898546,2171.104091,20403.52163,1,1,1,1,1,1,1
-4476,83,1158.4807,1467.561552,1014.547049,1099.114467,447.2898546,447.2898546,2216.042146,20826.40134,1,1,1,1,1,1,1
-4476.5,83,1158.4807,1467.561552,1017.196262,1094.94381,447.2898546,447.2898546,2214.652159,20813.32095,1,1,1,1,1,1,1
-4477,83,1158.4807,1467.561552,973.9148321,1104.672835,447.2898546,447.2898546,2183.980639,20524.69367,1,1,1,1,1,1,1
-4477.5,83,1158.4807,1467.561552,989.438805,1058.770039,447.2898546,447.2898546,2156.208766,20263.35277,1,1,1,1,1,1,1
-4478,83,1158.4807,1467.561552,986.3678079,1047.03873,447.2898546,447.2898546,2142.676842,20136.01392,1,1,1,1,1,1,1
-4478.5,83,1158.4807,1467.561552,945.8530222,1110.31692,447.2898546,447.2898546,2163.48675,20331.84104,1,1,1,1,1,1,1
-4479,83,1158.4807,1467.561552,984.9268764,1125.393219,447.2898546,447.2898546,2212.987885,20797.66011,1,1,1,1,1,1,1
-4479.5,83,1158.4807,1467.561552,992.21705,1156.834223,447.2898546,447.2898546,2247.630612,21123.59193,1,1,1,1,1,1,1
-4480,83,1158.4807,1467.561552,1038.093723,1132.537545,447.2898546,447.2898546,2265.322633,21289.90415,1,1,1,1,1,1,1
-4480.5,83,1158.4807,1467.561552,1082.163599,1111.453703,447.2898546,447.2898546,2283.308632,21458.89749,1,1,1,1,1,1,1
-4481,83,1158.4807,1467.561552,1042.84631,1183.728777,447.2898546,447.2898546,2309.097868,21701.20902,1,1,1,1,1,1,1
-4481.5,83,1158.4807,1467.561552,1054.742078,1151.818219,447.2898546,447.2898546,2293.436993,21554.06165,1,1,1,1,1,1,1
-4482,83,1158.4807,1467.561552,990.1987786,1129.156511,447.2898546,447.2898546,2219.441697,20858.23699,1,1,1,1,1,1,1
-4482.5,83,1158.4807,1467.561552,967.8662583,1099.378433,447.2898546,447.2898546,2173.610544,20427.10838,1,1,1,1,1,1,1
-4483,83,1158.4807,1467.561552,970.5008604,1086.995187,447.2898546,447.2898546,2164.69915,20343.24992,1,1,1,1,1,1,1
-4483.5,83,1158.4807,1467.561552,1003.669721,1045.355089,447.2898546,447.2898546,2156.954981,20270.37534,1,1,1,1,1,1,1
-4484,83,1158.4807,1467.561552,978.0042271,1058.759881,447.2898546,447.2898546,2145.747394,20164.90865,1,1,1,1,1,1,1
-4484.5,83,1158.4807,1467.561552,964.5620996,1073.322127,447.2898546,447.2898546,2146.770896,20174.53996,1,1,1,1,1,1,1
-4485,83,1158.4807,1467.561552,984.9476396,1074.207063,447.2898546,447.2898546,2166.214553,20357.50981,1,1,1,1,1,1,1
-4485.5,83,1158.4807,1467.561552,1020.474509,1062.265164,447.2898546,447.2898546,2187.775017,20560.39969,1,1,1,1,1,1,1
-4486,83,1158.4807,1467.561552,1031.38256,1066.27588,447.2898546,447.2898546,2201.413628,20688.74298,1,1,1,1,1,1,1
-4486.5,83,1158.4807,1467.561552,966.3518254,1117.992902,447.2898546,447.2898546,2189.243275,20574.2167,1,1,1,1,1,1,1
-4487,83,1158.4807,1467.561552,924.6251713,1130.097432,447.2898546,447.2898546,2162.164074,20319.39392,1,1,1,1,1,1,1
-4487.5,83,1158.4807,1467.561552,976.2452005,1072.459034,447.2898546,447.2898546,2156.662142,20267.61956,1,1,1,1,1,1,1
-4488,83,1158.4807,1467.561552,994.5497761,1092.03078,447.2898546,447.2898546,2191.2867,20593.44576,1,1,1,1,1,1,1
-4488.5,83,1158.4807,1467.561552,963.2170646,1115.27723,447.2898546,447.2898546,2183.894213,20523.88026,1,1,1,1,1,1,1
-4489,83,1158.4807,1467.561552,973.3288509,1042.317243,447.2898546,447.2898546,2126.441455,19983.23443,1,1,1,1,1,1,1
-4489.5,83,1158.4807,1467.561552,964.1815925,1023.518832,447.2898546,447.2898546,2100.895349,19742.83875,1,1,1,1,1,1,1
-4490,83,1158.4807,1467.561552,978.1648466,1005.004004,447.2898546,447.2898546,2096.753262,19703.86027,1,1,1,1,1,1,1
-4490.5,83,1158.4807,1467.561552,957.5730427,996.102156,447.2898546,447.2898546,2069.791451,19450.14244,1,1,1,1,1,1,1
-4491,83,1158.4807,1467.561552,920.5379657,990.4250232,447.2898546,447.2898546,2030.74549,19082.70925,1,1,1,1,1,1,1
-4491.5,83,1158.4807,1467.561552,896.1039092,1024.095264,447.2898546,447.2898546,2039.189339,19162.16828,1,1,1,1,1,1,1
-4492,83,1158.4807,1467.561552,954.0569586,1032.961666,447.2898546,447.2898546,2100.272049,19736.97341,1,1,1,1,1,1,1
-4492.5,83,1158.4807,1467.561552,979.896331,1076.026083,447.2898546,447.2898546,2163.260204,20329.70881,1,1,1,1,1,1,1
-4493,83,1158.4807,1467.561552,964.6397925,1147.823919,447.2898546,447.2898546,2214.9473,20816.09854,1,1,1,1,1,1,1
-4493.5,83,1158.4807,1467.561552,1044.169143,1116.142049,447.2898546,447.2898546,2256.413757,21206.11425,1,1,1,1,1,1,1
-4494,83,1158.4807,1467.561552,1028.797492,1175.767316,447.2898546,447.2898546,2291.875157,21539.38735,1,1,1,1,1,1,1
-4494.5,83,1158.4807,1467.561552,1072.385657,1177.358069,447.2898546,447.2898546,2326.903785,21868.51044,1,1,1,1,1,1,1
-4495,83,1158.4807,1467.561552,1126.487543,1172.466627,447.2898546,447.2898546,2363.668189,22213.94229,1,1,1,1,1,1,1
-4495.5,83,1158.4807,1467.561552,1161.044136,1224.795312,447.2898546,447.2898546,2434.460476,22878.55949,1,1,1,1,1,1,1
-4496,83,1158.4807,1467.561552,1239.53958,1264.077857,447.2898546,447.2898546,2538.545837,23855.17002,1,1,1,1,1,1,1
-4496.5,83,1158.4807,1467.561552,1271.921517,1360.550481,447.2898546,447.2898546,2655.174661,24949.29437,1,1,1,1,1,1,1
-4497,83,1158.4807,1467.561552,1350.219644,1414.03112,447.2898546,447.2898546,2769.281052,26020.08515,1,1,1,1,1,1,1
-4497.5,83,1158.4807,1467.561552,1383.627261,1530.700227,447.2898546,447.2898546,2892.447508,27177.07994,1,1,1,1,1,1,1
-4498,83,1158.4807,1467.561552,1448.744348,1644.356753,447.2898546,447.2898546,3042.618874,28588.36471,1,1,1,1,1,1,1
-4498.5,83,1158.4807,1467.561552,1520.224882,1761.429546,447.2898546,447.2898546,3200.574927,30072.75529,1,1,1,1,1,1,1
-4499,83,1158.4807,1467.561552,1679.481629,1793.312976,447.2898546,447.2898546,3361.205985,31583.50856,1,1,1,1,1,1,1
-4499.5,83,1158.4807,1467.561552,1771.454327,1907.604197,447.2898546,447.2898546,3536.941891,33237.28195,1,1,1,1,1,1,1
-4500,83,1158.4807,1467.561552,1866.296793,2007.864088,447.2898546,447.2898546,3704.518641,34812.51943,1,1,1,1,1,1,1
-4500.5,83,1158.4807,1467.561552,1906.242597,2107.149221,447.2898546,447.2898546,3835.303824,36040.22525,1,1,1,1,1,1,1
-4501,83,1158.4807,1467.561552,1898.394727,2228.772842,447.2898546,447.2898546,3949.473627,37111.44396,1,1,1,1,1,1,1
-4501.5,83,1158.4807,1467.561552,1951.840634,2275.925072,447.2898546,447.2898546,4050.418912,38058.58141,1,1,1,1,1,1,1
-4502,83,1158.4807,1467.561552,1960.746235,2348.504241,447.2898546,447.2898546,4127.338335,38780.65699,1,1,1,1,1,1,1
-4502.5,83,1158.4807,1467.561552,1978.447545,2354.356164,447.2898546,447.2898546,4148.763848,38981.85221,1,1,1,1,1,1,1
-4503,83,1158.4807,1467.561552,2085.35248,2230.94771,447.2898546,447.2898546,4134.664394,38849.37581,1,1,1,1,1,1,1
-4503.5,83,1158.4807,1467.561552,2021.542742,2262.381693,447.2898546,447.2898546,4105.620268,38576.60467,1,1,1,1,1,1,1
-4504,83,1158.4807,1467.561552,2051.600648,2195.070532,447.2898546,447.2898546,4069.389581,38236.57696,1,1,1,1,1,1,1
-4504.5,83,1158.4807,1467.561552,2066.551371,2164.889553,447.2898546,447.2898546,4054.107128,38093.1867,1,1,1,1,1,1,1
-4505,83,1158.4807,1467.561552,2085.388091,2156.384541,447.2898546,447.2898546,4064.475225,38190.46722,1,1,1,1,1,1,1
-4505.5,83,1158.4807,1467.561552,2047.545139,2202.660293,447.2898546,447.2898546,4072.937406,38269.86491,1,1,1,1,1,1,1
-4506,83,1158.4807,1467.561552,2064.740203,2192.979047,447.2898546,447.2898546,4080.476713,38340.60375,1,1,1,1,1,1,1
-4506.5,83,1158.4807,1467.561552,1988.089367,2301.946261,447.2898546,447.2898546,4110.987023,38627.01719,1,1,1,1,1,1,1
-4507,83,1158.4807,1467.561552,1959.932326,2363.591401,447.2898546,447.2898546,4140.835122,38907.35544,1,1,1,1,1,1,1
-4507.5,83,1158.4807,1467.561552,2057.683499,2275.500798,447.2898546,447.2898546,4149.088985,38984.907,1,1,1,1,1,1,1
-4508,83,1158.4807,1467.561552,2086.511837,2245.140147,447.2898546,447.2898546,4147.780096,38972.60887,1,1,1,1,1,1,1
-4508.5,83,1158.4807,1467.561552,2036.859248,2265.75715,447.2898546,447.2898546,4122.973682,38739.53183,1,1,1,1,1,1,1
-4509,83,1158.4807,1467.561552,1954.51728,2293.370294,447.2898546,447.2898546,4070.47223,38246.74572,1,1,1,1,1,1,1
-4509.5,83,1158.4807,1467.561552,1898.639951,2274.195106,447.2898546,447.2898546,3995.299016,37541.40937,1,1,1,1,1,1,1
-4510,83,1158.4807,1467.561552,1861.43644,2229.632659,447.2898546,447.2898546,3913.250677,36771.57613,1,1,1,1,1,1,1
-4510.5,83,1158.4807,1467.561552,1865.708866,2147.692827,447.2898546,447.2898546,3835.314559,36040.32659,1,1,1,1,1,1,1
-4511,83,1158.4807,1467.561552,1928.639221,2009.464519,447.2898546,447.2898546,3759.756358,35331.38822,1,1,1,1,1,1,1
-4511.5,83,1158.4807,1467.561552,1933.544313,1933.544313,447.2898546,447.2898546,3694.055183,34714.6638,1,1,1,1,1,1,1
-4512,83,1158.4807,1467.561552,1863.623524,1938.741383,447.2898546,447.2898546,3640.775427,34214.18775,1,1,1,1,1,1,1
-4512.5,83,1158.4807,1467.561552,1783.434428,1970.342061,447.2898546,447.2898546,3600.747348,33837.75835,1,1,1,1,1,1,1
-4513,83,1158.4807,1467.561552,1755.697765,1953.805903,447.2898546,447.2898546,3562.971059,33482.24966,1,1,1,1,1,1,1
-4513.5,83,1158.4807,1467.561552,1722.16135,1928.736689,447.2898546,447.2898546,3512.86642,33010.70075,1,1,1,1,1,1,1
-4514,83,1158.4807,1467.561552,1626.678898,1933.681526,447.2898546,447.2898546,3435.462526,32282.23147,1,1,1,1,1,1,1
-4514.5,83,1158.4807,1467.561552,1623.718231,1810.094404,447.2898546,447.2898546,3327.271475,31264.01628,1,1,1,1,1,1,1
-4515,83,1158.4807,1467.561552,1554.4473,1739.239004,447.2898546,447.2898546,3211.662589,30177.02677,1,1,1,1,1,1,1
-4515.5,83,1158.4807,1467.561552,1428.1935,1709.01942,447.2898546,447.2898546,3080.242711,28941.95542,1,1,1,1,1,1,1
-4516,83,1158.4807,1467.561552,1430.80534,1554.346647,447.2898546,447.2898546,2950.544218,27723.04335,1,1,1,1,1,1,1
-4516.5,83,1158.4807,1467.561552,1382.507237,1506.244984,447.2898546,447.2898546,2868.562967,26952.58321,1,1,1,1,1,1,1
-4517,83,1158.4807,1467.561552,1319.73989,1528.223007,447.2898546,447.2898546,2835.836998,26645.05185,1,1,1,1,1,1,1
-4517.5,83,1158.4807,1467.561552,1332.730913,1523.274385,447.2898546,447.2898546,2841.763252,26700.73358,1,1,1,1,1,1,1
-4518,83,1158.4807,1467.561552,1379.498006,1494.754038,447.2898546,447.2898546,2856.086429,26835.32639,1,1,1,1,1,1,1
-4518.5,83,1158.4807,1467.561552,1296.065999,1508.43329,447.2898546,447.2898546,2804.253428,26348.30546,1,1,1,1,1,1,1
-4519,83,1158.4807,1467.561552,1250.104993,1412.685394,447.2898546,447.2898546,2682.392294,25204.64367,1,1,1,1,1,1,1
-4519.5,83,1158.4807,1467.561552,1204.649011,1288.252475,447.2898546,447.2898546,2528.846779,23764.18079,1,1,1,1,1,1,1
-4520,83,1158.4807,1467.561552,1127.585987,1212.989693,447.2898546,447.2898546,2398.470113,22540.60978,1,1,1,1,1,1,1
-4520.5,83,1158.4807,1467.561552,1039.904452,1203.034613,447.2898546,447.2898546,2321.294118,21815.80282,1,1,1,1,1,1,1
-4521,83,1158.4807,1467.561552,1021.427411,1145.555813,447.2898546,447.2898546,2261.768212,21256.4369,1,1,1,1,1,1,1
-4521.5,83,1158.4807,1467.561552,960.7796572,1126.063052,447.2898546,447.2898546,2191.525993,20595.6975,1,1,1,1,1,1,1
-4522,83,1158.4807,1467.561552,918.045407,1092.825977,447.2898546,447.2898546,2122.0769,19942.16279,1,1,1,1,1,1,1
-4522.5,83,1158.4807,1467.561552,937.1188937,1043.16932,447.2898546,447.2898546,2094.119837,19679.07911,1,1,1,1,1,1,1
-4523,83,1158.4807,1467.561552,961.176961,1014.039393,447.2898546,447.2898546,2089.483132,19635.44649,1,1,1,1,1,1,1
-4523.5,83,1158.4807,1467.561552,964.3893236,1003.752153,447.2898546,447.2898546,2083.014855,19574.57838,1,1,1,1,1,1,1
-4524,83,1158.4807,1467.561552,917.0067098,1061.781954,447.2898546,447.2898546,2092.748009,19666.17004,1,1,1,1,1,1,1
-4524.5,83,1158.4807,1467.561552,940.3321647,1074.619841,447.2898546,447.2898546,2125.806516,19977.25959,1,1,1,1,1,1,1
-4525,83,1158.4807,1467.561552,988.2693983,1063.537095,447.2898546,447.2898546,2159.497658,20294.30205,1,1,1,1,1,1,1
-4525.5,83,1158.4807,1467.561552,953.5542096,1081.51538,447.2898546,447.2898546,2144.197975,20150.32792,1,1,1,1,1,1,1
-4526,83,1158.4807,1467.561552,971.8233209,1039.722902,447.2898546,447.2898546,2122.693901,19947.96912,1,1,1,1,1,1,1
-4526.5,82.90090154,1157.097357,1467.561552,103.5039119,85.79984968,446.7558096,446.7558096,716.9877846,6737.858228,1,1,1,1,1,1,1
-4527,82.65100838,1153.609234,1467.561552,-341.7393208,-398.26837,445.4091268,445.4091268,0,0,1,1,1,1,1,1,1
-4527.5,82.34876333,1149.39117,1467.561552,-346.1025367,-393.1794853,443.7803178,443.7803178,0,0,1,1,1,1,1,1,1
-4528,82.04686163,1145.177731,1467.561552,-341.1531538,-397.4723474,442.1533591,442.1533591,0,0,1,1,1,1,1,1,1
-4528.5,81.74433108,1140.954393,1467.561552,-350.1885255,-387.6304808,440.5230116,440.5230116,0,0,1,1,1,1,1,1,1
-4529,81.43884825,1136.691008,1467.561552,-352.6336279,-384.3594091,438.8767541,438.8767541,0,0,1,1,1,1,1,1,1
-4529.5,81.13535454,1132.454874,1467.561552,-337.8897123,-398.6851907,437.2412161,437.2412161,0,0,1,1,1,1,1,1,1
-4530,80.8396986,1128.327928,1467.561552,-338.476497,-397.7682654,435.6479161,435.6479161,0,0,1,1,1,1,1,1,1
-4530.5,80.54807453,1124.257244,1467.561552,-339.6545108,-395.9012956,434.0763439,434.0763439,0,0,1,1,1,1,1,1,1
-4531,80.25365772,1120.148577,1467.561552,-352.1793602,-382.5238335,432.4897216,432.4897216,0,0,1,1,1,1,1,1,1
-4531.5,79.95742647,1116.014314,1467.561552,-362.0617434,-372.0211346,430.8933212,430.8933212,0,0,1,1,1,1,1,1,1
-4532,79.66507379,1111.933404,1467.561552,-360.8224306,-372.8662102,429.3178225,429.3178225,0,0,1,1,1,1,1,1,1
-4532.5,79.3740643,1107.871306,1467.561552,-345.0551312,-387.8345942,427.7495624,427.7495624,0,0,1,1,1,1,1,1,1
-4533,79.07529002,1103.701345,1467.561552,-355.2729726,-376.4908715,426.1394575,426.1394575,0,0,1,1,1,1,1,1,1
-4533.5,78.76870743,1099.421826,1467.561552,-349.2025476,-381.729546,424.4872734,424.4872734,0,0,1,1,1,1,1,1,1
-4534,78.46110248,1095.128329,1467.561552,-341.9244632,-388.4199803,422.8295797,422.8295797,0,0,1,1,1,1,1,1,1
-4534.5,78.15508894,1090.857768,1467.561552,-342.9776576,-386.7620394,421.1804623,421.1804623,0,0,1,1,1,1,1,1,1
-4535,77.84873204,1086.581914,1467.561552,-340.3337804,-388.6655809,419.5294944,419.5294944,0,0,1,1,1,1,1,1,1
-4535.5,77.54159455,1082.294827,1467.561552,-331.8284491,-396.5356942,417.8743199,417.8743199,0,0,1,1,1,1,1,1,1
-4536,77.23862954,1078.066253,1467.561552,-327.6169104,-400.4206682,416.2416311,416.2416311,0,0,1,1,1,1,1,1,1
-4536.5,76.94318704,1073.942098,1467.561552,-343.3612854,-384.3381462,414.6494813,414.6494813,0,0,1,1,1,1,1,1,1
-4537,76.65243026,1069.88379,1467.561552,-359.4700076,-367.7125731,413.082583,413.082583,0,0,1,1,1,1,1,1,1
-4537.5,76.3626117,1065.838858,1467.561552,-354.2702569,-372.2971362,411.5207408,411.5207408,0,0,1,1,1,1,1,1,1
-4538,76.07196521,1061.782121,1467.561552,-343.9493794,-381.9631926,409.9544368,409.9544368,0,0,1,1,1,1,1,1,1
-4538.5,75.77986094,1057.705184,1467.561552,-349.80919,-375.4439153,408.3802769,408.3802769,0,0,1,1,1,1,1,1,1
-4539,75.48680303,1053.61425,1467.561552,-337.2630729,-387.379532,406.8009778,406.8009778,0,0,1,1,1,1,1,1,1
-4539.5,75.19381198,1049.524856,1467.561552,-334.7047512,-389.3697478,405.2220389,405.2220389,0,0,1,1,1,1,1,1,1
-4540,74.90148623,1045.444981,1467.561552,-337.8444501,-385.6732822,403.6466854,403.6466854,0,0,1,1,1,1,1,1,1
-4540.5,74.60995729,1041.375768,1467.561552,-349.3802819,-373.5880548,402.0756259,402.0756259,0,0,1,1,1,1,1,1,1
-4541,74.31931128,1037.319166,1467.561552,-348.8398352,-373.5973218,400.5093245,400.5093245,0,0,1,1,1,1,1,1,1
-4541.5,74.02985539,1033.279338,1467.561552,-345.0957531,-376.8254901,398.9494368,398.9494368,0,0,1,1,1,1,1,1,1
-4542,73.74177743,1029.258179,1467.561552,-339.7549155,-381.6580237,397.3969747,397.3969747,0,0,1,1,1,1,1,1,1
-4542.5,73.45509387,1025.256787,1467.561552,-348.2215866,-372.6966642,395.8520272,395.8520272,0,0,1,1,1,1,1,1,1
-4543,73.16977061,1021.274478,1467.561552,-356.6101985,-363.814445,394.3144103,394.3144103,0,0,1,1,1,1,1,1,1
-4543.5,72.88531585,1017.304447,1467.561552,-345.6054784,-374.2943428,392.7814738,392.7814738,0,0,1,1,1,1,1,1,1
-4544,72.60120335,1013.338851,1467.561552,-338.1041751,-381.2664102,391.2503818,391.2503818,0,0,1,1,1,1,1,1,1
-4544.5,72.31776463,1009.382761,1467.561552,-344.2722399,-374.615195,389.7229208,389.7229208,0,0,1,1,1,1,1,1,1
-4545,72.03585401,1005.44756,1467.561552,-339.9481049,-378.4868631,388.2036948,388.2036948,0,0,1,1,1,1,1,1,1
-4545.5,71.75562609,1001.535996,1467.561552,-329.6347223,-388.3546098,386.6935369,386.6935369,0,0,1,1,1,1,1,1,1
-4546,71.47670838,997.6432252,1467.561552,-337.1247913,-380.6429539,385.1904398,385.1904398,0,0,1,1,1,1,1,1,1
-4546.5,71.19873361,993.7632445,1467.561552,-344.5005146,-373.2088908,383.6924242,383.6924242,0,0,1,1,1,1,1,1,1
-4547,70.92173068,989.896989,1467.561552,-348.6703121,-369.0030768,382.1996458,382.1996458,0,0,1,1,1,1,1,1,1
-4547.5,70.64596578,986.0478925,1467.561552,-339.1265646,-378.5200606,380.7135393,380.7135393,0,0,1,1,1,1,1,1,1
-4548,70.37131473,982.2145778,1467.561552,-328.0200487,-389.588142,379.2334354,379.2334354,0,0,1,1,1,1,1,1,1
-4548.5,70.09735206,978.3909295,1467.561552,-332.7047328,-384.850364,377.7570411,377.7570411,0,0,1,1,1,1,1,1,1
-4549,69.82342687,974.5671507,1467.561552,-333.0818199,-384.3898557,376.2808488,376.2808488,0,0,1,1,1,1,1,1,1
-4549.5,69.54874395,970.7331565,1467.561552,-327.9328271,-389.4374116,374.8005731,374.8005731,0,0,1,1,1,1,1,1,1
-4550,69.27307976,966.8855907,1467.561552,-338.6620696,-378.6161487,373.3150093,373.3150093,0,0,1,1,1,1,1,1,1
-4550.5,68.99691792,963.0309729,1467.561552,-333.5527936,-383.6689576,371.8267637,371.8267637,0,0,1,1,1,1,1,1,1
-4551,68.72095425,959.179258,1467.561552,-332.9159812,-384.2794418,370.339586,370.339586,0,0,1,1,1,1,1,1,1
-4551.5,68.44554515,955.335307,1467.561552,-350.8014976,-366.3763336,368.8553968,368.8553968,0,0,1,1,1,1,1,1,1
-4552,68.17073365,951.5000607,1467.561552,-350.4986345,-366.6684674,367.3744282,367.3744282,0,0,1,1,1,1,1,1,1
-4552.5,67.8969691,947.6787774,1467.561552,-352.3073623,-364.8813541,365.8991017,365.8991017,0,0,1,1,1,1,1,1,1
-4553,67.6248788,943.8811992,1467.561552,-348.58558,-368.657719,364.4327977,364.4327977,0,0,1,1,1,1,1,1,1
-4553.5,67.35490399,940.1134135,1467.561552,-338.7216314,-378.5875837,362.9778941,362.9778941,0,0,1,1,1,1,1,1,1
-4554,67.08816467,936.390218,1467.561552,-339.1990362,-378.2591669,361.5404268,361.5404268,0,0,1,1,1,1,1,1,1
-4554.5,66.82690435,932.7429425,1467.561552,-350.8497787,-366.8622433,360.1324859,360.1324859,0,0,1,1,1,1,1,1,1
-4555,66.57237316,929.1904209,1467.561552,-354.7596302,-363.2419632,358.7608086,358.7608086,0,0.0000590598,1,1,1,1,1,1,1
-4555.5,66.10754938,922.7023712,1467.561552,-2347.785698,-2490.470313,356.2558572,356.2558572,0,0.0000342991,1,1,1,1,1,1,1
-4556,65.30487878,911.4993358,1467.561552,-3296.237444,-3745.446179,351.9302378,351.9302378,0,0,1,1,1,1,1,1,1
-4556.5,64.40482,898.9368416,1467.561552,-3245.960961,-3862.121899,347.07979,347.07979,0,0,1,1,1,1,1,1,1
-4557,63.50487276,886.3755756,1467.561552,-3285.145502,-3882.862306,342.2299434,342.2299434,0,0,1,1,1,1,1,1,1
-4557.5,62.60488695,873.8138658,1467.561552,-3348.384704,-3879.317611,337.379889,337.379889,0,0,1,1,1,1,1,1,1
-4558,61.7049187,861.2524954,1467.561552,-3558.272996,-3738.38868,332.5299291,332.5299291,0,0,1,1,1,1,1,1,1
-4558.5,60.80491449,848.6906536,1467.561552,-3686.404332,-3686.404332,327.6797755,327.6797755,0,0,1,1,1,1,1,1,1
-4559,59.87970159,835.7768206,1467.561552,-3937.339176,-3989.217866,322.6937713,322.6937713,0,0,1,1,1,1,1,1,1
-4559.5,58.88454503,821.8865346,1467.561552,-4326.8477,-4530.24511,317.3308384,317.3308384,0,0,1,1,1,1,1,1,1
-4560,57.79359168,806.6599913,1467.561552,-4898.323956,-5005.749126,311.4516533,311.4516533,0,0,1,1,1,1,1,1,1
-4560.5,56.59560451,789.9387159,1467.561552,-5276.481235,-5761.241628,304.9956592,304.9956592,0,0,1,1,1,1,1,1,1
-4561,55.28003042,771.5759389,1467.561552,-5781.231049,-6489.120015,297.9059852,297.9059852,0,0,1,1,1,1,1,1,1
-4561.5,53.83507724,751.4085876,1467.561552,-6632.676593,-6985.581578,290.1190828,290.1190828,0,0,1,1,1,1,1,1,1
-4562,52.25012835,729.2868045,1467.561552,-7057.034384,-8002.223598,281.5777387,281.5777387,0,0,1,1,1,1,1,1,1
-4562.5,50.56094146,705.7095971,1467.561552,-7479.17781,-8279.856082,272.4746525,272.4746525,0,0,1,1,1,1,1,1,1
-4563,48.83819644,713.8085996,1467.561552,-7881.41993,-7955.975683,263.1907203,263.1907203,198.9515731,1869.315646,1,1,1,1,1,1,1
-4563.5,47.11558233,779.7120702,1467.561552,-7671.960309,-8241.41012,253.9074936,253.9074936,397.2355889,3732.359238,1,1,1,1,1,1,1
-4564,45.39291256,826.4465969,1467.561552,-7709.386664,-8277.298376,244.623967,244.623967,212.0332295,1992.2289,1,1,1,1,1,1,1
-4564.5,43.6700942,796.7493925,1467.561552,-7724.749643,-8332.561914,235.3396396,235.3396396,0,0,1,1,1,1,1,1,1
-4565,41.94743569,749.4220287,1467.561552,-7709.698406,-8415.398653,226.0561736,226.0561736,0,0,1,1,1,1,1,1,1
-4565.5,40.22476575,718.6452237,1467.561552,-7780.445227,-8409.78453,216.7726461,216.7726461,0,0,1,1,1,1,1,1,1
-4566,38.50213136,712.233309,1467.561552,-7661.424295,-8591.185428,207.4893101,207.4893101,148.4489744,1394.801757,1,1,1,1,1,1,1
-4566.5,36.77951752,761.8895449,1467.561552,-7822.058195,-8490.101858,198.2060848,198.2060848,374.9286988,3522.767282,1,1,1,1,1,1,1
-4567,35.05695424,808.1855349,1467.561552,-7654.993601,-8712.468711,188.9231321,188.9231321,251.3439718,2361.58576,1,1,1,1,1,1,1
-4567.5,33.33416363,770.5515818,1467.561552,-8098.701576,-8316.22572,179.6389542,179.6389542,0,0,1,1,1,1,1,1,1
-4568,31.61125286,705.9480082,1467.561552,-8151.07855,-8304.564047,170.3541289,170.3541289,0,0,1,1,1,1,1,1,1
-4568.5,29.8887025,667.479228,1467.561552,-7859.725645,-8634.363549,161.0712458,161.0712458,0,0,1,1,1,1,1,1,1
-4569,28.16612054,645.3868594,1467.561552,-7667.713837,-8862.784429,151.7881923,151.7881923,86.68162047,814.4461347,1,1,1,1,1,1,1
-4569.5,26.44330423,683.4285835,1467.561552,-8025.092673,-8539.71728,142.503876,142.503876,348.0904302,3270.599904,1,1,1,1,1,1,1
-4570,24.72064041,744.8025605,1467.561552,-7733.10224,-8863.753284,133.2203814,133.2203814,296.7208656,2787.939813,1,1,1,1,1,1,1
-4570.5,22.99791461,712.5776255,1467.561552,-7877.534761,-8749.318471,123.9365528,123.9365528,54.42042753,511.3252349,1,1,1,1,1,1,1
-4571,21.27535018,699.4988506,1467.561552,-8197.879493,-8457.949944,114.6535939,114.6535939,362.5996163,3406.92536,1,1,1,1,1,1,1
-4571.5,19.55270074,778.8373284,1467.561552,-7860.539168,-8826.756143,105.3701768,105.3701768,355.6763165,3341.875286,1,1,1,1,1,1,1
-4572,17.830031,726.3178291,1467.561552,-8101.716284,-8615.141533,96.08665028,96.08665028,8.236989844,77.39337272,1,1,1,1,1,1,1
-4572.5,16.10727094,675.3669939,1467.561552,-7876.375618,-8867.388634,86.80263706,86.80263706,337.7165836,3173.128282,1,1,1,1,1,1,1
-4573,14.3846568,754.168817,1467.561552,-7727.248485,-9040.503196,77.51941021,77.51941021,362.5285957,3406.258265,1,1,1,1,1,1,1
-4573.5,12.66204993,754.6239091,1467.561552,-7937.519008,-8851.671627,68.23622253,68.23622253,54.03322921,507.6872226,1,1,1,1,1,1,1
-4574,10.93914459,756.9697223,1467.561552,-7918.282113,-8889.394895,58.95142644,58.95142644,304.1497867,2857.740534,1,1,1,1,1,1,1
-4574.5,9.216429945,826.466328,1467.561552,-8197.608027,-8626.125718,49.66765796,49.66765796,415.2158871,3901.299311,1,1,1,1,1,1,1
-4575,7.530860471,867.5373505,1467.561552,-8164.861188,-8517.235251,40.58406609,40.58406609,405.9452462,3814.19402,1,1,1,1,1,1,1
-4575.5,5.864437165,883.2433719,1467.561552,-7913.888041,-8545.431208,31.60365357,31.60365357,375.5118921,3528.247281,1,1,1,1,1,1,1
-4576,4.198013858,898.9493934,1467.561552,-7662.914895,-8573.627164,22.62324106,22.62324106,345.0785379,3242.300542,1,1,1,1,1,1,1
-4576.5,2.931828451,866.7116712,1467.561552,-5814.482611,-6556.756987,15.79972436,15.79972436,276.4080744,2597.084253,1,1,1,1,1,1,1
-4577,1.776564659,821.1868579,1467.561552,-3523.331768,-3973.118802,9.573968049,9.573968049,197.1406087,1852.300286,1,1,1,1,1,1,1
-4577.5,0.621300867,775.6620446,1467.561552,-1232.180924,-1389.480616,3.348211742,3.348211742,117.873143,1107.516318,1,1,1,1,1,1,1
diff --git a/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/Class2_RigidTruck_DECL_SS.xml b/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/Class2_RigidTruck_DECL_SS.xml
index 40f56daa15..d4f45afc0e 100644
--- a/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/Class2_RigidTruck_DECL_SS.xml
+++ b/VectoCore/VectoCoreTest/TestData/Integration/VTPMode/Group2_RigidTruck_4x2/Class2_RigidTruck_DECL_SS.xml
@@ -22,7 +22,7 @@
     <VocationalVehicle>false</VocationalVehicle>
     <SleeperCab>true</SleeperCab>
     <ADAS>
-      <EngineStopStart>false</EngineStopStart>
+      <EngineStopStart>true</EngineStopStart>
       <EcoRollWithoutEngineStop>false</EcoRollWithoutEngineStop>
       <EcoRollWithEngineStop>false</EcoRollWithEngineStop>
       <PredictiveCruiseControl>none</PredictiveCruiseControl>
diff --git a/VectoCore/VectoCoreTest/Utils/VectoVersionTest.cs b/VectoCore/VectoCoreTest/Utils/VectoVersionTest.cs
index 73039967e1..9609c86749 100644
--- a/VectoCore/VectoCoreTest/Utils/VectoVersionTest.cs
+++ b/VectoCore/VectoCoreTest/Utils/VectoVersionTest.cs
@@ -1,7 +1,7 @@
 using System;
 using TUGraz.VectoCommon.Utils;
 using NUnit.Framework;
-using static TUGraz.VectoCore.Utils.VectoSimulationCore;
+using static TUGraz.VectoCore.Utils.VersioningUtil;
 
 namespace TUGraz.VectoCore.Tests.Utils
 {
diff --git a/VectoCore/VectoCoreTest/VectoCoreTest.csproj b/VectoCore/VectoCoreTest/VectoCoreTest.csproj
index 0efe1b8c05..eec0439577 100644
--- a/VectoCore/VectoCoreTest/VectoCoreTest.csproj
+++ b/VectoCore/VectoCoreTest/VectoCoreTest.csproj
@@ -2566,15 +2566,9 @@
     <None Include="TestData\Integration\VTPMode\DualFuelVehicle\vtp_cycle_2Hz.vdri">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
-    <None Include="TestData\Integration\VTPMode\DualFuelVehicle\vtp_cycle_2Hz_StopStart.vdri">
-      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
-    </None>
     <None Include="TestData\Integration\VTPMode\DualFuelVehicle\VTP_DualFuel.vecto">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
-    <None Include="TestData\Integration\VTPMode\DualFuelVehicle\VTP_StopStart_DualFuel.vecto">
-      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
-    </None>
     <None Include="TestData\Integration\VTPMode\GenericVehicle XMLJob PTO\class_5_generic vehicle_DECL.vecto">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
-- 
GitLab